Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_data_new.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 5 | * @brief Data tree new functions |
| 6 | * |
| 7 | * Copyright (c) 2015 - 2022 CESNET, z.s.p.o. |
| 8 | * |
| 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * https://opensource.org/licenses/BSD-3-Clause |
| 14 | */ |
| 15 | |
| 16 | #define _GNU_SOURCE |
| 17 | |
| 18 | #include <assert.h> |
| 19 | #include <ctype.h> |
| 20 | #include <inttypes.h> |
| 21 | #include <stdarg.h> |
| 22 | #include <stdint.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 27 | #include "compat.h" |
| 28 | #include "context.h" |
| 29 | #include "dict.h" |
| 30 | #include "diff.h" |
| 31 | #include "hash_table.h" |
| 32 | #include "in.h" |
| 33 | #include "in_internal.h" |
| 34 | #include "log.h" |
Michal Vasko | 8f702ee | 2024-02-20 15:44:24 +0100 | [diff] [blame] | 35 | #include "ly_common.h" |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 36 | #include "parser_data.h" |
| 37 | #include "parser_internal.h" |
| 38 | #include "path.h" |
| 39 | #include "plugins.h" |
| 40 | #include "plugins_exts/metadata.h" |
| 41 | #include "plugins_internal.h" |
| 42 | #include "plugins_types.h" |
| 43 | #include "set.h" |
| 44 | #include "tree.h" |
| 45 | #include "tree_data_internal.h" |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 46 | #include "tree_data_sorted.h" |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 47 | #include "tree_edit.h" |
| 48 | #include "tree_schema.h" |
| 49 | #include "tree_schema_internal.h" |
| 50 | #include "validation.h" |
| 51 | #include "xml.h" |
| 52 | #include "xpath.h" |
| 53 | |
| 54 | LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 55 | lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool is_utf8, ly_bool store_only, |
| 56 | ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 57 | { |
| 58 | LY_ERR ret; |
| 59 | struct lyd_node_term *term; |
| 60 | |
| 61 | assert(schema->nodetype & LYD_NODE_TERM); |
| 62 | |
| 63 | term = calloc(1, sizeof *term); |
| 64 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 65 | |
| 66 | term->schema = schema; |
| 67 | term->prev = &term->node; |
| 68 | term->flags = LYD_NEW; |
| 69 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 70 | LOG_LOCSET(schema, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 71 | ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 72 | value_len, is_utf8, store_only, dynamic, format, prefix_data, hints, schema, incomplete); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 73 | LOG_LOCBACK(1, 0); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 74 | LY_CHECK_ERR_RET(ret, free(term), ret); |
| 75 | lyd_hash(&term->node); |
| 76 | |
| 77 | *node = &term->node; |
| 78 | return ret; |
| 79 | } |
| 80 | |
| 81 | LY_ERR |
| 82 | lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node) |
| 83 | { |
| 84 | LY_ERR ret; |
| 85 | struct lyd_node_term *term; |
| 86 | struct lysc_type *type; |
| 87 | |
| 88 | assert(schema->nodetype & LYD_NODE_TERM); |
| 89 | assert(val && val->realtype); |
| 90 | |
| 91 | term = calloc(1, sizeof *term); |
| 92 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 93 | |
| 94 | term->schema = schema; |
| 95 | term->prev = &term->node; |
| 96 | term->flags = LYD_NEW; |
| 97 | |
| 98 | type = ((struct lysc_node_leaf *)schema)->type; |
| 99 | ret = type->plugin->duplicate(schema->module->ctx, val, &term->value); |
| 100 | if (ret) { |
| 101 | LOGERR(schema->module->ctx, ret, "Value duplication failed."); |
| 102 | free(term); |
| 103 | return ret; |
| 104 | } |
| 105 | lyd_hash(&term->node); |
| 106 | |
| 107 | *node = &term->node; |
| 108 | return ret; |
| 109 | } |
| 110 | |
| 111 | LY_ERR |
| 112 | lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node) |
| 113 | { |
| 114 | struct lyd_node_inner *in; |
| 115 | |
| 116 | assert(schema->nodetype & LYD_NODE_INNER); |
| 117 | |
| 118 | in = calloc(1, sizeof *in); |
| 119 | LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM); |
| 120 | |
| 121 | in->schema = schema; |
| 122 | in->prev = &in->node; |
| 123 | in->flags = LYD_NEW; |
| 124 | if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) { |
| 125 | in->flags |= LYD_DEFAULT; |
| 126 | } |
| 127 | |
| 128 | /* do not hash list with keys, we need them for the hash */ |
| 129 | if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) { |
| 130 | lyd_hash(&in->node); |
| 131 | } |
| 132 | |
| 133 | *node = &in->node; |
| 134 | return LY_SUCCESS; |
| 135 | } |
| 136 | |
| 137 | LY_ERR |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 138 | lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, const struct lyxp_var *vars, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 139 | ly_bool store_only, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 140 | { |
| 141 | LY_ERR ret = LY_SUCCESS; |
| 142 | struct lyd_node *list = NULL, *key; |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 143 | const struct lyd_value *value; |
| 144 | struct lyd_value val = {0}; |
| 145 | struct lyxp_var *var; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 146 | LY_ARRAY_COUNT_TYPE u; |
| 147 | |
| 148 | assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS)); |
| 149 | |
| 150 | /* create list */ |
| 151 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup); |
| 152 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 153 | LOG_LOCSET(schema, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 154 | |
| 155 | /* create and insert all the keys */ |
| 156 | LY_ARRAY_FOR(predicates, u) { |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 157 | if (predicates[u].type == LY_PATH_PREDTYPE_LIST_VAR) { |
| 158 | /* find the var */ |
| 159 | if ((ret = lyxp_vars_find(schema->module->ctx, vars, predicates[u].variable, 0, &var))) { |
| 160 | goto cleanup; |
| 161 | } |
| 162 | |
| 163 | /* store the value */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 164 | LOG_LOCSET(predicates[u].key, NULL); |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 165 | ret = lyd_value_store(schema->module->ctx, &val, ((struct lysc_node_leaf *)predicates[u].key)->type, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 166 | var->value, strlen(var->value), 0, store_only, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, predicates[u].key, NULL); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 167 | LOG_LOCBACK(1, 0); |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 168 | LY_CHECK_GOTO(ret, cleanup); |
| 169 | |
| 170 | value = &val; |
| 171 | } else { |
| 172 | assert(predicates[u].type == LY_PATH_PREDTYPE_LIST); |
| 173 | value = &predicates[u].value; |
| 174 | } |
| 175 | |
| 176 | ret = lyd_create_term2(predicates[u].key, value, &key); |
| 177 | if (val.realtype) { |
| 178 | val.realtype->plugin->free(schema->module->ctx, &val); |
| 179 | memset(&val, 0, sizeof val); |
| 180 | } |
| 181 | LY_CHECK_GOTO(ret, cleanup); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 182 | lyd_insert_node(list, NULL, key, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | /* hash having all the keys */ |
| 186 | lyd_hash(list); |
| 187 | |
| 188 | /* success */ |
| 189 | *node = list; |
| 190 | list = NULL; |
| 191 | |
| 192 | cleanup: |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 193 | LOG_LOCBACK(1, 0); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 194 | lyd_free_tree(list); |
| 195 | return ret; |
| 196 | } |
| 197 | |
| 198 | LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 199 | lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, ly_bool store_only, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 200 | { |
| 201 | LY_ERR ret = LY_SUCCESS; |
| 202 | struct lyxp_expr *expr = NULL; |
Michal Vasko | dd528af | 2022-08-08 14:35:07 +0200 | [diff] [blame] | 203 | uint32_t exp_idx = 0; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 204 | struct ly_path_predicate *predicates = NULL; |
| 205 | |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 206 | LOG_LOCSET(schema, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 207 | |
| 208 | /* parse keys */ |
| 209 | LY_CHECK_GOTO(ret = ly_path_parse_predicate(schema->module->ctx, NULL, keys, keys_len, LY_PATH_PREFIX_OPTIONAL, |
| 210 | LY_PATH_PRED_KEYS, &expr), cleanup); |
| 211 | |
| 212 | /* compile them */ |
| 213 | LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_VALUE_JSON, |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 214 | NULL, &predicates), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 215 | |
| 216 | /* create the list node */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 217 | LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, NULL, store_only, node), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 218 | |
| 219 | cleanup: |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 220 | LOG_LOCBACK(1, 0); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 221 | lyxp_expr_free(schema->module->ctx, expr); |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 222 | ly_path_predicates_free(schema->module->ctx, predicates); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 223 | return ret; |
| 224 | } |
| 225 | |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 226 | /** |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 227 | * @brief Learn actual any value type in case it is currently ::LYD_ANYDATA_STRING. |
| 228 | * |
| 229 | * @param[in] value Any value. |
| 230 | * @param[out] value_type Detected value type. |
| 231 | */ |
| 232 | static void |
| 233 | lyd_create_any_string_valtype(const void *value, LYD_ANYDATA_VALUETYPE *value_type) |
| 234 | { |
| 235 | /* detect format */ |
| 236 | if (!value) { |
| 237 | /* interpret it as an empty data tree */ |
| 238 | *value_type = LYD_ANYDATA_DATATREE; |
| 239 | } else if (((char *)value)[0] == '<') { |
| 240 | *value_type = LYD_ANYDATA_XML; |
| 241 | } else if (((char *)value)[0] == '{') { |
| 242 | *value_type = LYD_ANYDATA_JSON; |
| 243 | } else if (!strncmp(value, "lyb", 3)) { |
| 244 | *value_type = LYD_ANYDATA_LYB; |
| 245 | } else { |
| 246 | /* really just some string */ |
| 247 | *value_type = LYD_ANYDATA_STRING; |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * @brief Convert an any value into a datatree. |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 253 | * |
| 254 | * @param[in] ctx libyang context. |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 255 | * @param[in] value_in Any value as an input. |
| 256 | * @param[in] value_type Any @p value type. |
| 257 | * @param[in] log Whether parsing errors should be logged. |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 258 | * @param[out] tree Parsed data tree. |
| 259 | * @return LY_ERR value. |
| 260 | */ |
| 261 | static LY_ERR |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 262 | lyd_create_any_datatree(const struct ly_ctx *ctx, struct ly_in *value_in, LYD_ANYDATA_VALUETYPE value_type, ly_bool log, |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 263 | struct lyd_node **tree) |
| 264 | { |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 265 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 266 | struct lyd_ctx *lydctx = NULL; |
Michal Vasko | 17d9cea | 2024-02-09 13:48:40 +0100 | [diff] [blame] | 267 | uint32_t parse_opts, int_opts, *prev_lo = NULL, temp_lo = 0; |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 268 | |
| 269 | *tree = NULL; |
| 270 | |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 271 | /* set options */ |
| 272 | parse_opts = LYD_PARSE_ONLY | LYD_PARSE_OPAQ; |
| 273 | int_opts = LYD_INTOPT_ANY | LYD_INTOPT_WITH_SIBLINGS; |
| 274 | |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 275 | if (!log) { |
| 276 | /* no logging */ |
Michal Vasko | 59004e3 | 2024-01-30 16:09:54 +0100 | [diff] [blame] | 277 | prev_lo = ly_temp_log_options(&temp_lo); |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 278 | } |
| 279 | |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 280 | switch (value_type) { |
| 281 | case LYD_ANYDATA_DATATREE: |
| 282 | case LYD_ANYDATA_STRING: |
| 283 | /* unreachable */ |
| 284 | LOGINT_RET(ctx); |
| 285 | case LYD_ANYDATA_XML: |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 286 | rc = lyd_parse_xml(ctx, NULL, NULL, tree, value_in, parse_opts, 0, int_opts, NULL, NULL, &lydctx); |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 287 | break; |
| 288 | case LYD_ANYDATA_JSON: |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 289 | rc = lyd_parse_json(ctx, NULL, NULL, tree, value_in, parse_opts, 0, int_opts, NULL, NULL, &lydctx); |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 290 | break; |
| 291 | case LYD_ANYDATA_LYB: |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 292 | rc = lyd_parse_lyb(ctx, NULL, NULL, tree, value_in, parse_opts | LYD_PARSE_STRICT, 0, int_opts, NULL, NULL, &lydctx); |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 293 | break; |
| 294 | } |
| 295 | if (lydctx) { |
| 296 | lydctx->free(lydctx); |
| 297 | } |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 298 | |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 299 | if (!log) { |
| 300 | /* restore logging */ |
Michal Vasko | 59004e3 | 2024-01-30 16:09:54 +0100 | [diff] [blame] | 301 | ly_temp_log_options(prev_lo); |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 302 | } |
Michal Vasko | 90fc1ae | 2023-04-27 12:22:19 +0200 | [diff] [blame] | 303 | if (rc && *tree) { |
| 304 | lyd_free_siblings(*tree); |
| 305 | *tree = NULL; |
| 306 | } |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 307 | return rc; |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 308 | } |
| 309 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 310 | LY_ERR |
| 311 | lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value, |
| 312 | struct lyd_node **node) |
| 313 | { |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 314 | LY_ERR rc = LY_SUCCESS, r; |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 315 | struct lyd_node *tree; |
Michal Vasko | bdeee99 | 2022-12-01 16:17:56 +0100 | [diff] [blame] | 316 | struct lyd_node_any *any = NULL; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 317 | union lyd_any_value any_val; |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 318 | struct ly_in *in = NULL; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 319 | |
| 320 | assert(schema->nodetype & LYD_NODE_ANY); |
| 321 | |
| 322 | any = calloc(1, sizeof *any); |
| 323 | LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM); |
| 324 | |
| 325 | any->schema = schema; |
| 326 | any->prev = &any->node; |
| 327 | any->flags = LYD_NEW; |
| 328 | |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 329 | if (schema->nodetype == LYS_ANYDATA) { |
| 330 | /* anydata */ |
| 331 | if (value_type == LYD_ANYDATA_STRING) { |
| 332 | /* detect value type */ |
| 333 | lyd_create_any_string_valtype(value, &value_type); |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 334 | } |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 335 | |
| 336 | if (value_type != LYD_ANYDATA_DATATREE) { |
| 337 | /* create input */ |
| 338 | assert(value); |
| 339 | LY_CHECK_GOTO(rc = ly_in_new_memory(value, &in), cleanup); |
| 340 | |
| 341 | /* parse as a data tree */ |
| 342 | if ((r = lyd_create_any_datatree(schema->module->ctx, in, value_type, 1, &tree))) { |
| 343 | LOGERR(schema->module->ctx, rc, "Failed to parse any content into a data tree."); |
| 344 | rc = r; |
| 345 | goto cleanup; |
| 346 | } |
| 347 | |
| 348 | /* use the parsed data tree */ |
| 349 | if (use_value) { |
| 350 | free((void *)value); |
| 351 | } |
| 352 | use_value = 1; |
| 353 | value = tree; |
| 354 | value_type = LYD_ANYDATA_DATATREE; |
| 355 | } |
| 356 | } else { |
| 357 | /* anyxml */ |
| 358 | switch (value_type) { |
| 359 | case LYD_ANYDATA_DATATREE: |
| 360 | /* fine, just use the value */ |
| 361 | break; |
| 362 | case LYD_ANYDATA_STRING: |
| 363 | /* detect value type */ |
| 364 | lyd_create_any_string_valtype(value, &value_type); |
| 365 | if ((value_type == LYD_ANYDATA_DATATREE) || (value_type == LYD_ANYDATA_STRING)) { |
| 366 | break; |
| 367 | } |
| 368 | /* fallthrough */ |
| 369 | case LYD_ANYDATA_XML: |
| 370 | case LYD_ANYDATA_JSON: |
| 371 | case LYD_ANYDATA_LYB: |
| 372 | if (!value) { |
| 373 | /* nothing to parse */ |
| 374 | break; |
| 375 | } |
| 376 | |
| 377 | /* create input */ |
| 378 | LY_CHECK_GOTO(rc = ly_in_new_memory(value, &in), cleanup); |
| 379 | |
| 380 | /* try to parse as a data tree */ |
| 381 | r = lyd_create_any_datatree(schema->module->ctx, in, value_type, 0, &tree); |
| 382 | if (!r) { |
| 383 | /* use the parsed data tree */ |
| 384 | if (use_value) { |
| 385 | free((void *)value); |
| 386 | } |
| 387 | use_value = 1; |
| 388 | value = tree; |
| 389 | value_type = LYD_ANYDATA_DATATREE; |
| 390 | } |
| 391 | break; |
| 392 | } |
Michal Vasko | e3ed7dc | 2022-11-30 11:39:44 +0100 | [diff] [blame] | 393 | } |
| 394 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 395 | if (use_value) { |
| 396 | switch (value_type) { |
| 397 | case LYD_ANYDATA_DATATREE: |
| 398 | any->value.tree = (void *)value; |
| 399 | break; |
| 400 | case LYD_ANYDATA_STRING: |
| 401 | case LYD_ANYDATA_XML: |
| 402 | case LYD_ANYDATA_JSON: |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 403 | LY_CHECK_GOTO(rc = lydict_insert_zc(schema->module->ctx, (void *)value, &any->value.str), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 404 | break; |
| 405 | case LYD_ANYDATA_LYB: |
| 406 | any->value.mem = (void *)value; |
| 407 | break; |
| 408 | } |
| 409 | any->value_type = value_type; |
| 410 | } else { |
| 411 | any_val.str = value; |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 412 | LY_CHECK_GOTO(rc = lyd_any_copy_value(&any->node, &any_val, value_type), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 413 | } |
| 414 | lyd_hash(&any->node); |
| 415 | |
Michal Vasko | 5b414dd | 2023-04-13 10:29:58 +0200 | [diff] [blame] | 416 | cleanup: |
| 417 | if (rc) { |
| 418 | lyd_free_tree(&any->node); |
| 419 | } else { |
| 420 | *node = &any->node; |
| 421 | } |
| 422 | ly_in_free(in, 0); |
| 423 | return rc; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | LY_ERR |
| 427 | lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len, |
| 428 | const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic, |
| 429 | LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node) |
| 430 | { |
| 431 | LY_ERR ret = LY_SUCCESS; |
| 432 | struct lyd_node_opaq *opaq; |
| 433 | |
| 434 | assert(ctx && name && name_len && format); |
| 435 | |
| 436 | if (!value_len && (!dynamic || !*dynamic)) { |
| 437 | value = ""; |
| 438 | } |
| 439 | |
| 440 | opaq = calloc(1, sizeof *opaq); |
| 441 | LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish); |
| 442 | |
| 443 | opaq->prev = &opaq->node; |
| 444 | LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish); |
| 445 | |
| 446 | if (pref_len) { |
| 447 | LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish); |
| 448 | } |
| 449 | if (module_key_len) { |
| 450 | LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish); |
| 451 | } |
| 452 | if (dynamic && *dynamic) { |
| 453 | LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish); |
| 454 | *dynamic = 0; |
| 455 | } else { |
| 456 | LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish); |
| 457 | } |
| 458 | |
| 459 | opaq->format = format; |
| 460 | opaq->val_prefix_data = val_prefix_data; |
| 461 | opaq->hints = hints; |
| 462 | opaq->ctx = ctx; |
| 463 | |
| 464 | finish: |
| 465 | if (ret) { |
| 466 | lyd_free_tree(&opaq->node); |
| 467 | ly_free_prefix_data(format, val_prefix_data); |
| 468 | } else { |
| 469 | *node = &opaq->node; |
| 470 | } |
| 471 | return ret; |
| 472 | } |
| 473 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 474 | /** |
| 475 | * @brief Gets format from lyd_new_* options |
| 476 | * |
| 477 | * @param[in] options Bitmask of options, see @ref newvalueoptions. |
| 478 | * @param[out] format The output format. |
| 479 | * @return LY_ERR value. |
| 480 | */ |
| 481 | static LY_ERR |
| 482 | _lyd_new_val_format(const uint32_t options, LY_VALUE_FORMAT *format) |
| 483 | { |
| 484 | LY_CHECK_ARG_RET(NULL, format, !((options & LYD_NEW_VAL_BIN_VALUE) && (options & LYD_NEW_VAL_CANON_VALUE)), LY_EVALID); |
| 485 | |
| 486 | if (options & LYD_NEW_VAL_BIN_VALUE) { |
| 487 | *format = LY_VALUE_LYB; |
| 488 | } else if (options & LYD_NEW_VAL_CANON_VALUE) { |
| 489 | *format = LY_VALUE_CANON; |
| 490 | } else { |
| 491 | *format = LY_VALUE_JSON; |
| 492 | } |
| 493 | |
| 494 | return LY_SUCCESS; |
| 495 | } |
| 496 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 497 | LIBYANG_API_DEF LY_ERR |
| 498 | lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, |
| 499 | struct lyd_node **node) |
| 500 | { |
| 501 | LY_ERR r; |
| 502 | struct lyd_node *ret = NULL; |
| 503 | const struct lysc_node *schema; |
| 504 | struct lysc_ext_instance *ext = NULL; |
| 505 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
| 506 | |
| 507 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
| 508 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
| 509 | |
| 510 | if (!module) { |
| 511 | module = parent->schema->module; |
| 512 | } |
| 513 | |
| 514 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, |
| 515 | LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0); |
| 516 | if (!schema && parent) { |
| 517 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 518 | strlen(name), &schema, &ext); |
| 519 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 520 | } |
| 521 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (container, notif, RPC, or action) \"%s\" not found.", |
| 522 | name), LY_ENOTFOUND); |
| 523 | |
| 524 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 525 | if (ext) { |
| 526 | ret->flags |= LYD_EXT; |
| 527 | } |
| 528 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 529 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | if (node) { |
| 533 | *node = ret; |
| 534 | } |
| 535 | return LY_SUCCESS; |
| 536 | } |
| 537 | |
| 538 | LIBYANG_API_DEF LY_ERR |
| 539 | lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node) |
| 540 | { |
| 541 | struct lyd_node *ret = NULL; |
| 542 | const struct lysc_node *schema; |
| 543 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 544 | |
| 545 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 546 | |
| 547 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, 0); |
| 548 | if (!schema) { |
| 549 | if (ext->argument) { |
| 550 | LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance \"%s\" of extension %s.", |
| 551 | name, ext->argument, ext->def->name); |
| 552 | } else { |
| 553 | LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance of extension %s.", |
| 554 | name, ext->def->name); |
| 555 | } |
| 556 | return LY_ENOTFOUND; |
| 557 | } |
| 558 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 559 | |
| 560 | *node = ret; |
| 561 | |
| 562 | return LY_SUCCESS; |
| 563 | } |
| 564 | |
| 565 | /** |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 566 | * @brief Create a new lits node instance without its keys. |
| 567 | * |
| 568 | * @param[in] ctx Context to use for logging. |
| 569 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| 570 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| 571 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 572 | * @param[in] options Bitmask of options, see @ref newvalueoptions. |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 573 | * @param[out] node Created node. |
| 574 | * @return LY_ERR value. |
| 575 | */ |
| 576 | static LY_ERR |
| 577 | _lyd_new_list_node(const struct ly_ctx *ctx, const struct lyd_node *parent, const struct lys_module *module, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 578 | const char *name, uint32_t options, struct lyd_node **node) |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 579 | { |
| 580 | struct lyd_node *ret = NULL; |
| 581 | const struct lysc_node *schema; |
| 582 | struct lysc_ext_instance *ext = NULL; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 583 | uint32_t getnext_opts = (options & LYD_NEW_VAL_OUTPUT) ? LYS_GETNEXT_OUTPUT : 0; |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 584 | LY_ERR r; |
| 585 | |
| 586 | if (!module) { |
| 587 | module = parent->schema->module; |
| 588 | } |
| 589 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 590 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, getnext_opts); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 591 | if (!schema && parent) { |
| 592 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 593 | strlen(name), &schema, &ext); |
| 594 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 595 | } |
| 596 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND); |
| 597 | |
| 598 | /* create list inner node */ |
| 599 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 600 | |
| 601 | if (ext) { |
| 602 | ret->flags |= LYD_EXT; |
| 603 | } |
| 604 | |
| 605 | *node = ret; |
| 606 | return LY_SUCCESS; |
| 607 | } |
| 608 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 609 | LIBYANG_API_DEF LY_ERR |
| 610 | lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, uint32_t options, |
| 611 | struct lyd_node **node, ...) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 612 | { |
| 613 | struct lyd_node *ret = NULL, *key; |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 614 | const struct lysc_node *key_s; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 615 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
| 616 | const void *key_val; |
| 617 | uint32_t key_len; |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 618 | LY_ERR rc = LY_SUCCESS; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 619 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 620 | LY_VALUE_FORMAT format; |
| 621 | va_list ap; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 622 | |
| 623 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
| 624 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 625 | LY_CHECK_RET(_lyd_new_val_format(options, &format)); |
| 626 | LY_CHECK_ARG_RET(ctx, !(store_only && (format == LY_VALUE_CANON || format == LY_VALUE_LYB)), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 627 | |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 628 | /* create the list node */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 629 | LY_CHECK_RET(_lyd_new_list_node(ctx, parent, module, name, options, &ret)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 630 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 631 | va_start(ap, node); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 632 | /* create and insert all the keys */ |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 633 | for (key_s = lysc_node_child(ret->schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 634 | if (format == LY_VALUE_LYB) { |
| 635 | key_val = va_arg(ap, const void *); |
| 636 | key_len = va_arg(ap, uint32_t); |
| 637 | } else { |
| 638 | key_val = va_arg(ap, const char *); |
| 639 | key_len = key_val ? strlen((char *)key_val) : 0; |
| 640 | } |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 641 | rc = lyd_create_term(key_s, key_val, key_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &key); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 642 | LY_CHECK_GOTO(rc, cleanup); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 643 | lyd_insert_node(ret, NULL, key, LYD_INSERT_NODE_LAST); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 644 | } |
| 645 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 646 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 647 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | cleanup: |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 651 | va_end(ap); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 652 | if (rc) { |
| 653 | lyd_free_tree(ret); |
| 654 | ret = NULL; |
| 655 | } else if (node) { |
| 656 | *node = ret; |
| 657 | } |
| 658 | return rc; |
| 659 | } |
| 660 | |
| 661 | LIBYANG_API_DEF LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 662 | lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, uint32_t options, struct lyd_node **node, ...) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 663 | { |
| 664 | struct lyd_node *ret = NULL, *key; |
| 665 | const struct lysc_node *schema, *key_s; |
| 666 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 667 | va_list ap; |
| 668 | const char *key_val; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 669 | size_t key_len; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 670 | LY_ERR rc = LY_SUCCESS; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 671 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 672 | LY_VALUE_FORMAT format; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 673 | |
| 674 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 675 | LY_CHECK_RET(_lyd_new_val_format(options, &format)); |
| 676 | LY_CHECK_ARG_RET(ctx, !(store_only && (format == LY_VALUE_CANON || format == LY_VALUE_LYB)), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 677 | |
| 678 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_LIST, 0); |
| 679 | if (!schema) { |
| 680 | if (ext->argument) { |
| 681 | LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance \"%s\" of extension %s.", |
| 682 | name, ext->argument, ext->def->name); |
| 683 | } else { |
| 684 | LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 685 | } |
| 686 | return LY_ENOTFOUND; |
| 687 | } |
| 688 | /* create list inner node */ |
| 689 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 690 | |
| 691 | va_start(ap, node); |
| 692 | |
| 693 | /* create and insert all the keys */ |
| 694 | for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 695 | if (format == LY_VALUE_LYB) { |
| 696 | key_val = va_arg(ap, const void *); |
| 697 | key_len = va_arg(ap, uint32_t); |
| 698 | } else { |
| 699 | key_val = va_arg(ap, const char *); |
| 700 | key_len = key_val ? strlen((char *)key_val) : 0; |
| 701 | } |
| 702 | rc = lyd_create_term(key_s, key_val, key_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &key); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 703 | LY_CHECK_GOTO(rc, cleanup); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 704 | lyd_insert_node(ret, NULL, key, LYD_INSERT_NODE_LAST); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | cleanup: |
| 708 | va_end(ap); |
| 709 | if (rc) { |
| 710 | lyd_free_tree(ret); |
| 711 | ret = NULL; |
| 712 | } |
| 713 | *node = ret; |
| 714 | return rc; |
| 715 | } |
| 716 | |
| 717 | LIBYANG_API_DEF LY_ERR |
| 718 | lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 719 | uint32_t options, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 720 | { |
| 721 | LY_ERR r; |
| 722 | struct lyd_node *ret = NULL; |
| 723 | const struct lysc_node *schema; |
| 724 | struct lysc_ext_instance *ext = NULL; |
| 725 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 726 | uint32_t getnext_opts = (options & LYD_NEW_VAL_OUTPUT) ? LYS_GETNEXT_OUTPUT : 0; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 727 | |
| 728 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
| 729 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
| 730 | |
| 731 | if (!module) { |
| 732 | module = parent->schema->module; |
| 733 | } |
| 734 | if (!keys) { |
| 735 | keys = ""; |
| 736 | } |
| 737 | |
| 738 | /* find schema node */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 739 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, getnext_opts); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 740 | if (!schema && parent) { |
| 741 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, strlen(name), |
| 742 | &schema, &ext); |
| 743 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 744 | } |
| 745 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND); |
| 746 | |
| 747 | if ((schema->flags & LYS_KEYLESS) && !keys[0]) { |
| 748 | /* key-less list */ |
| 749 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 750 | } else { |
| 751 | /* create the list node */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 752 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 753 | |
| 754 | LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), store_only, &ret)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 755 | } |
| 756 | if (ext) { |
| 757 | ret->flags |= LYD_EXT; |
| 758 | } |
| 759 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 760 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | if (node) { |
| 764 | *node = ret; |
| 765 | } |
| 766 | return LY_SUCCESS; |
| 767 | } |
| 768 | |
| 769 | /** |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 770 | * @brief Create a new list node in the data tree. |
| 771 | * |
| 772 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| 773 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| 774 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 775 | * @param[in] key_values Ordered key string values of the new list instance, all must be set. |
| 776 | * @param[in] value_lengths Array of lengths of each @p key_values, may be NULL if @p key_values are 0-terminated strings. |
| 777 | * @param[in] options Bitmask of options, see @ref newvalueoptions. |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 778 | * @param[out] node Optional created node. |
| 779 | * @return LY_ERR value. |
| 780 | */ |
| 781 | static LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 782 | _lyd_new_list3(struct lyd_node *parent, const struct lys_module *module, const char *name, const void **key_values, |
| 783 | uint32_t *value_lengths, uint32_t options, struct lyd_node **node) |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 784 | { |
| 785 | struct lyd_node *ret = NULL, *key; |
| 786 | const struct lysc_node *key_s; |
| 787 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
| 788 | const void *key_val; |
| 789 | uint32_t key_len, i; |
| 790 | LY_ERR rc = LY_SUCCESS; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 791 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 792 | LY_VALUE_FORMAT format; |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 793 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 794 | LY_CHECK_RET(_lyd_new_val_format(options, &format)); |
Michal Vasko | beeb8b6 | 2024-01-30 16:10:17 +0100 | [diff] [blame] | 795 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, (format != LY_VALUE_LYB) || value_lengths, LY_EINVAL); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 796 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 797 | LY_CHECK_ARG_RET(ctx, !(store_only && (format == LY_VALUE_CANON || format == LY_VALUE_LYB)), LY_EINVAL); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 798 | |
| 799 | /* create the list node */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 800 | LY_CHECK_RET(_lyd_new_list_node(ctx, parent, module, name, options, &ret)); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 801 | |
Michal Vasko | beeb8b6 | 2024-01-30 16:10:17 +0100 | [diff] [blame] | 802 | if (!(ret->schema->flags & LYS_KEYLESS) && !key_values) { |
| 803 | LOGERR(ctx, LY_EINVAL, "Missing list \"%s\" keys.", LYD_NAME(ret)); |
| 804 | rc = LY_EINVAL; |
| 805 | goto cleanup; |
| 806 | } |
| 807 | |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 808 | /* create and insert all the keys */ |
| 809 | i = 0; |
| 810 | for (key_s = lysc_node_child(ret->schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
Michal Vasko | 37f28c4 | 2024-01-08 09:43:01 +0100 | [diff] [blame] | 811 | key_val = key_values[i] ? key_values[i] : ""; |
| 812 | key_len = value_lengths ? value_lengths[i] : strlen(key_val); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 813 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 814 | rc = lyd_create_term(key_s, key_val, key_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &key); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 815 | LY_CHECK_GOTO(rc, cleanup); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 816 | lyd_insert_node(ret, NULL, key, LYD_INSERT_NODE_LAST); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 817 | } |
| 818 | |
| 819 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 820 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | cleanup: |
| 824 | if (rc) { |
| 825 | lyd_free_tree(ret); |
| 826 | ret = NULL; |
| 827 | } else if (node) { |
| 828 | *node = ret; |
| 829 | } |
| 830 | return rc; |
| 831 | } |
| 832 | |
| 833 | LIBYANG_API_DEF LY_ERR |
| 834 | lyd_new_list3(struct lyd_node *parent, const struct lys_module *module, const char *name, const char **key_values, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 835 | uint32_t *value_lengths, uint32_t options, struct lyd_node **node) |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 836 | { |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 837 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
| 838 | |
| 839 | LY_CHECK_ARG_RET(ctx, !(options & LYD_NEW_VAL_BIN_VALUE), LY_EINVAL); |
| 840 | |
| 841 | return _lyd_new_list3(parent, module, name, (const void **)key_values, value_lengths, options, node); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 842 | } |
| 843 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 844 | LIBYANG_API_DECL LY_ERR |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 845 | lyd_new_list3_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, const void **key_values, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 846 | uint32_t *value_lengths, uint32_t options, struct lyd_node **node) |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 847 | { |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 848 | options |= LYD_NEW_VAL_BIN_VALUE; |
| 849 | return _lyd_new_list3(parent, module, name, key_values, value_lengths, options, node); |
Michal Vasko | 2c1e327 | 2023-10-17 14:08:35 +0200 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | /** |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 853 | * @brief Create a new term node in the data tree. |
| 854 | * |
| 855 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| 856 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 857 | * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST. |
| 858 | * @param[in] value The value of the node in @p format. |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 859 | * @param[in] value_len Length of @p value. |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 860 | * @param[in] options Bitmask of options, see @ref newvalueoptions. |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 861 | * @param[out] node Optional created node. |
| 862 | * @return LY_ERR value. |
| 863 | */ |
| 864 | static LY_ERR |
| 865 | _lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 866 | size_t value_len, uint32_t options, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 867 | { |
| 868 | LY_ERR r; |
| 869 | struct lyd_node *ret = NULL; |
| 870 | const struct lysc_node *schema; |
| 871 | struct lysc_ext_instance *ext = NULL; |
| 872 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 873 | uint32_t getnext_opts = (options & LYD_NEW_VAL_OUTPUT) ? LYS_GETNEXT_OUTPUT : 0; |
| 874 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 875 | LY_VALUE_FORMAT format; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 876 | |
| 877 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
| 878 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 879 | LY_CHECK_RET(_lyd_new_val_format(options, &format)); |
| 880 | LY_CHECK_ARG_RET(ctx, !(store_only && (format == LY_VALUE_CANON || format == LY_VALUE_LYB)), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 881 | |
| 882 | if (!module) { |
| 883 | module = parent->schema->module; |
| 884 | } |
| 885 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 886 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, getnext_opts); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 887 | if (!schema && parent) { |
| 888 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 889 | strlen(name), &schema, &ext); |
| 890 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 891 | } |
| 892 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND); |
| 893 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 894 | LY_CHECK_RET(lyd_create_term(schema, value, value_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &ret)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 895 | if (ext) { |
| 896 | ret->flags |= LYD_EXT; |
| 897 | } |
| 898 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 899 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | if (node) { |
| 903 | *node = ret; |
| 904 | } |
| 905 | return LY_SUCCESS; |
| 906 | } |
| 907 | |
| 908 | LIBYANG_API_DEF LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 909 | lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *value, |
| 910 | uint32_t options, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 911 | { |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 912 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
| 913 | |
| 914 | LY_CHECK_ARG_RET(ctx, !(options & LYD_NEW_VAL_BIN_VALUE), LY_EINVAL); |
| 915 | return _lyd_new_term(parent, module, name, value, value ? strlen(value) : 0, options, node); |
| 916 | } |
| 917 | |
| 918 | LIBYANG_API_DECL LY_ERR |
| 919 | lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 920 | const void *value, size_t value_len, uint32_t options, struct lyd_node **node) |
| 921 | { |
| 922 | options |= LYD_NEW_VAL_BIN_VALUE; |
| 923 | return _lyd_new_term(parent, module, name, value, value_len, options, node); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 924 | } |
| 925 | |
| 926 | LIBYANG_API_DEF LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 927 | lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const void *value, size_t value_len, |
| 928 | uint32_t options, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 929 | { |
| 930 | LY_ERR rc; |
| 931 | struct lyd_node *ret = NULL; |
| 932 | const struct lysc_node *schema; |
| 933 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 934 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
| 935 | LY_VALUE_FORMAT format; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 936 | |
| 937 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 938 | LY_CHECK_RET(_lyd_new_val_format(options, &format)); |
| 939 | LY_CHECK_ARG_RET(ctx, !(store_only && (format == LY_VALUE_CANON || format == LY_VALUE_LYB)), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 940 | |
| 941 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_TERM, 0); |
| 942 | if (!schema) { |
| 943 | if (ext->argument) { |
| 944 | LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance \"%s\" of extension %s.", |
| 945 | name, ext->argument, ext->def->name); |
| 946 | } else { |
| 947 | LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 948 | } |
| 949 | return LY_ENOTFOUND; |
| 950 | } |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 951 | rc = lyd_create_term(schema, value, value_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &ret); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 952 | LY_CHECK_RET(rc); |
| 953 | |
| 954 | *node = ret; |
| 955 | |
| 956 | return LY_SUCCESS; |
| 957 | } |
| 958 | |
| 959 | LIBYANG_API_DEF LY_ERR |
| 960 | lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 961 | uint32_t options, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 962 | { |
| 963 | LY_ERR r; |
| 964 | struct lyd_node *ret = NULL; |
| 965 | const struct lysc_node *schema; |
| 966 | struct lysc_ext_instance *ext = NULL; |
| 967 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 968 | uint32_t getnext_opts = (options & LYS_GETNEXT_OUTPUT) ? LYS_GETNEXT_OUTPUT : 0; |
| 969 | ly_bool use_value = (options & LYD_NEW_ANY_USE_VALUE) ? 1 : 0; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 970 | |
Michal Vasko | 2ac9115 | 2023-11-21 10:29:18 +0100 | [diff] [blame] | 971 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, |
| 972 | (value_type == LYD_ANYDATA_DATATREE) || (value_type == LYD_ANYDATA_STRING) || value, LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 973 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
| 974 | |
| 975 | if (!module) { |
| 976 | module = parent->schema->module; |
| 977 | } |
| 978 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 979 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_ANY, getnext_opts); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 980 | if (!schema && parent) { |
| 981 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 982 | strlen(name), &schema, &ext); |
| 983 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 984 | } |
| 985 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND); |
| 986 | |
| 987 | LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret)); |
| 988 | if (ext) { |
| 989 | ret->flags |= LYD_EXT; |
| 990 | } |
| 991 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 992 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | if (node) { |
| 996 | *node = ret; |
| 997 | } |
| 998 | return LY_SUCCESS; |
| 999 | } |
| 1000 | |
| 1001 | LIBYANG_API_DEF LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1002 | lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value, uint32_t options, |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1003 | LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node) |
| 1004 | { |
| 1005 | struct lyd_node *ret = NULL; |
| 1006 | const struct lysc_node *schema; |
| 1007 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1008 | ly_bool use_value = (options & LYD_NEW_ANY_USE_VALUE) ? 1 : 0; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1009 | |
| 1010 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 1011 | |
| 1012 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_ANY, 0); |
| 1013 | if (!schema) { |
| 1014 | if (ext->argument) { |
| 1015 | LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance \"%s\" of extension %s.", |
| 1016 | name, ext->argument, ext->def->name); |
| 1017 | } else { |
| 1018 | LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 1019 | } |
| 1020 | return LY_ENOTFOUND; |
| 1021 | } |
| 1022 | LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret)); |
| 1023 | |
| 1024 | *node = ret; |
| 1025 | |
| 1026 | return LY_SUCCESS; |
| 1027 | } |
| 1028 | |
| 1029 | LIBYANG_API_DEF LY_ERR |
| 1030 | lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1031 | const char *val_str, uint32_t options, struct lyd_meta **meta) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1032 | { |
| 1033 | const char *prefix, *tmp; |
| 1034 | size_t pref_len, name_len; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1035 | ly_bool clear_dflt = options & LYD_NEW_META_CLEAR_DFLT; |
| 1036 | ly_bool store_only = options & LYD_NEW_VAL_STORE_ONLY; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1037 | |
| 1038 | LY_CHECK_ARG_RET(ctx, ctx || parent, name, module || strchr(name, ':'), parent || meta, LY_EINVAL); |
| 1039 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
| 1040 | if (!ctx) { |
Michal Vasko | 33c4897 | 2022-07-20 10:28:07 +0200 | [diff] [blame] | 1041 | ctx = module ? module->ctx : LYD_CTX(parent); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1042 | } |
| 1043 | |
| 1044 | if (parent && !parent->schema) { |
| 1045 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata \"%s\" to an opaque node \"%s\".", name, LYD_NAME(parent)); |
| 1046 | return LY_EINVAL; |
| 1047 | } |
| 1048 | if (meta) { |
| 1049 | *meta = NULL; |
| 1050 | } |
| 1051 | |
| 1052 | /* parse the name */ |
| 1053 | tmp = name; |
| 1054 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1055 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
| 1056 | return LY_EINVAL; |
| 1057 | } |
| 1058 | |
| 1059 | /* find the module */ |
| 1060 | if (prefix) { |
| 1061 | module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len); |
| 1062 | LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", (int)pref_len, prefix), LY_ENOTFOUND); |
| 1063 | } |
| 1064 | |
| 1065 | /* set value if none */ |
| 1066 | if (!val_str) { |
| 1067 | val_str = ""; |
| 1068 | } |
| 1069 | |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1070 | return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), 0, store_only, NULL, LY_VALUE_JSON, |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1071 | NULL, LYD_HINT_DATA, parent ? parent->schema : NULL, clear_dflt, NULL); |
| 1072 | } |
| 1073 | |
| 1074 | LIBYANG_API_DEF LY_ERR |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1075 | lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, uint32_t options, const struct lyd_attr *attr, struct lyd_meta **meta) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1076 | { |
| 1077 | const struct lys_module *mod; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1078 | ly_bool clear_dflt = options & LYD_NEW_META_CLEAR_DFLT; |
| 1079 | ly_bool store_only = options & LYD_NEW_VAL_STORE_ONLY; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1080 | |
| 1081 | LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL); |
| 1082 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
| 1083 | |
| 1084 | if (parent && !parent->schema) { |
Michal Vasko | 7b3a00e | 2023-08-09 11:58:03 +0200 | [diff] [blame] | 1085 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", |
| 1086 | ((struct lyd_node_opaq *)parent)->name.name); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1087 | return LY_EINVAL; |
| 1088 | } |
| 1089 | if (meta) { |
| 1090 | *meta = NULL; |
| 1091 | } |
| 1092 | |
| 1093 | switch (attr->format) { |
| 1094 | case LY_VALUE_XML: |
| 1095 | mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns); |
| 1096 | if (!mod) { |
| 1097 | LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns); |
| 1098 | return LY_ENOTFOUND; |
| 1099 | } |
| 1100 | break; |
| 1101 | case LY_VALUE_JSON: |
| 1102 | mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name); |
| 1103 | if (!mod) { |
| 1104 | LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name); |
| 1105 | return LY_ENOTFOUND; |
| 1106 | } |
| 1107 | break; |
| 1108 | default: |
| 1109 | LOGINT_RET(ctx); |
| 1110 | } |
| 1111 | |
| 1112 | return lyd_create_meta(parent, meta, mod, attr->name.name, strlen(attr->name.name), attr->value, strlen(attr->value), |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1113 | 0, store_only, NULL, attr->format, attr->val_prefix_data, attr->hints, parent ? parent->schema : NULL, clear_dflt, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1114 | } |
| 1115 | |
| 1116 | LIBYANG_API_DEF LY_ERR |
| 1117 | lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
| 1118 | const char *prefix, const char *module_name, struct lyd_node **node) |
| 1119 | { |
| 1120 | struct lyd_node *ret = NULL; |
| 1121 | |
| 1122 | LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, !prefix || !strcmp(prefix, module_name), LY_EINVAL); |
| 1123 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
| 1124 | |
| 1125 | if (!ctx) { |
| 1126 | ctx = LYD_CTX(parent); |
| 1127 | } |
| 1128 | if (!value) { |
| 1129 | value = ""; |
| 1130 | } |
| 1131 | |
| 1132 | LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_name, |
| 1133 | strlen(module_name), value, strlen(value), NULL, LY_VALUE_JSON, NULL, 0, &ret)); |
| 1134 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1135 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_LAST); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | if (node) { |
| 1139 | *node = ret; |
| 1140 | } |
| 1141 | return LY_SUCCESS; |
| 1142 | } |
| 1143 | |
| 1144 | LIBYANG_API_DEF LY_ERR |
| 1145 | lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
| 1146 | const char *prefix, const char *module_ns, struct lyd_node **node) |
| 1147 | { |
| 1148 | struct lyd_node *ret = NULL; |
| 1149 | |
| 1150 | LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL); |
| 1151 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
| 1152 | |
| 1153 | if (!ctx) { |
| 1154 | ctx = LYD_CTX(parent); |
| 1155 | } |
| 1156 | if (!value) { |
| 1157 | value = ""; |
| 1158 | } |
| 1159 | |
| 1160 | LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_ns, |
| 1161 | strlen(module_ns), value, strlen(value), NULL, LY_VALUE_XML, NULL, 0, &ret)); |
| 1162 | if (parent) { |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1163 | lyd_insert_node(parent, NULL, ret, LYD_INSERT_NODE_LAST); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | if (node) { |
| 1167 | *node = ret; |
| 1168 | } |
| 1169 | return LY_SUCCESS; |
| 1170 | } |
| 1171 | |
| 1172 | LIBYANG_API_DEF LY_ERR |
| 1173 | lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value, |
| 1174 | struct lyd_attr **attr) |
| 1175 | { |
| 1176 | struct lyd_attr *ret = NULL; |
| 1177 | const struct ly_ctx *ctx; |
| 1178 | const char *prefix, *tmp; |
| 1179 | size_t pref_len, name_len, mod_len; |
| 1180 | |
| 1181 | LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL); |
| 1182 | |
| 1183 | ctx = LYD_CTX(parent); |
| 1184 | |
| 1185 | /* parse the name */ |
| 1186 | tmp = name; |
| 1187 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1188 | LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name); |
| 1189 | return LY_EVALID; |
| 1190 | } |
| 1191 | |
| 1192 | if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) { |
| 1193 | /* not a prefix but special name */ |
| 1194 | name = prefix; |
| 1195 | name_len += 1 + pref_len; |
| 1196 | prefix = NULL; |
| 1197 | pref_len = 0; |
| 1198 | } |
| 1199 | |
| 1200 | /* get the module */ |
| 1201 | if (module_name) { |
| 1202 | mod_len = strlen(module_name); |
| 1203 | } else { |
| 1204 | module_name = prefix; |
| 1205 | mod_len = pref_len; |
| 1206 | } |
| 1207 | |
| 1208 | /* set value if none */ |
| 1209 | if (!value) { |
| 1210 | value = ""; |
| 1211 | } |
| 1212 | |
| 1213 | LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, value, |
| 1214 | strlen(value), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA)); |
| 1215 | |
| 1216 | if (attr) { |
| 1217 | *attr = ret; |
| 1218 | } |
| 1219 | return LY_SUCCESS; |
| 1220 | } |
| 1221 | |
| 1222 | LIBYANG_API_DEF LY_ERR |
| 1223 | lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value, |
| 1224 | struct lyd_attr **attr) |
| 1225 | { |
| 1226 | struct lyd_attr *ret = NULL; |
| 1227 | const struct ly_ctx *ctx; |
| 1228 | const char *prefix, *tmp; |
| 1229 | size_t pref_len, name_len; |
| 1230 | |
| 1231 | LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL); |
| 1232 | |
| 1233 | ctx = LYD_CTX(parent); |
| 1234 | |
| 1235 | /* parse the name */ |
| 1236 | tmp = name; |
| 1237 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1238 | LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name); |
| 1239 | return LY_EVALID; |
| 1240 | } |
| 1241 | |
| 1242 | if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) { |
| 1243 | /* not a prefix but special name */ |
| 1244 | name = prefix; |
| 1245 | name_len += 1 + pref_len; |
| 1246 | prefix = NULL; |
| 1247 | pref_len = 0; |
| 1248 | } |
| 1249 | |
| 1250 | /* set value if none */ |
| 1251 | if (!value) { |
| 1252 | value = ""; |
| 1253 | } |
Michal Vasko | 825718f | 2022-11-10 10:33:51 +0100 | [diff] [blame] | 1254 | if (strchr(value, ':')) { |
| 1255 | LOGWRN(ctx, "Value \"%s\" prefix will never be interpreted as an XML prefix.", value); |
| 1256 | } |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1257 | |
| 1258 | LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns, |
| 1259 | module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_VALUE_XML, NULL, LYD_HINT_DATA)); |
| 1260 | |
| 1261 | if (attr) { |
| 1262 | *attr = ret; |
| 1263 | } |
| 1264 | return LY_SUCCESS; |
| 1265 | } |
| 1266 | |
| 1267 | /** |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1268 | * @brief Change the value of @p term by @p val and reinsert the node if necessary. |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1269 | * |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1270 | * Reinserting ensures that the node is in the correct position and the data instances remain properly ordered. |
| 1271 | * |
| 1272 | * @param[in] term Term node to change. If it is a key, the parental list is inserted again. |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1273 | * @param[in] val New value for @p term. |
| 1274 | * @return LY_SUCCESS on success. |
| 1275 | */ |
| 1276 | static LY_ERR |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1277 | lyd_change_node_value(struct lyd_node_term *term, struct lyd_value *val) |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1278 | { |
| 1279 | LY_ERR ret = LY_SUCCESS; |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1280 | struct lyd_node *target, *first; |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1281 | |
| 1282 | if (term->schema->nodetype == LYS_LEAFLIST) { |
| 1283 | target = (struct lyd_node *)term; |
| 1284 | } else if ((term->schema->flags & LYS_KEY) && term->parent) { |
| 1285 | target = (struct lyd_node *)term->parent; |
| 1286 | } else { |
| 1287 | /* just change the value */ |
| 1288 | term->value.realtype->plugin->free(LYD_CTX(term), &term->value); |
| 1289 | term->value = *val; |
| 1290 | /* leaf that is not a key, its value is not used for its hash so it does not change */ |
| 1291 | return LY_SUCCESS; |
| 1292 | } |
| 1293 | |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1294 | if (!LYD_NODE_IS_ALONE(target) && lyds_is_supported(target)) { |
| 1295 | /* changing the value may cause a change in the order */ |
| 1296 | first = lyd_first_sibling(target); |
| 1297 | first = first == target ? first->next : first; |
| 1298 | /* unlink hash and unlink the target node in the lyds tree */ |
| 1299 | lyd_unlink_tree(target); |
| 1300 | /* change value */ |
| 1301 | term->value.realtype->plugin->free(LYD_CTX(term), &term->value); |
| 1302 | term->value = *val; |
| 1303 | /* reinserting */ |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1304 | lyd_insert_node(NULL, &first, target, LYD_INSERT_NODE_DEFAULT); |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1305 | } else { |
| 1306 | /* unlink hash */ |
| 1307 | lyd_unlink_hash(target); |
| 1308 | /* change value */ |
| 1309 | term->value.realtype->plugin->free(LYD_CTX(term), &term->value); |
| 1310 | term->value = *val; |
| 1311 | } |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1312 | lyd_hash(target); |
| 1313 | ret = lyd_insert_hash(target); |
| 1314 | |
| 1315 | return ret; |
| 1316 | } |
| 1317 | |
| 1318 | /** |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1319 | * @brief Change the value of a term (leaf or leaf-list) node. |
| 1320 | * |
| 1321 | * Node changed this way is always considered explicitly set, meaning its default flag |
| 1322 | * is always cleared. |
| 1323 | * |
| 1324 | * @param[in] term Term node to change. |
| 1325 | * @param[in] value New value to set. |
| 1326 | * @param[in] value_len Length of @p value. |
| 1327 | * @param[in] format Format of @p value. |
| 1328 | * @return LY_SUCCESS if value was changed, |
| 1329 | * @return LY_EEXIST if value was the same and only the default flag was cleared, |
| 1330 | * @return LY_ENOT if the values were equal and no change occured, |
| 1331 | * @return LY_ERR value on other errors. |
| 1332 | */ |
| 1333 | static LY_ERR |
| 1334 | _lyd_change_term(struct lyd_node *term, const void *value, size_t value_len, LY_VALUE_FORMAT format) |
| 1335 | { |
| 1336 | LY_ERR ret = LY_SUCCESS; |
| 1337 | struct lysc_type *type; |
| 1338 | struct lyd_node_term *t; |
| 1339 | struct lyd_node *parent; |
| 1340 | struct lyd_value val; |
| 1341 | ly_bool dflt_change, val_change; |
| 1342 | |
| 1343 | assert(term && term->schema && (term->schema->nodetype & LYD_NODE_TERM)); |
| 1344 | |
| 1345 | t = (struct lyd_node_term *)term; |
| 1346 | type = ((struct lysc_node_leaf *)term->schema)->type; |
| 1347 | |
| 1348 | /* parse the new value */ |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1349 | LOG_LOCSET(term->schema, term); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1350 | ret = lyd_value_store(LYD_CTX(term), &val, type, value, value_len, 0, 0, NULL, format, NULL, LYD_HINT_DATA, |
Michal Vasko | 989cdb4 | 2023-10-06 15:32:37 +0200 | [diff] [blame] | 1351 | term->schema, NULL); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1352 | LOG_LOCBACK(1, 1); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1353 | LY_CHECK_GOTO(ret, cleanup); |
| 1354 | |
| 1355 | /* compare original and new value */ |
aPiecek | 0a6705b | 2023-11-14 14:20:58 +0100 | [diff] [blame] | 1356 | if (type->plugin->compare(LYD_CTX(term), &t->value, &val)) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1357 | /* values differ, switch them */ |
aPiecek | 6cf1d16 | 2023-11-08 16:07:00 +0100 | [diff] [blame] | 1358 | lyd_change_node_value(t, &val); |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1359 | /* make the node non-validated */ |
| 1360 | term->flags &= LYD_NEW; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1361 | val_change = 1; |
| 1362 | } else { |
| 1363 | /* same values, free the new stored one */ |
| 1364 | type->plugin->free(LYD_CTX(term), &val); |
| 1365 | val_change = 0; |
| 1366 | } |
| 1367 | |
steweg | f9041a2 | 2024-01-18 13:29:12 +0100 | [diff] [blame] | 1368 | /* clear links to leafref nodes */ |
| 1369 | if (ly_ctx_get_options(LYD_CTX(term)) & LY_CTX_LEAFREF_LINKING) { |
| 1370 | lyd_free_leafref_nodes(t); |
| 1371 | } |
| 1372 | |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1373 | /* always clear the default flag */ |
| 1374 | if (term->flags & LYD_DEFAULT) { |
| 1375 | for (parent = term; parent; parent = lyd_parent(parent)) { |
| 1376 | parent->flags &= ~LYD_DEFAULT; |
| 1377 | } |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1378 | /* make the node non-validated */ |
| 1379 | term->flags &= LYD_NEW; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1380 | dflt_change = 1; |
| 1381 | } else { |
| 1382 | dflt_change = 0; |
| 1383 | } |
| 1384 | |
aPiecek | 2e1f68f | 2023-11-08 11:27:33 +0100 | [diff] [blame] | 1385 | /* return value */ |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1386 | if (!val_change) { |
| 1387 | if (dflt_change) { |
| 1388 | /* only default flag change */ |
| 1389 | ret = LY_EEXIST; |
| 1390 | } else { |
| 1391 | /* no change */ |
| 1392 | ret = LY_ENOT; |
| 1393 | } |
| 1394 | } /* else value changed, LY_SUCCESS */ |
| 1395 | |
| 1396 | cleanup: |
| 1397 | return ret; |
| 1398 | } |
| 1399 | |
| 1400 | LIBYANG_API_DEF LY_ERR |
| 1401 | lyd_change_term(struct lyd_node *term, const char *val_str) |
| 1402 | { |
| 1403 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1404 | |
| 1405 | return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON); |
| 1406 | } |
| 1407 | |
| 1408 | LIBYANG_API_DEF LY_ERR |
| 1409 | lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len) |
| 1410 | { |
| 1411 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1412 | |
| 1413 | return _lyd_change_term(term, value, value_len, LY_VALUE_LYB); |
| 1414 | } |
| 1415 | |
| 1416 | LIBYANG_API_DEF LY_ERR |
| 1417 | lyd_change_term_canon(struct lyd_node *term, const char *val_str) |
| 1418 | { |
| 1419 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1420 | |
| 1421 | return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON); |
| 1422 | } |
| 1423 | |
| 1424 | LIBYANG_API_DEF LY_ERR |
| 1425 | lyd_change_meta(struct lyd_meta *meta, const char *val_str) |
| 1426 | { |
| 1427 | LY_ERR ret = LY_SUCCESS; |
| 1428 | struct lyd_meta *m2 = NULL; |
| 1429 | struct lyd_value val; |
| 1430 | ly_bool val_change; |
| 1431 | |
| 1432 | LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL); |
| 1433 | |
| 1434 | if (!val_str) { |
| 1435 | val_str = ""; |
| 1436 | } |
| 1437 | |
| 1438 | /* parse the new value into a new meta structure */ |
| 1439 | ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str, strlen(val_str), |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1440 | 0, 0, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, meta->parent ? meta->parent->schema : NULL, 0, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1441 | LY_CHECK_GOTO(ret, cleanup); |
| 1442 | |
| 1443 | /* compare original and new value */ |
| 1444 | if (lyd_compare_meta(meta, m2)) { |
| 1445 | /* values differ, switch them */ |
| 1446 | val = meta->value; |
| 1447 | meta->value = m2->value; |
| 1448 | m2->value = val; |
| 1449 | val_change = 1; |
| 1450 | } else { |
| 1451 | val_change = 0; |
| 1452 | } |
| 1453 | |
| 1454 | /* retrun value */ |
| 1455 | if (!val_change) { |
| 1456 | /* no change */ |
| 1457 | ret = LY_ENOT; |
| 1458 | } /* else value changed, LY_SUCCESS */ |
| 1459 | |
| 1460 | cleanup: |
| 1461 | lyd_free_meta_single(m2); |
| 1462 | return ret; |
| 1463 | } |
| 1464 | |
| 1465 | /** |
| 1466 | * @brief Update node value. |
| 1467 | * |
| 1468 | * @param[in] node Node to update. |
| 1469 | * @param[in] value New value to set. |
| 1470 | * @param[in] value_len Length of @p value. |
| 1471 | * @param[in] value_type Type of @p value for anydata/anyxml node. |
| 1472 | * @param[in] format Format of @p value. |
| 1473 | * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL. |
| 1474 | * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL. |
| 1475 | * @return LY_ERR value. |
| 1476 | */ |
| 1477 | static LY_ERR |
| 1478 | lyd_new_path_update(struct lyd_node *node, const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, |
| 1479 | LY_VALUE_FORMAT format, struct lyd_node **new_parent, struct lyd_node **new_node) |
| 1480 | { |
| 1481 | LY_ERR ret = LY_SUCCESS; |
| 1482 | struct lyd_node *new_any; |
| 1483 | |
| 1484 | switch (node->schema->nodetype) { |
| 1485 | case LYS_CONTAINER: |
| 1486 | case LYS_NOTIF: |
| 1487 | case LYS_RPC: |
| 1488 | case LYS_ACTION: |
| 1489 | case LYS_LIST: |
| 1490 | /* if it exists, there is nothing to update */ |
| 1491 | *new_parent = NULL; |
| 1492 | *new_node = NULL; |
| 1493 | break; |
| 1494 | case LYS_LEAFLIST: |
| 1495 | if (!lysc_is_dup_inst_list(node->schema)) { |
| 1496 | /* if it exists, there is nothing to update */ |
| 1497 | *new_parent = NULL; |
| 1498 | *new_node = NULL; |
| 1499 | break; |
| 1500 | } |
| 1501 | /* fallthrough */ |
| 1502 | case LYS_LEAF: |
| 1503 | ret = _lyd_change_term(node, value, value_len, format); |
| 1504 | if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) { |
| 1505 | /* there was an actual change (at least of the default flag) */ |
| 1506 | *new_parent = node; |
| 1507 | *new_node = node; |
| 1508 | ret = LY_SUCCESS; |
| 1509 | } else if (ret == LY_ENOT) { |
| 1510 | /* no change */ |
| 1511 | *new_parent = NULL; |
| 1512 | *new_node = NULL; |
| 1513 | ret = LY_SUCCESS; |
| 1514 | } /* else error */ |
| 1515 | break; |
| 1516 | case LYS_ANYDATA: |
| 1517 | case LYS_ANYXML: |
| 1518 | /* create a new any node */ |
| 1519 | LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any)); |
| 1520 | |
| 1521 | /* compare with the existing one */ |
| 1522 | if (lyd_compare_single(node, new_any, 0)) { |
| 1523 | /* not equal, switch values (so that we can use generic node free) */ |
| 1524 | ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value; |
| 1525 | ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type; |
| 1526 | ((struct lyd_node_any *)node)->value.str = value; |
| 1527 | ((struct lyd_node_any *)node)->value_type = value_type; |
| 1528 | |
| 1529 | *new_parent = node; |
| 1530 | *new_node = node; |
| 1531 | } else { |
| 1532 | /* they are equal */ |
| 1533 | *new_parent = NULL; |
| 1534 | *new_node = NULL; |
| 1535 | } |
| 1536 | lyd_free_tree(new_any); |
| 1537 | break; |
| 1538 | default: |
| 1539 | LOGINT(LYD_CTX(node)); |
| 1540 | ret = LY_EINT; |
| 1541 | break; |
| 1542 | } |
| 1543 | |
| 1544 | return ret; |
| 1545 | } |
| 1546 | |
| 1547 | static LY_ERR |
| 1548 | lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, size_t value_len, |
| 1549 | LY_VALUE_FORMAT format, uint32_t options) |
| 1550 | { |
| 1551 | LY_ERR r; |
| 1552 | struct ly_path_predicate *pred; |
| 1553 | struct lyd_value val; |
| 1554 | const struct lysc_node *schema = NULL; |
| 1555 | LY_ARRAY_COUNT_TYPE u, new_count; |
| 1556 | int create = 0; |
| 1557 | |
| 1558 | assert(path); |
| 1559 | |
| 1560 | /* go through all the compiled nodes */ |
| 1561 | LY_ARRAY_FOR(path, u) { |
| 1562 | schema = path[u].node; |
| 1563 | |
| 1564 | if (lysc_is_dup_inst_list(schema)) { |
Michal Vasko | 5de2154 | 2023-03-20 10:00:05 +0100 | [diff] [blame] | 1565 | if (!path[u].predicates || |
| 1566 | ((schema->nodetype == LYS_LEAFLIST) && (path[u].predicates[0].type == LY_PATH_PREDTYPE_LEAFLIST))) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1567 | /* creating a new key-less list or state leaf-list instance */ |
| 1568 | create = 1; |
| 1569 | new_count = u; |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1570 | } else if (path[u].predicates[0].type != LY_PATH_PREDTYPE_POSITION) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1571 | LOG_LOCSET(schema, NULL); |
Michal Vasko | 5de2154 | 2023-03-20 10:00:05 +0100 | [diff] [blame] | 1572 | LOGVAL(schema->module->ctx, LYVE_XPATH, "Invalid predicate for state %s \"%s\" in path \"%s\".", |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1573 | lys_nodetype2str(schema->nodetype), schema->name, str_path); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1574 | LOG_LOCBACK(1, 0); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1575 | return LY_EINVAL; |
| 1576 | } |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1577 | } else if ((schema->nodetype == LYS_LIST) && |
| 1578 | (!path[u].predicates || (path[u].predicates[0].type != LY_PATH_PREDTYPE_LIST))) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1579 | if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1580 | LOG_LOCSET(schema, NULL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1581 | LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".", |
| 1582 | lys_nodetype2str(schema->nodetype), schema->name, str_path); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1583 | LOG_LOCBACK(1, 0); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1584 | return LY_EINVAL; |
| 1585 | } /* else creating an opaque list */ |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1586 | } else if ((schema->nodetype == LYS_LEAFLIST) && |
| 1587 | (!path[u].predicates || (path[u].predicates[0].type != LY_PATH_PREDTYPE_LEAFLIST))) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1588 | r = LY_SUCCESS; |
| 1589 | if (options & LYD_NEW_PATH_OPAQ) { |
| 1590 | r = lyd_value_validate(NULL, schema, value, value_len, NULL, NULL, NULL); |
| 1591 | } |
| 1592 | if (!r) { |
| 1593 | /* try to store the value */ |
| 1594 | LY_CHECK_RET(lyd_value_store(schema->module->ctx, &val, ((struct lysc_node_leaflist *)schema)->type, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1595 | value, value_len, 0, 0, NULL, format, NULL, LYD_HINT_DATA, schema, NULL)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1596 | ++((struct lysc_type *)val.realtype)->refcount; |
| 1597 | |
| 1598 | /* store the new predicate so that it is used when searching for this instance */ |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1599 | LY_ARRAY_NEW_RET(schema->module->ctx, path[u].predicates, pred, LY_EMEM); |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1600 | pred->type = LY_PATH_PREDTYPE_LEAFLIST; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1601 | pred->value = val; |
| 1602 | } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */ |
| 1603 | } |
| 1604 | } |
| 1605 | |
| 1606 | if (create) { |
| 1607 | /* hide the nodes that should always be created so they are not found */ |
| 1608 | while (new_count < LY_ARRAY_COUNT(path)) { |
| 1609 | LY_ARRAY_DECREMENT(path); |
| 1610 | } |
| 1611 | } |
| 1612 | |
| 1613 | return LY_SUCCESS; |
| 1614 | } |
| 1615 | |
| 1616 | /** |
| 1617 | * @brief Create a new node in the data tree based on a path. All node types can be created. |
| 1618 | * |
| 1619 | * If @p path points to a list key, the key value from the predicate is used and @p value is ignored. |
| 1620 | * Also, if a leaf-list is being created and both a predicate is defined in @p path |
| 1621 | * and @p value is set, the predicate is preferred. |
| 1622 | * |
| 1623 | * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these |
| 1624 | * nodes, they are always created. |
| 1625 | * |
| 1626 | * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used, |
| 1627 | * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted |
| 1628 | * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases. |
| 1629 | * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| 1630 | * @param[in] ext Extension instance where the node being created is defined. This argument takes effect only for absolute |
| 1631 | * path or when the relative paths touches document root (top-level). In such cases the present extension instance replaces |
| 1632 | * searching for the appropriate module. |
| 1633 | * @param[in] path [Path](@ref howtoXPath) to create. |
| 1634 | * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an |
| 1635 | * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL. |
| 1636 | * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when |
| 1637 | * creating anyxml/anydata nodes. |
| 1638 | * @param[in] value_type Anyxml/anydata node @p value type. |
| 1639 | * @param[in] options Bitmask of options, see @ref pathoptions. |
| 1640 | * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node. |
| 1641 | * @param[out] new_node Optional last node created. |
| 1642 | * @return LY_ERR value. |
| 1643 | */ |
| 1644 | static LY_ERR |
| 1645 | lyd_new_path_(struct lyd_node *parent, const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, const char *path, |
| 1646 | const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, |
| 1647 | struct lyd_node **new_parent, struct lyd_node **new_node) |
| 1648 | { |
| 1649 | LY_ERR ret = LY_SUCCESS, r; |
| 1650 | struct lyxp_expr *exp = NULL; |
| 1651 | struct ly_path *p = NULL; |
| 1652 | struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent; |
| 1653 | const struct lysc_node *schema; |
| 1654 | const struct lyd_value *val = NULL; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1655 | ly_bool store_only = (options & LYD_NEW_VAL_STORE_ONLY) ? 1 : 0; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1656 | LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count = 0; |
| 1657 | LY_VALUE_FORMAT format; |
| 1658 | |
| 1659 | assert(parent || ctx); |
| 1660 | assert(path && ((path[0] == '/') || parent)); |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1661 | assert(!(options & LYD_NEW_VAL_BIN_VALUE) || !(options & LYD_NEW_VAL_CANON_VALUE)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1662 | |
| 1663 | if (!ctx) { |
| 1664 | ctx = LYD_CTX(parent); |
| 1665 | } |
| 1666 | if (value && !value_len) { |
| 1667 | value_len = strlen(value); |
| 1668 | } |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1669 | if (options & LYD_NEW_VAL_BIN_VALUE) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1670 | format = LY_VALUE_LYB; |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1671 | } else if (options & LYD_NEW_VAL_CANON_VALUE) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1672 | format = LY_VALUE_CANON; |
| 1673 | } else { |
| 1674 | format = LY_VALUE_JSON; |
| 1675 | } |
| 1676 | |
| 1677 | /* parse path */ |
Michal Vasko | 074d9a1 | 2023-06-22 08:23:41 +0200 | [diff] [blame] | 1678 | LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_FIRST, |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1679 | LY_PATH_PRED_SIMPLE, &exp), cleanup); |
| 1680 | |
| 1681 | /* compile path */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1682 | LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, lyd_node_schema(parent), ext, exp, options & LYD_NEW_VAL_OUTPUT ? |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1683 | LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p), cleanup); |
| 1684 | |
| 1685 | /* check the compiled path before searching existing nodes, it may be shortened */ |
| 1686 | orig_count = LY_ARRAY_COUNT(p); |
| 1687 | LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, value_len, format, options), cleanup); |
| 1688 | |
| 1689 | /* try to find any existing nodes in the path */ |
| 1690 | if (parent) { |
Michal Vasko | 838829d | 2023-10-09 16:06:43 +0200 | [diff] [blame] | 1691 | r = ly_path_eval_partial(p, parent, NULL, options & LYD_NEW_PATH_WITH_OPAQ, &path_idx, &node); |
Michal Vasko | f256051 | 2023-03-03 09:54:47 +0100 | [diff] [blame] | 1692 | if (r == LY_SUCCESS) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1693 | if (orig_count == LY_ARRAY_COUNT(p)) { |
| 1694 | /* the node exists, are we supposed to update it or is it just a default? */ |
| 1695 | if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) { |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1696 | LOG_LOCSET(NULL, node); |
Michal Vasko | a976492 | 2023-02-09 13:59:07 +0100 | [diff] [blame] | 1697 | LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists.", path); |
Michal Vasko | 7a26677 | 2024-01-23 11:02:38 +0100 | [diff] [blame] | 1698 | LOG_LOCBACK(0, 1); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1699 | ret = LY_EEXIST; |
| 1700 | goto cleanup; |
Michal Vasko | fabe9b9 | 2023-10-23 13:45:27 +0200 | [diff] [blame] | 1701 | } else if ((options & LYD_NEW_PATH_UPDATE) && lysc_is_key(node->schema)) { |
| 1702 | /* fine, the key value must not be changed and has to be in the predicate to be found */ |
| 1703 | goto cleanup; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1704 | } |
| 1705 | |
| 1706 | /* update the existing node */ |
| 1707 | ret = lyd_new_path_update(node, value, value_len, value_type, format, &nparent, &nnode); |
| 1708 | goto cleanup; |
| 1709 | } /* else we were not searching for the whole path */ |
Michal Vasko | f256051 | 2023-03-03 09:54:47 +0100 | [diff] [blame] | 1710 | } else if (r == LY_EINCOMPLETE) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1711 | /* some nodes were found, adjust the iterator to the next segment */ |
| 1712 | ++path_idx; |
Michal Vasko | f256051 | 2023-03-03 09:54:47 +0100 | [diff] [blame] | 1713 | } else if (r == LY_ENOTFOUND) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1714 | /* we will create the nodes from top-level, default behavior (absolute path), or from the parent (relative path) */ |
| 1715 | if (lysc_data_parent(p[0].node)) { |
| 1716 | node = parent; |
| 1717 | } |
| 1718 | } else { |
| 1719 | /* error */ |
Michal Vasko | f256051 | 2023-03-03 09:54:47 +0100 | [diff] [blame] | 1720 | ret = r; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1721 | goto cleanup; |
| 1722 | } |
| 1723 | } |
| 1724 | |
| 1725 | /* restore the full path for creating new nodes */ |
| 1726 | while (orig_count > LY_ARRAY_COUNT(p)) { |
| 1727 | LY_ARRAY_INCREMENT(p); |
| 1728 | } |
| 1729 | |
| 1730 | /* create all the non-existing nodes in a loop */ |
| 1731 | for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) { |
| 1732 | cur_parent = node; |
| 1733 | schema = p[path_idx].node; |
| 1734 | |
| 1735 | switch (schema->nodetype) { |
| 1736 | case LYS_LIST: |
| 1737 | if (lysc_is_dup_inst_list(schema)) { |
| 1738 | /* create key-less list instance */ |
| 1739 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup); |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1740 | } else if ((options & LYD_NEW_PATH_OPAQ) && !p[path_idx].predicates) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1741 | /* creating opaque list without keys */ |
| 1742 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, |
| 1743 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_VALUE_JSON, NULL, |
| 1744 | LYD_NODEHINT_LIST, &node), cleanup); |
| 1745 | } else { |
| 1746 | /* create standard list instance */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1747 | LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, NULL, store_only, &node), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1748 | } |
| 1749 | break; |
| 1750 | case LYS_CONTAINER: |
| 1751 | case LYS_NOTIF: |
| 1752 | case LYS_RPC: |
| 1753 | case LYS_ACTION: |
| 1754 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup); |
| 1755 | break; |
| 1756 | case LYS_LEAFLIST: |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1757 | if ((options & LYD_NEW_PATH_OPAQ) && |
| 1758 | (!p[path_idx].predicates || (p[path_idx].predicates[0].type != LY_PATH_PREDTYPE_LEAFLIST))) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1759 | /* we have not checked this only for dup-inst lists, otherwise it must be opaque */ |
| 1760 | r = LY_EVALID; |
| 1761 | if (lysc_is_dup_inst_list(schema)) { |
| 1762 | /* validate value */ |
| 1763 | r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL); |
| 1764 | } |
| 1765 | if (r && (r != LY_EINCOMPLETE)) { |
| 1766 | /* creating opaque leaf-list */ |
| 1767 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len, |
| 1768 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, |
| 1769 | LYD_NODEHINT_LEAFLIST, &node), cleanup); |
| 1770 | break; |
| 1771 | } |
| 1772 | } |
| 1773 | |
| 1774 | /* get value to set */ |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1775 | if (p[path_idx].predicates && (p[path_idx].predicates[0].type == LY_PATH_PREDTYPE_LEAFLIST)) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1776 | val = &p[path_idx].predicates[0].value; |
| 1777 | } |
| 1778 | |
| 1779 | /* create a leaf-list instance */ |
| 1780 | if (val) { |
Michal Vasko | 9018996 | 2023-02-28 12:10:34 +0100 | [diff] [blame] | 1781 | LY_CHECK_GOTO(ret = lyd_create_term2(schema, val, &node), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1782 | } else { |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1783 | LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &node), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1784 | } |
| 1785 | break; |
| 1786 | case LYS_LEAF: |
| 1787 | if (lysc_is_key(schema) && cur_parent->schema) { |
| 1788 | /* it must have been already created or some error will occur later */ |
| 1789 | lyd_find_sibling_schema(lyd_child(cur_parent), schema, &node); |
| 1790 | assert(node); |
| 1791 | goto next_iter; |
| 1792 | } |
| 1793 | |
| 1794 | if (options & LYD_NEW_PATH_OPAQ) { |
| 1795 | if (cur_parent && !cur_parent->schema) { |
| 1796 | /* always create opaque nodes for opaque parents */ |
| 1797 | r = LY_ENOT; |
| 1798 | } else { |
| 1799 | /* validate value */ |
| 1800 | r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL); |
| 1801 | } |
| 1802 | if (r && (r != LY_EINCOMPLETE)) { |
| 1803 | /* creating opaque leaf */ |
| 1804 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len, |
| 1805 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, 0, &node), |
| 1806 | cleanup); |
| 1807 | break; |
| 1808 | } |
| 1809 | } |
| 1810 | |
| 1811 | /* create a leaf instance */ |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1812 | LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, 0, store_only, NULL, format, NULL, LYD_HINT_DATA, NULL, &node), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1813 | break; |
| 1814 | case LYS_ANYDATA: |
| 1815 | case LYS_ANYXML: |
| 1816 | LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup); |
| 1817 | break; |
| 1818 | default: |
| 1819 | LOGINT(ctx); |
| 1820 | ret = LY_EINT; |
| 1821 | goto cleanup; |
| 1822 | } |
| 1823 | |
| 1824 | if (p[path_idx].ext) { |
| 1825 | node->flags |= LYD_EXT; |
| 1826 | } |
| 1827 | if (cur_parent) { |
| 1828 | /* connect to the parent */ |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1829 | lyd_insert_node(cur_parent, NULL, node, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1830 | } else if (parent) { |
| 1831 | /* connect to top-level siblings */ |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1832 | lyd_insert_node(NULL, &parent, node, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1833 | } |
| 1834 | |
| 1835 | next_iter: |
| 1836 | /* update remembered nodes */ |
| 1837 | if (!nparent) { |
| 1838 | nparent = node; |
| 1839 | } |
| 1840 | nnode = node; |
| 1841 | } |
| 1842 | |
| 1843 | cleanup: |
| 1844 | lyxp_expr_free(ctx, exp); |
| 1845 | if (p) { |
| 1846 | while (orig_count > LY_ARRAY_COUNT(p)) { |
| 1847 | LY_ARRAY_INCREMENT(p); |
| 1848 | } |
| 1849 | } |
| 1850 | ly_path_free(ctx, p); |
| 1851 | if (!ret) { |
| 1852 | /* set out params only on success */ |
| 1853 | if (new_parent) { |
| 1854 | *new_parent = nparent; |
| 1855 | } |
| 1856 | if (new_node) { |
| 1857 | *new_node = nnode; |
| 1858 | } |
| 1859 | } else { |
| 1860 | lyd_free_tree(nparent); |
| 1861 | } |
| 1862 | return ret; |
| 1863 | } |
| 1864 | |
| 1865 | LIBYANG_API_DEF LY_ERR |
| 1866 | lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options, |
| 1867 | struct lyd_node **node) |
| 1868 | { |
| 1869 | LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1870 | !(options & LYD_NEW_VAL_BIN_VALUE) || !(options & LYD_NEW_VAL_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1871 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
| 1872 | |
| 1873 | return lyd_new_path_(parent, ctx, NULL, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL); |
| 1874 | } |
| 1875 | |
| 1876 | LIBYANG_API_DEF LY_ERR |
| 1877 | lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
| 1878 | size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, |
| 1879 | struct lyd_node **new_node) |
| 1880 | { |
| 1881 | LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1882 | !(options & LYD_NEW_VAL_BIN_VALUE) || !(options & LYD_NEW_VAL_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1883 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
| 1884 | |
| 1885 | return lyd_new_path_(parent, ctx, NULL, path, value, value_len, value_type, options, new_parent, new_node); |
| 1886 | } |
| 1887 | |
| 1888 | LIBYANG_API_DEF LY_ERR |
| 1889 | lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path, const void *value, |
| 1890 | uint32_t options, struct lyd_node **node) |
| 1891 | { |
| 1892 | const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 1893 | |
| 1894 | LY_CHECK_ARG_RET(ctx, ext, path, (path[0] == '/') || parent, |
steweg | d4cde64 | 2024-02-21 08:34:16 +0100 | [diff] [blame^] | 1895 | !(options & LYD_NEW_VAL_BIN_VALUE) || !(options & LYD_NEW_VAL_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1896 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
| 1897 | |
| 1898 | return lyd_new_path_(parent, ctx, ext, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL); |
| 1899 | } |
| 1900 | |
| 1901 | LY_ERR |
| 1902 | lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1903 | const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_types, struct ly_set *ext_node, |
| 1904 | uint32_t impl_opts, struct lyd_node **diff) |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1905 | { |
| 1906 | LY_ERR ret; |
| 1907 | const struct lysc_node *iter = NULL; |
| 1908 | struct lyd_node *node = NULL; |
| 1909 | struct lyd_value **dflts; |
| 1910 | LY_ARRAY_COUNT_TYPE u; |
| 1911 | uint32_t getnext_opts; |
| 1912 | |
| 1913 | assert(first && (parent || sparent || mod)); |
| 1914 | |
| 1915 | if (!sparent && parent) { |
| 1916 | sparent = parent->schema; |
| 1917 | } |
| 1918 | |
| 1919 | getnext_opts = LYS_GETNEXT_WITHCHOICE; |
| 1920 | if (impl_opts & LYD_IMPLICIT_OUTPUT) { |
| 1921 | getnext_opts |= LYS_GETNEXT_OUTPUT; |
| 1922 | } |
| 1923 | |
| 1924 | while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) { |
| 1925 | if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) { |
| 1926 | continue; |
| 1927 | } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) { |
| 1928 | continue; |
| 1929 | } |
| 1930 | |
| 1931 | switch (iter->nodetype) { |
| 1932 | case LYS_CHOICE: |
| 1933 | node = lys_getnext_data(NULL, *first, NULL, iter, NULL); |
| 1934 | if (!node && ((struct lysc_node_choice *)iter)->dflt) { |
| 1935 | /* create default case data */ |
| 1936 | LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1937 | NULL, node_when, node_types, ext_node, impl_opts, diff)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1938 | } else if (node) { |
| 1939 | /* create any default data in the existing case */ |
| 1940 | assert(node->schema->parent->nodetype == LYS_CASE); |
| 1941 | LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_when, node_types, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1942 | ext_node, impl_opts, diff)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1943 | } |
| 1944 | break; |
| 1945 | case LYS_CONTAINER: |
| 1946 | if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
| 1947 | /* create default NP container */ |
| 1948 | LY_CHECK_RET(lyd_create_inner(iter, &node)); |
| 1949 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1950 | lyd_insert_node(parent, first, node, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1951 | |
| 1952 | if (lysc_has_when(iter) && node_when) { |
| 1953 | /* remember to resolve when */ |
| 1954 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
| 1955 | } |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1956 | if (ext_node) { |
| 1957 | /* store for ext instance node validation, if needed */ |
| 1958 | LY_CHECK_RET(lyd_validate_node_ext(node, ext_node)); |
| 1959 | } |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1960 | if (diff) { |
| 1961 | /* add into diff */ |
| 1962 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 1963 | } |
| 1964 | |
| 1965 | /* create any default children */ |
| 1966 | LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, node_when, node_types, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1967 | ext_node, impl_opts, diff)); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1968 | } |
| 1969 | break; |
| 1970 | case LYS_LEAF: |
| 1971 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt && |
| 1972 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
| 1973 | /* create default leaf */ |
| 1974 | ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node); |
| 1975 | if (ret == LY_EINCOMPLETE) { |
| 1976 | if (node_types) { |
| 1977 | /* remember to resolve type */ |
| 1978 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
| 1979 | } |
| 1980 | } else if (ret) { |
| 1981 | return ret; |
| 1982 | } |
| 1983 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 1984 | lyd_insert_node(parent, first, node, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1985 | |
| 1986 | if (lysc_has_when(iter) && node_when) { |
| 1987 | /* remember to resolve when */ |
| 1988 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
| 1989 | } |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 1990 | if (ext_node) { |
| 1991 | /* store for ext instance node validation, if needed */ |
| 1992 | LY_CHECK_RET(lyd_validate_node_ext(node, ext_node)); |
| 1993 | } |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 1994 | if (diff) { |
| 1995 | /* add into diff */ |
| 1996 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 1997 | } |
| 1998 | } |
| 1999 | break; |
| 2000 | case LYS_LEAFLIST: |
| 2001 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts && |
| 2002 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
| 2003 | /* create all default leaf-lists */ |
| 2004 | dflts = ((struct lysc_node_leaflist *)iter)->dflts; |
| 2005 | LY_ARRAY_FOR(dflts, u) { |
| 2006 | ret = lyd_create_term2(iter, dflts[u], &node); |
| 2007 | if (ret == LY_EINCOMPLETE) { |
| 2008 | if (node_types) { |
| 2009 | /* remember to resolve type */ |
| 2010 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
| 2011 | } |
| 2012 | } else if (ret) { |
| 2013 | return ret; |
| 2014 | } |
| 2015 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
aPiecek | 1462ab1 | 2024-02-07 09:13:29 +0100 | [diff] [blame] | 2016 | lyd_insert_node(parent, first, node, LYD_INSERT_NODE_DEFAULT); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2017 | |
| 2018 | if (lysc_has_when(iter) && node_when) { |
| 2019 | /* remember to resolve when */ |
| 2020 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
| 2021 | } |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 2022 | if (ext_node) { |
| 2023 | /* store for ext instance node validation, if needed */ |
| 2024 | LY_CHECK_RET(lyd_validate_node_ext(node, ext_node)); |
| 2025 | } |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2026 | if (diff) { |
| 2027 | /* add into diff */ |
| 2028 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 2029 | } |
| 2030 | } |
| 2031 | } |
| 2032 | break; |
| 2033 | default: |
| 2034 | /* without defaults */ |
| 2035 | break; |
| 2036 | } |
| 2037 | } |
| 2038 | |
| 2039 | return LY_SUCCESS; |
| 2040 | } |
| 2041 | |
| 2042 | LIBYANG_API_DEF LY_ERR |
| 2043 | lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff) |
| 2044 | { |
| 2045 | LY_ERR ret = LY_SUCCESS; |
| 2046 | struct lyd_node *node; |
| 2047 | struct ly_set node_when = {0}; |
| 2048 | |
| 2049 | LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL); |
| 2050 | if (diff) { |
| 2051 | *diff = NULL; |
| 2052 | } |
| 2053 | |
| 2054 | LYD_TREE_DFS_BEGIN(tree, node) { |
steweg | 0e1e509 | 2024-02-12 09:06:04 +0100 | [diff] [blame] | 2055 | if (node->schema && (node->schema->nodetype & LYD_NODE_INNER)) { |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2056 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, &node_when, NULL, |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 2057 | NULL, implicit_options, diff), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2058 | } |
| 2059 | |
| 2060 | LYD_TREE_DFS_END(tree, node); |
| 2061 | } |
| 2062 | |
| 2063 | /* resolve when and remove any invalid defaults */ |
Michal Vasko | 135719f | 2022-08-25 12:18:17 +0200 | [diff] [blame] | 2064 | ret = lyd_validate_unres(&tree, NULL, 0, &node_when, LYXP_IGNORE_WHEN, NULL, NULL, NULL, NULL, 0, diff); |
Michal Vasko | fbbea93 | 2022-06-07 11:00:55 +0200 | [diff] [blame] | 2065 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2066 | |
| 2067 | cleanup: |
| 2068 | ly_set_erase(&node_when, NULL); |
| 2069 | if (ret && diff) { |
| 2070 | lyd_free_all(*diff); |
| 2071 | *diff = NULL; |
| 2072 | } |
| 2073 | return ret; |
| 2074 | } |
| 2075 | |
| 2076 | LIBYANG_API_DEF LY_ERR |
| 2077 | lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff) |
| 2078 | { |
| 2079 | const struct lys_module *mod; |
| 2080 | struct lyd_node *d = NULL; |
| 2081 | uint32_t i = 0; |
| 2082 | LY_ERR ret = LY_SUCCESS; |
| 2083 | |
| 2084 | LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL); |
| 2085 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL); |
| 2086 | if (diff) { |
| 2087 | *diff = NULL; |
| 2088 | } |
| 2089 | if (!ctx) { |
| 2090 | ctx = LYD_CTX(*tree); |
| 2091 | } |
| 2092 | |
| 2093 | /* add nodes for each module one-by-one */ |
| 2094 | while ((mod = ly_ctx_get_module_iter(ctx, &i))) { |
| 2095 | if (!mod->implemented) { |
| 2096 | continue; |
| 2097 | } |
| 2098 | |
| 2099 | LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup); |
| 2100 | if (d) { |
| 2101 | /* merge into one diff */ |
| 2102 | lyd_insert_sibling(*diff, d, diff); |
| 2103 | |
| 2104 | d = NULL; |
| 2105 | } |
| 2106 | } |
| 2107 | |
| 2108 | cleanup: |
| 2109 | if (ret && diff) { |
| 2110 | lyd_free_all(*diff); |
| 2111 | *diff = NULL; |
| 2112 | } |
| 2113 | return ret; |
| 2114 | } |
| 2115 | |
| 2116 | LIBYANG_API_DEF LY_ERR |
| 2117 | lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, |
| 2118 | struct lyd_node **diff) |
| 2119 | { |
| 2120 | LY_ERR ret = LY_SUCCESS; |
| 2121 | struct lyd_node *root, *d = NULL; |
| 2122 | struct ly_set node_when = {0}; |
| 2123 | |
| 2124 | LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL); |
| 2125 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
| 2126 | if (diff) { |
| 2127 | *diff = NULL; |
| 2128 | } |
| 2129 | |
| 2130 | /* add all top-level defaults for this module */ |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 2131 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, &node_when, NULL, NULL, implicit_options, diff), |
| 2132 | cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2133 | |
| 2134 | /* resolve when and remove any invalid defaults */ |
Michal Vasko | fcbd78f | 2022-08-26 08:34:15 +0200 | [diff] [blame] | 2135 | LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, 0, &node_when, LYXP_IGNORE_WHEN, NULL, NULL, NULL, NULL, |
| 2136 | 0, diff), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2137 | |
| 2138 | /* process nested nodes */ |
| 2139 | LY_LIST_FOR(*tree, root) { |
Michal Vasko | f87fbdf | 2023-07-11 10:20:02 +0200 | [diff] [blame] | 2140 | LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup); |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2141 | |
Michal Vasko | f87fbdf | 2023-07-11 10:20:02 +0200 | [diff] [blame] | 2142 | if (d) { |
| 2143 | /* merge into one diff */ |
| 2144 | lyd_insert_sibling(*diff, d, diff); |
| 2145 | d = NULL; |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2146 | } |
| 2147 | } |
| 2148 | |
| 2149 | cleanup: |
| 2150 | ly_set_erase(&node_when, NULL); |
| 2151 | if (ret && diff) { |
| 2152 | lyd_free_all(*diff); |
| 2153 | *diff = NULL; |
| 2154 | } |
| 2155 | return ret; |
| 2156 | } |