Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2 | * @file tree_data.c |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 6cd9b6b | 2020-06-22 10:05:22 +0200 | [diff] [blame] | 4 | * @brief Data tree functions |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 5 | * |
Michal Vasko | 6cd9b6b | 2020-06-22 10:05:22 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2020 CESNET, z.s.p.o. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
| 16 | |
| 17 | #include "tree_data.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 18 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 19 | #include <assert.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 20 | #include <ctype.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 21 | #include <inttypes.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include <stdarg.h> |
| 23 | #include <stdint.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 26 | #include <string.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 27 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 28 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 29 | #include "compat.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 30 | #include "context.h" |
| 31 | #include "dict.h" |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 32 | #include "diff.h" |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 33 | #include "hash_table.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 34 | #include "in.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 35 | #include "in_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 36 | #include "log.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 37 | #include "parser_data.h" |
| 38 | #include "parser_internal.h" |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 39 | #include "path.h" |
Radek Krejci | 0aa1f70 | 2021-04-01 16:16:19 +0200 | [diff] [blame] | 40 | #include "plugins.h" |
Radek Krejci | f1ca0ac | 2021-04-12 16:00:06 +0200 | [diff] [blame] | 41 | #include "plugins_exts/metadata.h" |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 42 | #include "plugins_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 43 | #include "plugins_types.h" |
| 44 | #include "set.h" |
| 45 | #include "tree.h" |
| 46 | #include "tree_data_internal.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 47 | #include "tree_edit.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 48 | #include "tree_schema.h" |
| 49 | #include "tree_schema_internal.h" |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 50 | #include "validation.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 51 | #include "xml.h" |
| 52 | #include "xpath.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 53 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 54 | static LY_ERR lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 55 | struct lyd_node **match); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 56 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 57 | LY_ERR |
Radek Krejci | f994364 | 2021-04-26 10:18:21 +0200 | [diff] [blame] | 58 | lyd_value_store(const struct ly_ctx *ctx, struct lyd_value *val, const struct lysc_type *type, const void *value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 59 | size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 60 | const struct lysc_node *ctx_node, ly_bool *incomplete) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 61 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 62 | LY_ERR ret; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 63 | struct ly_err_item *err = NULL; |
Radek Krejci | 0b01330 | 2021-03-29 15:22:32 +0200 | [diff] [blame] | 64 | uint32_t options = (dynamic && *dynamic ? LYPLG_TYPE_STORE_DYNAMIC : 0); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 65 | |
Michal Vasko | 62ed865 | 2021-04-28 09:38:37 +0200 | [diff] [blame] | 66 | if (!value) { |
| 67 | value = ""; |
| 68 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 69 | if (incomplete) { |
| 70 | *incomplete = 0; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 71 | } |
| 72 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 73 | ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, NULL, &err); |
Radek Iša | 96b2de1 | 2021-02-16 10:32:57 +0100 | [diff] [blame] | 74 | if (dynamic) { |
| 75 | *dynamic = 0; |
| 76 | } |
| 77 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 78 | if (ret == LY_EINCOMPLETE) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 79 | if (incomplete) { |
| 80 | *incomplete = 1; |
| 81 | } |
| 82 | } else if (ret) { |
| 83 | if (err) { |
aPiecek | 4204b61 | 2021-05-03 09:06:16 +0200 | [diff] [blame] | 84 | LOGVAL_ERRITEM(ctx, err); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 85 | ly_err_free(err); |
| 86 | } else { |
Michal Vasko | 509d721 | 2022-02-21 08:47:23 +0100 | [diff] [blame] | 87 | LOGVAL(ctx, LYVE_OTHER, "Storing value failed."); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 88 | } |
| 89 | return ret; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 90 | } |
| 91 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 92 | return LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 95 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 96 | lyd_value_validate_incomplete(const struct ly_ctx *ctx, const struct lysc_type *type, struct lyd_value *val, |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 97 | const struct lyd_node *ctx_node, const struct lyd_node *tree) |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 98 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 99 | LY_ERR ret; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 100 | struct ly_err_item *err = NULL; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 101 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 102 | assert(type->plugin->validate); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 103 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 104 | ret = type->plugin->validate(ctx, type, ctx_node, tree, val, &err); |
| 105 | if (ret) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 106 | if (err) { |
aPiecek | 4204b61 | 2021-05-03 09:06:16 +0200 | [diff] [blame] | 107 | LOGVAL_ERRITEM(ctx, err); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 108 | ly_err_free(err); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 109 | } else { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 110 | LOGVAL(ctx, LYVE_OTHER, "Resolving value \"%s\" failed.", type->plugin->print(ctx, val, LY_VALUE_CANON, |
| 111 | NULL, NULL, NULL)); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 112 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 113 | return ret; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 116 | return LY_SUCCESS; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 117 | } |
| 118 | |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 119 | LY_ERR |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 120 | lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 121 | LY_VALUE_FORMAT format, void *prefix_data) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 122 | { |
| 123 | LY_ERR rc = LY_SUCCESS; |
| 124 | struct ly_err_item *err = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 125 | struct lyd_value storage; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 126 | struct lysc_type *type; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 127 | |
| 128 | LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL); |
| 129 | |
| 130 | if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 131 | LOGARG(ctx, node); |
| 132 | return LY_EINVAL; |
| 133 | } |
| 134 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 135 | type = ((struct lysc_node_leaf *)node)->type; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 136 | rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, 0, format, prefix_data, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 137 | LYD_HINT_SCHEMA, node, &storage, NULL, &err); |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 138 | if (rc == LY_EINCOMPLETE) { |
| 139 | /* actually success since we do not provide the context tree and call validation with |
| 140 | * LY_TYPE_OPTS_INCOMPLETE_DATA */ |
| 141 | rc = LY_SUCCESS; |
| 142 | } else if (rc && err) { |
| 143 | if (ctx) { |
| 144 | /* log only in case the ctx was provided as input parameter */ |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 145 | LOG_LOCSET(NULL, NULL, err->path, NULL); |
aPiecek | 4204b61 | 2021-05-03 09:06:16 +0200 | [diff] [blame] | 146 | LOGVAL_ERRITEM(ctx, err); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 147 | LOG_LOCBACK(0, 0, 1, 0); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 148 | } |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 149 | ly_err_free(err); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 150 | } |
| 151 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 152 | if (!rc) { |
| 153 | type->plugin->free(ctx ? ctx : node->module->ctx, &storage); |
| 154 | } |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 155 | return rc; |
| 156 | } |
| 157 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 158 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 159 | lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value, size_t value_len, |
| 160 | const struct lyd_node *ctx_node, const struct lysc_type **realtype, const char **canonical) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 161 | { |
| 162 | LY_ERR rc; |
| 163 | struct ly_err_item *err = NULL; |
| 164 | struct lysc_type *type; |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 165 | struct lyd_value val = {0}; |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 166 | ly_bool stored = 0, log = 1; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 167 | |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 168 | LY_CHECK_ARG_RET(ctx, schema, value, LY_EINVAL); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 169 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 170 | if (!ctx) { |
| 171 | ctx = schema->module->ctx; |
| 172 | log = 0; |
| 173 | } |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 174 | type = ((struct lysc_node_leaf *)schema)->type; |
| 175 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 176 | /* store */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 177 | rc = type->plugin->store(ctx, type, value, value_len, 0, LY_VALUE_JSON, NULL, |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 178 | LYD_HINT_DATA, schema, &val, NULL, &err); |
| 179 | if (!rc || (rc == LY_EINCOMPLETE)) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 180 | stored = 1; |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 181 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 182 | |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 183 | if (ctx_node && (rc == LY_EINCOMPLETE)) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 184 | /* resolve */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 185 | rc = type->plugin->validate(ctx, type, ctx_node, ctx_node, &val, &err); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 188 | if (rc && (rc != LY_EINCOMPLETE) && err) { |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 189 | if (log) { |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 190 | /* log error */ |
| 191 | if (err->path) { |
| 192 | LOG_LOCSET(NULL, NULL, err->path, NULL); |
| 193 | } else if (ctx_node) { |
| 194 | LOG_LOCSET(NULL, ctx_node, NULL, NULL); |
| 195 | } else { |
| 196 | LOG_LOCSET(schema, NULL, NULL, NULL); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 197 | } |
aPiecek | 4204b61 | 2021-05-03 09:06:16 +0200 | [diff] [blame] | 198 | LOGVAL_ERRITEM(ctx, err); |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 199 | if (err->path) { |
| 200 | LOG_LOCBACK(0, 0, 1, 0); |
| 201 | } else if (ctx_node) { |
| 202 | LOG_LOCBACK(0, 1, 0, 0); |
| 203 | } else { |
| 204 | LOG_LOCBACK(1, 0, 0, 0); |
| 205 | } |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 206 | } |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 207 | ly_err_free(err); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 208 | } |
| 209 | |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 210 | if (!rc || (rc == LY_EINCOMPLETE)) { |
| 211 | if (realtype) { |
| 212 | /* return realtype */ |
| 213 | if (val.realtype->basetype == LY_TYPE_UNION) { |
| 214 | *realtype = val.subvalue->value.realtype; |
| 215 | } else { |
| 216 | *realtype = val.realtype; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | if (canonical) { |
| 221 | /* return canonical value */ |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 222 | lydict_insert(ctx, val.realtype->plugin->print(ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), 0, canonical); |
Michal Vasko | 29134f8 | 2020-11-13 18:03:20 +0100 | [diff] [blame] | 223 | } |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 224 | } |
| 225 | |
Michal Vasko | aebbce0 | 2021-04-06 09:23:37 +0200 | [diff] [blame] | 226 | if (stored) { |
| 227 | /* free value */ |
| 228 | type->plugin->free(ctx ? ctx : schema->module->ctx, &val); |
| 229 | } |
| 230 | return rc; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 231 | } |
| 232 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 233 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 234 | lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 235 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 236 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 237 | struct ly_ctx *ctx; |
| 238 | struct lysc_type *type; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 239 | struct lyd_value val = {0}; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 240 | |
| 241 | LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL); |
| 242 | |
| 243 | ctx = node->schema->module->ctx; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 244 | type = ((struct lysc_node_leaf *)node->schema)->type; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 245 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 246 | /* store the value */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 247 | LOG_LOCSET(node->schema, &node->node, NULL, NULL); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 248 | ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, node->schema, NULL); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 249 | LOG_LOCBACK(1, 1, 0, 0); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 250 | LY_CHECK_RET(ret); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 251 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 252 | /* compare values */ |
| 253 | ret = type->plugin->compare(&node->value, &val); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 254 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 255 | type->plugin->free(ctx, &val); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 256 | return ret; |
| 257 | } |
| 258 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 259 | LIBYANG_API_DEF ly_bool |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 260 | lyd_is_default(const struct lyd_node *node) |
| 261 | { |
| 262 | const struct lysc_node_leaf *leaf; |
| 263 | const struct lysc_node_leaflist *llist; |
| 264 | const struct lyd_node_term *term; |
| 265 | LY_ARRAY_COUNT_TYPE u; |
| 266 | |
Michal Vasko | 39eb688 | 2021-09-16 08:53:13 +0200 | [diff] [blame] | 267 | if (!(node->schema->nodetype & LYD_NODE_TERM)) { |
| 268 | return 0; |
| 269 | } |
| 270 | |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 271 | term = (const struct lyd_node_term *)node; |
| 272 | |
| 273 | if (node->schema->nodetype == LYS_LEAF) { |
| 274 | leaf = (const struct lysc_node_leaf *)node->schema; |
| 275 | if (!leaf->dflt) { |
| 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | /* compare with the default value */ |
Michal Vasko | 39eb688 | 2021-09-16 08:53:13 +0200 | [diff] [blame] | 280 | if (!leaf->type->plugin->compare(&term->value, leaf->dflt)) { |
| 281 | return 1; |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 282 | } |
| 283 | } else { |
| 284 | llist = (const struct lysc_node_leaflist *)node->schema; |
| 285 | if (!llist->dflts) { |
| 286 | return 0; |
| 287 | } |
| 288 | |
| 289 | LY_ARRAY_FOR(llist->dflts, u) { |
| 290 | /* compare with each possible default value */ |
Michal Vasko | 39eb688 | 2021-09-16 08:53:13 +0200 | [diff] [blame] | 291 | if (!llist->type->plugin->compare(&term->value, llist->dflts[u])) { |
| 292 | return 1; |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 293 | } |
| 294 | } |
| 295 | } |
| 296 | |
Michal Vasko | 39eb688 | 2021-09-16 08:53:13 +0200 | [diff] [blame] | 297 | return 0; |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 298 | } |
| 299 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 300 | static LYD_FORMAT |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 301 | lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 302 | { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 303 | if (!format && (in->type == LY_IN_FILEPATH)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 304 | /* unknown format - try to detect it from filename's suffix */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 305 | const char *path = in->method.fpath.filepath; |
| 306 | size_t len = strlen(path); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 307 | |
| 308 | /* ignore trailing whitespaces */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 309 | for ( ; len > 0 && isspace(path[len - 1]); len--) {} |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 310 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 311 | if ((len >= LY_XML_SUFFIX_LEN + 1) && |
| 312 | !strncmp(&path[len - LY_XML_SUFFIX_LEN], LY_XML_SUFFIX, LY_XML_SUFFIX_LEN)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 313 | format = LYD_XML; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 314 | } else if ((len >= LY_JSON_SUFFIX_LEN + 1) && |
| 315 | !strncmp(&path[len - LY_JSON_SUFFIX_LEN], LY_JSON_SUFFIX, LY_JSON_SUFFIX_LEN)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 316 | format = LYD_JSON; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 317 | } else if ((len >= LY_LYB_SUFFIX_LEN + 1) && |
| 318 | !strncmp(&path[len - LY_LYB_SUFFIX_LEN], LY_LYB_SUFFIX, LY_LYB_SUFFIX_LEN)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 319 | format = LYD_LYB; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 320 | } /* else still unknown */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 321 | } |
| 322 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 323 | return format; |
| 324 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 325 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 326 | /** |
| 327 | * @brief Parse YANG data into a data tree. |
| 328 | * |
| 329 | * @param[in] ctx libyang context. |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 330 | * @param[in] ext Optional extenion instance to parse data following the schema tree specified in the extension instance |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 331 | * @param[in] parent Parent to connect the parsed nodes to, if any. |
| 332 | * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL. |
| 333 | * @param[in] in Input handle to read the input from. |
| 334 | * @param[in] format Expected format of the data in @p in. |
| 335 | * @param[in] parse_opts Options for parser. |
| 336 | * @param[in] val_opts Options for validation. |
| 337 | * @param[out] op Optional pointer to the parsed operation, if any. |
| 338 | * @return LY_ERR value. |
| 339 | */ |
| 340 | static LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 341 | lyd_parse(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, struct lyd_node **first_p, |
| 342 | struct ly_in *in, LYD_FORMAT format, uint32_t parse_opts, uint32_t val_opts, struct lyd_node **op) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 343 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 344 | LY_ERR rc = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 345 | struct lyd_ctx *lydctx = NULL; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 346 | struct ly_set parsed = {0}; |
| 347 | struct lyd_node *first; |
| 348 | uint32_t i; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 349 | ly_bool subtree_sibling = 0; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 350 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 351 | assert(ctx && (parent || first_p)); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 352 | |
| 353 | format = lyd_parse_get_format(in, format); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 354 | if (first_p) { |
| 355 | *first_p = NULL; |
| 356 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 357 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 358 | /* remember input position */ |
| 359 | in->func_start = in->current; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 360 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 361 | /* parse the data */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 362 | switch (format) { |
| 363 | case LYD_XML: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 364 | rc = lyd_parse_xml(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, NULL, &parsed, |
| 365 | &subtree_sibling, &lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 366 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 367 | case LYD_JSON: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 368 | rc = lyd_parse_json(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &parsed, |
| 369 | &subtree_sibling, &lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 370 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 371 | case LYD_LYB: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 372 | rc = lyd_parse_lyb(ctx, ext, parent, first_p, in, parse_opts, val_opts, LYD_TYPE_DATA_YANG, &parsed, |
| 373 | &subtree_sibling, &lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 374 | break; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 375 | case LYD_UNKNOWN: |
Michal Vasko | d74978f | 2021-02-12 11:59:36 +0100 | [diff] [blame] | 376 | LOGARG(ctx, format); |
| 377 | rc = LY_EINVAL; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 378 | break; |
| 379 | } |
| 380 | LY_CHECK_GOTO(rc, cleanup); |
| 381 | |
| 382 | if (parent) { |
| 383 | /* get first top-level sibling */ |
| 384 | for (first = parent; first->parent; first = lyd_parent(first)) {} |
| 385 | first = lyd_first_sibling(first); |
| 386 | first_p = &first; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 387 | } |
| 388 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 389 | if (!(parse_opts & LYD_PARSE_ONLY)) { |
| 390 | /* validate data */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 391 | rc = lyd_validate(first_p, NULL, ctx, val_opts, 0, &lydctx->node_when, &lydctx->node_types, &lydctx->meta_types, |
| 392 | &lydctx->ext_val, NULL); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 393 | LY_CHECK_GOTO(rc, cleanup); |
| 394 | } |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 395 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 396 | /* set the operation node */ |
| 397 | if (op) { |
| 398 | *op = lydctx->op_node; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | cleanup: |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 402 | if (lydctx) { |
| 403 | lydctx->free(lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 404 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 405 | if (rc) { |
| 406 | if (parent) { |
| 407 | /* free all the parsed subtrees */ |
| 408 | for (i = 0; i < parsed.count; ++i) { |
| 409 | lyd_free_tree(parsed.dnodes[i]); |
| 410 | } |
| 411 | } else { |
| 412 | /* free everything */ |
| 413 | lyd_free_all(*first_p); |
| 414 | *first_p = NULL; |
| 415 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 416 | } else if (subtree_sibling) { |
| 417 | rc = LY_ENOT; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 418 | } |
| 419 | ly_set_erase(&parsed, NULL); |
| 420 | return rc; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 421 | } |
| 422 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 423 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 424 | lyd_parse_ext_data(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format, |
| 425 | uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree) |
| 426 | { |
| 427 | const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 428 | |
| 429 | LY_CHECK_ARG_RET(ctx, ext, in, parent || tree, LY_EINVAL); |
| 430 | LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL); |
| 431 | LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL); |
| 432 | |
| 433 | return lyd_parse(ctx, ext, parent, tree, in, format, parse_options, validate_options, NULL); |
| 434 | } |
| 435 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 436 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 437 | lyd_parse_data(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format, |
| 438 | uint32_t parse_options, uint32_t validate_options, struct lyd_node **tree) |
| 439 | { |
| 440 | LY_CHECK_ARG_RET(ctx, ctx, in, parent || tree, LY_EINVAL); |
| 441 | LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL); |
| 442 | LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL); |
| 443 | |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 444 | return lyd_parse(ctx, NULL, parent, tree, in, format, parse_options, validate_options, NULL); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 445 | } |
| 446 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 447 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 448 | lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options, |
| 449 | uint32_t validate_options, struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 450 | { |
| 451 | LY_ERR ret; |
| 452 | struct ly_in *in; |
| 453 | |
| 454 | LY_CHECK_RET(ly_in_new_memory(data, &in)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 455 | ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 456 | |
| 457 | ly_in_free(in, 0); |
| 458 | return ret; |
| 459 | } |
| 460 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 461 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 462 | lyd_parse_data_fd(const struct ly_ctx *ctx, int fd, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 463 | struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 464 | { |
| 465 | LY_ERR ret; |
| 466 | struct ly_in *in; |
| 467 | |
| 468 | LY_CHECK_RET(ly_in_new_fd(fd, &in)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 469 | ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 470 | |
| 471 | ly_in_free(in, 0); |
| 472 | return ret; |
| 473 | } |
| 474 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 475 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 476 | lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options, |
| 477 | uint32_t validate_options, struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 478 | { |
| 479 | LY_ERR ret; |
| 480 | struct ly_in *in; |
| 481 | |
| 482 | LY_CHECK_RET(ly_in_new_filepath(path, 0, &in)); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 483 | ret = lyd_parse_data(ctx, NULL, in, format, parse_options, validate_options, tree); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 484 | |
| 485 | ly_in_free(in, 0); |
| 486 | return ret; |
| 487 | } |
| 488 | |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 489 | /** |
| 490 | * @brief Parse YANG data into an operation data tree, in case the extension instance is specified, keep the searching |
| 491 | * for schema nodes locked inside the extension instance. |
| 492 | * |
| 493 | * At least one of @p parent, @p tree, or @p op must always be set. |
| 494 | * |
| 495 | * Specific @p data_type values have different parameter meaning as follows: |
| 496 | * - ::LYD_TYPE_RPC_NETCONF: |
| 497 | * - @p parent - must be NULL, the whole RPC is expected; |
| 498 | * - @p format - must be ::LYD_XML, NETCONF supports only this format; |
| 499 | * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as |
| 500 | * a separate opaque data tree, even if the function fails, this may be returned; |
| 501 | * - @p op - must be provided, the RPC/action data tree itself will be returned here, pointing to the operation; |
| 502 | * |
| 503 | * - ::LYD_TYPE_NOTIF_NETCONF: |
| 504 | * - @p parent - must be NULL, the whole notification is expected; |
| 505 | * - @p format - must be ::LYD_XML, NETCONF supports only this format; |
| 506 | * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as |
| 507 | * a separate opaque data tree, even if the function fails, this may be returned; |
| 508 | * - @p op - must be provided, the notification data tree itself will be returned here, pointing to the operation; |
| 509 | * |
| 510 | * - ::LYD_TYPE_REPLY_NETCONF: |
| 511 | * - @p parent - must be set, pointing to the invoked RPC operation (RPC or action) node; |
| 512 | * - @p format - must be ::LYD_XML, NETCONF supports only this format; |
| 513 | * - @p tree - must be provided, all the NETCONF-specific XML envelopes will be returned here as |
| 514 | * a separate opaque data tree, even if the function fails, this may be returned; |
| 515 | * - @p op - must be NULL, the reply is appended to the RPC; |
| 516 | * Note that there are 3 kinds of NETCONF replies - ok, error, and data. Only data reply appends any nodes to the RPC. |
| 517 | * |
| 518 | * @param[in] ctx libyang context. |
| 519 | * @param[in] ext Extension instance providing the specific schema tree to match with the data being parsed. |
| 520 | * @param[in] parent Optional parent to connect the parsed nodes to. |
| 521 | * @param[in] in Input handle to read the input from. |
| 522 | * @param[in] format Expected format of the data in @p in. |
| 523 | * @param[in] data_type Expected operation to parse (@ref datatype). |
| 524 | * @param[out] tree Optional full parsed data tree. If @p parent is set, set to NULL. |
| 525 | * @param[out] op Optional parsed operation node. |
| 526 | * @return LY_ERR value. |
| 527 | * @return LY_ENOT if @p data_type is a NETCONF message and the root XML element is not the expected one. |
| 528 | */ |
| 529 | static LY_ERR |
| 530 | lyd_parse_op_(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent, |
| 531 | struct ly_in *in, LYD_FORMAT format, enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 532 | { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 533 | LY_ERR rc = LY_SUCCESS; |
| 534 | struct lyd_ctx *lydctx = NULL; |
| 535 | struct ly_set parsed = {0}; |
| 536 | struct lyd_node *first = NULL, *envp = NULL; |
| 537 | uint32_t i, parse_opts, val_opts; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 538 | |
Michal Vasko | 27fb026 | 2021-02-23 09:42:01 +0100 | [diff] [blame] | 539 | if (!ctx) { |
| 540 | ctx = LYD_CTX(parent); |
| 541 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 542 | if (tree) { |
| 543 | *tree = NULL; |
| 544 | } |
| 545 | if (op) { |
| 546 | *op = NULL; |
| 547 | } |
| 548 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 549 | format = lyd_parse_get_format(in, format); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 550 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 551 | /* remember input position */ |
| 552 | in->func_start = in->current; |
| 553 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 554 | /* check params based on the data type */ |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 555 | if ((data_type == LYD_TYPE_RPC_NETCONF) || (data_type == LYD_TYPE_NOTIF_NETCONF)) { |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 556 | LY_CHECK_ARG_RET(ctx, format == LYD_XML, !parent, tree, op, LY_EINVAL); |
Michal Vasko | 1e4c68e | 2021-02-18 15:03:01 +0100 | [diff] [blame] | 557 | } else if (data_type == LYD_TYPE_REPLY_NETCONF) { |
| 558 | LY_CHECK_ARG_RET(ctx, format == LYD_XML, parent, parent->schema->nodetype & (LYS_RPC | LYS_ACTION), tree, !op, |
| 559 | LY_EINVAL); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 560 | } |
Michal Vasko | 140ede9 | 2022-05-10 09:27:30 +0200 | [diff] [blame] | 561 | parse_opts = LYD_PARSE_ONLY | LYD_PARSE_STRICT; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 562 | val_opts = 0; |
| 563 | |
| 564 | /* parse the data */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 565 | switch (format) { |
| 566 | case LYD_XML: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 567 | rc = lyd_parse_xml(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &envp, &parsed, NULL, &lydctx); |
Michal Vasko | 299d5d1 | 2021-02-16 16:36:37 +0100 | [diff] [blame] | 568 | if (rc && envp) { |
| 569 | /* special situation when the envelopes were parsed successfully */ |
| 570 | if (tree) { |
| 571 | *tree = envp; |
Michal Vasko | 73792a1 | 2022-05-10 09:28:45 +0200 | [diff] [blame] | 572 | } else { |
| 573 | lyd_free_all(envp); |
Michal Vasko | 299d5d1 | 2021-02-16 16:36:37 +0100 | [diff] [blame] | 574 | } |
Michal Vasko | 73792a1 | 2022-05-10 09:28:45 +0200 | [diff] [blame] | 575 | goto cleanup; |
Michal Vasko | 299d5d1 | 2021-02-16 16:36:37 +0100 | [diff] [blame] | 576 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 577 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 578 | case LYD_JSON: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 579 | rc = lyd_parse_json(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, NULL, &lydctx); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 580 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 581 | case LYD_LYB: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 582 | rc = lyd_parse_lyb(ctx, ext, parent, &first, in, parse_opts, val_opts, data_type, &parsed, NULL, &lydctx); |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 583 | break; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 584 | case LYD_UNKNOWN: |
Michal Vasko | d74978f | 2021-02-12 11:59:36 +0100 | [diff] [blame] | 585 | LOGARG(ctx, format); |
| 586 | rc = LY_EINVAL; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 587 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 588 | } |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 589 | LY_CHECK_GOTO(rc, cleanup); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 590 | |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 591 | /* set out params correctly */ |
| 592 | if (tree) { |
| 593 | if (envp) { |
| 594 | /* special out param meaning */ |
| 595 | *tree = envp; |
| 596 | } else { |
| 597 | *tree = parent ? NULL : first; |
| 598 | } |
| 599 | } |
| 600 | if (op) { |
| 601 | *op = lydctx->op_node; |
| 602 | } |
| 603 | |
| 604 | cleanup: |
| 605 | if (lydctx) { |
| 606 | lydctx->free(lydctx); |
| 607 | } |
| 608 | if (rc) { |
Michal Vasko | 73792a1 | 2022-05-10 09:28:45 +0200 | [diff] [blame] | 609 | /* free all the parsed nodes */ |
| 610 | if (parsed.count) { |
| 611 | i = parsed.count; |
| 612 | do { |
| 613 | --i; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 614 | lyd_free_tree(parsed.dnodes[i]); |
Michal Vasko | 73792a1 | 2022-05-10 09:28:45 +0200 | [diff] [blame] | 615 | } while (i); |
| 616 | } |
| 617 | if (tree && ((format != LYD_XML) || !envp)) { |
| 618 | *tree = NULL; |
| 619 | } |
| 620 | if (op) { |
| 621 | *op = NULL; |
Michal Vasko | e066574 | 2021-02-11 11:08:44 +0100 | [diff] [blame] | 622 | } |
| 623 | } |
| 624 | ly_set_erase(&parsed, NULL); |
| 625 | return rc; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 626 | } |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 627 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 628 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 629 | lyd_parse_op(const struct ly_ctx *ctx, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format, |
| 630 | enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op) |
| 631 | { |
| 632 | LY_CHECK_ARG_RET(ctx, ctx || parent, in, data_type, parent || tree || op, LY_EINVAL); |
| 633 | |
| 634 | return lyd_parse_op_(ctx, NULL, parent, in, format, data_type, tree, op); |
| 635 | } |
| 636 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 637 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 638 | lyd_parse_ext_op(const struct lysc_ext_instance *ext, struct lyd_node *parent, struct ly_in *in, LYD_FORMAT format, |
| 639 | enum lyd_type data_type, struct lyd_node **tree, struct lyd_node **op) |
| 640 | { |
| 641 | const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 642 | |
| 643 | LY_CHECK_ARG_RET(ctx, ext, in, data_type, parent || tree || op, LY_EINVAL); |
| 644 | |
| 645 | return lyd_parse_op_(ctx, ext, parent, in, format, data_type, tree, op); |
| 646 | } |
| 647 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 648 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 649 | lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 650 | LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, ly_bool *incomplete, struct lyd_node **node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 651 | { |
| 652 | LY_ERR ret; |
| 653 | struct lyd_node_term *term; |
| 654 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 655 | assert(schema->nodetype & LYD_NODE_TERM); |
| 656 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 657 | term = calloc(1, sizeof *term); |
| 658 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 659 | |
| 660 | term->schema = schema; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 661 | term->prev = &term->node; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 662 | term->flags = LYD_NEW; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 663 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 664 | LOG_LOCSET(schema, NULL, NULL, NULL); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 665 | ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value, |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 666 | value_len, dynamic, format, prefix_data, hints, schema, incomplete); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 667 | LOG_LOCBACK(1, 0, 0, 0); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 668 | LY_CHECK_ERR_RET(ret, free(term), ret); |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 669 | lyd_hash(&term->node); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 670 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 671 | *node = &term->node; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 672 | return ret; |
| 673 | } |
| 674 | |
| 675 | LY_ERR |
| 676 | lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node) |
| 677 | { |
| 678 | LY_ERR ret; |
| 679 | struct lyd_node_term *term; |
| 680 | struct lysc_type *type; |
| 681 | |
| 682 | assert(schema->nodetype & LYD_NODE_TERM); |
Radek Krejci | 224d4b4 | 2021-04-23 13:54:59 +0200 | [diff] [blame] | 683 | assert(val && val->realtype); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 684 | |
| 685 | term = calloc(1, sizeof *term); |
| 686 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 687 | |
| 688 | term->schema = schema; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 689 | term->prev = &term->node; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 690 | term->flags = LYD_NEW; |
| 691 | |
| 692 | type = ((struct lysc_node_leaf *)schema)->type; |
| 693 | ret = type->plugin->duplicate(schema->module->ctx, val, &term->value); |
| 694 | if (ret) { |
| 695 | LOGERR(schema->module->ctx, ret, "Value duplication failed."); |
| 696 | free(term); |
| 697 | return ret; |
| 698 | } |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 699 | lyd_hash(&term->node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 700 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 701 | *node = &term->node; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 702 | return ret; |
| 703 | } |
| 704 | |
| 705 | LY_ERR |
| 706 | lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node) |
| 707 | { |
| 708 | struct lyd_node_inner *in; |
| 709 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 710 | assert(schema->nodetype & LYD_NODE_INNER); |
| 711 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 712 | in = calloc(1, sizeof *in); |
| 713 | LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM); |
| 714 | |
| 715 | in->schema = schema; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 716 | in->prev = &in->node; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 717 | in->flags = LYD_NEW; |
Michal Vasko | 3383be7 | 2020-11-03 17:15:31 +0100 | [diff] [blame] | 718 | if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) { |
| 719 | in->flags |= LYD_DEFAULT; |
| 720 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 721 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 722 | /* do not hash list with keys, we need them for the hash */ |
| 723 | if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 724 | lyd_hash(&in->node); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 725 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 726 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 727 | *node = &in->node; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 728 | return LY_SUCCESS; |
| 729 | } |
| 730 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 731 | LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 732 | lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 733 | { |
| 734 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 735 | struct lyd_node *list = NULL, *key; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 736 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 737 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 738 | assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS)); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 739 | |
| 740 | /* create list */ |
| 741 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup); |
| 742 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 743 | LOG_LOCSET(NULL, list, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 744 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 745 | /* create and insert all the keys */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 746 | LY_ARRAY_FOR(predicates, u) { |
| 747 | LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 748 | lyd_insert_node(list, NULL, key, 0); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 749 | } |
| 750 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 751 | /* hash having all the keys */ |
| 752 | lyd_hash(list); |
| 753 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 754 | /* success */ |
| 755 | *node = list; |
| 756 | list = NULL; |
| 757 | |
| 758 | cleanup: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 759 | LOG_LOCBACK(0, 1, 0, 0); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 760 | lyd_free_tree(list); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 761 | return ret; |
| 762 | } |
| 763 | |
| 764 | static LY_ERR |
| 765 | lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node) |
| 766 | { |
| 767 | LY_ERR ret = LY_SUCCESS; |
| 768 | struct lyxp_expr *expr = NULL; |
| 769 | uint16_t exp_idx = 0; |
| 770 | enum ly_path_pred_type pred_type = 0; |
| 771 | struct ly_path_predicate *predicates = NULL; |
| 772 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 773 | LOG_LOCSET(schema, NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 774 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 775 | /* parse keys */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 776 | LY_CHECK_GOTO(ret = ly_path_parse_predicate(schema->module->ctx, NULL, keys, keys_len, LY_PATH_PREFIX_OPTIONAL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 777 | LY_PATH_PRED_KEYS, &expr), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 778 | |
| 779 | /* compile them */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 780 | LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_VALUE_JSON, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 781 | NULL, &predicates, &pred_type), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 782 | |
| 783 | /* create the list node */ |
| 784 | LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup); |
| 785 | |
| 786 | cleanup: |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 787 | LOG_LOCBACK(1, 0, 0, 0); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 788 | lyxp_expr_free(schema->module->ctx, expr); |
Michal Vasko | f7e16e2 | 2020-10-21 09:24:39 +0200 | [diff] [blame] | 789 | ly_path_predicates_free(schema->module->ctx, pred_type, predicates); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 790 | return ret; |
| 791 | } |
| 792 | |
| 793 | LY_ERR |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 794 | lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, ly_bool use_value, |
| 795 | struct lyd_node **node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 796 | { |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 797 | LY_ERR ret; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 798 | struct lyd_node_any *any; |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 799 | union lyd_any_value any_val; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 800 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 801 | assert(schema->nodetype & LYD_NODE_ANY); |
| 802 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 803 | any = calloc(1, sizeof *any); |
| 804 | LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM); |
| 805 | |
| 806 | any->schema = schema; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 807 | any->prev = &any->node; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 808 | any->flags = LYD_NEW; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 809 | |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 810 | if (use_value) { |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 811 | switch (value_type) { |
| 812 | case LYD_ANYDATA_DATATREE: |
| 813 | any->value.tree = (void *)value; |
| 814 | break; |
| 815 | case LYD_ANYDATA_STRING: |
| 816 | case LYD_ANYDATA_XML: |
| 817 | case LYD_ANYDATA_JSON: |
Michal Vasko | 0d00e46 | 2022-02-24 16:24:40 +0100 | [diff] [blame] | 818 | LY_CHECK_ERR_RET(lydict_insert_zc(schema->module->ctx, (void *)value, &any->value.str), free(any), LY_EMEM); |
Michal Vasko | 742a5b1 | 2022-02-24 16:07:27 +0100 | [diff] [blame] | 819 | break; |
| 820 | case LYD_ANYDATA_LYB: |
| 821 | any->value.mem = (void *)value; |
| 822 | break; |
| 823 | } |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 824 | any->value_type = value_type; |
| 825 | } else { |
| 826 | any_val.str = value; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 827 | ret = lyd_any_copy_value(&any->node, &any_val, value_type); |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 828 | LY_CHECK_ERR_RET(ret, free(any), ret); |
| 829 | } |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 830 | lyd_hash(&any->node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 831 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 832 | *node = &any->node; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 833 | return LY_SUCCESS; |
| 834 | } |
| 835 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 836 | LY_ERR |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 837 | lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len, |
| 838 | const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 839 | LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints, struct lyd_node **node) |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 840 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 841 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 842 | struct lyd_node_opaq *opaq; |
| 843 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 844 | assert(ctx && name && name_len && format); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 845 | |
Michal Vasko | 4cd0a60 | 2021-05-31 11:11:58 +0200 | [diff] [blame] | 846 | if (!value_len && (!dynamic || !*dynamic)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 847 | value = ""; |
| 848 | } |
| 849 | |
| 850 | opaq = calloc(1, sizeof *opaq); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 851 | LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 852 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 853 | opaq->prev = &opaq->node; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 854 | LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &opaq->name.name), finish); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 855 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 856 | if (pref_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 857 | LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, pref_len, &opaq->name.prefix), finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 858 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 859 | if (module_key_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 860 | LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &opaq->name.module_ns), finish); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 861 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 862 | if (dynamic && *dynamic) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 863 | LY_CHECK_GOTO(ret = lydict_insert_zc(ctx, (char *)value, &opaq->value), finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 864 | *dynamic = 0; |
| 865 | } else { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 866 | LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &opaq->value), finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 867 | } |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 868 | |
| 869 | opaq->format = format; |
| 870 | opaq->val_prefix_data = val_prefix_data; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 871 | opaq->hints = hints; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 872 | opaq->ctx = ctx; |
| 873 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 874 | finish: |
| 875 | if (ret) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 876 | lyd_free_tree(&opaq->node); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 877 | ly_free_prefix_data(format, val_prefix_data); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 878 | } else { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 879 | *node = &opaq->node; |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 880 | } |
| 881 | return ret; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 882 | } |
| 883 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 884 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 6524389 | 2020-12-04 16:26:21 +0100 | [diff] [blame] | 885 | lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, |
| 886 | struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 887 | { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 888 | LY_ERR r; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 889 | struct lyd_node *ret = NULL; |
| 890 | const struct lysc_node *schema; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 891 | struct lysc_ext_instance *ext = NULL; |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 892 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 893 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 894 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 895 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 896 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 897 | if (!module) { |
| 898 | module = parent->schema->module; |
| 899 | } |
| 900 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 901 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 902 | LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 903 | if (!schema && parent) { |
| 904 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 905 | strlen(name), &schema, &ext); |
| 906 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 907 | } |
| 908 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (container, notif, RPC, or action) \"%s\" not found.", |
| 909 | name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 910 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 911 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 912 | if (ext) { |
| 913 | ret->flags |= LYD_EXT; |
| 914 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 915 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 916 | lyd_insert_node(parent, NULL, ret, 0); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 917 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 918 | |
| 919 | if (node) { |
| 920 | *node = ret; |
| 921 | } |
| 922 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 923 | } |
| 924 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 925 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | dd2a766 | 2021-03-12 11:26:34 +0100 | [diff] [blame] | 926 | lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node) |
| 927 | { |
| 928 | struct lyd_node *ret = NULL; |
| 929 | const struct lysc_node *schema; |
| 930 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 931 | |
| 932 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 933 | |
| 934 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, 0); |
| 935 | if (!schema) { |
| 936 | if (ext->argument) { |
| 937 | LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance \"%s\" of extension %s.", |
| 938 | name, ext->argument, ext->def->name); |
| 939 | } else { |
| 940 | LOGERR(ctx, LY_EINVAL, "Inner node (not a list) \"%s\" not found in instance of extension %s.", |
| 941 | name, ext->def->name); |
| 942 | } |
| 943 | return LY_ENOTFOUND; |
| 944 | } |
| 945 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 946 | |
| 947 | *node = ret; |
| 948 | |
| 949 | return LY_SUCCESS; |
| 950 | } |
| 951 | |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 952 | /** |
| 953 | * @brief Create a new list node in the data tree. |
| 954 | * |
| 955 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| 956 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| 957 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| 958 | * @param[in] format Format of key values. |
| 959 | * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are |
| 960 | * taken into consideration. Otherwise, the output's data node is going to be created. |
| 961 | * @param[out] node Optional created node. |
| 962 | * @param[in] ap Ordered key values of the new list instance, all must be set. For ::LY_VALUE_LYB, every value must |
| 963 | * be followed by the value length. |
| 964 | * @return LY_ERR value. |
| 965 | */ |
| 966 | static LY_ERR |
| 967 | _lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, LY_VALUE_FORMAT format, |
| 968 | ly_bool output, struct lyd_node **node, va_list ap) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 969 | { |
| 970 | struct lyd_node *ret = NULL, *key; |
| 971 | const struct lysc_node *schema, *key_s; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 972 | struct lysc_ext_instance *ext = NULL; |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 973 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 974 | const void *key_val; |
| 975 | uint32_t key_len; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 976 | LY_ERR r, rc = LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 977 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 978 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 979 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 980 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 981 | if (!module) { |
| 982 | module = parent->schema->module; |
| 983 | } |
| 984 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 985 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 986 | if (!schema && parent) { |
| 987 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 988 | strlen(name), &schema, &ext); |
| 989 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 990 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 991 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 992 | |
| 993 | /* create list inner node */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 994 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 995 | |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 996 | /* create and insert all the keys */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 997 | for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 998 | if (format == LY_VALUE_LYB) { |
| 999 | key_val = va_arg(ap, const void *); |
| 1000 | key_len = va_arg(ap, uint32_t); |
| 1001 | } else { |
| 1002 | key_val = va_arg(ap, const char *); |
| 1003 | key_len = key_val ? strlen((char *)key_val) : 0; |
| 1004 | } |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1005 | |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 1006 | rc = lyd_create_term(key_s, key_val, key_len, NULL, format, NULL, LYD_HINT_DATA, NULL, &key); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1007 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1008 | lyd_insert_node(ret, NULL, key, 1); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1009 | } |
| 1010 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1011 | if (ext) { |
| 1012 | ret->flags |= LYD_EXT; |
| 1013 | } |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1014 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1015 | lyd_insert_node(parent, NULL, ret, 0); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | cleanup: |
| 1019 | if (rc) { |
| 1020 | lyd_free_tree(ret); |
| 1021 | ret = NULL; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1022 | } else if (node) { |
| 1023 | *node = ret; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1024 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1025 | return rc; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1026 | } |
| 1027 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1028 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 1029 | lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, |
| 1030 | struct lyd_node **node, ...) |
| 1031 | { |
| 1032 | LY_ERR rc; |
| 1033 | va_list ap; |
| 1034 | |
| 1035 | va_start(ap, node); |
| 1036 | |
| 1037 | rc = _lyd_new_list(parent, module, name, LY_VALUE_JSON, output, node, ap); |
| 1038 | |
| 1039 | va_end(ap); |
| 1040 | return rc; |
| 1041 | } |
| 1042 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1043 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 1044 | lyd_new_list_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, |
| 1045 | struct lyd_node **node, ...) |
| 1046 | { |
| 1047 | LY_ERR rc; |
| 1048 | va_list ap; |
| 1049 | |
| 1050 | va_start(ap, node); |
| 1051 | |
| 1052 | rc = _lyd_new_list(parent, module, name, LY_VALUE_LYB, output, node, ap); |
| 1053 | |
| 1054 | va_end(ap); |
| 1055 | return rc; |
| 1056 | } |
| 1057 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1058 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 208e6d6 | 2021-06-28 11:23:50 +0200 | [diff] [blame] | 1059 | lyd_new_list_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, |
| 1060 | struct lyd_node **node, ...) |
| 1061 | { |
| 1062 | LY_ERR rc; |
| 1063 | va_list ap; |
| 1064 | |
| 1065 | va_start(ap, node); |
| 1066 | |
| 1067 | rc = _lyd_new_list(parent, module, name, LY_VALUE_CANON, output, node, ap); |
| 1068 | |
| 1069 | va_end(ap); |
| 1070 | return rc; |
| 1071 | } |
| 1072 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1073 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 8247bae | 2021-03-12 11:47:02 +0100 | [diff] [blame] | 1074 | lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node, ...) |
| 1075 | { |
| 1076 | struct lyd_node *ret = NULL, *key; |
| 1077 | const struct lysc_node *schema, *key_s; |
| 1078 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 1079 | va_list ap; |
| 1080 | const char *key_val; |
| 1081 | LY_ERR rc = LY_SUCCESS; |
| 1082 | |
| 1083 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 1084 | |
| 1085 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYS_LIST, 0); |
| 1086 | if (!schema) { |
| 1087 | if (ext->argument) { |
| 1088 | LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance \"%s\" of extension %s.", |
| 1089 | name, ext->argument, ext->def->name); |
| 1090 | } else { |
| 1091 | LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 1092 | } |
| 1093 | return LY_ENOTFOUND; |
| 1094 | } |
| 1095 | /* create list inner node */ |
| 1096 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 1097 | |
| 1098 | va_start(ap, node); |
| 1099 | |
| 1100 | /* create and insert all the keys */ |
| 1101 | for (key_s = lysc_node_child(schema); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
| 1102 | key_val = va_arg(ap, const char *); |
| 1103 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1104 | rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, |
Radek Krejci | 8247bae | 2021-03-12 11:47:02 +0100 | [diff] [blame] | 1105 | NULL, &key); |
| 1106 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1107 | lyd_insert_node(ret, NULL, key, 1); |
Radek Krejci | 8247bae | 2021-03-12 11:47:02 +0100 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | cleanup: |
| 1111 | va_end(ap); |
| 1112 | if (rc) { |
| 1113 | lyd_free_tree(ret); |
| 1114 | ret = NULL; |
Radek Krejci | 8247bae | 2021-03-12 11:47:02 +0100 | [diff] [blame] | 1115 | } |
Radek Krejci | 8919fbd | 2021-03-15 09:35:25 +0100 | [diff] [blame] | 1116 | *node = ret; |
Radek Krejci | 8247bae | 2021-03-12 11:47:02 +0100 | [diff] [blame] | 1117 | return rc; |
| 1118 | } |
| 1119 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1120 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1121 | lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys, |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 1122 | ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1123 | { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1124 | LY_ERR r; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1125 | struct lyd_node *ret = NULL; |
| 1126 | const struct lysc_node *schema; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1127 | struct lysc_ext_instance *ext = NULL; |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1128 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1129 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 1130 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1131 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1132 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1133 | if (!module) { |
| 1134 | module = parent->schema->module; |
| 1135 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1136 | if (!keys) { |
| 1137 | keys = ""; |
| 1138 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1139 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1140 | /* find schema node */ |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 1141 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1142 | if (!schema && parent) { |
| 1143 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, strlen(name), |
| 1144 | &schema, &ext); |
| 1145 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 1146 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1147 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "List node \"%s\" not found.", name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1148 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1149 | if ((schema->flags & LYS_KEYLESS) && !keys[0]) { |
| 1150 | /* key-less list */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1151 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1152 | } else { |
| 1153 | /* create the list node */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1154 | LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1155 | } |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1156 | if (ext) { |
| 1157 | ret->flags |= LYD_EXT; |
| 1158 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1159 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1160 | lyd_insert_node(parent, NULL, ret, 0); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1161 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1162 | |
| 1163 | if (node) { |
| 1164 | *node = ret; |
| 1165 | } |
| 1166 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1167 | } |
| 1168 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1169 | /** |
| 1170 | * @brief Create a new term node in the data tree. |
| 1171 | * |
| 1172 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| 1173 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| 1174 | * @param[in] name Schema node name of the new data node. The node can be ::LYS_LEAF or ::LYS_LEAFLIST. |
| 1175 | * @param[in] value Value of the node being created. |
| 1176 | * @param[in] value_len Length of @p value. |
| 1177 | * @param[in] format Format of @p value. |
| 1178 | * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are |
| 1179 | * taken into consideration. Otherwise, the output's data node is going to be created. |
| 1180 | * @param[out] node Optional created node. |
| 1181 | * @return LY_ERR value. |
| 1182 | */ |
| 1183 | static LY_ERR |
| 1184 | _lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
| 1185 | size_t value_len, LY_VALUE_FORMAT format, ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1186 | { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1187 | LY_ERR r; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1188 | struct lyd_node *ret = NULL; |
| 1189 | const struct lysc_node *schema; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1190 | struct lysc_ext_instance *ext = NULL; |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1191 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1192 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 1193 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1194 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1195 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1196 | if (!module) { |
| 1197 | module = parent->schema->module; |
| 1198 | } |
| 1199 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 1200 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1201 | if (!schema && parent) { |
| 1202 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 1203 | strlen(name), &schema, &ext); |
| 1204 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 1205 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1206 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found.", name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1207 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1208 | LY_CHECK_RET(lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL, &ret)); |
| 1209 | if (ext) { |
| 1210 | ret->flags |= LYD_EXT; |
| 1211 | } |
Michal Vasko | cbff3e9 | 2020-05-27 12:56:41 +0200 | [diff] [blame] | 1212 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1213 | lyd_insert_node(parent, NULL, ret, 0); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1214 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1215 | |
| 1216 | if (node) { |
| 1217 | *node = ret; |
| 1218 | } |
| 1219 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1220 | } |
| 1221 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1222 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1223 | lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
| 1224 | ly_bool output, struct lyd_node **node) |
| 1225 | { |
| 1226 | return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON, output, node); |
| 1227 | } |
| 1228 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1229 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1230 | lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
| 1231 | size_t value_len, ly_bool output, struct lyd_node **node) |
| 1232 | { |
| 1233 | return _lyd_new_term(parent, module, name, value, value_len, LY_VALUE_LYB, output, node); |
| 1234 | } |
| 1235 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1236 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1237 | lyd_new_term_canon(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
| 1238 | ly_bool output, struct lyd_node **node) |
| 1239 | { |
| 1240 | return _lyd_new_term(parent, module, name, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON, output, node); |
| 1241 | } |
| 1242 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1243 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 8a5afc2 | 2021-03-12 11:10:47 +0100 | [diff] [blame] | 1244 | lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const char *val_str, struct lyd_node **node) |
| 1245 | { |
| 1246 | LY_ERR rc; |
| 1247 | struct lyd_node *ret = NULL; |
| 1248 | const struct lysc_node *schema; |
| 1249 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 1250 | |
| 1251 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 1252 | |
| 1253 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_TERM, 0); |
| 1254 | if (!schema) { |
| 1255 | if (ext->argument) { |
| 1256 | LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance \"%s\" of extension %s.", |
| 1257 | name, ext->argument, ext->def->name); |
| 1258 | } else { |
| 1259 | LOGERR(ctx, LY_EINVAL, "Term node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 1260 | } |
| 1261 | return LY_ENOTFOUND; |
| 1262 | } |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1263 | rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, NULL, &ret); |
Radek Krejci | 8a5afc2 | 2021-03-12 11:10:47 +0100 | [diff] [blame] | 1264 | LY_CHECK_RET(rc); |
| 1265 | |
| 1266 | *node = ret; |
| 1267 | |
| 1268 | return LY_SUCCESS; |
| 1269 | } |
| 1270 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1271 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 2a4ab2b | 2021-03-04 15:52:40 +0100 | [diff] [blame] | 1272 | lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
| 1273 | ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1274 | { |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1275 | LY_ERR r; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1276 | struct lyd_node *ret = NULL; |
| 1277 | const struct lysc_node *schema; |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1278 | struct lysc_ext_instance *ext = NULL; |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1279 | const struct ly_ctx *ctx = parent ? LYD_CTX(parent) : (module ? module->ctx : NULL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1280 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 1281 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1282 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1283 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1284 | if (!module) { |
| 1285 | module = parent->schema->module; |
| 1286 | } |
| 1287 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 1288 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_ANY, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1289 | if (!schema && parent) { |
| 1290 | r = ly_nested_ext_schema(parent, NULL, module->name, strlen(module->name), LY_VALUE_JSON, NULL, name, |
| 1291 | strlen(name), &schema, &ext); |
| 1292 | LY_CHECK_RET(r && (r != LY_ENOT), r); |
| 1293 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1294 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found.", name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1295 | |
Michal Vasko | 2a4ab2b | 2021-03-04 15:52:40 +0100 | [diff] [blame] | 1296 | LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret)); |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 1297 | if (ext) { |
| 1298 | ret->flags |= LYD_EXT; |
| 1299 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1300 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1301 | lyd_insert_node(parent, NULL, ret, 0); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1302 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1303 | |
| 1304 | if (node) { |
| 1305 | *node = ret; |
| 1306 | } |
| 1307 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 1308 | } |
| 1309 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1310 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 0b963da | 2021-03-12 13:23:44 +0100 | [diff] [blame] | 1311 | lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value, ly_bool use_value, |
| 1312 | LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node) |
| 1313 | { |
| 1314 | struct lyd_node *ret = NULL; |
| 1315 | const struct lysc_node *schema; |
| 1316 | struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 1317 | |
| 1318 | LY_CHECK_ARG_RET(ctx, ext, node, name, LY_EINVAL); |
| 1319 | |
| 1320 | schema = lysc_ext_find_node(ext, NULL, name, 0, LYD_NODE_ANY, 0); |
| 1321 | if (!schema) { |
| 1322 | if (ext->argument) { |
| 1323 | LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance \"%s\" of extension %s.", |
| 1324 | name, ext->argument, ext->def->name); |
| 1325 | } else { |
| 1326 | LOGERR(ctx, LY_EINVAL, "Any node \"%s\" not found in instance of extension %s.", name, ext->def->name); |
| 1327 | } |
| 1328 | return LY_ENOTFOUND; |
| 1329 | } |
| 1330 | LY_CHECK_RET(lyd_create_any(schema, value, value_type, use_value, &ret)); |
| 1331 | |
| 1332 | *node = ret; |
| 1333 | |
| 1334 | return LY_SUCCESS; |
| 1335 | } |
| 1336 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1337 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1338 | lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 1339 | const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta) |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1340 | { |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1341 | const char *prefix, *tmp; |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1342 | size_t pref_len, name_len; |
| 1343 | |
Michal Vasko | 2b5344c | 2021-02-26 10:12:05 +0100 | [diff] [blame] | 1344 | LY_CHECK_ARG_RET(ctx, ctx || parent, name, module || strchr(name, ':'), parent || meta, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1345 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | 2b5344c | 2021-02-26 10:12:05 +0100 | [diff] [blame] | 1346 | if (!ctx) { |
| 1347 | ctx = LYD_CTX(parent); |
| 1348 | } |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1349 | |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1350 | if (parent && !parent->schema) { |
Michal Vasko | 33b4fab | 2021-03-04 15:56:12 +0100 | [diff] [blame] | 1351 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata \"%s\" to an opaque node \"%s\".", name, LYD_NAME(parent)); |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1352 | return LY_EINVAL; |
| 1353 | } |
Michal Vasko | 610553d | 2020-11-18 18:15:05 +0100 | [diff] [blame] | 1354 | if (meta) { |
| 1355 | *meta = NULL; |
| 1356 | } |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1357 | |
| 1358 | /* parse the name */ |
| 1359 | tmp = name; |
| 1360 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1361 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1362 | return LY_EINVAL; |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | /* find the module */ |
| 1366 | if (prefix) { |
Radek Krejci | 0ad51f1 | 2020-07-16 12:08:12 +0200 | [diff] [blame] | 1367 | module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len); |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 1368 | LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", (int)pref_len, prefix), LY_ENOTFOUND); |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | /* set value if none */ |
| 1372 | if (!val_str) { |
| 1373 | val_str = ""; |
| 1374 | } |
| 1375 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1376 | return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_VALUE_JSON, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1377 | NULL, LYD_HINT_DATA, parent ? parent->schema : NULL, clear_dflt, NULL); |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1378 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1379 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1380 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1381 | lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr, |
| 1382 | struct lyd_meta **meta) |
| 1383 | { |
| 1384 | const struct lys_module *mod; |
| 1385 | |
| 1386 | LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1387 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1388 | |
| 1389 | if (parent && !parent->schema) { |
| 1390 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name); |
| 1391 | return LY_EINVAL; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1392 | } |
Michal Vasko | 610553d | 2020-11-18 18:15:05 +0100 | [diff] [blame] | 1393 | if (meta) { |
| 1394 | *meta = NULL; |
| 1395 | } |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1396 | |
| 1397 | switch (attr->format) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1398 | case LY_VALUE_XML: |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1399 | mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1400 | if (!mod) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1401 | LOGERR(ctx, LY_EINVAL, "Module with namespace \"%s\" not found.", attr->name.module_ns); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1402 | return LY_ENOTFOUND; |
| 1403 | } |
| 1404 | break; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1405 | case LY_VALUE_JSON: |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1406 | mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1407 | if (!mod) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1408 | LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1409 | return LY_ENOTFOUND; |
| 1410 | } |
| 1411 | break; |
| 1412 | default: |
| 1413 | LOGINT_RET(ctx); |
| 1414 | } |
| 1415 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1416 | return lyd_create_meta(parent, meta, mod, attr->name.name, strlen(attr->name.name), attr->value, strlen(attr->value), |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1417 | NULL, attr->format, attr->val_prefix_data, attr->hints, parent ? parent->schema : NULL, clear_dflt, NULL); |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1418 | } |
| 1419 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1420 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1421 | lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 1422 | const char *prefix, const char *module_name, struct lyd_node **node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1423 | { |
| 1424 | struct lyd_node *ret = NULL; |
Radek Krejci | 07a5596 | 2021-03-02 20:16:43 +0100 | [diff] [blame] | 1425 | |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 1426 | LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, !prefix || !strcmp(prefix, module_name), LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1427 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1428 | |
| 1429 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1430 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1431 | } |
| 1432 | if (!value) { |
| 1433 | value = ""; |
| 1434 | } |
| 1435 | |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 1436 | LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_name, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1437 | strlen(module_name), value, strlen(value), NULL, LY_VALUE_JSON, NULL, 0, &ret)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1438 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1439 | lyd_insert_node(parent, NULL, ret, 1); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1440 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1441 | |
| 1442 | if (node) { |
| 1443 | *node = ret; |
| 1444 | } |
| 1445 | return LY_SUCCESS; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1446 | } |
| 1447 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1448 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1449 | lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 1450 | const char *prefix, const char *module_ns, struct lyd_node **node) |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1451 | { |
| 1452 | struct lyd_node *ret = NULL; |
| 1453 | |
| 1454 | LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_ns, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 1455 | LY_CHECK_CTX_EQUAL_RET(ctx, parent ? LYD_CTX(parent) : NULL, LY_EINVAL); |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1456 | |
| 1457 | if (!ctx) { |
| 1458 | ctx = LYD_CTX(parent); |
| 1459 | } |
| 1460 | if (!value) { |
| 1461 | value = ""; |
| 1462 | } |
| 1463 | |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 1464 | LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), prefix, prefix ? strlen(prefix) : 0, module_ns, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1465 | strlen(module_ns), value, strlen(value), NULL, LY_VALUE_XML, NULL, 0, &ret)); |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1466 | if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 1467 | lyd_insert_node(parent, NULL, ret, 1); |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1468 | } |
| 1469 | |
| 1470 | if (node) { |
| 1471 | *node = ret; |
| 1472 | } |
| 1473 | return LY_SUCCESS; |
| 1474 | } |
| 1475 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1476 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1477 | lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1478 | struct lyd_attr **attr) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1479 | { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1480 | struct lyd_attr *ret = NULL; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1481 | const struct ly_ctx *ctx; |
| 1482 | const char *prefix, *tmp; |
Michal Vasko | 51d21b8 | 2020-11-13 18:03:54 +0100 | [diff] [blame] | 1483 | size_t pref_len, name_len, mod_len; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1484 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1485 | LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1486 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1487 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1488 | |
| 1489 | /* parse the name */ |
| 1490 | tmp = name; |
| 1491 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
Michal Vasko | b69b68c | 2021-02-17 11:18:16 +0100 | [diff] [blame] | 1492 | LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1493 | return LY_EVALID; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1494 | } |
| 1495 | |
Michal Vasko | e137fc4 | 2021-07-22 11:53:13 +0200 | [diff] [blame] | 1496 | if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) { |
| 1497 | /* not a prefix but special name */ |
| 1498 | name = prefix; |
| 1499 | name_len += 1 + pref_len; |
| 1500 | prefix = NULL; |
| 1501 | pref_len = 0; |
| 1502 | } |
| 1503 | |
Michal Vasko | 51d21b8 | 2020-11-13 18:03:54 +0100 | [diff] [blame] | 1504 | /* get the module */ |
| 1505 | if (module_name) { |
| 1506 | mod_len = strlen(module_name); |
| 1507 | } else { |
| 1508 | module_name = prefix; |
| 1509 | mod_len = pref_len; |
| 1510 | } |
| 1511 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1512 | /* set value if none */ |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1513 | if (!value) { |
| 1514 | value = ""; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1515 | } |
| 1516 | |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1517 | LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1518 | strlen(value), NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA)); |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1519 | |
| 1520 | if (attr) { |
| 1521 | *attr = ret; |
| 1522 | } |
| 1523 | return LY_SUCCESS; |
| 1524 | } |
| 1525 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1526 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1527 | lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value, |
| 1528 | struct lyd_attr **attr) |
| 1529 | { |
| 1530 | struct lyd_attr *ret = NULL; |
| 1531 | const struct ly_ctx *ctx; |
| 1532 | const char *prefix, *tmp; |
| 1533 | size_t pref_len, name_len; |
| 1534 | |
| 1535 | LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL); |
| 1536 | |
| 1537 | ctx = LYD_CTX(parent); |
| 1538 | |
| 1539 | /* parse the name */ |
| 1540 | tmp = name; |
| 1541 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1542 | LOGERR(ctx, LY_EINVAL, "Attribute name \"%s\" is not valid.", name); |
| 1543 | return LY_EVALID; |
| 1544 | } |
| 1545 | |
Michal Vasko | e137fc4 | 2021-07-22 11:53:13 +0200 | [diff] [blame] | 1546 | if ((pref_len == 3) && !strncmp(prefix, "xml", 3)) { |
| 1547 | /* not a prefix but special name */ |
| 1548 | name = prefix; |
| 1549 | name_len += 1 + pref_len; |
| 1550 | prefix = NULL; |
| 1551 | pref_len = 0; |
| 1552 | } |
| 1553 | |
Michal Vasko | 8d65f85 | 2021-02-17 11:28:13 +0100 | [diff] [blame] | 1554 | /* set value if none */ |
| 1555 | if (!value) { |
| 1556 | value = ""; |
| 1557 | } |
| 1558 | |
| 1559 | LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_ns, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1560 | module_ns ? strlen(module_ns) : 0, value, strlen(value), NULL, LY_VALUE_XML, NULL, LYD_HINT_DATA)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1561 | |
| 1562 | if (attr) { |
| 1563 | *attr = ret; |
| 1564 | } |
| 1565 | return LY_SUCCESS; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1566 | } |
| 1567 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1568 | /** |
| 1569 | * @brief Change the value of a term (leaf or leaf-list) node. |
| 1570 | * |
| 1571 | * Node changed this way is always considered explicitly set, meaning its default flag |
| 1572 | * is always cleared. |
| 1573 | * |
| 1574 | * @param[in] term Term node to change. |
| 1575 | * @param[in] value New value to set. |
| 1576 | * @param[in] value_len Length of @p value. |
| 1577 | * @param[in] format Format of @p value. |
| 1578 | * @return LY_SUCCESS if value was changed, |
| 1579 | * @return LY_EEXIST if value was the same and only the default flag was cleared, |
| 1580 | * @return LY_ENOT if the values were equal and no change occured, |
| 1581 | * @return LY_ERR value on other errors. |
| 1582 | */ |
| 1583 | static LY_ERR |
| 1584 | _lyd_change_term(struct lyd_node *term, const void *value, size_t value_len, LY_VALUE_FORMAT format) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1585 | { |
| 1586 | LY_ERR ret = LY_SUCCESS; |
| 1587 | struct lysc_type *type; |
| 1588 | struct lyd_node_term *t; |
| 1589 | struct lyd_node *parent; |
Michal Vasko | 7e0a347 | 2022-04-21 13:54:32 +0200 | [diff] [blame] | 1590 | struct lyd_value val; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1591 | ly_bool dflt_change, val_change; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1592 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1593 | assert(term && term->schema && (term->schema->nodetype & LYD_NODE_TERM)); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1594 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1595 | t = (struct lyd_node_term *)term; |
| 1596 | type = ((struct lysc_node_leaf *)term->schema)->type; |
| 1597 | |
| 1598 | /* parse the new value */ |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1599 | LOG_LOCSET(term->schema, term, NULL, NULL); |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1600 | ret = lyd_value_store(LYD_CTX(term), &val, type, value, value_len, NULL, format, NULL, LYD_HINT_DATA, term->schema, NULL); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 1601 | LOG_LOCBACK(term->schema ? 1 : 0, 1, 0, 0); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1602 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1603 | |
| 1604 | /* compare original and new value */ |
| 1605 | if (type->plugin->compare(&t->value, &val)) { |
| 1606 | /* values differ, switch them */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1607 | type->plugin->free(LYD_CTX(term), &t->value); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1608 | t->value = val; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1609 | val_change = 1; |
| 1610 | } else { |
Michal Vasko | 7e0a347 | 2022-04-21 13:54:32 +0200 | [diff] [blame] | 1611 | /* same values, free the new stored one */ |
| 1612 | type->plugin->free(LYD_CTX(term), &val); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1613 | val_change = 0; |
| 1614 | } |
| 1615 | |
| 1616 | /* always clear the default flag */ |
| 1617 | if (term->flags & LYD_DEFAULT) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 1618 | for (parent = term; parent; parent = lyd_parent(parent)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1619 | parent->flags &= ~LYD_DEFAULT; |
| 1620 | } |
| 1621 | dflt_change = 1; |
| 1622 | } else { |
| 1623 | dflt_change = 0; |
| 1624 | } |
| 1625 | |
| 1626 | if (val_change || dflt_change) { |
| 1627 | /* make the node non-validated */ |
| 1628 | term->flags &= LYD_NEW; |
| 1629 | } |
| 1630 | |
| 1631 | if (val_change) { |
| 1632 | if (term->schema->nodetype == LYS_LEAFLIST) { |
| 1633 | /* leaf-list needs to be hashed again and re-inserted into parent */ |
| 1634 | lyd_unlink_hash(term); |
| 1635 | lyd_hash(term); |
| 1636 | LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup); |
| 1637 | } else if ((term->schema->flags & LYS_KEY) && term->parent) { |
| 1638 | /* list needs to be updated if its key was changed */ |
| 1639 | assert(term->parent->schema->nodetype == LYS_LIST); |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 1640 | lyd_unlink_hash(lyd_parent(term)); |
| 1641 | lyd_hash(lyd_parent(term)); |
| 1642 | LY_CHECK_GOTO(ret = lyd_insert_hash(lyd_parent(term)), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1643 | } /* else leaf that is not a key, its value is not used for its hash so it does not change */ |
| 1644 | } |
| 1645 | |
| 1646 | /* retrun value */ |
| 1647 | if (!val_change) { |
| 1648 | if (dflt_change) { |
| 1649 | /* only default flag change */ |
| 1650 | ret = LY_EEXIST; |
| 1651 | } else { |
| 1652 | /* no change */ |
| 1653 | ret = LY_ENOT; |
| 1654 | } |
| 1655 | } /* else value changed, LY_SUCCESS */ |
| 1656 | |
| 1657 | cleanup: |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1658 | return ret; |
| 1659 | } |
| 1660 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1661 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1662 | lyd_change_term(struct lyd_node *term, const char *val_str) |
| 1663 | { |
| 1664 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1665 | |
| 1666 | return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_JSON); |
| 1667 | } |
| 1668 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1669 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1670 | lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len) |
| 1671 | { |
| 1672 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1673 | |
| 1674 | return _lyd_change_term(term, value, value_len, LY_VALUE_LYB); |
| 1675 | } |
| 1676 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1677 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1678 | lyd_change_term_canon(struct lyd_node *term, const char *val_str) |
| 1679 | { |
| 1680 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1681 | |
| 1682 | return _lyd_change_term(term, val_str, val_str ? strlen(val_str) : 0, LY_VALUE_CANON); |
| 1683 | } |
| 1684 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1685 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1686 | lyd_change_meta(struct lyd_meta *meta, const char *val_str) |
| 1687 | { |
| 1688 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 1689 | struct lyd_meta *m2 = NULL; |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1690 | struct lyd_value val; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1691 | ly_bool val_change; |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1692 | |
| 1693 | LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL); |
| 1694 | |
| 1695 | if (!val_str) { |
| 1696 | val_str = ""; |
| 1697 | } |
| 1698 | |
| 1699 | /* parse the new value into a new meta structure */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1700 | ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str, strlen(val_str), |
| 1701 | NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, meta->parent ? meta->parent->schema : NULL, 0, NULL); |
| 1702 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1703 | |
| 1704 | /* compare original and new value */ |
| 1705 | if (lyd_compare_meta(meta, m2)) { |
| 1706 | /* values differ, switch them */ |
| 1707 | val = meta->value; |
| 1708 | meta->value = m2->value; |
| 1709 | m2->value = val; |
| 1710 | val_change = 1; |
| 1711 | } else { |
| 1712 | val_change = 0; |
| 1713 | } |
| 1714 | |
| 1715 | /* retrun value */ |
| 1716 | if (!val_change) { |
| 1717 | /* no change */ |
| 1718 | ret = LY_ENOT; |
| 1719 | } /* else value changed, LY_SUCCESS */ |
| 1720 | |
| 1721 | cleanup: |
Michal Vasko | 1a66a5d | 2020-11-18 18:15:37 +0100 | [diff] [blame] | 1722 | lyd_free_meta_single(m2); |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1723 | return ret; |
| 1724 | } |
| 1725 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1726 | /** |
| 1727 | * @brief Update node value. |
| 1728 | * |
| 1729 | * @param[in] node Node to update. |
| 1730 | * @param[in] value New value to set. |
| 1731 | * @param[in] value_len Length of @p value. |
| 1732 | * @param[in] value_type Type of @p value for anydata/anyxml node. |
| 1733 | * @param[in] format Format of @p value. |
| 1734 | * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL. |
| 1735 | * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL. |
| 1736 | * @return LY_ERR value. |
| 1737 | */ |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1738 | static LY_ERR |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1739 | lyd_new_path_update(struct lyd_node *node, const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, |
| 1740 | LY_VALUE_FORMAT format, struct lyd_node **new_parent, struct lyd_node **new_node) |
| 1741 | { |
| 1742 | LY_ERR ret = LY_SUCCESS; |
| 1743 | struct lyd_node *new_any; |
| 1744 | |
| 1745 | switch (node->schema->nodetype) { |
| 1746 | case LYS_CONTAINER: |
| 1747 | case LYS_NOTIF: |
| 1748 | case LYS_RPC: |
| 1749 | case LYS_ACTION: |
| 1750 | case LYS_LIST: |
| 1751 | /* if it exists, there is nothing to update */ |
| 1752 | *new_parent = NULL; |
| 1753 | *new_node = NULL; |
| 1754 | break; |
| 1755 | case LYS_LEAFLIST: |
| 1756 | if (!lysc_is_dup_inst_list(node->schema)) { |
| 1757 | /* if it exists, there is nothing to update */ |
| 1758 | *new_parent = NULL; |
| 1759 | *new_node = NULL; |
| 1760 | break; |
| 1761 | } |
| 1762 | /* fallthrough */ |
| 1763 | case LYS_LEAF: |
| 1764 | ret = _lyd_change_term(node, value, value_len, format); |
| 1765 | if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) { |
| 1766 | /* there was an actual change (at least of the default flag) */ |
| 1767 | *new_parent = node; |
| 1768 | *new_node = node; |
| 1769 | ret = LY_SUCCESS; |
| 1770 | } else if (ret == LY_ENOT) { |
| 1771 | /* no change */ |
| 1772 | *new_parent = NULL; |
| 1773 | *new_node = NULL; |
| 1774 | ret = LY_SUCCESS; |
| 1775 | } /* else error */ |
| 1776 | break; |
| 1777 | case LYS_ANYDATA: |
| 1778 | case LYS_ANYXML: |
| 1779 | /* create a new any node */ |
| 1780 | LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, 0, &new_any)); |
| 1781 | |
| 1782 | /* compare with the existing one */ |
| 1783 | if (lyd_compare_single(node, new_any, 0)) { |
| 1784 | /* not equal, switch values (so that we can use generic node free) */ |
| 1785 | ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value; |
| 1786 | ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type; |
| 1787 | ((struct lyd_node_any *)node)->value.str = value; |
| 1788 | ((struct lyd_node_any *)node)->value_type = value_type; |
| 1789 | |
| 1790 | *new_parent = node; |
| 1791 | *new_node = node; |
| 1792 | } else { |
| 1793 | /* they are equal */ |
| 1794 | *new_parent = NULL; |
| 1795 | *new_node = NULL; |
| 1796 | } |
| 1797 | lyd_free_tree(new_any); |
| 1798 | break; |
| 1799 | default: |
| 1800 | LOGINT(LYD_CTX(node)); |
| 1801 | ret = LY_EINT; |
| 1802 | break; |
| 1803 | } |
| 1804 | |
| 1805 | return ret; |
| 1806 | } |
| 1807 | |
| 1808 | static LY_ERR |
| 1809 | lyd_new_path_check_find_lypath(struct ly_path *path, const char *str_path, const char *value, size_t value_len, |
| 1810 | LY_VALUE_FORMAT format, uint32_t options) |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1811 | { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1812 | LY_ERR r; |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1813 | struct ly_path_predicate *pred; |
Michal Vasko | e1886a9 | 2022-01-10 09:30:08 +0100 | [diff] [blame] | 1814 | struct lyd_value val; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1815 | const struct lysc_node *schema = NULL; |
| 1816 | LY_ARRAY_COUNT_TYPE u, new_count; |
| 1817 | int create = 0; |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1818 | |
| 1819 | assert(path); |
| 1820 | |
| 1821 | /* go through all the compiled nodes */ |
| 1822 | LY_ARRAY_FOR(path, u) { |
| 1823 | schema = path[u].node; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1824 | |
| 1825 | if (lysc_is_dup_inst_list(schema)) { |
| 1826 | if (path[u].pred_type == LY_PATH_PREDTYPE_NONE) { |
| 1827 | /* creating a new key-less list or state leaf-list instance */ |
| 1828 | create = 1; |
| 1829 | new_count = u; |
| 1830 | } else if (path[u].pred_type != LY_PATH_PREDTYPE_POSITION) { |
| 1831 | LOG_LOCSET(schema, NULL, NULL, NULL); |
| 1832 | LOGVAL(schema->module->ctx, LYVE_XPATH, "Invalid predicate for %s \"%s\" in path \"%s\".", |
| 1833 | lys_nodetype2str(schema->nodetype), schema->name, str_path); |
| 1834 | LOG_LOCBACK(1, 0, 0, 0); |
| 1835 | return LY_EINVAL; |
| 1836 | } |
| 1837 | } else if ((schema->nodetype == LYS_LIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LIST)) { |
| 1838 | if ((u < LY_ARRAY_COUNT(path) - 1) || !(options & LYD_NEW_PATH_OPAQ)) { |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1839 | LOG_LOCSET(schema, NULL, NULL, NULL); |
| 1840 | LOGVAL(schema->module->ctx, LYVE_XPATH, "Predicate missing for %s \"%s\" in path \"%s\".", |
| 1841 | lys_nodetype2str(schema->nodetype), schema->name, str_path); |
| 1842 | LOG_LOCBACK(1, 0, 0, 0); |
| 1843 | return LY_EINVAL; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1844 | } /* else creating an opaque list */ |
| 1845 | } else if ((schema->nodetype == LYS_LEAFLIST) && (path[u].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1846 | r = LY_SUCCESS; |
| 1847 | if (options & LYD_NEW_PATH_OPAQ) { |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1848 | r = lyd_value_validate(NULL, schema, value, value_len, NULL, NULL, NULL); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1849 | } |
| 1850 | if (!r) { |
Michal Vasko | e1886a9 | 2022-01-10 09:30:08 +0100 | [diff] [blame] | 1851 | /* try to store the value */ |
| 1852 | LY_CHECK_RET(lyd_value_store(schema->module->ctx, &val, ((struct lysc_node_leaflist *)schema)->type, |
| 1853 | value, value_len, NULL, format, NULL, LYD_HINT_DATA, schema, NULL)); |
| 1854 | ++((struct lysc_type *)val.realtype)->refcount; |
| 1855 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1856 | /* store the new predicate so that it is used when searching for this instance */ |
| 1857 | path[u].pred_type = LY_PATH_PREDTYPE_LEAFLIST; |
| 1858 | LY_ARRAY_NEW_RET(schema->module->ctx, path[u].predicates, pred, LY_EMEM); |
Michal Vasko | e1886a9 | 2022-01-10 09:30:08 +0100 | [diff] [blame] | 1859 | pred->value = val; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1860 | } /* else we have opaq flag and the value is not valid, leave no predicate and then create an opaque node */ |
| 1861 | } |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1862 | } |
| 1863 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1864 | if (create) { |
| 1865 | /* hide the nodes that should always be created so they are not found */ |
| 1866 | while (new_count < LY_ARRAY_COUNT(path)) { |
| 1867 | LY_ARRAY_DECREMENT(path); |
| 1868 | } |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1869 | } |
| 1870 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1871 | return LY_SUCCESS; |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1872 | } |
| 1873 | |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 1874 | /** |
| 1875 | * @brief Create a new node in the data tree based on a path. All node types can be created. |
| 1876 | * |
Michal Vasko | a918a63 | 2021-07-02 11:53:36 +0200 | [diff] [blame] | 1877 | * If @p path points to a list key, the key value from the predicate is used and @p value is ignored. |
| 1878 | * Also, if a leaf-list is being created and both a predicate is defined in @p path |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 1879 | * and @p value is set, the predicate is preferred. |
| 1880 | * |
| 1881 | * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these |
| 1882 | * nodes, they are always created. |
| 1883 | * |
| 1884 | * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used, |
| 1885 | * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted |
| 1886 | * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases. |
| 1887 | * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| 1888 | * @param[in] ext Extension instance where the node being created is defined. This argument takes effect only for absolute |
| 1889 | * path or when the relative paths touches document root (top-level). In such cases the present extension instance replaces |
| 1890 | * searching for the appropriate module. |
| 1891 | * @param[in] path [Path](@ref howtoXPath) to create. |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1892 | * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an |
| 1893 | * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL. |
| 1894 | * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when |
| 1895 | * creating anyxml/anydata nodes. |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 1896 | * @param[in] value_type Anyxml/anydata node @p value type. |
| 1897 | * @param[in] options Bitmask of options, see @ref pathoptions. |
| 1898 | * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node. |
| 1899 | * @param[out] new_node Optional last node created. |
| 1900 | * @return LY_ERR value. |
| 1901 | */ |
| 1902 | static LY_ERR |
| 1903 | lyd_new_path_(struct lyd_node *parent, const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, const char *path, |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1904 | const void *value, size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 1905 | struct lyd_node **new_parent, struct lyd_node **new_node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1906 | { |
| 1907 | LY_ERR ret = LY_SUCCESS, r; |
| 1908 | struct lyxp_expr *exp = NULL; |
| 1909 | struct ly_path *p = NULL; |
| 1910 | struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent; |
| 1911 | const struct lysc_node *schema; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1912 | const struct lyd_value *val = NULL; |
Radek Krejci | 910d013 | 2021-03-05 14:19:31 +0100 | [diff] [blame] | 1913 | LY_ARRAY_COUNT_TYPE path_idx = 0, orig_count = 0; |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1914 | LY_VALUE_FORMAT format; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1915 | |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 1916 | assert(parent || ctx); |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1917 | assert(path && ((path[0] == '/') || parent)); |
| 1918 | assert(!(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE)); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1919 | |
| 1920 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1921 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1922 | } |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1923 | if (value && !value_len) { |
| 1924 | value_len = strlen(value); |
| 1925 | } |
| 1926 | if (options & LYD_NEW_PATH_BIN_VALUE) { |
| 1927 | format = LY_VALUE_LYB; |
| 1928 | } else if (options & LYD_NEW_PATH_CANON_VALUE) { |
| 1929 | format = LY_VALUE_CANON; |
| 1930 | } else { |
| 1931 | format = LY_VALUE_JSON; |
| 1932 | } |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1933 | |
| 1934 | /* parse path */ |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 1935 | LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, LY_PATH_PREFIX_OPTIONAL, |
| 1936 | LY_PATH_PRED_SIMPLE, &exp), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1937 | |
| 1938 | /* compile path */ |
Michal Vasko | 106f086 | 2021-11-02 11:49:27 +0100 | [diff] [blame] | 1939 | LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, lyd_node_schema(parent), ext, exp, options & LYD_NEW_PATH_OUTPUT ? |
| 1940 | LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, 0, LY_VALUE_JSON, NULL, &p), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1941 | |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1942 | /* check the compiled path before searching existing nodes, it may be shortened */ |
| 1943 | orig_count = LY_ARRAY_COUNT(p); |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1944 | LY_CHECK_GOTO(ret = lyd_new_path_check_find_lypath(p, path, value, value_len, format, options), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1945 | |
| 1946 | /* try to find any existing nodes in the path */ |
| 1947 | if (parent) { |
| 1948 | ret = ly_path_eval_partial(p, parent, &path_idx, &node); |
| 1949 | if (ret == LY_SUCCESS) { |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1950 | if (orig_count == LY_ARRAY_COUNT(p)) { |
| 1951 | /* the node exists, are we supposed to update it or is it just a default? */ |
| 1952 | if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) { |
| 1953 | LOG_LOCSET(NULL, node, NULL, NULL); |
| 1954 | LOGVAL(ctx, LYVE_REFERENCE, "Path \"%s\" already exists", path); |
| 1955 | LOG_LOCBACK(0, 1, 0, 0); |
| 1956 | ret = LY_EEXIST; |
| 1957 | goto cleanup; |
| 1958 | } |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1959 | |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1960 | /* update the existing node */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 1961 | ret = lyd_new_path_update(node, value, value_len, value_type, format, &nparent, &nnode); |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1962 | goto cleanup; |
| 1963 | } /* else we were not searching for the whole path */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1964 | } else if (ret == LY_EINCOMPLETE) { |
| 1965 | /* some nodes were found, adjust the iterator to the next segment */ |
| 1966 | ++path_idx; |
| 1967 | } else if (ret == LY_ENOTFOUND) { |
| 1968 | /* we will create the nodes from top-level, default behavior (absolute path), or from the parent (relative path) */ |
Michal Vasko | 45b0d20 | 2020-11-06 17:20:46 +0100 | [diff] [blame] | 1969 | if (lysc_data_parent(p[0].node)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1970 | node = parent; |
| 1971 | } |
| 1972 | } else { |
| 1973 | /* error */ |
| 1974 | goto cleanup; |
| 1975 | } |
| 1976 | } |
| 1977 | |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 1978 | /* restore the full path for creating new nodes */ |
| 1979 | while (orig_count > LY_ARRAY_COUNT(p)) { |
| 1980 | LY_ARRAY_INCREMENT(p); |
| 1981 | } |
| 1982 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1983 | /* create all the non-existing nodes in a loop */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1984 | for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1985 | cur_parent = node; |
| 1986 | schema = p[path_idx].node; |
| 1987 | |
| 1988 | switch (schema->nodetype) { |
| 1989 | case LYS_LIST: |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1990 | if (lysc_is_dup_inst_list(schema)) { |
| 1991 | /* create key-less list instance */ |
| 1992 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup); |
| 1993 | } else if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) { |
| 1994 | /* creating opaque list without keys */ |
| 1995 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 1996 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_VALUE_JSON, NULL, |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 1997 | LYD_NODEHINT_LIST, &node), cleanup); |
| 1998 | } else { |
| 1999 | /* create standard list instance */ |
| 2000 | assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST); |
| 2001 | LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2002 | } |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2003 | break; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2004 | case LYS_CONTAINER: |
| 2005 | case LYS_NOTIF: |
| 2006 | case LYS_RPC: |
| 2007 | case LYS_ACTION: |
| 2008 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup); |
| 2009 | break; |
| 2010 | case LYS_LEAFLIST: |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2011 | if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type != LY_PATH_PREDTYPE_LEAFLIST)) { |
| 2012 | /* we have not checked this only for dup-inst lists, otherwise it must be opaque */ |
| 2013 | r = LY_EVALID; |
| 2014 | if (lysc_is_dup_inst_list(schema)) { |
| 2015 | /* validate value */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2016 | r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2017 | } |
| 2018 | if (r && (r != LY_EINCOMPLETE)) { |
| 2019 | /* creating opaque leaf-list */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2020 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len, |
| 2021 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, |
| 2022 | LYD_NODEHINT_LEAFLIST, &node), cleanup); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2023 | break; |
| 2024 | } |
| 2025 | } |
| 2026 | |
| 2027 | /* get value to set */ |
| 2028 | if (p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST) { |
| 2029 | val = &p[path_idx].predicates[0].value; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2030 | } |
| 2031 | |
| 2032 | /* create a leaf-list instance */ |
| 2033 | if (val) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2034 | LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2035 | } else { |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2036 | LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, |
| 2037 | NULL, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2038 | } |
| 2039 | break; |
| 2040 | case LYS_LEAF: |
Michal Vasko | 106f086 | 2021-11-02 11:49:27 +0100 | [diff] [blame] | 2041 | if (lysc_is_key(schema) && cur_parent->schema) { |
Michal Vasko | 3588033 | 2020-12-08 13:08:12 +0100 | [diff] [blame] | 2042 | /* it must have been already created or some error will occur later */ |
Michal Vasko | a918a63 | 2021-07-02 11:53:36 +0200 | [diff] [blame] | 2043 | lyd_find_sibling_schema(lyd_child(cur_parent), schema, &node); |
| 2044 | assert(node); |
Michal Vasko | 3588033 | 2020-12-08 13:08:12 +0100 | [diff] [blame] | 2045 | goto next_iter; |
| 2046 | } |
| 2047 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2048 | if (options & LYD_NEW_PATH_OPAQ) { |
Michal Vasko | 106f086 | 2021-11-02 11:49:27 +0100 | [diff] [blame] | 2049 | if (cur_parent && !cur_parent->schema) { |
| 2050 | /* always create opaque nodes for opaque parents */ |
| 2051 | r = LY_ENOT; |
| 2052 | } else { |
| 2053 | /* validate value */ |
| 2054 | r = lyd_value_validate(NULL, schema, value ? value : "", value_len, NULL, NULL, NULL); |
| 2055 | } |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2056 | if (r && (r != LY_EINCOMPLETE)) { |
| 2057 | /* creating opaque leaf */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2058 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), value, value_len, |
| 2059 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, format, NULL, 0, &node), |
| 2060 | cleanup); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2061 | break; |
| 2062 | } |
| 2063 | } |
| 2064 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 2065 | /* create a leaf instance */ |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2066 | LY_CHECK_GOTO(ret = lyd_create_term(schema, value, value_len, NULL, format, NULL, LYD_HINT_DATA, NULL, |
| 2067 | &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2068 | break; |
| 2069 | case LYS_ANYDATA: |
| 2070 | case LYS_ANYXML: |
Michal Vasko | 366a4a1 | 2020-12-04 16:23:57 +0100 | [diff] [blame] | 2071 | LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, 0, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2072 | break; |
| 2073 | default: |
| 2074 | LOGINT(ctx); |
| 2075 | ret = LY_EINT; |
| 2076 | goto cleanup; |
| 2077 | } |
| 2078 | |
Michal Vasko | 8cc3f66 | 2022-03-29 11:25:51 +0200 | [diff] [blame] | 2079 | if (p[path_idx].ext) { |
| 2080 | node->flags |= LYD_EXT; |
| 2081 | } |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2082 | if (cur_parent) { |
| 2083 | /* connect to the parent */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2084 | lyd_insert_node(cur_parent, NULL, node, 0); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2085 | } else if (parent) { |
| 2086 | /* connect to top-level siblings */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2087 | lyd_insert_node(NULL, &parent, node, 0); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2088 | } |
| 2089 | |
Michal Vasko | 3588033 | 2020-12-08 13:08:12 +0100 | [diff] [blame] | 2090 | next_iter: |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2091 | /* update remembered nodes */ |
| 2092 | if (!nparent) { |
| 2093 | nparent = node; |
| 2094 | } |
| 2095 | nnode = node; |
| 2096 | } |
| 2097 | |
| 2098 | cleanup: |
| 2099 | lyxp_expr_free(ctx, exp); |
Michal Vasko | 6741dc6 | 2021-02-04 09:27:45 +0100 | [diff] [blame] | 2100 | if (p) { |
| 2101 | while (orig_count > LY_ARRAY_COUNT(p)) { |
| 2102 | LY_ARRAY_INCREMENT(p); |
| 2103 | } |
| 2104 | } |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2105 | ly_path_free(ctx, p); |
| 2106 | if (!ret) { |
| 2107 | /* set out params only on success */ |
| 2108 | if (new_parent) { |
| 2109 | *new_parent = nparent; |
| 2110 | } |
| 2111 | if (new_node) { |
| 2112 | *new_node = nnode; |
| 2113 | } |
Michal Vasko | f4b95ba | 2020-12-11 08:42:33 +0100 | [diff] [blame] | 2114 | } else { |
| 2115 | lyd_free_tree(nparent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 2116 | } |
| 2117 | return ret; |
| 2118 | } |
| 2119 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2120 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2121 | lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options, |
| 2122 | struct lyd_node **node) |
| 2123 | { |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2124 | LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, |
| 2125 | !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2126 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2127 | |
| 2128 | return lyd_new_path_(parent, ctx, NULL, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL); |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2129 | } |
| 2130 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2131 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2132 | lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2133 | size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, |
| 2134 | struct lyd_node **new_node) |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2135 | { |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2136 | LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, |
| 2137 | !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2138 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
| 2139 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2140 | return lyd_new_path_(parent, ctx, NULL, path, value, value_len, value_type, options, new_parent, new_node); |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2141 | } |
| 2142 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2143 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2144 | lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path, const void *value, |
| 2145 | uint32_t options, struct lyd_node **node) |
| 2146 | { |
| 2147 | const struct ly_ctx *ctx = ext ? ext->module->ctx : NULL; |
| 2148 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2149 | LY_CHECK_ARG_RET(ctx, ext, path, (path[0] == '/') || parent, |
| 2150 | !(options & LYD_NEW_PATH_BIN_VALUE) || !(options & LYD_NEW_PATH_CANON_VALUE), LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2151 | LY_CHECK_CTX_EQUAL_RET(parent ? LYD_CTX(parent) : NULL, ctx, LY_EINVAL); |
| 2152 | |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 2153 | return lyd_new_path_(parent, ctx, ext, path, value, 0, LYD_ANYDATA_STRING, options, node, NULL); |
Radek Krejci | 95ccd1b | 2021-03-12 14:57:22 +0100 | [diff] [blame] | 2154 | } |
| 2155 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2156 | LY_ERR |
| 2157 | lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2158 | const struct lys_module *mod, struct ly_set *node_when, struct ly_set *node_types, uint32_t impl_opts, |
| 2159 | struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2160 | { |
| 2161 | LY_ERR ret; |
Michal Vasko | d1e53b9 | 2021-01-28 13:11:06 +0100 | [diff] [blame] | 2162 | const struct lysc_node *iter = NULL; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 2163 | struct lyd_node *node = NULL; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2164 | struct lyd_value **dflts; |
| 2165 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 630d989 | 2020-12-08 17:11:08 +0100 | [diff] [blame] | 2166 | uint32_t getnext_opts; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2167 | |
| 2168 | assert(first && (parent || sparent || mod)); |
| 2169 | |
| 2170 | if (!sparent && parent) { |
| 2171 | sparent = parent->schema; |
| 2172 | } |
| 2173 | |
Michal Vasko | 630d989 | 2020-12-08 17:11:08 +0100 | [diff] [blame] | 2174 | getnext_opts = LYS_GETNEXT_WITHCHOICE; |
| 2175 | if (impl_opts & LYD_IMPLICIT_OUTPUT) { |
| 2176 | getnext_opts |= LYS_GETNEXT_OUTPUT; |
| 2177 | } |
| 2178 | |
| 2179 | while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, getnext_opts))) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2180 | if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) { |
| 2181 | continue; |
Michal Vasko | 44b19a1 | 2020-08-07 09:21:30 +0200 | [diff] [blame] | 2182 | } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) { |
| 2183 | continue; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2184 | } |
| 2185 | |
| 2186 | switch (iter->nodetype) { |
| 2187 | case LYS_CHOICE: |
Michal Vasko | bcf4d7d | 2020-11-18 18:16:49 +0100 | [diff] [blame] | 2188 | node = lys_getnext_data(NULL, *first, NULL, iter, NULL); |
| 2189 | if (!node && ((struct lysc_node_choice *)iter)->dflt) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2190 | /* create default case data */ |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 2191 | LY_CHECK_RET(lyd_new_implicit_r(parent, first, &((struct lysc_node_choice *)iter)->dflt->node, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2192 | NULL, node_when, node_types, impl_opts, diff)); |
Michal Vasko | bcf4d7d | 2020-11-18 18:16:49 +0100 | [diff] [blame] | 2193 | } else if (node) { |
| 2194 | /* create any default data in the existing case */ |
| 2195 | assert(node->schema->parent->nodetype == LYS_CASE); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2196 | LY_CHECK_RET(lyd_new_implicit_r(parent, first, node->schema->parent, NULL, node_when, node_types, |
Michal Vasko | bcf4d7d | 2020-11-18 18:16:49 +0100 | [diff] [blame] | 2197 | impl_opts, diff)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2198 | } |
| 2199 | break; |
| 2200 | case LYS_CONTAINER: |
| 2201 | if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
| 2202 | /* create default NP container */ |
| 2203 | LY_CHECK_RET(lyd_create_inner(iter, &node)); |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2204 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2205 | lyd_insert_node(parent, first, node, 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2206 | |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2207 | if (lysc_has_when(iter) && node_when) { |
Michal Vasko | e16c7b7 | 2021-02-26 10:39:06 +0100 | [diff] [blame] | 2208 | /* remember to resolve when */ |
| 2209 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
| 2210 | } |
Michal Vasko | e49b632 | 2020-11-05 17:38:36 +0100 | [diff] [blame] | 2211 | if (diff) { |
| 2212 | /* add into diff */ |
| 2213 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 2214 | } |
| 2215 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2216 | /* create any default children */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2217 | LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, node_when, node_types, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2218 | impl_opts, diff)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2219 | } |
| 2220 | break; |
| 2221 | case LYS_LEAF: |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2222 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt && |
| 2223 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2224 | /* create default leaf */ |
| 2225 | ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node); |
| 2226 | if (ret == LY_EINCOMPLETE) { |
| 2227 | if (node_types) { |
| 2228 | /* remember to resolve type */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 2229 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2230 | } |
| 2231 | } else if (ret) { |
| 2232 | return ret; |
| 2233 | } |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2234 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2235 | lyd_insert_node(parent, first, node, 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2236 | |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2237 | if (lysc_has_when(iter) && node_when) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2238 | /* remember to resolve when */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 2239 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2240 | } |
| 2241 | if (diff) { |
| 2242 | /* add into diff */ |
| 2243 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 2244 | } |
| 2245 | } |
| 2246 | break; |
| 2247 | case LYS_LEAFLIST: |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2248 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts && |
| 2249 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2250 | /* create all default leaf-lists */ |
| 2251 | dflts = ((struct lysc_node_leaflist *)iter)->dflts; |
| 2252 | LY_ARRAY_FOR(dflts, u) { |
| 2253 | ret = lyd_create_term2(iter, dflts[u], &node); |
| 2254 | if (ret == LY_EINCOMPLETE) { |
| 2255 | if (node_types) { |
| 2256 | /* remember to resolve type */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 2257 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2258 | } |
| 2259 | } else if (ret) { |
| 2260 | return ret; |
| 2261 | } |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2262 | node->flags = LYD_DEFAULT | (lysc_has_when(iter) ? LYD_WHEN_TRUE : 0); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2263 | lyd_insert_node(parent, first, node, 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2264 | |
Michal Vasko | f4d67ea | 2021-03-31 13:53:21 +0200 | [diff] [blame] | 2265 | if (lysc_has_when(iter) && node_when) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2266 | /* remember to resolve when */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 2267 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2268 | } |
| 2269 | if (diff) { |
| 2270 | /* add into diff */ |
| 2271 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 2272 | } |
| 2273 | } |
| 2274 | } |
| 2275 | break; |
| 2276 | default: |
| 2277 | /* without defaults */ |
| 2278 | break; |
| 2279 | } |
| 2280 | } |
| 2281 | |
| 2282 | return LY_SUCCESS; |
| 2283 | } |
| 2284 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2285 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2286 | lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2287 | { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2288 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2289 | struct lyd_node *node; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2290 | struct ly_set node_when = {0}; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2291 | |
| 2292 | LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL); |
| 2293 | if (diff) { |
| 2294 | *diff = NULL; |
| 2295 | } |
| 2296 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 2297 | LYD_TREE_DFS_BEGIN(tree, node) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2298 | /* skip added default nodes */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2299 | if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) && |
| 2300 | (node->schema->nodetype & LYD_NODE_INNER)) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2301 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_child_p(node), NULL, NULL, &node_when, NULL, |
| 2302 | implicit_options, diff), cleanup); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2303 | } |
| 2304 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 2305 | LYD_TREE_DFS_END(tree, node); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2306 | } |
| 2307 | |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2308 | /* resolve when and remove any invalid defaults */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2309 | LY_CHECK_GOTO(ret = lyd_validate_unres(&tree, NULL, &node_when, LYXP_IGNORE_WHEN, NULL, NULL, NULL, 0, diff), cleanup); |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2310 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2311 | cleanup: |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2312 | ly_set_erase(&node_when, NULL); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2313 | if (ret && diff) { |
| 2314 | lyd_free_all(*diff); |
| 2315 | *diff = NULL; |
| 2316 | } |
| 2317 | return ret; |
| 2318 | } |
| 2319 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2320 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2321 | lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2322 | { |
| 2323 | const struct lys_module *mod; |
| 2324 | struct lyd_node *d = NULL; |
| 2325 | uint32_t i = 0; |
| 2326 | LY_ERR ret = LY_SUCCESS; |
| 2327 | |
| 2328 | LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2329 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, ctx, LY_EINVAL); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2330 | if (diff) { |
| 2331 | *diff = NULL; |
| 2332 | } |
| 2333 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2334 | ctx = LYD_CTX(*tree); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2335 | } |
| 2336 | |
| 2337 | /* add nodes for each module one-by-one */ |
| 2338 | while ((mod = ly_ctx_get_module_iter(ctx, &i))) { |
| 2339 | if (!mod->implemented) { |
| 2340 | continue; |
| 2341 | } |
| 2342 | |
| 2343 | LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup); |
| 2344 | if (d) { |
| 2345 | /* merge into one diff */ |
| 2346 | lyd_insert_sibling(*diff, d, diff); |
| 2347 | |
| 2348 | d = NULL; |
| 2349 | } |
| 2350 | } |
| 2351 | |
| 2352 | cleanup: |
| 2353 | if (ret && diff) { |
| 2354 | lyd_free_all(*diff); |
| 2355 | *diff = NULL; |
| 2356 | } |
| 2357 | return ret; |
| 2358 | } |
| 2359 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2360 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2361 | lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, |
| 2362 | struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2363 | { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2364 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2365 | struct lyd_node *root, *d = NULL; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2366 | struct ly_set node_when = {0}; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2367 | |
| 2368 | LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2369 | LY_CHECK_CTX_EQUAL_RET(*tree ? LYD_CTX(*tree) : NULL, module ? module->ctx : NULL, LY_EINVAL); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2370 | if (diff) { |
| 2371 | *diff = NULL; |
| 2372 | } |
| 2373 | |
| 2374 | /* add all top-level defaults for this module */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2375 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, &node_when, NULL, implicit_options, diff), cleanup); |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2376 | |
| 2377 | /* resolve when and remove any invalid defaults */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2378 | LY_CHECK_GOTO(ret = lyd_validate_unres(tree, module, &node_when, LYXP_IGNORE_WHEN, NULL, NULL, NULL, 0, diff), |
Michal Vasko | 976ec43 | 2021-12-06 15:42:22 +0100 | [diff] [blame] | 2379 | cleanup); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2380 | |
| 2381 | /* process nested nodes */ |
| 2382 | LY_LIST_FOR(*tree, root) { |
| 2383 | /* skip added default nodes */ |
| 2384 | if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) { |
| 2385 | LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup); |
| 2386 | |
| 2387 | if (d) { |
| 2388 | /* merge into one diff */ |
| 2389 | lyd_insert_sibling(*diff, d, diff); |
| 2390 | |
| 2391 | d = NULL; |
| 2392 | } |
| 2393 | } |
| 2394 | } |
| 2395 | |
| 2396 | cleanup: |
Michal Vasko | 3488ada | 2020-12-03 14:18:19 +0100 | [diff] [blame] | 2397 | ly_set_erase(&node_when, NULL); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 2398 | if (ret && diff) { |
| 2399 | lyd_free_all(*diff); |
| 2400 | *diff = NULL; |
| 2401 | } |
| 2402 | return ret; |
| 2403 | } |
| 2404 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2405 | struct lyd_node * |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2406 | lyd_insert_get_next_anchor(const struct lyd_node *first_sibling, const struct lyd_node *new_node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2407 | { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2408 | const struct lysc_node *schema, *sparent; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2409 | struct lyd_node *match = NULL; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2410 | ly_bool found; |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2411 | uint32_t getnext_opts; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2412 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2413 | assert(new_node); |
| 2414 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 2415 | if (!first_sibling || !new_node->schema || (LYD_CTX(first_sibling) != LYD_CTX(new_node))) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2416 | /* insert at the end, no next anchor */ |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2417 | return NULL; |
| 2418 | } |
| 2419 | |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2420 | getnext_opts = 0; |
Michal Vasko | d1e53b9 | 2021-01-28 13:11:06 +0100 | [diff] [blame] | 2421 | if (new_node->schema->flags & LYS_IS_OUTPUT) { |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2422 | getnext_opts = LYS_GETNEXT_OUTPUT; |
| 2423 | } |
| 2424 | |
Michal Vasko | a2756f0 | 2021-07-09 13:20:28 +0200 | [diff] [blame] | 2425 | if (first_sibling->parent && first_sibling->parent->schema && first_sibling->parent->children_ht) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2426 | /* find the anchor using hashes */ |
| 2427 | sparent = first_sibling->parent->schema; |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2428 | schema = lys_getnext(new_node->schema, sparent, NULL, getnext_opts); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2429 | while (schema) { |
| 2430 | /* keep trying to find the first existing instance of the closest following schema sibling, |
| 2431 | * otherwise return NULL - inserting at the end */ |
| 2432 | if (!lyd_find_sibling_schema(first_sibling, schema, &match)) { |
| 2433 | break; |
| 2434 | } |
| 2435 | |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2436 | schema = lys_getnext(schema, sparent, NULL, getnext_opts); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2437 | } |
| 2438 | } else { |
| 2439 | /* find the anchor without hashes */ |
| 2440 | match = (struct lyd_node *)first_sibling; |
Michal Vasko | 3a70862 | 2021-07-15 14:20:10 +0200 | [diff] [blame] | 2441 | sparent = lysc_data_parent(new_node->schema); |
| 2442 | if (!sparent) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2443 | /* we are in top-level, skip all the data from preceding modules */ |
| 2444 | LY_LIST_FOR(match, match) { |
| 2445 | if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) { |
| 2446 | break; |
| 2447 | } |
| 2448 | } |
| 2449 | } |
| 2450 | |
| 2451 | /* get the first schema sibling */ |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2452 | schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, getnext_opts); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2453 | |
| 2454 | found = 0; |
| 2455 | LY_LIST_FOR(match, match) { |
| 2456 | if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) { |
| 2457 | /* we have found an opaque node, which must be at the end, so use it OR |
| 2458 | * modules do not match, so we must have traversed all the data from new_node module (if any), |
| 2459 | * we have found the first node of the next module, that is what we want */ |
| 2460 | break; |
| 2461 | } |
| 2462 | |
| 2463 | /* skip schema nodes until we find the instantiated one */ |
| 2464 | while (!found) { |
| 2465 | if (new_node->schema == schema) { |
| 2466 | /* we have found the schema of the new node, continue search to find the first |
| 2467 | * data node with a different schema (after our schema) */ |
| 2468 | found = 1; |
| 2469 | break; |
| 2470 | } |
| 2471 | if (match->schema == schema) { |
| 2472 | /* current node (match) is a data node still before the new node, continue search in data */ |
| 2473 | break; |
| 2474 | } |
Michal Vasko | 93b1606 | 2020-12-09 18:14:18 +0100 | [diff] [blame] | 2475 | schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, getnext_opts); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2476 | assert(schema); |
| 2477 | } |
| 2478 | |
| 2479 | if (found && (match->schema != new_node->schema)) { |
| 2480 | /* find the next node after we have found our node schema data instance */ |
| 2481 | break; |
| 2482 | } |
| 2483 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2484 | } |
| 2485 | |
| 2486 | return match; |
| 2487 | } |
| 2488 | |
| 2489 | /** |
| 2490 | * @brief Insert node after a sibling. |
| 2491 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2492 | * Handles inserting into NP containers and key-less lists. |
| 2493 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2494 | * @param[in] sibling Sibling to insert after. |
| 2495 | * @param[in] node Node to insert. |
| 2496 | */ |
| 2497 | static void |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2498 | lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2499 | { |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2500 | struct lyd_node_inner *par; |
| 2501 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2502 | assert(!node->next && (node->prev == node)); |
| 2503 | |
| 2504 | node->next = sibling->next; |
| 2505 | node->prev = sibling; |
| 2506 | sibling->next = node; |
| 2507 | if (node->next) { |
| 2508 | /* sibling had a succeeding node */ |
| 2509 | node->next->prev = node; |
| 2510 | } else { |
| 2511 | /* sibling was last, find first sibling and change its prev */ |
| 2512 | if (sibling->parent) { |
| 2513 | sibling = sibling->parent->child; |
| 2514 | } else { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2515 | for ( ; sibling->prev->next != node; sibling = sibling->prev) {} |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2516 | } |
| 2517 | sibling->prev = node; |
| 2518 | } |
| 2519 | node->parent = sibling->parent; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2520 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2521 | for (par = node->parent; par; par = par->parent) { |
| 2522 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 2523 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2524 | par->flags &= ~LYD_DEFAULT; |
| 2525 | } |
| 2526 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2527 | } |
| 2528 | |
| 2529 | /** |
| 2530 | * @brief Insert node before a sibling. |
| 2531 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2532 | * Handles inserting into NP containers and key-less lists. |
| 2533 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2534 | * @param[in] sibling Sibling to insert before. |
| 2535 | * @param[in] node Node to insert. |
| 2536 | */ |
| 2537 | static void |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2538 | lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2539 | { |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2540 | struct lyd_node_inner *par; |
| 2541 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2542 | assert(!node->next && (node->prev == node)); |
| 2543 | |
| 2544 | node->next = sibling; |
| 2545 | /* covers situation of sibling being first */ |
| 2546 | node->prev = sibling->prev; |
| 2547 | sibling->prev = node; |
| 2548 | if (node->prev->next) { |
| 2549 | /* sibling had a preceding node */ |
| 2550 | node->prev->next = node; |
| 2551 | } else if (sibling->parent) { |
| 2552 | /* sibling was first and we must also change parent child pointer */ |
| 2553 | sibling->parent->child = node; |
| 2554 | } |
| 2555 | node->parent = sibling->parent; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2556 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2557 | for (par = node->parent; par; par = par->parent) { |
| 2558 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 2559 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2560 | par->flags &= ~LYD_DEFAULT; |
| 2561 | } |
| 2562 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2563 | } |
| 2564 | |
| 2565 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2566 | * @brief Insert node as the first and only child of a parent. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2567 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2568 | * Handles inserting into NP containers and key-less lists. |
| 2569 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2570 | * @param[in] parent Parent to insert into. |
| 2571 | * @param[in] node Node to insert. |
| 2572 | */ |
| 2573 | static void |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2574 | lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2575 | { |
| 2576 | struct lyd_node_inner *par; |
| 2577 | |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 2578 | assert(parent && !lyd_child(parent) && !node->next && (node->prev == node)); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2579 | assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER)); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2580 | |
| 2581 | par = (struct lyd_node_inner *)parent; |
| 2582 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2583 | par->child = node; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2584 | node->parent = par; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2585 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2586 | for ( ; par; par = par->parent) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2587 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 2588 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2589 | par->flags &= ~LYD_DEFAULT; |
| 2590 | } |
| 2591 | } |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 2592 | } |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2593 | |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 2594 | /** |
| 2595 | * @brief Learn whether a list instance has all the keys. |
| 2596 | * |
| 2597 | * @param[in] list List instance to check. |
| 2598 | * @return non-zero if all the keys were found, |
| 2599 | * @return 0 otherwise. |
| 2600 | */ |
| 2601 | static int |
| 2602 | lyd_insert_has_keys(const struct lyd_node *list) |
| 2603 | { |
| 2604 | const struct lyd_node *key; |
| 2605 | const struct lysc_node *skey = NULL; |
| 2606 | |
| 2607 | assert(list->schema->nodetype == LYS_LIST); |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 2608 | key = lyd_child(list); |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 2609 | while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) { |
| 2610 | if (!key || (key->schema != skey)) { |
| 2611 | /* key missing */ |
| 2612 | return 0; |
| 2613 | } |
| 2614 | |
| 2615 | key = key->next; |
| 2616 | } |
| 2617 | |
| 2618 | /* all keys found */ |
| 2619 | return 1; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | void |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2623 | lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node, ly_bool last) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2624 | { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2625 | struct lyd_node *anchor, *first_sibling; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2626 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2627 | /* inserting list without its keys is not supported */ |
| 2628 | assert((parent || first_sibling_p) && node && (node->hash || !node->schema)); |
Michal Vasko | f756c94 | 2020-11-06 17:21:37 +0100 | [diff] [blame] | 2629 | assert(!parent || !parent->schema || |
| 2630 | (parent->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF))); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 2631 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2632 | if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 2633 | parent = lyd_parent(*first_sibling_p); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 2634 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2635 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2636 | /* get first sibling */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 2637 | first_sibling = parent ? lyd_child(parent) : *first_sibling_p; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2638 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 2639 | if (last || (first_sibling && (first_sibling->flags & LYD_EXT))) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2640 | /* no next anchor */ |
| 2641 | anchor = NULL; |
| 2642 | } else { |
| 2643 | /* find the anchor, our next node, so we can insert before it */ |
| 2644 | anchor = lyd_insert_get_next_anchor(first_sibling, node); |
| 2645 | } |
| 2646 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2647 | if (anchor) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2648 | /* insert before the anchor */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2649 | lyd_insert_before_node(anchor, node); |
Michal Vasko | 2612319 | 2020-11-09 21:02:34 +0100 | [diff] [blame] | 2650 | if (!parent && (*first_sibling_p == anchor)) { |
| 2651 | /* move first sibling */ |
| 2652 | *first_sibling_p = node; |
| 2653 | } |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2654 | } else if (first_sibling) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2655 | /* insert as the last node */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2656 | lyd_insert_after_node(first_sibling->prev, node); |
| 2657 | } else if (parent) { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2658 | /* insert as the only child */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2659 | lyd_insert_only_child(parent, node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2660 | } else { |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2661 | /* insert as the only sibling */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2662 | *first_sibling_p = node; |
| 2663 | } |
| 2664 | |
| 2665 | /* insert into parent HT */ |
| 2666 | lyd_insert_hash(node); |
| 2667 | |
| 2668 | /* finish hashes for our parent, if needed and possible */ |
Michal Vasko | 9e8de2d | 2020-09-01 08:17:10 +0200 | [diff] [blame] | 2669 | if (node->schema && (node->schema->flags & LYS_KEY) && parent && lyd_insert_has_keys(parent)) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2670 | lyd_hash(parent); |
| 2671 | |
| 2672 | /* now we can insert even the list into its parent HT */ |
| 2673 | lyd_insert_hash(parent); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2674 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2675 | } |
| 2676 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2677 | /** |
| 2678 | * @brief Check schema place of a node to be inserted. |
| 2679 | * |
| 2680 | * @param[in] parent Schema node of the parent data node. |
| 2681 | * @param[in] sibling Schema node of a sibling data node. |
| 2682 | * @param[in] schema Schema node if the data node to be inserted. |
| 2683 | * @return LY_SUCCESS on success. |
| 2684 | * @return LY_EINVAL if the place is invalid. |
| 2685 | */ |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2686 | static LY_ERR |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2687 | lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *sibling, const struct lysc_node *schema) |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2688 | { |
| 2689 | const struct lysc_node *par2; |
| 2690 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2691 | assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE))); |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2692 | assert(!sibling || !(sibling->nodetype & (LYS_CASE | LYS_CHOICE))); |
| 2693 | assert(!schema || !(schema->nodetype & (LYS_CASE | LYS_CHOICE))); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2694 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2695 | if (!schema || (!parent && !sibling)) { |
Michal Vasko | 71e795e | 2020-12-04 16:27:37 +0100 | [diff] [blame] | 2696 | /* opaque nodes can be inserted wherever */ |
| 2697 | return LY_SUCCESS; |
| 2698 | } |
| 2699 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2700 | if (!parent) { |
| 2701 | parent = lysc_data_parent(sibling); |
| 2702 | } |
| 2703 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2704 | /* find schema parent */ |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2705 | par2 = lysc_data_parent(schema); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2706 | |
| 2707 | if (parent) { |
| 2708 | /* inner node */ |
| 2709 | if (par2 != parent) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2710 | LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, parent of \"%s\" is not \"%s\".", schema->name, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2711 | parent->name); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2712 | return LY_EINVAL; |
| 2713 | } |
| 2714 | } else { |
| 2715 | /* top-level node */ |
| 2716 | if (par2) { |
Radek Krejci | f6d14cb | 2020-07-02 16:11:45 +0200 | [diff] [blame] | 2717 | LOGERR(schema->module->ctx, LY_EINVAL, "Cannot insert, node \"%s\" is not top-level.", schema->name); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2718 | return LY_EINVAL; |
| 2719 | } |
| 2720 | } |
| 2721 | |
| 2722 | return LY_SUCCESS; |
| 2723 | } |
| 2724 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2725 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2726 | lyd_insert_child(struct lyd_node *parent, struct lyd_node *node) |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2727 | { |
| 2728 | struct lyd_node *iter; |
| 2729 | |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 2730 | LY_CHECK_ARG_RET(NULL, parent, node, !parent->schema || (parent->schema->nodetype & LYD_NODE_INNER), LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2731 | LY_CHECK_CTX_EQUAL_RET(LYD_CTX(parent), LYD_CTX(node), LY_EINVAL); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2732 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2733 | LY_CHECK_RET(lyd_insert_check_schema(parent->schema, NULL, node->schema)); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2734 | |
Michal Vasko | 0ab974d | 2021-02-24 13:18:26 +0100 | [diff] [blame] | 2735 | if (node->schema && (node->schema->flags & LYS_KEY)) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2736 | LOGERR(LYD_CTX(parent), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2737 | return LY_EINVAL; |
| 2738 | } |
| 2739 | |
| 2740 | if (node->parent || node->prev->next) { |
| 2741 | lyd_unlink_tree(node); |
| 2742 | } |
| 2743 | |
| 2744 | while (node) { |
| 2745 | iter = node->next; |
| 2746 | lyd_unlink_tree(node); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2747 | lyd_insert_node(parent, NULL, node, 0); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2748 | node = iter; |
| 2749 | } |
| 2750 | return LY_SUCCESS; |
| 2751 | } |
| 2752 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2753 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2754 | lyd_insert_ext(struct lyd_node *parent, struct lyd_node *first) |
| 2755 | { |
| 2756 | struct lyd_node *iter; |
| 2757 | |
| 2758 | LY_CHECK_ARG_RET(NULL, parent, first, !first->parent, !first->prev->next, |
| 2759 | !parent->schema || (parent->schema->nodetype & LYD_NODE_INNER), LY_EINVAL); |
| 2760 | |
| 2761 | if (first->schema && (first->schema->flags & LYS_KEY)) { |
| 2762 | LOGERR(LYD_CTX(parent), LY_EINVAL, "Cannot insert key \"%s\".", first->schema->name); |
| 2763 | return LY_EINVAL; |
| 2764 | } |
| 2765 | |
| 2766 | while (first) { |
| 2767 | iter = first->next; |
| 2768 | lyd_unlink_tree(first); |
Michal Vasko | 61ad1ff | 2022-02-10 15:48:39 +0100 | [diff] [blame] | 2769 | lyd_insert_node(parent, NULL, first, 1); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2770 | first = iter; |
| 2771 | } |
| 2772 | return LY_SUCCESS; |
| 2773 | } |
| 2774 | |
| 2775 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2776 | lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first) |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2777 | { |
| 2778 | struct lyd_node *iter; |
| 2779 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2780 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2781 | LY_CHECK_CTX_EQUAL_RET(sibling ? LYD_CTX(sibling) : NULL, LYD_CTX(node), LY_EINVAL); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2782 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2783 | if (sibling) { |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2784 | LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2785 | } |
| 2786 | |
Michal Vasko | 553d0b5 | 2020-12-04 16:27:52 +0100 | [diff] [blame] | 2787 | if (sibling == node) { |
| 2788 | /* we need to keep the connection to siblings so we can insert into them */ |
| 2789 | sibling = sibling->prev; |
| 2790 | } |
| 2791 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2792 | if (node->parent || node->prev->next) { |
| 2793 | lyd_unlink_tree(node); |
| 2794 | } |
| 2795 | |
| 2796 | while (node) { |
Michal Vasko | 71e795e | 2020-12-04 16:27:37 +0100 | [diff] [blame] | 2797 | if (lysc_is_key(node->schema)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2798 | LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2799 | return LY_EINVAL; |
| 2800 | } |
| 2801 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2802 | iter = node->next; |
| 2803 | lyd_unlink_tree(node); |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 2804 | lyd_insert_node(NULL, &sibling, node, 0); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2805 | node = iter; |
| 2806 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 2807 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2808 | if (first) { |
| 2809 | /* find the first sibling */ |
| 2810 | *first = sibling; |
| 2811 | while ((*first)->prev->next) { |
| 2812 | *first = (*first)->prev; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 2813 | } |
| 2814 | } |
| 2815 | |
| 2816 | return LY_SUCCESS; |
| 2817 | } |
| 2818 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2819 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2820 | lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node) |
| 2821 | { |
Michal Vasko | bce230b | 2022-04-19 09:55:31 +0200 | [diff] [blame] | 2822 | LY_CHECK_ARG_RET(NULL, sibling, node, sibling != node, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2823 | LY_CHECK_CTX_EQUAL_RET(LYD_CTX(sibling), LYD_CTX(node), LY_EINVAL); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2824 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2825 | LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema)); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2826 | |
Michal Vasko | ab7a2bf | 2022-04-01 14:37:54 +0200 | [diff] [blame] | 2827 | if (node->schema && (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER))) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2828 | LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes."); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2829 | return LY_EINVAL; |
| 2830 | } |
Michal Vasko | 5c0b27a | 2022-04-19 09:56:02 +0200 | [diff] [blame] | 2831 | if (node->schema && sibling->schema && (node->schema != sibling->schema)) { |
| 2832 | LOGERR(LYD_CTX(sibling), LY_EINVAL, "Cannot insert before a different schema node instance."); |
Michal Vasko | 7508ef2 | 2022-02-22 14:13:10 +0100 | [diff] [blame] | 2833 | return LY_EINVAL; |
| 2834 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2835 | |
Michal Vasko | 4bc2ce3 | 2020-12-08 10:06:16 +0100 | [diff] [blame] | 2836 | lyd_unlink_tree(node); |
| 2837 | lyd_insert_before_node(sibling, node); |
| 2838 | lyd_insert_hash(node); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2839 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2840 | return LY_SUCCESS; |
| 2841 | } |
| 2842 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2843 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2844 | lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node) |
| 2845 | { |
Michal Vasko | bce230b | 2022-04-19 09:55:31 +0200 | [diff] [blame] | 2846 | LY_CHECK_ARG_RET(NULL, sibling, node, sibling != node, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 2847 | LY_CHECK_CTX_EQUAL_RET(LYD_CTX(sibling), LYD_CTX(node), LY_EINVAL); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2848 | |
Michal Vasko | 717a4c3 | 2020-12-07 09:40:10 +0100 | [diff] [blame] | 2849 | LY_CHECK_RET(lyd_insert_check_schema(NULL, sibling->schema, node->schema)); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2850 | |
Michal Vasko | ab7a2bf | 2022-04-01 14:37:54 +0200 | [diff] [blame] | 2851 | if (node->schema && (!(node->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !(node->schema->flags & LYS_ORDBY_USER))) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2852 | LOGERR(LYD_CTX(sibling), LY_EINVAL, "Can be used only for user-ordered nodes."); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2853 | return LY_EINVAL; |
| 2854 | } |
Michal Vasko | 5c0b27a | 2022-04-19 09:56:02 +0200 | [diff] [blame] | 2855 | if (node->schema && sibling->schema && (node->schema != sibling->schema)) { |
| 2856 | LOGERR(LYD_CTX(sibling), LY_EINVAL, "Cannot insert after a different schema node instance."); |
Michal Vasko | 7508ef2 | 2022-02-22 14:13:10 +0100 | [diff] [blame] | 2857 | return LY_EINVAL; |
| 2858 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2859 | |
Michal Vasko | 4bc2ce3 | 2020-12-08 10:06:16 +0100 | [diff] [blame] | 2860 | lyd_unlink_tree(node); |
| 2861 | lyd_insert_after_node(sibling, node); |
| 2862 | lyd_insert_hash(node); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2863 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2864 | return LY_SUCCESS; |
| 2865 | } |
| 2866 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2867 | LIBYANG_API_DEF void |
Michal Vasko | 66d508c | 2021-07-21 16:07:09 +0200 | [diff] [blame] | 2868 | lyd_unlink_siblings(struct lyd_node *node) |
| 2869 | { |
| 2870 | struct lyd_node *next, *elem, *first = NULL; |
| 2871 | |
| 2872 | LY_LIST_FOR_SAFE(node, next, elem) { |
| 2873 | lyd_unlink_tree(elem); |
| 2874 | lyd_insert_node(NULL, &first, elem, 1); |
| 2875 | } |
| 2876 | } |
| 2877 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 2878 | LIBYANG_API_DEF void |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2879 | lyd_unlink_tree(struct lyd_node *node) |
| 2880 | { |
| 2881 | struct lyd_node *iter; |
| 2882 | |
| 2883 | if (!node) { |
| 2884 | return; |
| 2885 | } |
| 2886 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2887 | /* update hashes while still linked into the tree */ |
| 2888 | lyd_unlink_hash(node); |
| 2889 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2890 | /* unlink from siblings */ |
| 2891 | if (node->prev->next) { |
| 2892 | node->prev->next = node->next; |
| 2893 | } |
| 2894 | if (node->next) { |
| 2895 | node->next->prev = node->prev; |
| 2896 | } else { |
| 2897 | /* unlinking the last node */ |
| 2898 | if (node->parent) { |
| 2899 | iter = node->parent->child; |
| 2900 | } else { |
| 2901 | iter = node->prev; |
| 2902 | while (iter->prev != node) { |
| 2903 | iter = iter->prev; |
| 2904 | } |
| 2905 | } |
| 2906 | /* update the "last" pointer from the first node */ |
| 2907 | iter->prev = node->prev; |
| 2908 | } |
| 2909 | |
| 2910 | /* unlink from parent */ |
| 2911 | if (node->parent) { |
| 2912 | if (node->parent->child == node) { |
| 2913 | /* the node is the first child */ |
| 2914 | node->parent->child = node->next; |
| 2915 | } |
| 2916 | |
Michal Vasko | ab49dbe | 2020-07-17 12:32:47 +0200 | [diff] [blame] | 2917 | /* check for NP container whether its last non-default node is not being unlinked */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2918 | if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) && |
| 2919 | !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) { |
Michal Vasko | ab49dbe | 2020-07-17 12:32:47 +0200 | [diff] [blame] | 2920 | LY_LIST_FOR(node->parent->child, iter) { |
| 2921 | if ((iter != node) && !(iter->flags & LYD_DEFAULT)) { |
| 2922 | break; |
| 2923 | } |
| 2924 | } |
| 2925 | if (!iter) { |
| 2926 | node->parent->flags |= LYD_DEFAULT; |
| 2927 | } |
| 2928 | } |
| 2929 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2930 | node->parent = NULL; |
| 2931 | } |
| 2932 | |
| 2933 | node->next = NULL; |
| 2934 | node->prev = node; |
| 2935 | } |
| 2936 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2937 | void |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2938 | lyd_insert_meta(struct lyd_node *parent, struct lyd_meta *meta, ly_bool clear_dflt) |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2939 | { |
| 2940 | struct lyd_meta *last, *iter; |
| 2941 | |
| 2942 | assert(parent); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2943 | |
| 2944 | if (!meta) { |
| 2945 | return; |
| 2946 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2947 | |
| 2948 | for (iter = meta; iter; iter = iter->next) { |
| 2949 | iter->parent = parent; |
| 2950 | } |
| 2951 | |
| 2952 | /* insert as the last attribute */ |
| 2953 | if (parent->meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2954 | for (last = parent->meta; last->next; last = last->next) {} |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2955 | last->next = meta; |
| 2956 | } else { |
| 2957 | parent->meta = meta; |
| 2958 | } |
| 2959 | |
| 2960 | /* remove default flags from NP containers */ |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2961 | while (clear_dflt && parent && (parent->schema->nodetype == LYS_CONTAINER) && (parent->flags & LYD_DEFAULT)) { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2962 | parent->flags &= ~LYD_DEFAULT; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 2963 | parent = lyd_parent(parent); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2964 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2965 | } |
| 2966 | |
| 2967 | LY_ERR |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2968 | lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 2969 | size_t name_len, const char *value, size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2970 | void *prefix_data, uint32_t hints, const struct lysc_node *ctx_node, ly_bool clear_dflt, ly_bool *incomplete) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2971 | { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2972 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2973 | struct lysc_ext_instance *ant = NULL; |
Michal Vasko | b0534f9 | 2021-07-01 13:24:03 +0200 | [diff] [blame] | 2974 | const struct lysc_type **ant_type; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2975 | struct lyd_meta *mt, *last; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2976 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2977 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2978 | assert((parent || meta) && mod); |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 2979 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 2980 | LOG_LOCSET(ctx_node, parent, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2981 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2982 | LY_ARRAY_FOR(mod->compiled->exts, u) { |
Radek Krejci | 3e6632f | 2021-03-22 22:08:21 +0100 | [diff] [blame] | 2983 | if ((mod->compiled->exts[u].def->plugin == lyplg_find(LYPLG_EXTENSION, LYEXT_PLUGIN_INTERNAL_ANNOTATION)) && |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2984 | !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2985 | /* we have the annotation definition */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2986 | ant = &mod->compiled->exts[u]; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2987 | break; |
| 2988 | } |
| 2989 | } |
| 2990 | if (!ant) { |
| 2991 | /* attribute is not defined as a metadata annotation (RFC 7952) */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2992 | LOGVAL(mod->ctx, LYVE_REFERENCE, "Annotation definition for attribute \"%s:%.*s\" not found.", |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 2993 | mod->name, (int)name_len, name); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2994 | ret = LY_EINVAL; |
| 2995 | goto cleanup; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2996 | } |
| 2997 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2998 | mt = calloc(1, sizeof *mt); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2999 | LY_CHECK_ERR_GOTO(!mt, LOGMEM(mod->ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 3000 | mt->parent = parent; |
| 3001 | mt->annotation = ant; |
Michal Vasko | b0534f9 | 2021-07-01 13:24:03 +0200 | [diff] [blame] | 3002 | ant_type = ant->substmts[ANNOTATION_SUBSTMT_TYPE].storage; |
| 3003 | ret = lyd_value_store(mod->ctx, &mt->value, *ant_type, value, value_len, dynamic, format, prefix_data, hints, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3004 | ctx_node, incomplete); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3005 | LY_CHECK_ERR_GOTO(ret, free(mt), cleanup); |
| 3006 | ret = lydict_insert(mod->ctx, name, name_len, &mt->name); |
| 3007 | LY_CHECK_ERR_GOTO(ret, free(mt), cleanup); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3008 | |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 3009 | /* insert as the last attribute */ |
| 3010 | if (parent) { |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 3011 | lyd_insert_meta(parent, mt, clear_dflt); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 3012 | } else if (*meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 3013 | for (last = *meta; last->next; last = last->next) {} |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 3014 | last->next = mt; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3015 | } |
| 3016 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 3017 | if (meta) { |
| 3018 | *meta = mt; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3019 | } |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3020 | |
| 3021 | cleanup: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3022 | LOG_LOCBACK(ctx_node ? 1 : 0, parent ? 1 : 0, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3023 | return ret; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3024 | } |
| 3025 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 3026 | void |
| 3027 | lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr) |
| 3028 | { |
| 3029 | struct lyd_attr *last, *iter; |
| 3030 | struct lyd_node_opaq *opaq; |
| 3031 | |
| 3032 | assert(parent && !parent->schema); |
| 3033 | |
| 3034 | if (!attr) { |
| 3035 | return; |
| 3036 | } |
| 3037 | |
| 3038 | opaq = (struct lyd_node_opaq *)parent; |
| 3039 | for (iter = attr; iter; iter = iter->next) { |
| 3040 | iter->parent = opaq; |
| 3041 | } |
| 3042 | |
| 3043 | /* insert as the last attribute */ |
| 3044 | if (opaq->attr) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 3045 | for (last = opaq->attr; last->next; last = last->next) {} |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 3046 | last->next = attr; |
| 3047 | } else { |
| 3048 | opaq->attr = attr; |
| 3049 | } |
| 3050 | } |
| 3051 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3052 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 3053 | lyd_create_attr(struct lyd_node *parent, struct lyd_attr **attr, const struct ly_ctx *ctx, const char *name, size_t name_len, |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 3054 | const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 3055 | size_t value_len, ly_bool *dynamic, LY_VALUE_FORMAT format, void *val_prefix_data, uint32_t hints) |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3056 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3057 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 3058 | struct lyd_attr *at, *last; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3059 | |
| 3060 | assert(ctx && (parent || attr) && (!parent || !parent->schema)); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 3061 | assert(name && name_len && format); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3062 | |
Michal Vasko | 2a3722d | 2021-06-16 11:52:39 +0200 | [diff] [blame] | 3063 | if (!value_len && (!dynamic || !*dynamic)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3064 | value = ""; |
| 3065 | } |
| 3066 | |
| 3067 | at = calloc(1, sizeof *at); |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 3068 | LY_CHECK_ERR_RET(!at, LOGMEM(ctx); ly_free_prefix_data(format, val_prefix_data), LY_EMEM); |
Radek Krejci | d46e46a | 2020-09-15 14:22:42 +0200 | [diff] [blame] | 3069 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 3070 | LY_CHECK_GOTO(ret = lydict_insert(ctx, name, name_len, &at->name.name), finish); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 3071 | if (prefix_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 3072 | LY_CHECK_GOTO(ret = lydict_insert(ctx, prefix, prefix_len, &at->name.prefix), finish); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 3073 | } |
| 3074 | if (module_key_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 3075 | LY_CHECK_GOTO(ret = lydict_insert(ctx, module_key, module_key_len, &at->name.module_ns), finish); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 3076 | } |
| 3077 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3078 | if (dynamic && *dynamic) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3079 | ret = lydict_insert_zc(ctx, (char *)value, &at->value); |
| 3080 | LY_CHECK_GOTO(ret, finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3081 | *dynamic = 0; |
| 3082 | } else { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3083 | LY_CHECK_GOTO(ret = lydict_insert(ctx, value, value_len, &at->value), finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3084 | } |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 3085 | at->format = format; |
| 3086 | at->val_prefix_data = val_prefix_data; |
| 3087 | at->hints = hints; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3088 | |
| 3089 | /* insert as the last attribute */ |
| 3090 | if (parent) { |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 3091 | lyd_insert_attr(parent, at); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3092 | } else if (*attr) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 3093 | for (last = *attr; last->next; last = last->next) {} |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3094 | last->next = at; |
| 3095 | } |
| 3096 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3097 | finish: |
| 3098 | if (ret) { |
| 3099 | lyd_free_attr_single(ctx, at); |
| 3100 | } else if (attr) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3101 | *attr = at; |
| 3102 | } |
| 3103 | return LY_SUCCESS; |
| 3104 | } |
| 3105 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3106 | LIBYANG_API_DEF const struct lyd_node_term * |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3107 | lyd_target(const struct ly_path *path, const struct lyd_node *tree) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 3108 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3109 | struct lyd_node *target; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 3110 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3111 | if (ly_path_eval(path, tree, &target)) { |
| 3112 | return NULL; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 3113 | } |
| 3114 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3115 | return (struct lyd_node_term *)target; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 3116 | } |
| 3117 | |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3118 | /** |
| 3119 | * @brief Check the equality of the two schemas from different contexts. |
| 3120 | * |
| 3121 | * @param schema1 of first node. |
| 3122 | * @param schema2 of second node. |
| 3123 | * @return 1 if the schemas are equal otherwise 0. |
| 3124 | */ |
| 3125 | static ly_bool |
| 3126 | lyd_compare_schema_equal(const struct lysc_node *schema1, const struct lysc_node *schema2) |
| 3127 | { |
| 3128 | if (!schema1 && !schema2) { |
| 3129 | return 1; |
| 3130 | } else if (!schema1 || !schema2) { |
| 3131 | return 0; |
| 3132 | } |
| 3133 | |
| 3134 | assert(schema1->module->ctx != schema2->module->ctx); |
| 3135 | |
| 3136 | if (schema1->nodetype != schema2->nodetype) { |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
| 3140 | if (strcmp(schema1->name, schema2->name)) { |
| 3141 | return 0; |
| 3142 | } |
| 3143 | |
| 3144 | if (strcmp(schema1->module->name, schema2->module->name)) { |
| 3145 | return 0; |
| 3146 | } |
| 3147 | |
| 3148 | if (schema1->module->revision || schema2->module->revision) { |
| 3149 | if (!schema1->module->revision || !schema2->module->revision) { |
| 3150 | return 0; |
| 3151 | } |
| 3152 | if (strcmp(schema1->module->revision, schema2->module->revision)) { |
| 3153 | return 0; |
| 3154 | } |
| 3155 | } |
| 3156 | |
| 3157 | return 1; |
| 3158 | } |
| 3159 | |
| 3160 | /** |
| 3161 | * @brief Check the equality of the schemas for all parent nodes. |
| 3162 | * |
| 3163 | * Both nodes must be from different contexts. |
| 3164 | * |
| 3165 | * @param node1 Data of first node. |
| 3166 | * @param node2 Data of second node. |
| 3167 | * @return 1 if the all related parental schemas are equal otherwise 0. |
| 3168 | */ |
| 3169 | static ly_bool |
| 3170 | lyd_compare_schema_parents_equal(const struct lyd_node *node1, const struct lyd_node *node2) |
| 3171 | { |
| 3172 | const struct lysc_node *parent1, *parent2; |
| 3173 | |
| 3174 | assert(node1 && node2); |
| 3175 | |
| 3176 | for (parent1 = node1->schema->parent, parent2 = node2->schema->parent; |
| 3177 | parent1 && parent2; |
| 3178 | parent1 = parent1->parent, parent2 = parent2->parent) { |
| 3179 | if (!lyd_compare_schema_equal(parent1, parent2)) { |
| 3180 | return 0; |
| 3181 | } |
| 3182 | } |
| 3183 | |
| 3184 | if (parent1 || parent2) { |
| 3185 | return 0; |
| 3186 | } |
| 3187 | |
| 3188 | return 1; |
| 3189 | } |
| 3190 | |
| 3191 | /** |
| 3192 | * @brief Internal implementation of @ref lyd_compare_single. |
| 3193 | * @copydoc lyd_compare_single |
| 3194 | * @param[in] parental_schemas_checked Flag used for optimization. |
| 3195 | * When this function is called for the first time, the flag must be set to 0. |
| 3196 | * The @ref lyd_compare_schema_parents_equal should be called only once during |
| 3197 | * recursive calls, and this is accomplished by setting to 1 in the lyd_compare_single_ body. |
| 3198 | */ |
| 3199 | static LY_ERR |
| 3200 | lyd_compare_single_(const struct lyd_node *node1, const struct lyd_node *node2, |
| 3201 | uint32_t options, ly_bool parental_schemas_checked) |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3202 | { |
| 3203 | const struct lyd_node *iter1, *iter2; |
| 3204 | struct lyd_node_term *term1, *term2; |
| 3205 | struct lyd_node_any *any1, *any2; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3206 | struct lyd_node_opaq *opaq1, *opaq2; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3207 | size_t len1, len2; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 3208 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3209 | if (!node1 || !node2) { |
| 3210 | if (node1 == node2) { |
| 3211 | return LY_SUCCESS; |
| 3212 | } else { |
| 3213 | return LY_ENOT; |
| 3214 | } |
| 3215 | } |
| 3216 | |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3217 | if (LYD_CTX(node1) == LYD_CTX(node2)) { |
| 3218 | /* same contexts */ |
| 3219 | if (node1->schema != node2->schema) { |
| 3220 | return LY_ENOT; |
| 3221 | } |
| 3222 | } else { |
| 3223 | /* different contexts */ |
| 3224 | if (!lyd_compare_schema_equal(node1->schema, node2->schema)) { |
| 3225 | return LY_ENOT; |
| 3226 | } |
| 3227 | if (!parental_schemas_checked) { |
| 3228 | if (!lyd_compare_schema_parents_equal(node1, node2)) { |
| 3229 | return LY_ENOT; |
| 3230 | } |
| 3231 | parental_schemas_checked = 1; |
| 3232 | } |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3233 | } |
| 3234 | |
| 3235 | if (node1->hash != node2->hash) { |
| 3236 | return LY_ENOT; |
| 3237 | } |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3238 | /* equal hashes do not mean equal nodes, they can be just in collision so the nodes must be checked explicitly */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3239 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3240 | if (!node1->schema) { |
| 3241 | opaq1 = (struct lyd_node_opaq *)node1; |
| 3242 | opaq2 = (struct lyd_node_opaq *)node2; |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3243 | if ((strcmp(opaq1->name.name, opaq2->name.name)) || (opaq1->format != opaq2->format) || |
| 3244 | (strcmp(opaq1->name.module_ns, opaq2->name.module_ns))) { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3245 | return LY_ENOT; |
| 3246 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3247 | switch (opaq1->format) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 3248 | case LY_VALUE_XML: |
Radek Krejci | 09c7744 | 2021-04-26 11:10:34 +0200 | [diff] [blame] | 3249 | if (lyxml_value_compare(LYD_CTX(node1), opaq1->value, opaq1->val_prefix_data, LYD_CTX(node2), opaq2->value, |
| 3250 | opaq2->val_prefix_data)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3251 | return LY_ENOT; |
| 3252 | } |
| 3253 | break; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 3254 | case LY_VALUE_JSON: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 3255 | /* prefixes in JSON are unique, so it is not necessary to canonize the values */ |
| 3256 | if (strcmp(opaq1->value, opaq2->value)) { |
| 3257 | return LY_ENOT; |
| 3258 | } |
| 3259 | break; |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 3260 | default: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3261 | /* not allowed */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3262 | LOGINT(LYD_CTX(node1)); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3263 | return LY_EINT; |
| 3264 | } |
| 3265 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 3266 | iter1 = opaq1->child; |
| 3267 | iter2 = opaq2->child; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3268 | goto all_children_compare; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3269 | } |
| 3270 | return LY_SUCCESS; |
| 3271 | } else { |
| 3272 | switch (node1->schema->nodetype) { |
| 3273 | case LYS_LEAF: |
| 3274 | case LYS_LEAFLIST: |
| 3275 | if (options & LYD_COMPARE_DEFAULTS) { |
| 3276 | if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) { |
| 3277 | return LY_ENOT; |
| 3278 | } |
| 3279 | } |
| 3280 | |
Michal Vasko | 1a2bf2e | 2020-06-16 13:07:48 +0200 | [diff] [blame] | 3281 | term1 = (struct lyd_node_term *)node1; |
| 3282 | term2 = (struct lyd_node_term *)node2; |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3283 | |
| 3284 | /* same contexts */ |
| 3285 | if (LYD_CTX(node1) == LYD_CTX(node2)) { |
| 3286 | return term1->value.realtype->plugin->compare(&term1->value, &term2->value); |
| 3287 | } |
| 3288 | |
| 3289 | /* different contexts */ |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 3290 | if (strcmp(lyd_get_value(node1), lyd_get_value(node2))) { |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3291 | return LY_ENOT; |
| 3292 | } |
| 3293 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3294 | case LYS_CONTAINER: |
| 3295 | if (options & LYD_COMPARE_DEFAULTS) { |
| 3296 | if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) { |
| 3297 | return LY_ENOT; |
| 3298 | } |
| 3299 | } |
| 3300 | if (options & LYD_COMPARE_FULL_RECURSION) { |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 3301 | iter1 = lyd_child(node1); |
| 3302 | iter2 = lyd_child(node2); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3303 | goto all_children_compare; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3304 | } |
| 3305 | return LY_SUCCESS; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 3306 | case LYS_RPC: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3307 | case LYS_ACTION: |
| 3308 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 3309 | /* TODO action/RPC |
| 3310 | goto all_children_compare; |
| 3311 | */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3312 | } |
| 3313 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3314 | case LYS_NOTIF: |
| 3315 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 3316 | /* TODO Notification |
| 3317 | goto all_children_compare; |
| 3318 | */ |
| 3319 | } |
| 3320 | return LY_SUCCESS; |
| 3321 | case LYS_LIST: |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 3322 | iter1 = lyd_child(node1); |
| 3323 | iter2 = lyd_child(node2); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3324 | |
| 3325 | if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) { |
| 3326 | /* lists with keys, their equivalence is based on their keys */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 3327 | for (const struct lysc_node *key = lysc_node_child(node1->schema); |
Michal Vasko | c57d9a9 | 2020-06-23 13:28:27 +0200 | [diff] [blame] | 3328 | key && (key->flags & LYS_KEY); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3329 | key = key->next) { |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3330 | if (lyd_compare_single_(iter1, iter2, options, parental_schemas_checked)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3331 | return LY_ENOT; |
| 3332 | } |
| 3333 | iter1 = iter1->next; |
| 3334 | iter2 = iter2->next; |
| 3335 | } |
| 3336 | } else { |
| 3337 | /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */ |
| 3338 | |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3339 | all_children_compare: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3340 | if (!iter1 && !iter2) { |
| 3341 | /* no children, nothing to compare */ |
| 3342 | return LY_SUCCESS; |
| 3343 | } |
| 3344 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 3345 | for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) { |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3346 | if (lyd_compare_single_(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION, parental_schemas_checked)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3347 | return LY_ENOT; |
| 3348 | } |
| 3349 | } |
| 3350 | if (iter1 || iter2) { |
| 3351 | return LY_ENOT; |
| 3352 | } |
| 3353 | } |
| 3354 | return LY_SUCCESS; |
| 3355 | case LYS_ANYXML: |
| 3356 | case LYS_ANYDATA: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 3357 | any1 = (struct lyd_node_any *)node1; |
| 3358 | any2 = (struct lyd_node_any *)node2; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3359 | |
| 3360 | if (any1->value_type != any2->value_type) { |
| 3361 | return LY_ENOT; |
| 3362 | } |
| 3363 | switch (any1->value_type) { |
| 3364 | case LYD_ANYDATA_DATATREE: |
| 3365 | iter1 = any1->value.tree; |
| 3366 | iter2 = any2->value.tree; |
| 3367 | goto all_children_compare; |
| 3368 | case LYD_ANYDATA_STRING: |
| 3369 | case LYD_ANYDATA_XML: |
| 3370 | case LYD_ANYDATA_JSON: |
| 3371 | len1 = strlen(any1->value.str); |
| 3372 | len2 = strlen(any2->value.str); |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3373 | if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3374 | return LY_ENOT; |
| 3375 | } |
| 3376 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3377 | case LYD_ANYDATA_LYB: |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 3378 | len1 = lyd_lyb_data_length(any1->value.mem); |
| 3379 | len2 = lyd_lyb_data_length(any2->value.mem); |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3380 | if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3381 | return LY_ENOT; |
| 3382 | } |
| 3383 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3384 | } |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3385 | } |
| 3386 | } |
| 3387 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3388 | LOGINT(LYD_CTX(node1)); |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 3389 | return LY_EINT; |
| 3390 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3391 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3392 | LIBYANG_API_DEF LY_ERR |
aPiecek | 2f63f95 | 2021-03-30 12:22:18 +0200 | [diff] [blame] | 3393 | lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options) |
| 3394 | { |
| 3395 | return lyd_compare_single_(node1, node2, options, 0); |
| 3396 | } |
| 3397 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3398 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3399 | lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options) |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3400 | { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 3401 | for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3402 | LY_CHECK_RET(lyd_compare_single(node1, node2, options)); |
| 3403 | } |
| 3404 | |
Michal Vasko | 11a8143 | 2020-07-28 16:31:29 +0200 | [diff] [blame] | 3405 | if (node1 == node2) { |
| 3406 | return LY_SUCCESS; |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3407 | } |
Michal Vasko | 11a8143 | 2020-07-28 16:31:29 +0200 | [diff] [blame] | 3408 | return LY_ENOT; |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3409 | } |
| 3410 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3411 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 3412 | lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2) |
| 3413 | { |
| 3414 | if (!meta1 || !meta2) { |
| 3415 | if (meta1 == meta2) { |
| 3416 | return LY_SUCCESS; |
| 3417 | } else { |
| 3418 | return LY_ENOT; |
| 3419 | } |
| 3420 | } |
| 3421 | |
Michal Vasko | a808306 | 2020-11-06 17:22:10 +0100 | [diff] [blame] | 3422 | if ((meta1->annotation->module->ctx != meta2->annotation->module->ctx) || (meta1->annotation != meta2->annotation)) { |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 3423 | return LY_ENOT; |
| 3424 | } |
| 3425 | |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 3426 | return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value); |
| 3427 | } |
| 3428 | |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3429 | /** |
Michal Vasko | 9cf6242 | 2021-07-01 13:29:32 +0200 | [diff] [blame] | 3430 | * @brief Create a copy of the attribute. |
| 3431 | * |
| 3432 | * @param[in] attr Attribute to copy. |
| 3433 | * @param[in] node Opaque where to append the new attribute. |
| 3434 | * @param[out] dup Optional created attribute copy. |
| 3435 | * @return LY_ERR value. |
| 3436 | */ |
| 3437 | static LY_ERR |
| 3438 | lyd_dup_attr_single(const struct lyd_attr *attr, struct lyd_node *node, struct lyd_attr **dup) |
| 3439 | { |
| 3440 | LY_ERR ret = LY_SUCCESS; |
| 3441 | struct lyd_attr *a, *last; |
| 3442 | struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)node; |
| 3443 | |
| 3444 | LY_CHECK_ARG_RET(NULL, attr, node, !node->schema, LY_EINVAL); |
| 3445 | |
| 3446 | /* create a copy */ |
| 3447 | a = calloc(1, sizeof *attr); |
| 3448 | LY_CHECK_ERR_RET(!a, LOGMEM(LYD_CTX(node)), LY_EMEM); |
| 3449 | |
| 3450 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.name, 0, &a->name.name), finish); |
| 3451 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.prefix, 0, &a->name.prefix), finish); |
| 3452 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->name.module_ns, 0, &a->name.module_ns), finish); |
| 3453 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), attr->value, 0, &a->value), finish); |
| 3454 | a->hints = attr->hints; |
| 3455 | a->format = attr->format; |
| 3456 | if (attr->val_prefix_data) { |
| 3457 | ret = ly_dup_prefix_data(LYD_CTX(node), attr->format, attr->val_prefix_data, &a->val_prefix_data); |
| 3458 | LY_CHECK_GOTO(ret, finish); |
| 3459 | } |
| 3460 | |
| 3461 | /* insert as the last attribute */ |
| 3462 | a->parent = opaq; |
| 3463 | if (opaq->attr) { |
| 3464 | for (last = opaq->attr; last->next; last = last->next) {} |
| 3465 | last->next = a; |
| 3466 | } else { |
| 3467 | opaq->attr = a; |
| 3468 | } |
| 3469 | |
| 3470 | finish: |
| 3471 | if (ret) { |
| 3472 | lyd_free_attr_single(LYD_CTX(node), a); |
| 3473 | } else if (dup) { |
| 3474 | *dup = a; |
| 3475 | } |
| 3476 | return LY_SUCCESS; |
| 3477 | } |
| 3478 | |
| 3479 | /** |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3480 | * @brief Find @p schema equivalent in @p trg_ctx. |
| 3481 | * |
| 3482 | * @param[in] schema Schema node to find. |
| 3483 | * @param[in] trg_ctx Target context to search in. |
| 3484 | * @param[in] parent Data parent of @p schema, if any. |
| 3485 | * @param[out] trg_schema Found schema from @p trg_ctx to use. |
| 3486 | * @return LY_RRR value. |
| 3487 | */ |
| 3488 | static LY_ERR |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3489 | lyd_dup_find_schema(const struct lysc_node *schema, const struct ly_ctx *trg_ctx, const struct lyd_node *parent, |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3490 | const struct lysc_node **trg_schema) |
| 3491 | { |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3492 | const struct lysc_node *src_parent = NULL, *trg_parent = NULL, *sp, *tp; |
| 3493 | const struct lys_module *trg_mod = NULL; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3494 | char *path; |
| 3495 | |
| 3496 | if (!schema) { |
| 3497 | /* opaque node */ |
| 3498 | *trg_schema = NULL; |
| 3499 | return LY_SUCCESS; |
| 3500 | } |
| 3501 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3502 | if (lysc_data_parent(schema) && parent && parent->schema) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3503 | /* start from schema parent */ |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3504 | trg_parent = parent->schema; |
| 3505 | src_parent = lysc_data_parent(schema); |
| 3506 | } |
| 3507 | |
| 3508 | do { |
| 3509 | /* find the next parent */ |
| 3510 | sp = schema; |
| 3511 | while (sp->parent != src_parent) { |
| 3512 | sp = sp->parent; |
| 3513 | } |
| 3514 | src_parent = sp; |
| 3515 | |
| 3516 | if (!src_parent->parent) { |
| 3517 | /* find the module first */ |
| 3518 | trg_mod = ly_ctx_get_module_implemented(trg_ctx, src_parent->module->name); |
| 3519 | if (!trg_mod) { |
| 3520 | LOGERR(trg_ctx, LY_ENOTFOUND, "Module \"%s\" not present/implemented in the target context.", |
| 3521 | src_parent->module->name); |
| 3522 | return LY_ENOTFOUND; |
| 3523 | } |
| 3524 | } |
| 3525 | |
| 3526 | /* find the next parent */ |
| 3527 | assert(trg_parent || trg_mod); |
| 3528 | tp = NULL; |
| 3529 | while ((tp = lys_getnext(tp, trg_parent, trg_mod ? trg_mod->compiled : NULL, 0))) { |
| 3530 | if (!strcmp(tp->name, src_parent->name) && !strcmp(tp->module->name, src_parent->module->name)) { |
| 3531 | break; |
| 3532 | } |
| 3533 | } |
| 3534 | if (!tp) { |
| 3535 | /* schema node not found */ |
| 3536 | path = lysc_path(src_parent, LYSC_PATH_LOG, NULL, 0); |
| 3537 | LOGERR(trg_ctx, LY_ENOTFOUND, "Schema node \"%s\" not found in the target context.", path); |
| 3538 | free(path); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3539 | return LY_ENOTFOUND; |
| 3540 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3541 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3542 | trg_parent = tp; |
| 3543 | } while (schema != src_parent); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3544 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3545 | /* success */ |
| 3546 | *trg_schema = trg_parent; |
| 3547 | return LY_SUCCESS; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3548 | } |
| 3549 | |
| 3550 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3551 | * @brief Duplicate a single node and connect it into @p parent (if present) or last of @p first siblings. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3552 | * |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3553 | * Ignores ::LYD_DUP_WITH_PARENTS and ::LYD_DUP_WITH_SIBLINGS which are supposed to be handled by lyd_dup(). |
Radek Krejci | f8b9517 | 2020-05-15 14:51:06 +0200 | [diff] [blame] | 3554 | * |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3555 | * @param[in] node Node to duplicate. |
| 3556 | * @param[in] trg_ctx Target context for duplicated nodes. |
Radek Krejci | f8b9517 | 2020-05-15 14:51:06 +0200 | [diff] [blame] | 3557 | * @param[in] parent Parent to insert into, NULL for top-level sibling. |
Michal Vasko | 67177e5 | 2021-08-25 11:15:15 +0200 | [diff] [blame] | 3558 | * @param[in] insert_last Whether the duplicated node can be inserted as the last child of @p parent. Set for |
| 3559 | * recursive duplication as an optimization. |
Radek Krejci | f8b9517 | 2020-05-15 14:51:06 +0200 | [diff] [blame] | 3560 | * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set. |
| 3561 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3562 | * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it to @p parent / @p first). |
| 3563 | * @return LY_ERR value. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3564 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3565 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3566 | lyd_dup_r(const struct lyd_node *node, const struct ly_ctx *trg_ctx, struct lyd_node *parent, ly_bool insert_last, |
| 3567 | struct lyd_node **first, uint32_t options, struct lyd_node **dup_p) |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3568 | { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3569 | LY_ERR ret; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3570 | struct lyd_node *dup = NULL; |
Michal Vasko | 61551fa | 2020-07-09 15:45:45 +0200 | [diff] [blame] | 3571 | struct lyd_meta *meta; |
Michal Vasko | 9cf6242 | 2021-07-01 13:29:32 +0200 | [diff] [blame] | 3572 | struct lyd_attr *attr; |
Michal Vasko | 61551fa | 2020-07-09 15:45:45 +0200 | [diff] [blame] | 3573 | struct lyd_node_any *any; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3574 | const struct lysc_type *type; |
| 3575 | const char *val_can; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3576 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3577 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3578 | |
Michal Vasko | 19175b6 | 2022-04-01 09:17:07 +0200 | [diff] [blame] | 3579 | if (node->flags & LYD_EXT) { |
| 3580 | /* we need to use the same context */ |
| 3581 | trg_ctx = LYD_CTX(node); |
| 3582 | } |
| 3583 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3584 | if (!node->schema) { |
| 3585 | dup = calloc(1, sizeof(struct lyd_node_opaq)); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3586 | ((struct lyd_node_opaq *)dup)->ctx = trg_ctx; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3587 | } else { |
| 3588 | switch (node->schema->nodetype) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 3589 | case LYS_RPC: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3590 | case LYS_ACTION: |
| 3591 | case LYS_NOTIF: |
| 3592 | case LYS_CONTAINER: |
| 3593 | case LYS_LIST: |
| 3594 | dup = calloc(1, sizeof(struct lyd_node_inner)); |
| 3595 | break; |
| 3596 | case LYS_LEAF: |
| 3597 | case LYS_LEAFLIST: |
| 3598 | dup = calloc(1, sizeof(struct lyd_node_term)); |
| 3599 | break; |
| 3600 | case LYS_ANYDATA: |
| 3601 | case LYS_ANYXML: |
| 3602 | dup = calloc(1, sizeof(struct lyd_node_any)); |
| 3603 | break; |
| 3604 | default: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3605 | LOGINT(trg_ctx); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3606 | ret = LY_EINT; |
| 3607 | goto error; |
| 3608 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3609 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3610 | LY_CHECK_ERR_GOTO(!dup, LOGMEM(trg_ctx); ret = LY_EMEM, error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3611 | |
Michal Vasko | f6df0a0 | 2020-06-16 13:08:34 +0200 | [diff] [blame] | 3612 | if (options & LYD_DUP_WITH_FLAGS) { |
| 3613 | dup->flags = node->flags; |
| 3614 | } else { |
Michal Vasko | 19175b6 | 2022-04-01 09:17:07 +0200 | [diff] [blame] | 3615 | dup->flags = (node->flags & (LYD_DEFAULT | LYD_EXT)) | LYD_NEW; |
Michal Vasko | f6df0a0 | 2020-06-16 13:08:34 +0200 | [diff] [blame] | 3616 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3617 | if (trg_ctx == LYD_CTX(node)) { |
| 3618 | dup->schema = node->schema; |
| 3619 | } else { |
Michal Vasko | 27f536f | 2022-04-01 09:17:30 +0200 | [diff] [blame] | 3620 | ret = lyd_dup_find_schema(node->schema, trg_ctx, parent, &dup->schema); |
| 3621 | if (ret) { |
| 3622 | /* has no schema but is not an opaque node */ |
| 3623 | free(dup); |
| 3624 | dup = NULL; |
| 3625 | goto error; |
| 3626 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3627 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3628 | dup->prev = dup; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3629 | |
Michal Vasko | 9cf6242 | 2021-07-01 13:29:32 +0200 | [diff] [blame] | 3630 | /* duplicate metadata/attributes */ |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3631 | if (!(options & LYD_DUP_NO_META)) { |
Michal Vasko | 9cf6242 | 2021-07-01 13:29:32 +0200 | [diff] [blame] | 3632 | if (!node->schema) { |
| 3633 | LY_LIST_FOR(((struct lyd_node_opaq *)node)->attr, attr) { |
| 3634 | LY_CHECK_GOTO(ret = lyd_dup_attr_single(attr, dup, NULL), error); |
| 3635 | } |
| 3636 | } else { |
| 3637 | LY_LIST_FOR(node->meta, meta) { |
| 3638 | LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error); |
| 3639 | } |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3640 | } |
| 3641 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3642 | |
| 3643 | /* nodetype-specific work */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3644 | if (!dup->schema) { |
| 3645 | struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup; |
| 3646 | struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node; |
| 3647 | struct lyd_node *child; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3648 | |
| 3649 | if (options & LYD_DUP_RECURSIVE) { |
| 3650 | /* duplicate all the children */ |
| 3651 | LY_LIST_FOR(orig->child, child) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3652 | LY_CHECK_GOTO(ret = lyd_dup_r(child, trg_ctx, dup, 1, NULL, options, NULL), error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3653 | } |
| 3654 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3655 | LY_CHECK_GOTO(ret = lydict_insert(trg_ctx, orig->name.name, 0, &opaq->name.name), error); |
| 3656 | LY_CHECK_GOTO(ret = lydict_insert(trg_ctx, orig->name.prefix, 0, &opaq->name.prefix), error); |
| 3657 | LY_CHECK_GOTO(ret = lydict_insert(trg_ctx, orig->name.module_ns, 0, &opaq->name.module_ns), error); |
| 3658 | LY_CHECK_GOTO(ret = lydict_insert(trg_ctx, orig->value, 0, &opaq->value), error); |
Michal Vasko | 9cf6242 | 2021-07-01 13:29:32 +0200 | [diff] [blame] | 3659 | opaq->hints = orig->hints; |
| 3660 | opaq->format = orig->format; |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 3661 | if (orig->val_prefix_data) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3662 | ret = ly_dup_prefix_data(trg_ctx, opaq->format, orig->val_prefix_data, &opaq->val_prefix_data); |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 3663 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3664 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3665 | } else if (dup->schema->nodetype & LYD_NODE_TERM) { |
| 3666 | struct lyd_node_term *term = (struct lyd_node_term *)dup; |
| 3667 | struct lyd_node_term *orig = (struct lyd_node_term *)node; |
| 3668 | |
| 3669 | term->hash = orig->hash; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3670 | if (trg_ctx == LYD_CTX(node)) { |
| 3671 | ret = orig->value.realtype->plugin->duplicate(trg_ctx, &orig->value, &term->value); |
| 3672 | LY_CHECK_ERR_GOTO(ret, LOGERR(trg_ctx, ret, "Value duplication failed."), error); |
| 3673 | } else { |
| 3674 | /* store canonical value in the target context */ |
| 3675 | val_can = lyd_get_value(node); |
| 3676 | type = ((struct lysc_node_leaf *)term->schema)->type; |
| 3677 | ret = lyd_value_store(trg_ctx, &term->value, type, val_can, strlen(val_can), NULL, LY_VALUE_CANON, NULL, |
| 3678 | LYD_HINT_DATA, term->schema, NULL); |
| 3679 | LY_CHECK_GOTO(ret, error); |
| 3680 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3681 | } else if (dup->schema->nodetype & LYD_NODE_INNER) { |
| 3682 | struct lyd_node_inner *orig = (struct lyd_node_inner *)node; |
| 3683 | struct lyd_node *child; |
| 3684 | |
| 3685 | if (options & LYD_DUP_RECURSIVE) { |
| 3686 | /* duplicate all the children */ |
| 3687 | LY_LIST_FOR(orig->child, child) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3688 | LY_CHECK_GOTO(ret = lyd_dup_r(child, trg_ctx, dup, 1, NULL, options, NULL), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3689 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3690 | } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3691 | /* always duplicate keys of a list */ |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 3692 | for (child = orig->child; child && lysc_is_key(child->schema); child = child->next) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3693 | LY_CHECK_GOTO(ret = lyd_dup_r(child, trg_ctx, dup, 1, NULL, options, NULL), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3694 | } |
| 3695 | } |
| 3696 | lyd_hash(dup); |
| 3697 | } else if (dup->schema->nodetype & LYD_NODE_ANY) { |
Michal Vasko | 61551fa | 2020-07-09 15:45:45 +0200 | [diff] [blame] | 3698 | dup->hash = node->hash; |
| 3699 | any = (struct lyd_node_any *)node; |
| 3700 | LY_CHECK_GOTO(ret = lyd_any_copy_value(dup, &any->value, any->value_type), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3701 | } |
| 3702 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3703 | /* insert */ |
Michal Vasko | 67177e5 | 2021-08-25 11:15:15 +0200 | [diff] [blame] | 3704 | lyd_insert_node(parent, first, dup, insert_last); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3705 | |
| 3706 | if (dup_p) { |
| 3707 | *dup_p = dup; |
| 3708 | } |
| 3709 | return LY_SUCCESS; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3710 | |
| 3711 | error: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 3712 | lyd_free_tree(dup); |
| 3713 | return ret; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3714 | } |
| 3715 | |
Michal Vasko | 29d674b | 2021-08-25 11:18:35 +0200 | [diff] [blame] | 3716 | /** |
| 3717 | * @brief Get a parent node to connect duplicated subtree to. |
| 3718 | * |
| 3719 | * @param[in] node Node (subtree) to duplicate. |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3720 | * @param[in] trg_ctx Target context for duplicated nodes. |
Michal Vasko | 29d674b | 2021-08-25 11:18:35 +0200 | [diff] [blame] | 3721 | * @param[in] parent Initial parent to connect to. |
| 3722 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| 3723 | * @param[out] dup_parent First duplicated parent node, if any. |
| 3724 | * @param[out] local_parent Correct parent to directly connect duplicated @p node to. |
| 3725 | * @return LY_ERR value. |
| 3726 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3727 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3728 | lyd_dup_get_local_parent(const struct lyd_node *node, const struct ly_ctx *trg_ctx, const struct lyd_node_inner *parent, |
| 3729 | uint32_t options, struct lyd_node **dup_parent, struct lyd_node_inner **local_parent) |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3730 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3731 | const struct lyd_node_inner *orig_parent, *iter; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3732 | ly_bool repeat = 1; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3733 | |
| 3734 | *dup_parent = NULL; |
| 3735 | *local_parent = NULL; |
| 3736 | |
| 3737 | for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) { |
| 3738 | if (parent && (parent->schema == orig_parent->schema)) { |
| 3739 | /* stop creating parents, connect what we have into the provided parent */ |
| 3740 | iter = parent; |
| 3741 | repeat = 0; |
| 3742 | } else { |
| 3743 | iter = NULL; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3744 | LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, trg_ctx, NULL, 0, (struct lyd_node **)&iter, options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3745 | (struct lyd_node **)&iter)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3746 | } |
| 3747 | if (!*local_parent) { |
| 3748 | *local_parent = (struct lyd_node_inner *)iter; |
| 3749 | } |
| 3750 | if (iter->child) { |
| 3751 | /* 1) list - add after keys |
| 3752 | * 2) provided parent with some children */ |
| 3753 | iter->child->prev->next = *dup_parent; |
| 3754 | if (*dup_parent) { |
| 3755 | (*dup_parent)->prev = iter->child->prev; |
| 3756 | iter->child->prev = *dup_parent; |
| 3757 | } |
| 3758 | } else { |
| 3759 | ((struct lyd_node_inner *)iter)->child = *dup_parent; |
| 3760 | } |
| 3761 | if (*dup_parent) { |
| 3762 | (*dup_parent)->parent = (struct lyd_node_inner *)iter; |
| 3763 | } |
| 3764 | *dup_parent = (struct lyd_node *)iter; |
| 3765 | } |
| 3766 | |
| 3767 | if (repeat && parent) { |
| 3768 | /* given parent and created parents chain actually do not interconnect */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3769 | LOGERR(trg_ctx, LY_EINVAL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3770 | "Invalid argument parent (%s()) - does not interconnect with the created node's parents chain.", __func__); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3771 | return LY_EINVAL; |
| 3772 | } |
| 3773 | |
| 3774 | return LY_SUCCESS; |
| 3775 | } |
| 3776 | |
| 3777 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3778 | lyd_dup(const struct lyd_node *node, const struct ly_ctx *trg_ctx, struct lyd_node_inner *parent, uint32_t options, |
| 3779 | ly_bool nosiblings, struct lyd_node **dup) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3780 | { |
| 3781 | LY_ERR rc; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3782 | const struct lyd_node *orig; /* original node to be duplicated */ |
| 3783 | struct lyd_node *first = NULL; /* the first duplicated node, this is returned */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3784 | struct lyd_node *top = NULL; /* the most higher created node */ |
| 3785 | struct lyd_node_inner *local_parent = NULL; /* the direct parent node for the duplicated node(s) */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3786 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3787 | assert(node && trg_ctx && (!parent || (LYD_CTX(parent) == trg_ctx))); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3788 | |
| 3789 | if (options & LYD_DUP_WITH_PARENTS) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3790 | LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, trg_ctx, parent, options & (LYD_DUP_WITH_FLAGS | LYD_DUP_NO_META), |
Michal Vasko | 2090975 | 2021-05-18 16:13:38 +0200 | [diff] [blame] | 3791 | &top, &local_parent), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3792 | } else { |
| 3793 | local_parent = parent; |
| 3794 | } |
| 3795 | |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3796 | LY_LIST_FOR(node, orig) { |
Michal Vasko | 35f4d77 | 2021-01-12 12:08:57 +0100 | [diff] [blame] | 3797 | if (lysc_is_key(orig->schema)) { |
| 3798 | if (local_parent) { |
| 3799 | /* the key must already exist in the parent */ |
| 3800 | rc = lyd_find_sibling_schema(local_parent->child, orig->schema, first ? NULL : &first); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3801 | LY_CHECK_ERR_GOTO(rc, LOGINT(trg_ctx), error); |
Michal Vasko | 35f4d77 | 2021-01-12 12:08:57 +0100 | [diff] [blame] | 3802 | } else { |
| 3803 | assert(!(options & LYD_DUP_WITH_PARENTS)); |
| 3804 | /* duplicating a single key, okay, I suppose... */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3805 | rc = lyd_dup_r(orig, trg_ctx, NULL, 0, &first, options, first ? NULL : &first); |
Michal Vasko | 35f4d77 | 2021-01-12 12:08:57 +0100 | [diff] [blame] | 3806 | LY_CHECK_GOTO(rc, error); |
| 3807 | } |
| 3808 | } else { |
| 3809 | /* if there is no local parent, it will be inserted into first */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3810 | rc = lyd_dup_r(orig, trg_ctx, local_parent ? &local_parent->node : NULL, 0, &first, options, |
| 3811 | first ? NULL : &first); |
Michal Vasko | 35f4d77 | 2021-01-12 12:08:57 +0100 | [diff] [blame] | 3812 | LY_CHECK_GOTO(rc, error); |
| 3813 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3814 | if (nosiblings) { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3815 | break; |
| 3816 | } |
| 3817 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3818 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3819 | if (dup) { |
| 3820 | *dup = first; |
| 3821 | } |
| 3822 | return LY_SUCCESS; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3823 | |
| 3824 | error: |
| 3825 | if (top) { |
| 3826 | lyd_free_tree(top); |
| 3827 | } else { |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 3828 | lyd_free_siblings(first); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3829 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3830 | return rc; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 3831 | } |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3832 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3833 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3834 | lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3835 | { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3836 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
| 3837 | if (node && parent && (LYD_CTX(node) != LYD_CTX(parent))) { |
| 3838 | LOGERR(NULL, LY_EINVAL, "Different contexts used in node duplication."); |
| 3839 | return LY_EINVAL; |
| 3840 | } |
| 3841 | |
| 3842 | return lyd_dup(node, LYD_CTX(node), parent, options, 1, dup); |
| 3843 | } |
| 3844 | |
| 3845 | LIBYANG_API_DEF LY_ERR |
| 3846 | lyd_dup_single_to_ctx(const struct lyd_node *node, const struct ly_ctx *trg_ctx, struct lyd_node_inner *parent, |
| 3847 | uint32_t options, struct lyd_node **dup) |
| 3848 | { |
| 3849 | LY_CHECK_ARG_RET(trg_ctx, node, trg_ctx, LY_EINVAL); |
| 3850 | |
| 3851 | return lyd_dup(node, trg_ctx, parent, options, 1, dup); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3852 | } |
| 3853 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3854 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3855 | lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3856 | { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 3857 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
| 3858 | if (node && parent && (LYD_CTX(node) != LYD_CTX(parent))) { |
| 3859 | LOGERR(NULL, LY_EINVAL, "Different contexts used in node duplication."); |
| 3860 | return LY_EINVAL; |
| 3861 | } |
| 3862 | |
| 3863 | return lyd_dup(node, LYD_CTX(node), parent, options, 0, dup); |
| 3864 | } |
| 3865 | |
| 3866 | LIBYANG_API_DEF LY_ERR |
| 3867 | lyd_dup_siblings_to_ctx(const struct lyd_node *node, const struct ly_ctx *trg_ctx, struct lyd_node_inner *parent, |
| 3868 | uint32_t options, struct lyd_node **dup) |
| 3869 | { |
| 3870 | LY_CHECK_ARG_RET(trg_ctx, node, trg_ctx, LY_EINVAL); |
| 3871 | |
| 3872 | return lyd_dup(node, trg_ctx, parent, options, 0, dup); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3873 | } |
| 3874 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 3875 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3876 | lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *node, struct lyd_meta **dup) |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3877 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3878 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3879 | struct lyd_meta *mt, *last; |
| 3880 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3881 | LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3882 | |
| 3883 | /* create a copy */ |
| 3884 | mt = calloc(1, sizeof *mt); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3885 | LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3886 | mt->annotation = meta->annotation; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3887 | ret = meta->value.realtype->plugin->duplicate(LYD_CTX(node), &meta->value, &mt->value); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3888 | LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish); |
| 3889 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), meta->name, 0, &mt->name), finish); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3890 | |
| 3891 | /* insert as the last attribute */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3892 | mt->parent = node; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3893 | if (node->meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 3894 | for (last = node->meta; last->next; last = last->next) {} |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3895 | last->next = mt; |
| 3896 | } else { |
| 3897 | node->meta = mt; |
| 3898 | } |
| 3899 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 3900 | finish: |
| 3901 | if (ret) { |
| 3902 | lyd_free_meta_single(mt); |
| 3903 | } else if (dup) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3904 | *dup = mt; |
| 3905 | } |
| 3906 | return LY_SUCCESS; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3907 | } |
| 3908 | |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3909 | /** |
| 3910 | * @brief Merge a source sibling into target siblings. |
| 3911 | * |
| 3912 | * @param[in,out] first_trg First target sibling, is updated if top-level. |
| 3913 | * @param[in] parent_trg Target parent. |
| 3914 | * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent. |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3915 | * @param[in] merge_cb Optional merge callback. |
| 3916 | * @param[in] cb_data Arbitrary callback data. |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3917 | * @param[in] options Merge options. |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3918 | * @param[in,out] dup_inst Duplicate instance cache for all @p first_trg siblings. |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3919 | * @return LY_ERR value. |
| 3920 | */ |
| 3921 | static LY_ERR |
| 3922 | lyd_merge_sibling_r(struct lyd_node **first_trg, struct lyd_node *parent_trg, const struct lyd_node **sibling_src_p, |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3923 | lyd_merge_cb merge_cb, void *cb_data, uint16_t options, struct lyd_dup_inst **dup_inst) |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3924 | { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3925 | const struct lyd_node *child_src, *tmp, *sibling_src; |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 3926 | struct lyd_node *match_trg, *dup_src, *elem; |
Michal Vasko | d1afa50 | 2022-01-27 16:18:12 +0100 | [diff] [blame] | 3927 | struct lyd_node_opaq *opaq_trg, *opaq_src; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3928 | struct lysc_type *type; |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3929 | struct lyd_dup_inst *child_dup_inst = NULL; |
| 3930 | LY_ERR ret; |
| 3931 | ly_bool first_inst = 0; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3932 | |
| 3933 | sibling_src = *sibling_src_p; |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3934 | if (!sibling_src->schema) { |
| 3935 | /* try to find the same opaque node */ |
| 3936 | lyd_find_sibling_opaq_next(*first_trg, LYD_NAME(sibling_src), &match_trg); |
| 3937 | } else if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3938 | /* try to find the exact instance */ |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3939 | lyd_find_sibling_first(*first_trg, sibling_src, &match_trg); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3940 | } else { |
| 3941 | /* try to simply find the node, there cannot be more instances */ |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3942 | lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3943 | } |
| 3944 | |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3945 | if (match_trg) { |
| 3946 | /* update match as needed */ |
| 3947 | LY_CHECK_RET(lyd_dup_inst_next(&match_trg, *first_trg, dup_inst)); |
| 3948 | } else { |
| 3949 | /* first instance of this node */ |
| 3950 | first_inst = 1; |
| 3951 | } |
| 3952 | |
| 3953 | if (match_trg) { |
| 3954 | /* call callback */ |
| 3955 | if (merge_cb) { |
| 3956 | LY_CHECK_RET(merge_cb(match_trg, sibling_src, cb_data)); |
| 3957 | } |
| 3958 | |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3959 | /* node found, make sure even value matches for all node types */ |
Michal Vasko | d1afa50 | 2022-01-27 16:18:12 +0100 | [diff] [blame] | 3960 | if (!match_trg->schema) { |
| 3961 | if (lyd_compare_single(sibling_src, match_trg, 0)) { |
| 3962 | /* update value */ |
| 3963 | opaq_trg = (struct lyd_node_opaq *)match_trg; |
| 3964 | opaq_src = (struct lyd_node_opaq *)sibling_src; |
| 3965 | |
| 3966 | lydict_remove(LYD_CTX(opaq_trg), opaq_trg->value); |
| 3967 | lydict_insert(LYD_CTX(opaq_trg), opaq_src->value, 0, &opaq_trg->value); |
| 3968 | opaq_trg->hints = opaq_src->hints; |
| 3969 | |
| 3970 | ly_free_prefix_data(opaq_trg->format, opaq_trg->val_prefix_data); |
| 3971 | opaq_trg->format = opaq_src->format; |
| 3972 | ly_dup_prefix_data(LYD_CTX(opaq_trg), opaq_src->format, opaq_src->val_prefix_data, |
| 3973 | &opaq_trg->val_prefix_data); |
| 3974 | } |
| 3975 | } else if ((match_trg->schema->nodetype == LYS_LEAF) && |
| 3976 | lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3977 | /* since they are different, they cannot both be default */ |
| 3978 | assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT)); |
| 3979 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 3980 | /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */ |
| 3981 | if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3982 | type = ((struct lysc_node_leaf *)match_trg->schema)->type; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3983 | type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value); |
| 3984 | LY_CHECK_RET(type->plugin->duplicate(LYD_CTX(match_trg), &((struct lyd_node_term *)sibling_src)->value, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3985 | &((struct lyd_node_term *)match_trg)->value)); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3986 | |
| 3987 | /* copy flags and add LYD_NEW */ |
Michal Vasko | 7e8315b | 2021-08-03 17:01:06 +0200 | [diff] [blame] | 3988 | match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3989 | } |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3990 | } else if ((match_trg->schema->nodetype & LYS_ANYDATA) && lyd_compare_single(sibling_src, match_trg, 0)) { |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 3991 | /* update value */ |
| 3992 | LY_CHECK_RET(lyd_any_copy_value(match_trg, &((struct lyd_node_any *)sibling_src)->value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3993 | ((struct lyd_node_any *)sibling_src)->value_type)); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 3994 | |
| 3995 | /* copy flags and add LYD_NEW */ |
Michal Vasko | 7e8315b | 2021-08-03 17:01:06 +0200 | [diff] [blame] | 3996 | match_trg->flags = sibling_src->flags | ((options & LYD_MERGE_WITH_FLAGS) ? 0 : LYD_NEW); |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 3997 | } |
| 3998 | |
| 3999 | /* check descendants, recursively */ |
| 4000 | ret = LY_SUCCESS; |
| 4001 | LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) { |
| 4002 | ret = lyd_merge_sibling_r(lyd_node_child_p(match_trg), match_trg, &child_src, merge_cb, cb_data, options, |
| 4003 | &child_dup_inst); |
| 4004 | if (ret) { |
| 4005 | break; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4006 | } |
| 4007 | } |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4008 | lyd_dup_inst_free(child_dup_inst); |
| 4009 | LY_CHECK_RET(ret); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4010 | } else { |
| 4011 | /* node not found, merge it */ |
| 4012 | if (options & LYD_MERGE_DESTRUCT) { |
| 4013 | dup_src = (struct lyd_node *)sibling_src; |
| 4014 | lyd_unlink_tree(dup_src); |
| 4015 | /* spend it */ |
| 4016 | *sibling_src_p = NULL; |
| 4017 | } else { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4018 | LY_CHECK_RET(lyd_dup_single(sibling_src, NULL, LYD_DUP_RECURSIVE | LYD_DUP_WITH_FLAGS, &dup_src)); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4019 | } |
| 4020 | |
Michal Vasko | 7e8315b | 2021-08-03 17:01:06 +0200 | [diff] [blame] | 4021 | if (!(options & LYD_MERGE_WITH_FLAGS)) { |
| 4022 | /* set LYD_NEW for all the new nodes, required for validation */ |
| 4023 | LYD_TREE_DFS_BEGIN(dup_src, elem) { |
| 4024 | elem->flags |= LYD_NEW; |
| 4025 | LYD_TREE_DFS_END(dup_src, elem); |
| 4026 | } |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4027 | } |
| 4028 | |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4029 | /* insert */ |
Michal Vasko | 6ee6f43 | 2021-07-16 09:49:14 +0200 | [diff] [blame] | 4030 | lyd_insert_node(parent_trg, first_trg, dup_src, 0); |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4031 | |
| 4032 | if (first_inst) { |
| 4033 | /* remember not to find this instance next time */ |
| 4034 | LY_CHECK_RET(lyd_dup_inst_next(&dup_src, *first_trg, dup_inst)); |
| 4035 | } |
| 4036 | |
| 4037 | /* call callback, no source node */ |
| 4038 | if (merge_cb) { |
| 4039 | LY_CHECK_RET(merge_cb(dup_src, NULL, cb_data)); |
| 4040 | } |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4041 | } |
| 4042 | |
| 4043 | return LY_SUCCESS; |
| 4044 | } |
| 4045 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4046 | static LY_ERR |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4047 | lyd_merge(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod, |
| 4048 | lyd_merge_cb merge_cb, void *cb_data, uint16_t options, ly_bool nosiblings) |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4049 | { |
| 4050 | const struct lyd_node *sibling_src, *tmp; |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4051 | struct lyd_dup_inst *dup_inst = NULL; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4052 | ly_bool first; |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4053 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4054 | |
| 4055 | LY_CHECK_ARG_RET(NULL, target, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 4056 | LY_CHECK_CTX_EQUAL_RET(*target ? LYD_CTX(*target) : NULL, source ? LYD_CTX(source) : NULL, mod ? mod->ctx : NULL, |
| 4057 | LY_EINVAL); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4058 | |
| 4059 | if (!source) { |
| 4060 | /* nothing to merge */ |
| 4061 | return LY_SUCCESS; |
| 4062 | } |
| 4063 | |
Michal Vasko | 831422b | 2020-11-24 11:20:51 +0100 | [diff] [blame] | 4064 | if ((*target && lysc_data_parent((*target)->schema)) || lysc_data_parent(source->schema)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 4065 | LOGERR(LYD_CTX(source), LY_EINVAL, "Invalid arguments - can merge only 2 top-level subtrees (%s()).", __func__); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4066 | return LY_EINVAL; |
| 4067 | } |
| 4068 | |
| 4069 | LY_LIST_FOR_SAFE(source, tmp, sibling_src) { |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4070 | if (mod && (lyd_owner_module(sibling_src) != mod)) { |
| 4071 | /* skip data nodes from different modules */ |
| 4072 | continue; |
| 4073 | } |
| 4074 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4075 | first = (sibling_src == source) ? 1 : 0; |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4076 | ret = lyd_merge_sibling_r(target, NULL, &sibling_src, merge_cb, cb_data, options, &dup_inst); |
| 4077 | if (ret) { |
| 4078 | break; |
| 4079 | } |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4080 | if (first && !sibling_src) { |
| 4081 | /* source was spent (unlinked), move to the next node */ |
| 4082 | source = tmp; |
| 4083 | } |
| 4084 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4085 | if (nosiblings) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4086 | break; |
| 4087 | } |
| 4088 | } |
| 4089 | |
| 4090 | if (options & LYD_MERGE_DESTRUCT) { |
| 4091 | /* free any leftover source data that were not merged */ |
| 4092 | lyd_free_siblings((struct lyd_node *)source); |
| 4093 | } |
| 4094 | |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4095 | lyd_dup_inst_free(dup_inst); |
| 4096 | return ret; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 4097 | } |
| 4098 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4099 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4100 | lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4101 | { |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4102 | return lyd_merge(target, source, NULL, NULL, NULL, options, 1); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4103 | } |
| 4104 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4105 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4106 | lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4107 | { |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4108 | return lyd_merge(target, source, NULL, NULL, NULL, options, 0); |
| 4109 | } |
| 4110 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4111 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | cd3f617 | 2021-05-18 16:14:50 +0200 | [diff] [blame] | 4112 | lyd_merge_module(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod, |
| 4113 | lyd_merge_cb merge_cb, void *cb_data, uint16_t options) |
| 4114 | { |
| 4115 | return lyd_merge(target, source, mod, merge_cb, cb_data, options, 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 4116 | } |
| 4117 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4118 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4119 | lyd_path_str_enlarge(char **buffer, size_t *buflen, size_t reqlen, ly_bool is_static) |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4120 | { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4121 | /* ending \0 */ |
| 4122 | ++reqlen; |
| 4123 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4124 | if (reqlen > *buflen) { |
| 4125 | if (is_static) { |
| 4126 | return LY_EINCOMPLETE; |
| 4127 | } |
| 4128 | |
| 4129 | *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer); |
| 4130 | if (!*buffer) { |
| 4131 | return LY_EMEM; |
| 4132 | } |
| 4133 | |
| 4134 | *buflen = reqlen; |
| 4135 | } |
| 4136 | |
| 4137 | return LY_SUCCESS; |
| 4138 | } |
| 4139 | |
Michal Vasko | d59035b | 2020-07-08 12:00:06 +0200 | [diff] [blame] | 4140 | LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4141 | lyd_path_list_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static) |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4142 | { |
| 4143 | const struct lyd_node *key; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4144 | size_t len; |
| 4145 | const char *val; |
| 4146 | char quot; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4147 | |
Michal Vasko | 824d083 | 2021-11-04 15:36:51 +0100 | [diff] [blame] | 4148 | for (key = lyd_child(node); key && key->schema && (key->schema->flags & LYS_KEY); key = key->next) { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 4149 | val = lyd_get_value(key); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4150 | len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 4151 | LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static)); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4152 | |
| 4153 | quot = '\''; |
| 4154 | if (strchr(val, '\'')) { |
| 4155 | quot = '"'; |
| 4156 | } |
| 4157 | *bufused += sprintf(*buffer + *bufused, "[%s=%c%s%c]", key->schema->name, quot, val, quot); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4158 | } |
| 4159 | |
| 4160 | return LY_SUCCESS; |
| 4161 | } |
| 4162 | |
| 4163 | /** |
| 4164 | * @brief Append leaf-list value predicate to path. |
| 4165 | * |
| 4166 | * @param[in] node Node to print. |
| 4167 | * @param[in,out] buffer Buffer to print to. |
| 4168 | * @param[in,out] buflen Current buffer length. |
| 4169 | * @param[in,out] bufused Current number of characters used in @p buffer. |
| 4170 | * @param[in] is_static Whether buffer is static or can be reallocated. |
| 4171 | * @return LY_ERR |
| 4172 | */ |
| 4173 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4174 | lyd_path_leaflist_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static) |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4175 | { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4176 | size_t len; |
| 4177 | const char *val; |
| 4178 | char quot; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4179 | |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 4180 | val = lyd_get_value(node); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 4181 | len = 4 + strlen(val) + 2; /* "[.='" + val + "']" */ |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 4182 | LY_CHECK_RET(lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static)); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4183 | |
| 4184 | quot = '\''; |
| 4185 | if (strchr(val, '\'')) { |
| 4186 | quot = '"'; |
| 4187 | } |
| 4188 | *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot); |
| 4189 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 4190 | return LY_SUCCESS; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4191 | } |
| 4192 | |
| 4193 | /** |
| 4194 | * @brief Append node position (relative to its other instances) predicate to path. |
| 4195 | * |
| 4196 | * @param[in] node Node to print. |
| 4197 | * @param[in,out] buffer Buffer to print to. |
| 4198 | * @param[in,out] buflen Current buffer length. |
| 4199 | * @param[in,out] bufused Current number of characters used in @p buffer. |
| 4200 | * @param[in] is_static Whether buffer is static or can be reallocated. |
| 4201 | * @return LY_ERR |
| 4202 | */ |
| 4203 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4204 | lyd_path_position_predicate(const struct lyd_node *node, char **buffer, size_t *buflen, size_t *bufused, ly_bool is_static) |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4205 | { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4206 | size_t len; |
Michal Vasko | 50cc056 | 2021-05-18 16:15:43 +0200 | [diff] [blame] | 4207 | uint32_t pos; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4208 | char *val = NULL; |
| 4209 | LY_ERR rc; |
| 4210 | |
Michal Vasko | 50cc056 | 2021-05-18 16:15:43 +0200 | [diff] [blame] | 4211 | pos = lyd_list_pos(node); |
| 4212 | if (asprintf(&val, "%" PRIu32, pos) == -1) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4213 | return LY_EMEM; |
| 4214 | } |
| 4215 | |
| 4216 | len = 1 + strlen(val) + 1; |
| 4217 | rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static); |
| 4218 | if (rc != LY_SUCCESS) { |
| 4219 | goto cleanup; |
| 4220 | } |
| 4221 | |
| 4222 | *bufused += sprintf(*buffer + *bufused, "[%s]", val); |
| 4223 | |
| 4224 | cleanup: |
| 4225 | free(val); |
| 4226 | return rc; |
| 4227 | } |
| 4228 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4229 | LIBYANG_API_DEF char * |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4230 | lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen) |
| 4231 | { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4232 | ly_bool is_static = 0; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4233 | uint32_t i, depth; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4234 | size_t bufused = 0, len; |
Michal Vasko | 12eb622 | 2022-03-18 13:35:49 +0100 | [diff] [blame] | 4235 | const struct lyd_node *iter, *parent; |
| 4236 | const struct lys_module *mod, *prev_mod; |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 4237 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4238 | |
| 4239 | LY_CHECK_ARG_RET(NULL, node, NULL); |
| 4240 | if (buffer) { |
Michal Vasko | 16385f4 | 2021-05-18 16:16:09 +0200 | [diff] [blame] | 4241 | LY_CHECK_ARG_RET(LYD_CTX(node), buflen > 1, NULL); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4242 | is_static = 1; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4243 | } else { |
| 4244 | buflen = 0; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4245 | } |
| 4246 | |
| 4247 | switch (pathtype) { |
Radek Krejci | 635d2b8 | 2021-01-04 11:26:51 +0100 | [diff] [blame] | 4248 | case LYD_PATH_STD: |
| 4249 | case LYD_PATH_STD_NO_LAST_PRED: |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4250 | depth = 1; |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 4251 | for (iter = node; iter->parent; iter = lyd_parent(iter)) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4252 | ++depth; |
| 4253 | } |
| 4254 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4255 | goto iter_print; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4256 | while (depth) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4257 | /* find the right node */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 4258 | for (iter = node, i = 1; i < depth; iter = lyd_parent(iter), ++i) {} |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4259 | iter_print: |
Michal Vasko | 12eb622 | 2022-03-18 13:35:49 +0100 | [diff] [blame] | 4260 | /* get the module */ |
| 4261 | mod = iter->schema ? iter->schema->module : lyd_owner_module(iter); |
| 4262 | parent = lyd_parent(iter); |
| 4263 | prev_mod = (parent && parent->schema) ? parent->schema->module : lyd_owner_module(parent); |
| 4264 | if (prev_mod == mod) { |
| 4265 | mod = NULL; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4266 | } |
| 4267 | |
| 4268 | /* realloc string */ |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 4269 | len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) : |
| 4270 | strlen(((struct lyd_node_opaq *)iter)->name.name)); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4271 | rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static); |
| 4272 | if (rc != LY_SUCCESS) { |
| 4273 | break; |
| 4274 | } |
| 4275 | |
| 4276 | /* print next node */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 4277 | bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 4278 | iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4279 | |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 4280 | /* do not always print the last (first) predicate */ |
Radek Krejci | 635d2b8 | 2021-01-04 11:26:51 +0100 | [diff] [blame] | 4281 | if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_STD))) { |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 4282 | switch (iter->schema->nodetype) { |
| 4283 | case LYS_LIST: |
| 4284 | if (iter->schema->flags & LYS_KEYLESS) { |
| 4285 | /* print its position */ |
| 4286 | rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 4287 | } else { |
| 4288 | /* print all list keys in predicates */ |
| 4289 | rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 4290 | } |
| 4291 | break; |
| 4292 | case LYS_LEAFLIST: |
| 4293 | if (iter->schema->flags & LYS_CONFIG_W) { |
| 4294 | /* print leaf-list value */ |
| 4295 | rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 4296 | } else { |
| 4297 | /* print its position */ |
| 4298 | rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 4299 | } |
| 4300 | break; |
| 4301 | default: |
| 4302 | /* nothing to print more */ |
| 4303 | break; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4304 | } |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4305 | } |
| 4306 | if (rc != LY_SUCCESS) { |
| 4307 | break; |
| 4308 | } |
| 4309 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 4310 | --depth; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 4311 | } |
| 4312 | break; |
| 4313 | } |
| 4314 | |
| 4315 | return buffer; |
| 4316 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4317 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4318 | LIBYANG_API_DEF struct lyd_meta * |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 4319 | lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name) |
| 4320 | { |
| 4321 | struct lyd_meta *ret = NULL; |
| 4322 | const struct ly_ctx *ctx; |
| 4323 | const char *prefix, *tmp; |
| 4324 | char *str; |
| 4325 | size_t pref_len, name_len; |
| 4326 | |
| 4327 | LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 4328 | LY_CHECK_CTX_EQUAL_RET(first ? first->annotation->module->ctx : NULL, module ? module->ctx : NULL, NULL); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 4329 | |
| 4330 | if (!first) { |
| 4331 | return NULL; |
| 4332 | } |
| 4333 | |
| 4334 | ctx = first->annotation->module->ctx; |
| 4335 | |
| 4336 | /* parse the name */ |
| 4337 | tmp = name; |
| 4338 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 4339 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
| 4340 | return NULL; |
| 4341 | } |
| 4342 | |
| 4343 | /* find the module */ |
| 4344 | if (prefix) { |
| 4345 | str = strndup(prefix, pref_len); |
| 4346 | module = ly_ctx_get_module_latest(ctx, str); |
| 4347 | free(str); |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 4348 | LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", (int)pref_len, prefix), NULL); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 4349 | } |
| 4350 | |
| 4351 | /* find the metadata */ |
| 4352 | LY_LIST_FOR(first, first) { |
| 4353 | if ((first->annotation->module == module) && !strcmp(first->name, name)) { |
| 4354 | ret = (struct lyd_meta *)first; |
| 4355 | break; |
| 4356 | } |
| 4357 | } |
| 4358 | |
| 4359 | return ret; |
| 4360 | } |
| 4361 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4362 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4363 | lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match) |
| 4364 | { |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4365 | struct lyd_node **match_p, *iter, *dup = NULL; |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4366 | struct lyd_node_inner *parent; |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4367 | ly_bool found; |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4368 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 4369 | LY_CHECK_ARG_RET(NULL, target, LY_EINVAL); |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4370 | if (!siblings) { |
| 4371 | /* no data */ |
| 4372 | if (match) { |
| 4373 | *match = NULL; |
| 4374 | } |
| 4375 | return LY_ENOTFOUND; |
| 4376 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4377 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4378 | if (LYD_CTX(siblings) != LYD_CTX(target)) { |
| 4379 | /* create a duplicate in this context */ |
| 4380 | LY_CHECK_RET(lyd_dup_single_to_ctx(target, LYD_CTX(siblings), NULL, 0, &dup)); |
| 4381 | target = dup; |
| 4382 | } |
| 4383 | |
| 4384 | if ((siblings->schema && target->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) { |
| 4385 | /* schema mismatch */ |
| 4386 | lyd_free_tree(dup); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4387 | if (match) { |
| 4388 | *match = NULL; |
| 4389 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4390 | return LY_ENOTFOUND; |
| 4391 | } |
| 4392 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4393 | /* get first sibling */ |
| 4394 | siblings = lyd_first_sibling(siblings); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4395 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 4396 | parent = siblings->parent; |
Michal Vasko | 6da1e95 | 2020-12-09 18:14:38 +0100 | [diff] [blame] | 4397 | if (parent && parent->schema && parent->children_ht) { |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4398 | assert(target->hash); |
| 4399 | |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4400 | if (lysc_is_dup_inst_list(target->schema)) { |
| 4401 | /* we must search the instances from beginning to find the first matching one */ |
| 4402 | found = 0; |
| 4403 | LYD_LIST_FOR_INST(siblings, target->schema, iter) { |
| 4404 | if (!lyd_compare_single(target, iter, 0)) { |
| 4405 | found = 1; |
| 4406 | break; |
| 4407 | } |
| 4408 | } |
| 4409 | if (found) { |
| 4410 | siblings = iter; |
Michal Vasko | da85903 | 2020-07-14 12:20:14 +0200 | [diff] [blame] | 4411 | } else { |
| 4412 | siblings = NULL; |
| 4413 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4414 | } else { |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4415 | /* find by hash */ |
| 4416 | if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) { |
| 4417 | siblings = *match_p; |
| 4418 | } else { |
| 4419 | /* not found */ |
| 4420 | siblings = NULL; |
| 4421 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4422 | } |
| 4423 | } else { |
| 4424 | /* no children hash table */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 4425 | for ( ; siblings; siblings = siblings->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 4426 | if (!lyd_compare_single(siblings, target, 0)) { |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4427 | break; |
| 4428 | } |
| 4429 | } |
| 4430 | } |
| 4431 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4432 | lyd_free_tree(dup); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4433 | if (!siblings) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4434 | if (match) { |
| 4435 | *match = NULL; |
| 4436 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4437 | return LY_ENOTFOUND; |
| 4438 | } |
| 4439 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4440 | if (match) { |
| 4441 | *match = (struct lyd_node *)siblings; |
| 4442 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4443 | return LY_SUCCESS; |
| 4444 | } |
| 4445 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4446 | /** |
| 4447 | * @brief Comparison callback to match schema node with a schema of a data node. |
| 4448 | * |
| 4449 | * @param[in] val1_p Pointer to the schema node |
| 4450 | * @param[in] val2_p Pointer to the data node |
Michal Vasko | 62524a9 | 2021-02-26 10:08:50 +0100 | [diff] [blame] | 4451 | * Implementation of ::lyht_value_equal_cb. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4452 | */ |
| 4453 | static ly_bool |
| 4454 | lyd_hash_table_schema_val_equal(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data)) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4455 | { |
| 4456 | struct lysc_node *val1; |
| 4457 | struct lyd_node *val2; |
| 4458 | |
| 4459 | val1 = *((struct lysc_node **)val1_p); |
| 4460 | val2 = *((struct lyd_node **)val2_p); |
| 4461 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4462 | if (val1 == val2->schema) { |
| 4463 | /* schema match is enough */ |
| 4464 | return 1; |
| 4465 | } else { |
| 4466 | return 0; |
| 4467 | } |
| 4468 | } |
| 4469 | |
Michal Vasko | 92239c7 | 2020-11-18 18:17:25 +0100 | [diff] [blame] | 4470 | /** |
| 4471 | * @brief Search in the given siblings (NOT recursively) for the first schema node data instance. |
| 4472 | * Uses hashes - should be used whenever possible for best performance. |
| 4473 | * |
| 4474 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 4475 | * @param[in] schema Target data node schema to find. |
| 4476 | * @param[out] match Can be NULL, otherwise the found data node. |
| 4477 | * @return LY_SUCCESS on success, @p match set. |
| 4478 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 4479 | * @return LY_ERR value if another error occurred. |
| 4480 | */ |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4481 | static LY_ERR |
| 4482 | lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match) |
| 4483 | { |
| 4484 | struct lyd_node **match_p; |
| 4485 | struct lyd_node_inner *parent; |
| 4486 | uint32_t hash; |
Michal Vasko | 62524a9 | 2021-02-26 10:08:50 +0100 | [diff] [blame] | 4487 | lyht_value_equal_cb ht_cb; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4488 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 4489 | assert(siblings && schema); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4490 | |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 4491 | parent = siblings->parent; |
Michal Vasko | 08fd613 | 2020-11-18 18:17:45 +0100 | [diff] [blame] | 4492 | if (parent && parent->schema && parent->children_ht) { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4493 | /* calculate our hash */ |
| 4494 | hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name)); |
| 4495 | hash = dict_hash_multi(hash, schema->name, strlen(schema->name)); |
| 4496 | hash = dict_hash_multi(hash, NULL, 0); |
| 4497 | |
| 4498 | /* use special hash table function */ |
| 4499 | ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal); |
| 4500 | |
| 4501 | /* find by hash */ |
| 4502 | if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) { |
| 4503 | siblings = *match_p; |
| 4504 | } else { |
| 4505 | /* not found */ |
| 4506 | siblings = NULL; |
| 4507 | } |
| 4508 | |
| 4509 | /* set the original hash table compare function back */ |
| 4510 | lyht_set_cb(parent->children_ht, ht_cb); |
| 4511 | } else { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 4512 | /* find first sibling */ |
| 4513 | if (siblings->parent) { |
| 4514 | siblings = siblings->parent->child; |
| 4515 | } else { |
| 4516 | while (siblings->prev->next) { |
| 4517 | siblings = siblings->prev; |
| 4518 | } |
| 4519 | } |
| 4520 | |
| 4521 | /* search manually without hashes */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 4522 | for ( ; siblings; siblings = siblings->next) { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4523 | if (siblings->schema == schema) { |
| 4524 | /* schema match is enough */ |
| 4525 | break; |
| 4526 | } |
| 4527 | } |
| 4528 | } |
| 4529 | |
| 4530 | if (!siblings) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4531 | if (match) { |
| 4532 | *match = NULL; |
| 4533 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4534 | return LY_ENOTFOUND; |
| 4535 | } |
| 4536 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4537 | if (match) { |
| 4538 | *match = (struct lyd_node *)siblings; |
| 4539 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4540 | return LY_SUCCESS; |
| 4541 | } |
| 4542 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4543 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4544 | lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 4545 | size_t val_len, struct lyd_node **match) |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4546 | { |
| 4547 | LY_ERR rc; |
| 4548 | struct lyd_node *target = NULL; |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4549 | const struct lyd_node *parent; |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4550 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 4551 | LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL); |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4552 | if (!siblings) { |
| 4553 | /* no data */ |
| 4554 | if (match) { |
| 4555 | *match = NULL; |
| 4556 | } |
| 4557 | return LY_ENOTFOUND; |
| 4558 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4559 | |
Michal Vasko | 9beceb8 | 2022-04-05 12:14:15 +0200 | [diff] [blame] | 4560 | if ((LYD_CTX(siblings) != schema->module->ctx)) { |
| 4561 | /* parent of ext nodes is useless */ |
| 4562 | parent = (siblings->flags & LYD_EXT) ? NULL : lyd_parent(siblings); |
| 4563 | LY_CHECK_RET(lyd_dup_find_schema(schema, LYD_CTX(siblings), parent, &schema)); |
| 4564 | } |
| 4565 | |
| 4566 | if (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(schema))) { |
| 4567 | /* schema mismatch */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 4568 | if (match) { |
| 4569 | *match = NULL; |
| 4570 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4571 | return LY_ENOTFOUND; |
| 4572 | } |
| 4573 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 4574 | if (key_or_value && !val_len) { |
| 4575 | val_len = strlen(key_or_value); |
| 4576 | } |
| 4577 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 4578 | if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) { |
| 4579 | /* create a data node and find the instance */ |
| 4580 | if (schema->nodetype == LYS_LEAFLIST) { |
| 4581 | /* target used attributes: schema, hash, value */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 4582 | rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_VALUE_JSON, NULL, LYD_HINT_DATA, NULL, &target); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 4583 | LY_CHECK_RET(rc); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 4584 | } else { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4585 | /* target used attributes: schema, hash, child (all keys) */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 4586 | LY_CHECK_RET(lyd_create_list2(schema, key_or_value, val_len, &target)); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 4587 | } |
| 4588 | |
| 4589 | /* find it */ |
| 4590 | rc = lyd_find_sibling_first(siblings, target, match); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 4591 | } else { |
| 4592 | /* find the first schema node instance */ |
| 4593 | rc = lyd_find_sibling_schema(siblings, schema, match); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4594 | } |
| 4595 | |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 4596 | lyd_free_tree(target); |
| 4597 | return rc; |
| 4598 | } |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4599 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4600 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4601 | lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set) |
| 4602 | { |
| 4603 | struct lyd_node **match_p, *first, *iter; |
| 4604 | struct lyd_node_inner *parent; |
| 4605 | |
| 4606 | LY_CHECK_ARG_RET(NULL, target, lysc_is_dup_inst_list(target->schema), set, LY_EINVAL); |
Michal Vasko | 892f5bf | 2021-11-24 10:41:05 +0100 | [diff] [blame] | 4607 | LY_CHECK_CTX_EQUAL_RET(siblings ? LYD_CTX(siblings) : NULL, LYD_CTX(target), LY_EINVAL); |
Michal Vasko | e78faec | 2021-04-08 17:24:43 +0200 | [diff] [blame] | 4608 | |
| 4609 | LY_CHECK_RET(ly_set_new(set)); |
| 4610 | |
| 4611 | if (!siblings || (siblings->schema && (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema)))) { |
| 4612 | /* no data or schema mismatch */ |
| 4613 | return LY_ENOTFOUND; |
| 4614 | } |
| 4615 | |
| 4616 | /* get first sibling */ |
| 4617 | siblings = lyd_first_sibling(siblings); |
| 4618 | |
| 4619 | parent = siblings->parent; |
| 4620 | if (parent && parent->schema && parent->children_ht) { |
| 4621 | assert(target->hash); |
| 4622 | |
| 4623 | /* find the first instance */ |
| 4624 | lyd_find_sibling_first(siblings, target, &first); |
| 4625 | if (first) { |
| 4626 | /* add it so that it is the first in the set */ |
| 4627 | if (ly_set_add(*set, first, 1, NULL)) { |
| 4628 | goto error; |
| 4629 | } |
| 4630 | |
| 4631 | /* find by hash */ |
| 4632 | if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) { |
| 4633 | iter = *match_p; |
| 4634 | } else { |
| 4635 | /* not found */ |
| 4636 | iter = NULL; |
| 4637 | } |
| 4638 | while (iter) { |
| 4639 | /* add all found nodes into the set */ |
| 4640 | if ((iter != first) && !lyd_compare_single(iter, target, 0) && ly_set_add(*set, iter, 1, NULL)) { |
| 4641 | goto error; |
| 4642 | } |
| 4643 | |
| 4644 | /* find next instance */ |
| 4645 | if (lyht_find_next(parent->children_ht, &iter, iter->hash, (void **)&match_p)) { |
| 4646 | iter = NULL; |
| 4647 | } else { |
| 4648 | iter = *match_p; |
| 4649 | } |
| 4650 | } |
| 4651 | } |
| 4652 | } else { |
| 4653 | /* no children hash table */ |
| 4654 | LY_LIST_FOR(siblings, siblings) { |
| 4655 | if (!lyd_compare_single(target, siblings, 0)) { |
| 4656 | ly_set_add(*set, (void *)siblings, 1, NULL); |
| 4657 | } |
| 4658 | } |
| 4659 | } |
| 4660 | |
| 4661 | if (!(*set)->count) { |
| 4662 | return LY_ENOTFOUND; |
| 4663 | } |
| 4664 | return LY_SUCCESS; |
| 4665 | |
| 4666 | error: |
| 4667 | ly_set_free(*set, NULL); |
| 4668 | *set = NULL; |
| 4669 | return LY_EMEM; |
| 4670 | } |
| 4671 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4672 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 1d4af6c | 2021-02-22 13:31:26 +0100 | [diff] [blame] | 4673 | lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match) |
| 4674 | { |
| 4675 | LY_CHECK_ARG_RET(NULL, name, LY_EINVAL); |
| 4676 | |
| 4677 | for ( ; first; first = first->next) { |
| 4678 | if (!first->schema && !strcmp(LYD_NAME(first), name)) { |
| 4679 | break; |
| 4680 | } |
| 4681 | } |
| 4682 | |
| 4683 | if (match) { |
| 4684 | *match = (struct lyd_node *)first; |
| 4685 | } |
| 4686 | return first ? LY_SUCCESS : LY_ENOTFOUND; |
| 4687 | } |
| 4688 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4689 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4690 | lyd_find_xpath4(const struct lyd_node *ctx_node, const struct lyd_node *tree, const char *xpath, LY_VALUE_FORMAT format, |
| 4691 | void *prefix_data, const struct lyxp_var *vars, struct ly_set **set) |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4692 | { |
| 4693 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 8bd9cc7 | 2021-07-16 14:06:10 +0200 | [diff] [blame] | 4694 | struct lyxp_set xp_set = {0}; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 4695 | struct lyxp_expr *exp = NULL; |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4696 | uint32_t i; |
| 4697 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4698 | LY_CHECK_ARG_RET(NULL, tree, xpath, format, set, LY_EINVAL); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4699 | |
Michal Vasko | 37c6943 | 2021-04-12 14:48:24 +0200 | [diff] [blame] | 4700 | *set = NULL; |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4701 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4702 | /* parse expression */ |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4703 | ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(tree), xpath, 0, 1, &exp); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 4704 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4705 | |
| 4706 | /* evaluate expression */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4707 | ret = lyxp_eval(LYD_CTX(tree), exp, NULL, format, prefix_data, ctx_node, tree, vars, &xp_set, LYXP_IGNORE_WHEN); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4708 | LY_CHECK_GOTO(ret, cleanup); |
| 4709 | |
| 4710 | /* allocate return set */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 4711 | ret = ly_set_new(set); |
| 4712 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4713 | |
| 4714 | /* transform into ly_set */ |
| 4715 | if (xp_set.type == LYXP_SET_NODE_SET) { |
| 4716 | /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */ |
| 4717 | (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs); |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4718 | LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(tree)); ret = LY_EMEM, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4719 | (*set)->size = xp_set.used; |
| 4720 | |
| 4721 | for (i = 0; i < xp_set.used; ++i) { |
| 4722 | if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 4723 | ret = ly_set_add(*set, xp_set.val.nodes[i].node, 1, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 4724 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4725 | } |
| 4726 | } |
| 4727 | } |
| 4728 | |
| 4729 | cleanup: |
Michal Vasko | 0691d52 | 2020-05-21 13:21:47 +0200 | [diff] [blame] | 4730 | lyxp_set_free_content(&xp_set); |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4731 | lyxp_expr_free((struct ly_ctx *)LYD_CTX(tree), exp); |
Radek Krejci | 8f45abc | 2020-11-26 12:15:13 +0100 | [diff] [blame] | 4732 | if (ret) { |
| 4733 | ly_set_free(*set, NULL); |
| 4734 | *set = NULL; |
| 4735 | } |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 4736 | return ret; |
| 4737 | } |
Radek Krejci | ca98914 | 2020-11-05 11:32:22 +0100 | [diff] [blame] | 4738 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4739 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4740 | lyd_find_xpath3(const struct lyd_node *ctx_node, const struct lyd_node *tree, const char *xpath, |
| 4741 | const struct lyxp_var *vars, struct ly_set **set) |
| 4742 | { |
| 4743 | LY_CHECK_ARG_RET(NULL, tree, xpath, set, LY_EINVAL); |
| 4744 | |
| 4745 | return lyd_find_xpath4(ctx_node, tree, xpath, LY_VALUE_JSON, NULL, vars, set); |
| 4746 | } |
| 4747 | |
| 4748 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4749 | lyd_find_xpath2(const struct lyd_node *ctx_node, const char *xpath, const struct lyxp_var *vars, struct ly_set **set) |
| 4750 | { |
| 4751 | LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL); |
| 4752 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4753 | return lyd_find_xpath4(ctx_node, ctx_node, xpath, LY_VALUE_JSON, NULL, vars, set); |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4754 | } |
| 4755 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4756 | LIBYANG_API_DEF LY_ERR |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 4757 | lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set) |
| 4758 | { |
Michal Vasko | e3716b3 | 2021-12-13 16:58:25 +0100 | [diff] [blame] | 4759 | LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL); |
| 4760 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 4761 | return lyd_find_xpath4(ctx_node, ctx_node, xpath, LY_VALUE_JSON, NULL, NULL, set); |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 4762 | } |
| 4763 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4764 | LIBYANG_API_DEF LY_ERR |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 4765 | lyd_eval_xpath2(const struct lyd_node *ctx_node, const char *xpath, const struct lyxp_var *vars, ly_bool *result) |
Michal Vasko | c9eb3ca | 2021-07-16 10:20:37 +0200 | [diff] [blame] | 4766 | { |
| 4767 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 8bd9cc7 | 2021-07-16 14:06:10 +0200 | [diff] [blame] | 4768 | struct lyxp_set xp_set = {0}; |
Michal Vasko | c9eb3ca | 2021-07-16 10:20:37 +0200 | [diff] [blame] | 4769 | struct lyxp_expr *exp = NULL; |
| 4770 | |
| 4771 | LY_CHECK_ARG_RET(NULL, ctx_node, xpath, result, LY_EINVAL); |
| 4772 | |
| 4773 | /* compile expression */ |
| 4774 | ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp); |
| 4775 | LY_CHECK_GOTO(ret, cleanup); |
| 4776 | |
| 4777 | /* evaluate expression */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 4778 | ret = lyxp_eval(LYD_CTX(ctx_node), exp, NULL, LY_VALUE_JSON, NULL, ctx_node, ctx_node, vars, &xp_set, LYXP_IGNORE_WHEN); |
Michal Vasko | c9eb3ca | 2021-07-16 10:20:37 +0200 | [diff] [blame] | 4779 | LY_CHECK_GOTO(ret, cleanup); |
| 4780 | |
| 4781 | /* transform into boolean */ |
| 4782 | ret = lyxp_set_cast(&xp_set, LYXP_SET_BOOLEAN); |
| 4783 | LY_CHECK_GOTO(ret, cleanup); |
| 4784 | |
| 4785 | /* set result */ |
| 4786 | *result = xp_set.val.bln; |
| 4787 | |
| 4788 | cleanup: |
| 4789 | lyxp_set_free_content(&xp_set); |
| 4790 | lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp); |
| 4791 | return ret; |
| 4792 | } |
| 4793 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4794 | LIBYANG_API_DEF LY_ERR |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 4795 | lyd_eval_xpath(const struct lyd_node *ctx_node, const char *xpath, ly_bool *result) |
| 4796 | { |
| 4797 | return lyd_eval_xpath2(ctx_node, xpath, NULL, result); |
| 4798 | } |
| 4799 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4800 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | 3e1f655 | 2021-01-14 09:27:55 +0100 | [diff] [blame] | 4801 | lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match) |
| 4802 | { |
| 4803 | LY_ERR ret = LY_SUCCESS; |
| 4804 | struct lyxp_expr *expr = NULL; |
| 4805 | struct ly_path *lypath = NULL; |
| 4806 | |
| 4807 | LY_CHECK_ARG_RET(NULL, ctx_node, ctx_node->schema, path, LY_EINVAL); |
| 4808 | |
| 4809 | /* parse the path */ |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 4810 | ret = ly_path_parse(LYD_CTX(ctx_node), ctx_node->schema, path, strlen(path), 0, LY_PATH_BEGIN_EITHER, |
Michal Vasko | 3e1f655 | 2021-01-14 09:27:55 +0100 | [diff] [blame] | 4811 | LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &expr); |
| 4812 | LY_CHECK_GOTO(ret, cleanup); |
| 4813 | |
| 4814 | /* compile the path */ |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 4815 | ret = ly_path_compile(LYD_CTX(ctx_node), NULL, ctx_node->schema, NULL, expr, |
Michal Vasko | 0884d21 | 2021-10-14 09:21:46 +0200 | [diff] [blame] | 4816 | output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_SINGLE, 0, LY_VALUE_JSON, NULL, &lypath); |
Michal Vasko | 3e1f655 | 2021-01-14 09:27:55 +0100 | [diff] [blame] | 4817 | LY_CHECK_GOTO(ret, cleanup); |
| 4818 | |
| 4819 | /* evaluate the path */ |
| 4820 | ret = ly_path_eval_partial(lypath, ctx_node, NULL, match); |
| 4821 | |
| 4822 | cleanup: |
| 4823 | lyxp_expr_free(LYD_CTX(ctx_node), expr); |
| 4824 | ly_path_free(LYD_CTX(ctx_node), lypath); |
| 4825 | return ret; |
| 4826 | } |
| 4827 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4828 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | bb22b18 | 2021-06-14 08:14:21 +0200 | [diff] [blame] | 4829 | lyd_find_target(const struct ly_path *path, const struct lyd_node *tree, struct lyd_node **match) |
| 4830 | { |
| 4831 | LY_ERR ret; |
| 4832 | struct lyd_node *m; |
| 4833 | |
| 4834 | LY_CHECK_ARG_RET(NULL, path, LY_EINVAL); |
| 4835 | |
| 4836 | ret = ly_path_eval(path, tree, &m); |
| 4837 | if (ret) { |
| 4838 | if (match) { |
| 4839 | *match = NULL; |
| 4840 | } |
| 4841 | return LY_ENOTFOUND; |
| 4842 | } |
| 4843 | |
| 4844 | if (match) { |
| 4845 | *match = m; |
| 4846 | } |
| 4847 | return LY_SUCCESS; |
| 4848 | } |
| 4849 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4850 | LIBYANG_API_DEF uint32_t |
Radek Krejci | ca98914 | 2020-11-05 11:32:22 +0100 | [diff] [blame] | 4851 | lyd_list_pos(const struct lyd_node *instance) |
| 4852 | { |
| 4853 | const struct lyd_node *iter = NULL; |
| 4854 | uint32_t pos = 0; |
| 4855 | |
| 4856 | if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) { |
| 4857 | return 0; |
| 4858 | } |
| 4859 | |
| 4860 | /* data instances are ordered, so we can stop when we found instance of other schema node */ |
| 4861 | for (iter = instance; iter->schema == instance->schema; iter = iter->prev) { |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 4862 | if (pos && (iter->next == NULL)) { |
Radek Krejci | ca98914 | 2020-11-05 11:32:22 +0100 | [diff] [blame] | 4863 | /* overrun to the end of the siblings list */ |
| 4864 | break; |
| 4865 | } |
| 4866 | ++pos; |
| 4867 | } |
| 4868 | |
| 4869 | return pos; |
| 4870 | } |
Radek Krejci | 4233f9b | 2020-11-05 12:38:35 +0100 | [diff] [blame] | 4871 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 4872 | LIBYANG_API_DEF struct lyd_node * |
Radek Krejci | 4233f9b | 2020-11-05 12:38:35 +0100 | [diff] [blame] | 4873 | lyd_first_sibling(const struct lyd_node *node) |
| 4874 | { |
| 4875 | struct lyd_node *start; |
| 4876 | |
| 4877 | if (!node) { |
| 4878 | return NULL; |
| 4879 | } |
| 4880 | |
| 4881 | /* get the first sibling */ |
| 4882 | if (node->parent) { |
| 4883 | start = node->parent->child; |
| 4884 | } else { |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 4885 | for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {} |
Radek Krejci | 4233f9b | 2020-11-05 12:38:35 +0100 | [diff] [blame] | 4886 | } |
| 4887 | |
| 4888 | return start; |
| 4889 | } |