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 | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 40 | #include "plugins_exts.h" |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 41 | #include "plugins_exts_internal.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 42 | #include "plugins_exts_metadata.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" |
| 47 | #include "tree_schema.h" |
| 48 | #include "tree_schema_internal.h" |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 49 | #include "validation.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 50 | #include "xml.h" |
| 51 | #include "xpath.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 52 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 53 | 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] | 54 | struct lyd_node **match); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 55 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 56 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 57 | lyd_value_store(const struct ly_ctx *ctx, struct lyd_value *val, const struct lysc_type *type, const char *value, |
| 58 | size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format, void *prefix_data, uint32_t hints, |
| 59 | const struct lysc_node *ctx_node, ly_bool *incomplete, enum LY_VLOG_ELEM log_elem_type, const void *log_elem) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 60 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 61 | LY_ERR ret; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 62 | struct ly_err_item *err = NULL; |
Michal Vasko | 25d6ad0 | 2020-10-22 12:20:22 +0200 | [diff] [blame] | 63 | uint32_t options = (dynamic && *dynamic ? LY_TYPE_STORE_DYNAMIC : 0); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 64 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 65 | if (incomplete) { |
| 66 | *incomplete = 0; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 67 | } |
| 68 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 69 | ret = type->plugin->store(ctx, type, value, value_len, options, format, prefix_data, hints, ctx_node, val, &err); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 70 | if (ret == LY_EINCOMPLETE) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 71 | if (incomplete) { |
| 72 | *incomplete = 1; |
| 73 | } |
| 74 | } else if (ret) { |
| 75 | if (err) { |
| 76 | LOGVAL(ctx, log_elem_type, log_elem, err->vecode, err->msg); |
| 77 | ly_err_free(err); |
| 78 | } else { |
| 79 | LOGVAL(ctx, log_elem_type, log_elem, LYVE_OTHER, "Storing value \"%.*s\" failed.", (int)value_len, value); |
| 80 | } |
| 81 | return ret; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 82 | } |
| 83 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 84 | if (dynamic) { |
| 85 | *dynamic = 0; |
| 86 | } |
| 87 | return LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 90 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 91 | lyd_value_validate_incomplete(const struct ly_ctx *ctx, const struct lysc_type *type, struct lyd_value *val, |
| 92 | const struct lyd_node *ctx_node, const struct lyd_node *tree, enum LY_VLOG_ELEM log_elem_type, const void *log_elem) |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 93 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 94 | LY_ERR ret; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 95 | struct ly_err_item *err = NULL; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 96 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 97 | assert(type->plugin->validate); |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 98 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 99 | ret = type->plugin->validate(ctx, type, ctx_node, tree, val, &err); |
| 100 | if (ret) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 101 | if (err) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 102 | LOGVAL(ctx, log_elem_type, log_elem, err->vecode, err->msg); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 103 | ly_err_free(err); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 104 | } else { |
| 105 | LOGVAL(ctx, log_elem_type, log_elem, LYVE_OTHER, "Resolving value \"%s\" failed.", val->canonical); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 106 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 107 | return ret; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 110 | return LY_SUCCESS; |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 111 | } |
| 112 | |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 113 | LY_ERR |
| 114 | _lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 115 | LY_PREFIX_FORMAT format, void *prefix_data) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 116 | { |
| 117 | LY_ERR rc = LY_SUCCESS; |
| 118 | struct ly_err_item *err = NULL; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 119 | struct lyd_value storage; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 120 | struct lysc_type *type; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 121 | |
| 122 | LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL); |
| 123 | |
| 124 | if (!(node->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 125 | LOGARG(ctx, node); |
| 126 | return LY_EINVAL; |
| 127 | } |
| 128 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 129 | type = ((struct lysc_node_leaf *)node)->type; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 130 | rc = type->plugin->store(ctx ? ctx : node->module->ctx, type, value, value_len, 0, format, prefix_data, |
| 131 | LYD_HINT_SCHEMA, node, &storage, &err); |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 132 | if (rc == LY_EINCOMPLETE) { |
| 133 | /* actually success since we do not provide the context tree and call validation with |
| 134 | * LY_TYPE_OPTS_INCOMPLETE_DATA */ |
| 135 | rc = LY_SUCCESS; |
| 136 | } else if (rc && err) { |
| 137 | if (ctx) { |
| 138 | /* log only in case the ctx was provided as input parameter */ |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 139 | LOGVAL(ctx, LY_VLOG_STR, err->path, err->vecode, err->msg); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 140 | } |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 141 | ly_err_free(err); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 144 | if (!rc) { |
| 145 | type->plugin->free(ctx ? ctx : node->module->ctx, &storage); |
| 146 | } |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 147 | return rc; |
| 148 | } |
| 149 | |
| 150 | API LY_ERR |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 151 | lys_value_validate(const struct ly_ctx *ctx, const struct lysc_node *node, const char *value, size_t value_len) |
| 152 | { |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 153 | return _lys_value_validate(ctx, node, value, value_len, LY_PREF_JSON, NULL); |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | API LY_ERR |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 157 | lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len, |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 158 | const struct lyd_node *tree, const struct lysc_type **realtype) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 159 | { |
| 160 | LY_ERR rc; |
| 161 | struct ly_err_item *err = NULL; |
| 162 | struct lysc_type *type; |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 163 | struct lyd_value val = {0}; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 164 | ly_bool stored = 0; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 165 | |
| 166 | LY_CHECK_ARG_RET(ctx, node, value, LY_EINVAL); |
| 167 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 168 | type = ((struct lysc_node_leaf *)node->schema)->type; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 169 | /* store */ |
| 170 | rc = type->plugin->store(ctx ? ctx : LYD_CTX(node), type, value, value_len, 0, LY_PREF_JSON, NULL, |
| 171 | LYD_HINT_DATA, node->schema, &val, &err); |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 172 | if (rc == LY_EINCOMPLETE) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 173 | stored = 1; |
| 174 | |
| 175 | /* resolve */ |
| 176 | rc = type->plugin->validate(ctx ? ctx : LYD_CTX(node), type, (struct lyd_node *)node, tree, &val, &err); |
| 177 | } |
| 178 | |
| 179 | if (rc) { |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 180 | if (err) { |
| 181 | if (ctx) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 182 | LOGVAL(ctx, LY_VLOG_LYD, node, err->vecode, err->msg); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 183 | } |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 184 | ly_err_free(err); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 185 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 186 | if (stored) { |
| 187 | type->plugin->free(ctx ? ctx : LYD_CTX(node), &val); |
| 188 | } |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 189 | return rc; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 190 | } |
| 191 | |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 192 | if (realtype) { |
Michal Vasko | 29134f8 | 2020-11-13 18:03:20 +0100 | [diff] [blame] | 193 | if (val.realtype->basetype == LY_TYPE_UNION) { |
| 194 | *realtype = val.subvalue->value.realtype; |
| 195 | } else { |
| 196 | *realtype = val.realtype; |
| 197 | } |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 198 | } |
| 199 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 200 | type->plugin->free(ctx ? ctx : LYD_CTX(node), &val); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 201 | return LY_SUCCESS; |
| 202 | } |
| 203 | |
| 204 | API LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 205 | 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] | 206 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 207 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 208 | struct ly_ctx *ctx; |
| 209 | struct lysc_type *type; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 210 | struct lyd_value val = {0}; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 211 | |
| 212 | LY_CHECK_ARG_RET(node ? node->schema->module->ctx : NULL, node, value, LY_EINVAL); |
| 213 | |
| 214 | ctx = node->schema->module->ctx; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 215 | type = ((struct lysc_node_leaf *)node->schema)->type; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 216 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 217 | /* store the value */ |
| 218 | ret = lyd_value_store(ctx, &val, type, value, value_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, node->schema, |
| 219 | NULL, LY_VLOG_LYSC, node->schema); |
| 220 | LY_CHECK_RET(ret); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 221 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 222 | /* compare values */ |
| 223 | ret = type->plugin->compare(&node->value, &val); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 224 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 225 | type->plugin->free(ctx, &val); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 226 | return ret; |
| 227 | } |
| 228 | |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 229 | API ly_bool |
| 230 | lyd_is_default(const struct lyd_node *node) |
| 231 | { |
| 232 | const struct lysc_node_leaf *leaf; |
| 233 | const struct lysc_node_leaflist *llist; |
| 234 | const struct lyd_node_term *term; |
| 235 | LY_ARRAY_COUNT_TYPE u; |
| 236 | |
| 237 | assert(node->schema->nodetype & LYD_NODE_TERM); |
| 238 | term = (const struct lyd_node_term *)node; |
| 239 | |
| 240 | if (node->schema->nodetype == LYS_LEAF) { |
| 241 | leaf = (const struct lysc_node_leaf *)node->schema; |
| 242 | if (!leaf->dflt) { |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | /* compare with the default value */ |
| 247 | if (leaf->type->plugin->compare(&term->value, leaf->dflt)) { |
| 248 | return 0; |
| 249 | } |
| 250 | } else { |
| 251 | llist = (const struct lysc_node_leaflist *)node->schema; |
| 252 | if (!llist->dflts) { |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | LY_ARRAY_FOR(llist->dflts, u) { |
| 257 | /* compare with each possible default value */ |
| 258 | if (llist->type->plugin->compare(&term->value, llist->dflts[u])) { |
| 259 | return 0; |
| 260 | } |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | return 1; |
| 265 | } |
| 266 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 267 | static LYD_FORMAT |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 268 | lyd_parse_get_format(const struct ly_in *in, LYD_FORMAT format) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 269 | { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 270 | if (!format && (in->type == LY_IN_FILEPATH)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 271 | /* unknown format - try to detect it from filename's suffix */ |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 272 | const char *path = in->method.fpath.filepath; |
| 273 | size_t len = strlen(path); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 274 | |
| 275 | /* ignore trailing whitespaces */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 276 | for ( ; len > 0 && isspace(path[len - 1]); len--) {} |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 277 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 278 | if ((len >= 5) && !strncmp(&path[len - 4], ".xml", 4)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 279 | format = LYD_XML; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 280 | } else if ((len >= 6) && !strncmp(&path[len - 5], ".json", 5)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 281 | format = LYD_JSON; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 282 | } else if ((len >= 5) && !strncmp(&path[len - 4], ".lyb", 4)) { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 283 | format = LYD_LYB; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 284 | } /* else still unknown */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 287 | return format; |
| 288 | } |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 289 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 290 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 291 | lyd_parse_data(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 292 | struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 293 | { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 294 | LY_ERR ret = LY_SUCCESS; |
| 295 | struct lyd_ctx *lydctx = NULL; |
| 296 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 297 | LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL); |
| 298 | LY_CHECK_ARG_RET(ctx, !(parse_options & ~LYD_PARSE_OPTS_MASK), LY_EINVAL); |
| 299 | LY_CHECK_ARG_RET(ctx, !(validate_options & ~LYD_VALIDATE_OPTS_MASK), LY_EINVAL); |
| 300 | |
| 301 | format = lyd_parse_get_format(in, format); |
| 302 | LY_CHECK_ARG_RET(ctx, format, LY_EINVAL); |
| 303 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 304 | /* init */ |
| 305 | *tree = NULL; |
| 306 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 307 | /* remember input position */ |
| 308 | in->func_start = in->current; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 309 | |
| 310 | switch (format) { |
| 311 | case LYD_XML: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 312 | LY_CHECK_RET(lyd_parse_xml_data(ctx, in, parse_options, validate_options, tree, &lydctx)); |
| 313 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 314 | case LYD_JSON: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 315 | LY_CHECK_RET(lyd_parse_json_data(ctx, in, parse_options, validate_options, tree, &lydctx)); |
| 316 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 317 | case LYD_LYB: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 318 | LY_CHECK_RET(lyd_parse_lyb_data(ctx, in, parse_options, validate_options, tree, &lydctx)); |
| 319 | break; |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 320 | case LYD_UNKNOWN: |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 321 | LOGINT_RET(ctx); |
| 322 | } |
| 323 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 324 | if (!(parse_options & LYD_PARSE_ONLY)) { |
| 325 | uint32_t i = 0; |
| 326 | const struct lys_module *mod; |
| 327 | struct lyd_node *first, *next, **first2; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 328 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 329 | next = *tree; |
| 330 | while (1) { |
| 331 | if (validate_options & LYD_VALIDATE_PRESENT) { |
| 332 | mod = lyd_data_next_module(&next, &first); |
| 333 | } else { |
| 334 | mod = lyd_mod_next_module(next, NULL, ctx, &i, &first); |
| 335 | } |
| 336 | if (!mod) { |
| 337 | break; |
| 338 | } |
| 339 | if (first == *tree) { |
| 340 | /* make sure first2 changes are carried to tree */ |
| 341 | first2 = tree; |
| 342 | } else { |
| 343 | first2 = &first; |
| 344 | } |
| 345 | |
| 346 | /* validate new top-level nodes, autodelete CANNOT occur, all nodes are new */ |
| 347 | LY_CHECK_GOTO(ret = lyd_validate_new(first2, NULL, mod, NULL), cleanup); |
| 348 | |
| 349 | /* add all top-level defaults for this module */ |
| 350 | ret = lyd_new_implicit_r(NULL, first2, NULL, mod, &lydctx->unres_node_type, &lydctx->when_check, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 351 | (validate_options & LYD_VALIDATE_NO_STATE) ? LYD_IMPLICIT_NO_STATE : 0, NULL); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 352 | LY_CHECK_GOTO(ret, cleanup); |
| 353 | |
| 354 | /* finish incompletely validated terminal values/attributes and when conditions */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 355 | ret = lyd_validate_unres(tree, &lydctx->when_check, &lydctx->unres_node_type, &lydctx->unres_meta_type, NULL); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 356 | LY_CHECK_GOTO(ret, cleanup); |
| 357 | |
| 358 | /* perform final validation that assumes the data tree is final */ |
| 359 | LY_CHECK_GOTO(ret = lyd_validate_final_r(*first2, NULL, mod, validate_options, 0), cleanup); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | cleanup: |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 364 | lydctx->free(lydctx); |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 365 | if (ret) { |
| 366 | lyd_free_all(*tree); |
| 367 | *tree = NULL; |
| 368 | } |
| 369 | return ret; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 373 | lyd_parse_data_mem(const struct ly_ctx *ctx, const char *data, LYD_FORMAT format, uint32_t parse_options, uint32_t validate_options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 374 | struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 375 | { |
| 376 | LY_ERR ret; |
| 377 | struct ly_in *in; |
| 378 | |
| 379 | LY_CHECK_RET(ly_in_new_memory(data, &in)); |
| 380 | ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree); |
| 381 | |
| 382 | ly_in_free(in, 0); |
| 383 | return ret; |
| 384 | } |
| 385 | |
| 386 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 387 | 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] | 388 | struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 389 | { |
| 390 | LY_ERR ret; |
| 391 | struct ly_in *in; |
| 392 | |
| 393 | LY_CHECK_RET(ly_in_new_fd(fd, &in)); |
| 394 | ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree); |
| 395 | |
| 396 | ly_in_free(in, 0); |
| 397 | return ret; |
| 398 | } |
| 399 | |
| 400 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 401 | lyd_parse_data_path(const struct ly_ctx *ctx, const char *path, LYD_FORMAT format, uint32_t parse_options, |
| 402 | uint32_t validate_options, struct lyd_node **tree) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 403 | { |
| 404 | LY_ERR ret; |
| 405 | struct ly_in *in; |
| 406 | |
| 407 | LY_CHECK_RET(ly_in_new_filepath(path, 0, &in)); |
| 408 | ret = lyd_parse_data(ctx, in, format, parse_options, validate_options, tree); |
| 409 | |
| 410 | ly_in_free(in, 0); |
| 411 | return ret; |
| 412 | } |
| 413 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 414 | API LY_ERR |
| 415 | lyd_parse_rpc(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **op) |
| 416 | { |
| 417 | LY_CHECK_ARG_RET(ctx, ctx, in, tree, LY_EINVAL); |
| 418 | |
| 419 | format = lyd_parse_get_format(in, format); |
| 420 | LY_CHECK_ARG_RET(ctx, format, LY_EINVAL); |
| 421 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 422 | /* init */ |
| 423 | *tree = NULL; |
| 424 | if (op) { |
| 425 | *op = NULL; |
| 426 | } |
| 427 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 428 | /* remember input position */ |
| 429 | in->func_start = in->current; |
| 430 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 431 | switch (format) { |
| 432 | case LYD_XML: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 433 | return lyd_parse_xml_rpc(ctx, in, tree, op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 434 | case LYD_JSON: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 435 | return lyd_parse_json_rpc(ctx, in, tree, op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 436 | case LYD_LYB: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 437 | return lyd_parse_lyb_rpc(ctx, in, tree, op); |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 438 | case LYD_UNKNOWN: |
| 439 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | LOGINT_RET(ctx); |
| 443 | } |
| 444 | |
| 445 | API LY_ERR |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 446 | lyd_parse_reply(const struct lyd_node *request, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 447 | struct lyd_node **op) |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 448 | { |
| 449 | LY_CHECK_ARG_RET(NULL, request, LY_EINVAL); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 450 | LY_CHECK_ARG_RET(LYD_CTX(request), in, tree || op, LY_EINVAL); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 451 | |
| 452 | format = lyd_parse_get_format(in, format); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 453 | LY_CHECK_ARG_RET(LYD_CTX(request), format, LY_EINVAL); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 454 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 455 | /* init */ |
| 456 | if (tree) { |
| 457 | *tree = NULL; |
| 458 | } |
| 459 | if (op) { |
| 460 | *op = NULL; |
| 461 | } |
| 462 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 463 | /* remember input position */ |
| 464 | in->func_start = in->current; |
| 465 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 466 | switch (format) { |
| 467 | case LYD_XML: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 468 | return lyd_parse_xml_reply(request, in, tree, op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 469 | case LYD_JSON: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 470 | return lyd_parse_json_reply(request, in, tree, op); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 471 | case LYD_LYB: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 472 | return lyd_parse_lyb_reply(request, in, tree, op); |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 473 | case LYD_UNKNOWN: |
| 474 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 475 | } |
| 476 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 477 | LOGINT_RET(LYD_CTX(request)); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | API LY_ERR |
| 481 | lyd_parse_notif(const struct ly_ctx *ctx, struct ly_in *in, LYD_FORMAT format, struct lyd_node **tree, struct lyd_node **ntf) |
| 482 | { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 483 | LY_CHECK_ARG_RET(ctx, ctx, in, tree || ntf, LY_EINVAL); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 484 | |
| 485 | format = lyd_parse_get_format(in, format); |
| 486 | LY_CHECK_ARG_RET(ctx, format, LY_EINVAL); |
| 487 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 488 | /* init */ |
| 489 | if (tree) { |
| 490 | *tree = NULL; |
| 491 | } |
| 492 | if (ntf) { |
| 493 | *ntf = NULL; |
| 494 | } |
| 495 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 496 | /* remember input position */ |
| 497 | in->func_start = in->current; |
| 498 | |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 499 | switch (format) { |
| 500 | case LYD_XML: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 501 | return lyd_parse_xml_notif(ctx, in, tree, ntf); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 502 | case LYD_JSON: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 503 | return lyd_parse_json_notif(ctx, in, tree, ntf); |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 504 | case LYD_LYB: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 505 | return lyd_parse_lyb_notif(ctx, in, tree, ntf); |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 506 | case LYD_UNKNOWN: |
| 507 | break; |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | LOGINT_RET(ctx); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 511 | } |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 512 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 513 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 514 | lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, ly_bool *dynamic, |
| 515 | LY_PREFIX_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] | 516 | { |
| 517 | LY_ERR ret; |
| 518 | struct lyd_node_term *term; |
| 519 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 520 | assert(schema->nodetype & LYD_NODE_TERM); |
| 521 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 522 | term = calloc(1, sizeof *term); |
| 523 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 524 | |
| 525 | term->schema = schema; |
| 526 | term->prev = (struct lyd_node *)term; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 527 | term->flags = LYD_NEW; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 528 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 529 | ret = lyd_value_store(schema->module->ctx, &term->value, ((struct lysc_node_leaf *)term->schema)->type, value, |
| 530 | value_len, dynamic, format, prefix_data, hints, schema, incomplete, LY_VLOG_LYSC, schema); |
| 531 | LY_CHECK_ERR_RET(ret, free(term), ret); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 532 | lyd_hash((struct lyd_node *)term); |
| 533 | |
| 534 | *node = (struct lyd_node *)term; |
| 535 | return ret; |
| 536 | } |
| 537 | |
| 538 | LY_ERR |
| 539 | lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node) |
| 540 | { |
| 541 | LY_ERR ret; |
| 542 | struct lyd_node_term *term; |
| 543 | struct lysc_type *type; |
| 544 | |
| 545 | assert(schema->nodetype & LYD_NODE_TERM); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 546 | assert(val && val->canonical && val->realtype); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 547 | |
| 548 | term = calloc(1, sizeof *term); |
| 549 | LY_CHECK_ERR_RET(!term, LOGMEM(schema->module->ctx), LY_EMEM); |
| 550 | |
| 551 | term->schema = schema; |
| 552 | term->prev = (struct lyd_node *)term; |
| 553 | term->flags = LYD_NEW; |
| 554 | |
| 555 | type = ((struct lysc_node_leaf *)schema)->type; |
| 556 | ret = type->plugin->duplicate(schema->module->ctx, val, &term->value); |
| 557 | if (ret) { |
| 558 | LOGERR(schema->module->ctx, ret, "Value duplication failed."); |
| 559 | free(term); |
| 560 | return ret; |
| 561 | } |
| 562 | lyd_hash((struct lyd_node *)term); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 563 | |
| 564 | *node = (struct lyd_node *)term; |
| 565 | return ret; |
| 566 | } |
| 567 | |
| 568 | LY_ERR |
| 569 | lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node) |
| 570 | { |
| 571 | struct lyd_node_inner *in; |
| 572 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 573 | assert(schema->nodetype & LYD_NODE_INNER); |
| 574 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 575 | in = calloc(1, sizeof *in); |
| 576 | LY_CHECK_ERR_RET(!in, LOGMEM(schema->module->ctx), LY_EMEM); |
| 577 | |
| 578 | in->schema = schema; |
| 579 | in->prev = (struct lyd_node *)in; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 580 | in->flags = LYD_NEW; |
Michal Vasko | 3383be7 | 2020-11-03 17:15:31 +0100 | [diff] [blame] | 581 | if ((schema->nodetype == LYS_CONTAINER) && !(schema->flags & LYS_PRESENCE)) { |
| 582 | in->flags |= LYD_DEFAULT; |
| 583 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 584 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 585 | /* do not hash list with keys, we need them for the hash */ |
| 586 | if ((schema->nodetype != LYS_LIST) || (schema->flags & LYS_KEYLESS)) { |
| 587 | lyd_hash((struct lyd_node *)in); |
| 588 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 589 | |
| 590 | *node = (struct lyd_node *)in; |
| 591 | return LY_SUCCESS; |
| 592 | } |
| 593 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 594 | LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 595 | 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] | 596 | { |
| 597 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 598 | struct lyd_node *list = NULL, *key; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 599 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 600 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 601 | assert((schema->nodetype == LYS_LIST) && !(schema->flags & LYS_KEYLESS)); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 602 | |
| 603 | /* create list */ |
| 604 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &list), cleanup); |
| 605 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 606 | /* create and insert all the keys */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 607 | LY_ARRAY_FOR(predicates, u) { |
| 608 | LY_CHECK_GOTO(ret = lyd_create_term2(predicates[u].key, &predicates[u].value, &key), cleanup); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 609 | lyd_insert_node(list, NULL, key); |
| 610 | } |
| 611 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 612 | /* hash having all the keys */ |
| 613 | lyd_hash(list); |
| 614 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 615 | /* success */ |
| 616 | *node = list; |
| 617 | list = NULL; |
| 618 | |
| 619 | cleanup: |
| 620 | lyd_free_tree(list); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 621 | return ret; |
| 622 | } |
| 623 | |
| 624 | static LY_ERR |
| 625 | lyd_create_list2(const struct lysc_node *schema, const char *keys, size_t keys_len, struct lyd_node **node) |
| 626 | { |
| 627 | LY_ERR ret = LY_SUCCESS; |
| 628 | struct lyxp_expr *expr = NULL; |
| 629 | uint16_t exp_idx = 0; |
| 630 | enum ly_path_pred_type pred_type = 0; |
| 631 | struct ly_path_predicate *predicates = NULL; |
| 632 | |
| 633 | /* parse keys */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 634 | 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] | 635 | LY_PATH_PRED_KEYS, &expr), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 636 | |
| 637 | /* compile them */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 638 | LY_CHECK_GOTO(ret = ly_path_compile_predicate(schema->module->ctx, NULL, NULL, schema, expr, &exp_idx, LY_PREF_JSON, |
| 639 | NULL, &predicates, &pred_type), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 640 | |
| 641 | /* create the list node */ |
| 642 | LY_CHECK_GOTO(ret = lyd_create_list(schema, predicates, node), cleanup); |
| 643 | |
| 644 | cleanup: |
| 645 | lyxp_expr_free(schema->module->ctx, expr); |
Michal Vasko | f7e16e2 | 2020-10-21 09:24:39 +0200 | [diff] [blame] | 646 | ly_path_predicates_free(schema->module->ctx, pred_type, predicates); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 647 | return ret; |
| 648 | } |
| 649 | |
| 650 | LY_ERR |
| 651 | lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node) |
| 652 | { |
| 653 | struct lyd_node_any *any; |
| 654 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 655 | assert(schema->nodetype & LYD_NODE_ANY); |
| 656 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 657 | any = calloc(1, sizeof *any); |
| 658 | LY_CHECK_ERR_RET(!any, LOGMEM(schema->module->ctx), LY_EMEM); |
| 659 | |
| 660 | any->schema = schema; |
| 661 | any->prev = (struct lyd_node *)any; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 662 | any->flags = LYD_NEW; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 663 | |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 664 | /* TODO: convert XML/JSON strings into a opaq data tree */ |
| 665 | any->value.str = value; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 666 | any->value_type = value_type; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 667 | lyd_hash((struct lyd_node *)any); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 668 | |
| 669 | *node = (struct lyd_node *)any; |
| 670 | return LY_SUCCESS; |
| 671 | } |
| 672 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 673 | LY_ERR |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 674 | lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *prefix, size_t pref_len, |
| 675 | const char *module_key, size_t module_key_len, const char *value, size_t value_len, ly_bool *dynamic, |
| 676 | LY_PREFIX_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] | 677 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 678 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 679 | struct lyd_node_opaq *opaq; |
| 680 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 681 | assert(ctx && name && name_len && format); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 682 | |
| 683 | if (!value_len) { |
| 684 | value = ""; |
| 685 | } |
| 686 | |
| 687 | opaq = calloc(1, sizeof *opaq); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 688 | LY_CHECK_ERR_GOTO(!opaq, LOGMEM(ctx); ret = LY_EMEM, finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 689 | |
| 690 | opaq->prev = (struct lyd_node *)opaq; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 691 | 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] | 692 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 693 | if (pref_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 694 | 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] | 695 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 696 | if (module_key_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 697 | 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] | 698 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 699 | if (dynamic && *dynamic) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 700 | 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] | 701 | *dynamic = 0; |
| 702 | } else { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 703 | 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] | 704 | } |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 705 | |
| 706 | opaq->format = format; |
| 707 | opaq->val_prefix_data = val_prefix_data; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 708 | opaq->hints = hints; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 709 | opaq->ctx = ctx; |
| 710 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 711 | finish: |
| 712 | if (ret) { |
| 713 | lyd_free_tree((struct lyd_node *)opaq); |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 714 | ly_free_prefix_data(format, val_prefix_data); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 715 | } else { |
| 716 | *node = (struct lyd_node *)opaq; |
| 717 | } |
| 718 | return ret; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 719 | } |
| 720 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 721 | API LY_ERR |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 722 | lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 723 | { |
| 724 | struct lyd_node *ret = NULL; |
| 725 | const struct lysc_node *schema; |
| 726 | struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL); |
| 727 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 728 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 729 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 730 | if (!module) { |
| 731 | module = parent->schema->module; |
| 732 | } |
| 733 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 734 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 735 | LYS_CONTAINER | LYS_NOTIF | LYS_RPC | LYS_ACTION, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 736 | LY_CHECK_ERR_RET(!schema, LOGERR(ctx, LY_EINVAL, "Inner node (and not a list) \"%s\" not found.", name), LY_ENOTFOUND); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 737 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 738 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
| 739 | if (parent) { |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 740 | lyd_insert_node(parent, NULL, ret); |
| 741 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 742 | |
| 743 | if (node) { |
| 744 | *node = ret; |
| 745 | } |
| 746 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 747 | } |
| 748 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 749 | API LY_ERR |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 750 | lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node, ...) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 751 | { |
| 752 | struct lyd_node *ret = NULL, *key; |
| 753 | const struct lysc_node *schema, *key_s; |
| 754 | struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL); |
| 755 | va_list ap; |
| 756 | const char *key_val; |
| 757 | LY_ERR rc = LY_SUCCESS; |
| 758 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 759 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 760 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 761 | if (!module) { |
| 762 | module = parent->schema->module; |
| 763 | } |
| 764 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 765 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 766 | 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] | 767 | |
| 768 | /* create list inner node */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 769 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 770 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 771 | va_start(ap, node); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 772 | |
| 773 | /* create and insert all the keys */ |
| 774 | for (key_s = lysc_node_children(schema, 0); key_s && (key_s->flags & LYS_KEY); key_s = key_s->next) { |
| 775 | key_val = va_arg(ap, const char *); |
| 776 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 777 | rc = lyd_create_term(key_s, key_val, key_val ? strlen(key_val) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, |
| 778 | NULL, &key); |
| 779 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 780 | lyd_insert_node(ret, NULL, key); |
| 781 | } |
| 782 | |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 783 | if (parent) { |
| 784 | lyd_insert_node(parent, NULL, ret); |
| 785 | } |
| 786 | |
| 787 | cleanup: |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 788 | va_end(ap); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 789 | if (rc) { |
| 790 | lyd_free_tree(ret); |
| 791 | ret = NULL; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 792 | } else if (node) { |
| 793 | *node = ret; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 794 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 795 | return rc; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 796 | } |
| 797 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 798 | API LY_ERR |
| 799 | 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] | 800 | ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 801 | { |
| 802 | struct lyd_node *ret = NULL; |
| 803 | const struct lysc_node *schema; |
| 804 | struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL); |
| 805 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 806 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 807 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 808 | if (!module) { |
| 809 | module = parent->schema->module; |
| 810 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 811 | if (!keys) { |
| 812 | keys = ""; |
| 813 | } |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 814 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 815 | /* find schema node */ |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 816 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYS_LIST, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 817 | 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] | 818 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 819 | if ((schema->flags & LYS_KEYLESS) && !keys[0]) { |
| 820 | /* key-less list */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 821 | LY_CHECK_RET(lyd_create_inner(schema, &ret)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 822 | } else { |
| 823 | /* create the list node */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 824 | LY_CHECK_RET(lyd_create_list2(schema, keys, strlen(keys), &ret)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 825 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 826 | if (parent) { |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 827 | lyd_insert_node(parent, NULL, ret); |
| 828 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 829 | |
| 830 | if (node) { |
| 831 | *node = ret; |
| 832 | } |
| 833 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 834 | } |
| 835 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 836 | API LY_ERR |
| 837 | lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 838 | ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 839 | { |
Michal Vasko | cbff3e9 | 2020-05-27 12:56:41 +0200 | [diff] [blame] | 840 | LY_ERR rc; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 841 | struct lyd_node *ret = NULL; |
| 842 | const struct lysc_node *schema; |
| 843 | struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL); |
| 844 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 845 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 846 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 847 | if (!module) { |
| 848 | module = parent->schema->module; |
| 849 | } |
| 850 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 851 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_TERM, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 852 | 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] | 853 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 854 | rc = lyd_create_term(schema, val_str, val_str ? strlen(val_str) : 0, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, |
| 855 | &ret); |
| 856 | LY_CHECK_RET(rc); |
Michal Vasko | cbff3e9 | 2020-05-27 12:56:41 +0200 | [diff] [blame] | 857 | if (parent) { |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 858 | lyd_insert_node(parent, NULL, ret); |
| 859 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 860 | |
| 861 | if (node) { |
| 862 | *node = ret; |
| 863 | } |
| 864 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 865 | } |
| 866 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 867 | API LY_ERR |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 868 | lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 869 | LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node) |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 870 | { |
| 871 | struct lyd_node *ret = NULL; |
| 872 | const struct lysc_node *schema; |
| 873 | struct ly_ctx *ctx = parent ? parent->schema->module->ctx : (module ? module->ctx : NULL); |
| 874 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 875 | LY_CHECK_ARG_RET(ctx, parent || module, parent || node, name, LY_EINVAL); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 876 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 877 | if (!module) { |
| 878 | module = parent->schema->module; |
| 879 | } |
| 880 | |
Radek Krejci | 41ac994 | 2020-11-02 14:47:56 +0100 | [diff] [blame] | 881 | schema = lys_find_child(parent ? parent->schema : NULL, module, name, 0, LYD_NODE_ANY, output ? LYS_GETNEXT_OUTPUT : 0); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 882 | 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] | 883 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 884 | LY_CHECK_RET(lyd_create_any(schema, value, value_type, &ret)); |
| 885 | if (parent) { |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 886 | lyd_insert_node(parent, NULL, ret); |
| 887 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 888 | |
| 889 | if (node) { |
| 890 | *node = ret; |
| 891 | } |
| 892 | return LY_SUCCESS; |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 893 | } |
| 894 | |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 895 | /** |
| 896 | * @brief Update node value. |
| 897 | * |
| 898 | * @param[in] node Node to update. |
| 899 | * @param[in] value New value to set. |
| 900 | * @param[in] value_type Type of @p value for any node. |
| 901 | * @param[out] new_parent Set to @p node if the value was updated, otherwise set to NULL. |
| 902 | * @param[out] new_node Set to @p node if the value was updated, otherwise set to NULL. |
| 903 | * @return LY_ERR value. |
| 904 | */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 905 | static LY_ERR |
| 906 | lyd_new_path_update(struct lyd_node *node, const void *value, LYD_ANYDATA_VALUETYPE value_type, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 907 | struct lyd_node **new_parent, struct lyd_node **new_node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 908 | { |
| 909 | LY_ERR ret = LY_SUCCESS; |
| 910 | struct lyd_node *new_any; |
| 911 | |
| 912 | switch (node->schema->nodetype) { |
| 913 | case LYS_CONTAINER: |
| 914 | case LYS_NOTIF: |
| 915 | case LYS_RPC: |
| 916 | case LYS_ACTION: |
| 917 | case LYS_LIST: |
| 918 | case LYS_LEAFLIST: |
| 919 | /* if it exists, there is nothing to update */ |
| 920 | *new_parent = NULL; |
| 921 | *new_node = NULL; |
| 922 | break; |
| 923 | case LYS_LEAF: |
| 924 | ret = lyd_change_term(node, value); |
| 925 | if ((ret == LY_SUCCESS) || (ret == LY_EEXIST)) { |
| 926 | /* there was an actual change (at least of the default flag) */ |
| 927 | *new_parent = node; |
| 928 | *new_node = node; |
| 929 | ret = LY_SUCCESS; |
| 930 | } else if (ret == LY_ENOT) { |
| 931 | /* no change */ |
| 932 | *new_parent = NULL; |
| 933 | *new_node = NULL; |
| 934 | ret = LY_SUCCESS; |
| 935 | } /* else error */ |
| 936 | break; |
| 937 | case LYS_ANYDATA: |
| 938 | case LYS_ANYXML: |
| 939 | /* create a new any node */ |
| 940 | LY_CHECK_RET(lyd_create_any(node->schema, value, value_type, &new_any)); |
| 941 | |
| 942 | /* compare with the existing one */ |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 943 | if (lyd_compare_single(node, new_any, 0)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 944 | /* not equal, switch values (so that we can use generic node free) */ |
| 945 | ((struct lyd_node_any *)new_any)->value = ((struct lyd_node_any *)node)->value; |
| 946 | ((struct lyd_node_any *)new_any)->value_type = ((struct lyd_node_any *)node)->value_type; |
| 947 | ((struct lyd_node_any *)node)->value.str = value; |
| 948 | ((struct lyd_node_any *)node)->value_type = value_type; |
| 949 | |
| 950 | *new_parent = node; |
| 951 | *new_node = node; |
| 952 | } else { |
| 953 | /* they are equal */ |
| 954 | *new_parent = NULL; |
| 955 | *new_node = NULL; |
| 956 | } |
| 957 | lyd_free_tree(new_any); |
| 958 | break; |
| 959 | default: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 960 | LOGINT(LYD_CTX(node)); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 961 | ret = LY_EINT; |
| 962 | break; |
| 963 | } |
| 964 | |
| 965 | return ret; |
| 966 | } |
| 967 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 968 | API LY_ERR |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 969 | lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 970 | const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta) |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 971 | { |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 972 | const char *prefix, *tmp; |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 973 | size_t pref_len, name_len; |
| 974 | |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 975 | LY_CHECK_ARG_RET(NULL, ctx, name, module || strchr(name, ':'), parent || meta, LY_EINVAL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 976 | |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 977 | if (parent && !parent->schema) { |
| 978 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name); |
| 979 | return LY_EINVAL; |
| 980 | } |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 981 | |
| 982 | /* parse the name */ |
| 983 | tmp = name; |
| 984 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 985 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 986 | return LY_EINVAL; |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 987 | } |
| 988 | |
| 989 | /* find the module */ |
| 990 | if (prefix) { |
Radek Krejci | 0ad51f1 | 2020-07-16 12:08:12 +0200 | [diff] [blame] | 991 | module = ly_ctx_get_module_implemented2(ctx, prefix, pref_len); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 992 | LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), LY_ENOTFOUND); |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | /* set value if none */ |
| 996 | if (!val_str) { |
| 997 | val_str = ""; |
| 998 | } |
| 999 | |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1000 | return lyd_create_meta(parent, meta, module, name, name_len, val_str, strlen(val_str), NULL, LY_PREF_JSON, |
| 1001 | NULL, LYD_HINT_DATA, clear_dflt, NULL); |
| 1002 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1003 | |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1004 | API LY_ERR |
| 1005 | lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr, |
| 1006 | struct lyd_meta **meta) |
| 1007 | { |
| 1008 | const struct lys_module *mod; |
| 1009 | |
| 1010 | LY_CHECK_ARG_RET(NULL, ctx, attr, parent || meta, LY_EINVAL); |
| 1011 | |
| 1012 | if (parent && !parent->schema) { |
| 1013 | LOGERR(ctx, LY_EINVAL, "Cannot add metadata to an opaque node \"%s\".", ((struct lyd_node_opaq *)parent)->name); |
| 1014 | return LY_EINVAL; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1015 | } |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1016 | |
| 1017 | switch (attr->format) { |
| 1018 | case LY_PREF_XML: |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1019 | mod = ly_ctx_get_module_implemented_ns(ctx, attr->name.module_ns); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1020 | if (!mod) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1021 | 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] | 1022 | return LY_ENOTFOUND; |
| 1023 | } |
| 1024 | break; |
| 1025 | case LY_PREF_JSON: |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1026 | mod = ly_ctx_get_module_implemented(ctx, attr->name.module_name); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1027 | if (!mod) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1028 | LOGERR(ctx, LY_EINVAL, "Module \"%s\" not found.", attr->name.module_name); |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1029 | return LY_ENOTFOUND; |
| 1030 | } |
| 1031 | break; |
| 1032 | default: |
| 1033 | LOGINT_RET(ctx); |
| 1034 | } |
| 1035 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 1036 | return lyd_create_meta(parent, meta, mod, attr->name.name, strlen(attr->name.name), attr->value, strlen(attr->value), |
Michal Vasko | ba69670 | 2020-11-11 19:12:45 +0100 | [diff] [blame] | 1037 | NULL, attr->format, attr->val_prefix_data, attr->hints, clear_dflt, NULL); |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 1038 | } |
| 1039 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1040 | API LY_ERR |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1041 | lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1042 | const char *module_name, struct lyd_node **node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1043 | { |
| 1044 | struct lyd_node *ret = NULL; |
| 1045 | |
Michal Vasko | 6027eb9 | 2020-07-15 16:37:30 +0200 | [diff] [blame] | 1046 | LY_CHECK_ARG_RET(ctx, parent || ctx, parent || node, name, module_name, LY_EINVAL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1047 | |
| 1048 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1049 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1050 | } |
| 1051 | if (!value) { |
| 1052 | value = ""; |
| 1053 | } |
| 1054 | |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 1055 | LY_CHECK_RET(lyd_create_opaq(ctx, name, strlen(name), NULL, 0, module_name, strlen(module_name), value, |
| 1056 | strlen(value), NULL, LY_PREF_JSON, NULL, 0, &ret)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1057 | if (parent) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1058 | lyd_insert_node(parent, NULL, ret); |
| 1059 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1060 | |
| 1061 | if (node) { |
| 1062 | *node = ret; |
| 1063 | } |
| 1064 | return LY_SUCCESS; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1065 | } |
| 1066 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1067 | API LY_ERR |
| 1068 | lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1069 | struct lyd_attr **attr) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1070 | { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 1071 | struct lyd_attr *ret = NULL; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1072 | const struct ly_ctx *ctx; |
| 1073 | const char *prefix, *tmp; |
Michal Vasko | 51d21b8 | 2020-11-13 18:03:54 +0100 | [diff] [blame^] | 1074 | size_t pref_len, name_len, mod_len; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1075 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1076 | LY_CHECK_ARG_RET(NULL, parent, !parent->schema, name, LY_EINVAL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1077 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1078 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1079 | |
| 1080 | /* parse the name */ |
| 1081 | tmp = name; |
| 1082 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 1083 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1084 | return LY_EVALID; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1085 | } |
| 1086 | |
Michal Vasko | 51d21b8 | 2020-11-13 18:03:54 +0100 | [diff] [blame^] | 1087 | /* get the module */ |
| 1088 | if (module_name) { |
| 1089 | mod_len = strlen(module_name); |
| 1090 | } else { |
| 1091 | module_name = prefix; |
| 1092 | mod_len = pref_len; |
| 1093 | } |
| 1094 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1095 | /* set value if none */ |
| 1096 | if (!val_str) { |
| 1097 | val_str = ""; |
| 1098 | } |
| 1099 | |
Michal Vasko | 51d21b8 | 2020-11-13 18:03:54 +0100 | [diff] [blame^] | 1100 | LY_CHECK_RET(lyd_create_attr(parent, &ret, ctx, name, name_len, prefix, pref_len, module_name, mod_len, val_str, |
| 1101 | strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1102 | |
| 1103 | if (attr) { |
| 1104 | *attr = ret; |
| 1105 | } |
| 1106 | return LY_SUCCESS; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1107 | } |
| 1108 | |
| 1109 | API LY_ERR |
| 1110 | lyd_change_term(struct lyd_node *term, const char *val_str) |
| 1111 | { |
| 1112 | LY_ERR ret = LY_SUCCESS; |
| 1113 | struct lysc_type *type; |
| 1114 | struct lyd_node_term *t; |
| 1115 | struct lyd_node *parent; |
| 1116 | struct lyd_value val = {0}; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1117 | ly_bool dflt_change, val_change; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1118 | |
| 1119 | LY_CHECK_ARG_RET(NULL, term, term->schema, term->schema->nodetype & LYD_NODE_TERM, LY_EINVAL); |
| 1120 | |
| 1121 | if (!val_str) { |
| 1122 | val_str = ""; |
| 1123 | } |
| 1124 | t = (struct lyd_node_term *)term; |
| 1125 | type = ((struct lysc_node_leaf *)term->schema)->type; |
| 1126 | |
| 1127 | /* parse the new value */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1128 | ret = lyd_value_store(LYD_CTX(term), &val, type, val_str, strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, |
| 1129 | term->schema, NULL, LY_VLOG_LYD, term); |
| 1130 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1131 | |
| 1132 | /* compare original and new value */ |
| 1133 | if (type->plugin->compare(&t->value, &val)) { |
| 1134 | /* values differ, switch them */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1135 | type->plugin->free(LYD_CTX(term), &t->value); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1136 | t->value = val; |
| 1137 | memset(&val, 0, sizeof val); |
| 1138 | val_change = 1; |
| 1139 | } else { |
| 1140 | val_change = 0; |
| 1141 | } |
| 1142 | |
| 1143 | /* always clear the default flag */ |
| 1144 | if (term->flags & LYD_DEFAULT) { |
| 1145 | for (parent = term; parent; parent = (struct lyd_node *)parent->parent) { |
| 1146 | parent->flags &= ~LYD_DEFAULT; |
| 1147 | } |
| 1148 | dflt_change = 1; |
| 1149 | } else { |
| 1150 | dflt_change = 0; |
| 1151 | } |
| 1152 | |
| 1153 | if (val_change || dflt_change) { |
| 1154 | /* make the node non-validated */ |
| 1155 | term->flags &= LYD_NEW; |
| 1156 | } |
| 1157 | |
| 1158 | if (val_change) { |
| 1159 | if (term->schema->nodetype == LYS_LEAFLIST) { |
| 1160 | /* leaf-list needs to be hashed again and re-inserted into parent */ |
| 1161 | lyd_unlink_hash(term); |
| 1162 | lyd_hash(term); |
| 1163 | LY_CHECK_GOTO(ret = lyd_insert_hash(term), cleanup); |
| 1164 | } else if ((term->schema->flags & LYS_KEY) && term->parent) { |
| 1165 | /* list needs to be updated if its key was changed */ |
| 1166 | assert(term->parent->schema->nodetype == LYS_LIST); |
| 1167 | lyd_unlink_hash((struct lyd_node *)term->parent); |
| 1168 | lyd_hash((struct lyd_node *)term->parent); |
| 1169 | LY_CHECK_GOTO(ret = lyd_insert_hash((struct lyd_node *)term->parent), cleanup); |
| 1170 | } /* else leaf that is not a key, its value is not used for its hash so it does not change */ |
| 1171 | } |
| 1172 | |
| 1173 | /* retrun value */ |
| 1174 | if (!val_change) { |
| 1175 | if (dflt_change) { |
| 1176 | /* only default flag change */ |
| 1177 | ret = LY_EEXIST; |
| 1178 | } else { |
| 1179 | /* no change */ |
| 1180 | ret = LY_ENOT; |
| 1181 | } |
| 1182 | } /* else value changed, LY_SUCCESS */ |
| 1183 | |
| 1184 | cleanup: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1185 | type->plugin->free(LYD_CTX(term), &val); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1186 | return ret; |
| 1187 | } |
| 1188 | |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1189 | API LY_ERR |
| 1190 | lyd_change_meta(struct lyd_meta *meta, const char *val_str) |
| 1191 | { |
| 1192 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 1193 | struct lyd_meta *m2 = NULL; |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1194 | struct lyd_value val; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1195 | ly_bool val_change; |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1196 | |
| 1197 | LY_CHECK_ARG_RET(NULL, meta, LY_EINVAL); |
| 1198 | |
| 1199 | if (!val_str) { |
| 1200 | val_str = ""; |
| 1201 | } |
| 1202 | |
| 1203 | /* parse the new value into a new meta structure */ |
| 1204 | LY_CHECK_GOTO(ret = lyd_create_meta(NULL, &m2, meta->annotation->module, meta->name, strlen(meta->name), val_str, |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 1205 | strlen(val_str), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, 0, NULL), cleanup); |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1206 | |
| 1207 | /* compare original and new value */ |
| 1208 | if (lyd_compare_meta(meta, m2)) { |
| 1209 | /* values differ, switch them */ |
| 1210 | val = meta->value; |
| 1211 | meta->value = m2->value; |
| 1212 | m2->value = val; |
| 1213 | val_change = 1; |
| 1214 | } else { |
| 1215 | val_change = 0; |
| 1216 | } |
| 1217 | |
| 1218 | /* retrun value */ |
| 1219 | if (!val_change) { |
| 1220 | /* no change */ |
| 1221 | ret = LY_ENOT; |
| 1222 | } /* else value changed, LY_SUCCESS */ |
| 1223 | |
| 1224 | cleanup: |
| 1225 | return ret; |
| 1226 | } |
| 1227 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1228 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1229 | lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, uint32_t options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1230 | struct lyd_node **node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1231 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1232 | return lyd_new_path2(parent, ctx, path, value, 0, options, node, NULL); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1233 | } |
| 1234 | |
| 1235 | API LY_ERR |
| 1236 | lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1237 | LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node) |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1238 | { |
| 1239 | LY_ERR ret = LY_SUCCESS, r; |
| 1240 | struct lyxp_expr *exp = NULL; |
| 1241 | struct ly_path *p = NULL; |
| 1242 | struct lyd_node *nparent = NULL, *nnode = NULL, *node = NULL, *cur_parent; |
| 1243 | const struct lysc_node *schema; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1244 | LY_ARRAY_COUNT_TYPE path_idx = 0; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1245 | struct ly_path_predicate *pred; |
| 1246 | |
| 1247 | LY_CHECK_ARG_RET(ctx, parent || ctx, path, (path[0] == '/') || parent, LY_EINVAL); |
| 1248 | |
| 1249 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1250 | ctx = LYD_CTX(parent); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1251 | } |
| 1252 | |
| 1253 | /* parse path */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 1254 | LY_CHECK_GOTO(ret = ly_path_parse(ctx, NULL, path, strlen(path), LY_PATH_BEGIN_EITHER, LY_PATH_LREF_FALSE, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1255 | LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1256 | |
| 1257 | /* compile path */ |
| 1258 | LY_CHECK_GOTO(ret = ly_path_compile(ctx, NULL, parent ? parent->schema : NULL, exp, LY_PATH_LREF_FALSE, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 1259 | options & LYD_NEW_PATH_OUTPUT ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT, LY_PATH_TARGET_MANY, LY_PREF_JSON, |
| 1260 | NULL, &p), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1261 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1262 | schema = p[LY_ARRAY_COUNT(p) - 1].node; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1263 | if ((schema->nodetype == LYS_LIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE) && |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1264 | !(options & LYD_NEW_PATH_OPAQ)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1265 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_XPATH, "Predicate missing for %s \"%s\" in path.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1266 | lys_nodetype2str(schema->nodetype), schema->name); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1267 | ret = LY_EINVAL; |
| 1268 | goto cleanup; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1269 | } else if ((schema->nodetype == LYS_LEAFLIST) && (p[LY_ARRAY_COUNT(p) - 1].pred_type == LY_PATH_PREDTYPE_NONE)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1270 | /* parse leafref value into a predicate, if not defined in the path */ |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 1271 | p[LY_ARRAY_COUNT(p) - 1].pred_type = LY_PATH_PREDTYPE_LEAFLIST; |
| 1272 | LY_ARRAY_NEW_GOTO(ctx, p[LY_ARRAY_COUNT(p) - 1].predicates, pred, ret, cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1273 | |
| 1274 | if (!value) { |
| 1275 | value = ""; |
| 1276 | } |
| 1277 | |
| 1278 | r = LY_SUCCESS; |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1279 | if (options & LYD_NEW_PATH_OPAQ) { |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 1280 | r = lys_value_validate(NULL, schema, value, strlen(value)); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1281 | } |
| 1282 | if (!r) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1283 | ret = lyd_value_store(ctx, &pred->value, ((struct lysc_node_leaflist *)schema)->type, value, strlen(value), |
| 1284 | NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, schema, NULL, LY_VLOG_LYSC, schema); |
| 1285 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ae87566 | 2020-10-21 10:33:17 +0200 | [diff] [blame] | 1286 | ++((struct lysc_type *)pred->value.realtype)->refcount; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1287 | } /* else we have opaq flag and the value is not valid, leavne no predicate and then create an opaque node */ |
| 1288 | } |
| 1289 | |
| 1290 | /* try to find any existing nodes in the path */ |
| 1291 | if (parent) { |
| 1292 | ret = ly_path_eval_partial(p, parent, &path_idx, &node); |
| 1293 | if (ret == LY_SUCCESS) { |
| 1294 | /* the node exists, are we supposed to update it or is it just a default? */ |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1295 | if (!(options & LYD_NEW_PATH_UPDATE) && !(node->flags & LYD_DEFAULT)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1296 | LOGERR(ctx, LY_EEXIST, "Path \"%s\" already exists", path); |
| 1297 | ret = LY_EEXIST; |
| 1298 | goto cleanup; |
| 1299 | } |
| 1300 | |
| 1301 | /* update the existing node */ |
| 1302 | ret = lyd_new_path_update(node, value, value_type, &nparent, &nnode); |
| 1303 | goto cleanup; |
| 1304 | } else if (ret == LY_EINCOMPLETE) { |
| 1305 | /* some nodes were found, adjust the iterator to the next segment */ |
| 1306 | ++path_idx; |
| 1307 | } else if (ret == LY_ENOTFOUND) { |
| 1308 | /* 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] | 1309 | if (lysc_data_parent(p[0].node)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1310 | node = parent; |
| 1311 | } |
| 1312 | } else { |
| 1313 | /* error */ |
| 1314 | goto cleanup; |
| 1315 | } |
| 1316 | } |
| 1317 | |
| 1318 | /* create all the non-existing nodes in a loop */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1319 | for ( ; path_idx < LY_ARRAY_COUNT(p); ++path_idx) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1320 | cur_parent = node; |
| 1321 | schema = p[path_idx].node; |
| 1322 | |
| 1323 | switch (schema->nodetype) { |
| 1324 | case LYS_LIST: |
| 1325 | if (!(schema->flags & LYS_KEYLESS)) { |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1326 | if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1327 | /* creating opaque list without keys */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 1328 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, |
| 1329 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, |
| 1330 | LYD_NODEHINT_LIST, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1331 | } else { |
| 1332 | assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LIST); |
| 1333 | LY_CHECK_GOTO(ret = lyd_create_list(schema, p[path_idx].predicates, &node), cleanup); |
| 1334 | } |
| 1335 | break; |
| 1336 | } |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1337 | /* fallthrough */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1338 | case LYS_CONTAINER: |
| 1339 | case LYS_NOTIF: |
| 1340 | case LYS_RPC: |
| 1341 | case LYS_ACTION: |
| 1342 | LY_CHECK_GOTO(ret = lyd_create_inner(schema, &node), cleanup); |
| 1343 | break; |
| 1344 | case LYS_LEAFLIST: |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1345 | if ((options & LYD_NEW_PATH_OPAQ) && (p[path_idx].pred_type == LY_PATH_PREDTYPE_NONE)) { |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1346 | /* creating opaque leaf-list without value */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 1347 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, |
| 1348 | schema->module->name, strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, |
| 1349 | LYD_NODEHINT_LEAFLIST, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1350 | } else { |
| 1351 | assert(p[path_idx].pred_type == LY_PATH_PREDTYPE_LEAFLIST); |
| 1352 | LY_CHECK_GOTO(ret = lyd_create_term2(schema, &p[path_idx].predicates[0].value, &node), cleanup); |
| 1353 | } |
| 1354 | break; |
| 1355 | case LYS_LEAF: |
| 1356 | /* make there is some value */ |
| 1357 | if (!value) { |
| 1358 | value = ""; |
| 1359 | } |
| 1360 | |
| 1361 | r = LY_SUCCESS; |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 1362 | if (options & LYD_NEW_PATH_OPAQ) { |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 1363 | r = lys_value_validate(NULL, schema, value, strlen(value)); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1364 | } |
| 1365 | if (!r) { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1366 | ret = lyd_create_term(schema, value, strlen(value), NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &node); |
| 1367 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1368 | } else { |
| 1369 | /* creating opaque leaf without value */ |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 1370 | LY_CHECK_GOTO(ret = lyd_create_opaq(ctx, schema->name, strlen(schema->name), NULL, 0, schema->module->name, |
| 1371 | strlen(schema->module->name), NULL, 0, NULL, LY_PREF_JSON, NULL, 0, &node), cleanup); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1372 | } |
| 1373 | break; |
| 1374 | case LYS_ANYDATA: |
| 1375 | case LYS_ANYXML: |
| 1376 | LY_CHECK_GOTO(ret = lyd_create_any(schema, value, value_type, &node), cleanup); |
| 1377 | break; |
| 1378 | default: |
| 1379 | LOGINT(ctx); |
| 1380 | ret = LY_EINT; |
| 1381 | goto cleanup; |
| 1382 | } |
| 1383 | |
| 1384 | if (cur_parent) { |
| 1385 | /* connect to the parent */ |
| 1386 | lyd_insert_node(cur_parent, NULL, node); |
| 1387 | } else if (parent) { |
| 1388 | /* connect to top-level siblings */ |
| 1389 | lyd_insert_node(NULL, &parent, node); |
| 1390 | } |
| 1391 | |
| 1392 | /* update remembered nodes */ |
| 1393 | if (!nparent) { |
| 1394 | nparent = node; |
| 1395 | } |
| 1396 | nnode = node; |
| 1397 | } |
| 1398 | |
| 1399 | cleanup: |
| 1400 | lyxp_expr_free(ctx, exp); |
| 1401 | ly_path_free(ctx, p); |
| 1402 | if (!ret) { |
| 1403 | /* set out params only on success */ |
| 1404 | if (new_parent) { |
| 1405 | *new_parent = nparent; |
| 1406 | } |
| 1407 | if (new_node) { |
| 1408 | *new_node = nnode; |
| 1409 | } |
| 1410 | } |
| 1411 | return ret; |
| 1412 | } |
| 1413 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1414 | LY_ERR |
| 1415 | lyd_new_implicit_r(struct lyd_node *parent, struct lyd_node **first, const struct lysc_node *sparent, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1416 | const struct lys_module *mod, struct ly_set *node_types, struct ly_set *node_when, uint32_t impl_opts, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1417 | struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1418 | { |
| 1419 | LY_ERR ret; |
| 1420 | const struct lysc_node *iter = NULL; |
Radek Krejci | 2b18bf1 | 2020-11-06 11:20:20 +0100 | [diff] [blame] | 1421 | struct lyd_node *node = NULL; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1422 | struct lyd_value **dflts; |
| 1423 | LY_ARRAY_COUNT_TYPE u; |
| 1424 | |
| 1425 | assert(first && (parent || sparent || mod)); |
| 1426 | |
| 1427 | if (!sparent && parent) { |
| 1428 | sparent = parent->schema; |
| 1429 | } |
| 1430 | |
| 1431 | while ((iter = lys_getnext(iter, sparent, mod ? mod->compiled : NULL, LYS_GETNEXT_WITHCHOICE))) { |
| 1432 | if ((impl_opts & LYD_IMPLICIT_NO_STATE) && (iter->flags & LYS_CONFIG_R)) { |
| 1433 | continue; |
Michal Vasko | 44b19a1 | 2020-08-07 09:21:30 +0200 | [diff] [blame] | 1434 | } else if ((impl_opts & LYD_IMPLICIT_NO_CONFIG) && (iter->flags & LYS_CONFIG_W)) { |
| 1435 | continue; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1436 | } |
| 1437 | |
| 1438 | switch (iter->nodetype) { |
| 1439 | case LYS_CHOICE: |
| 1440 | if (((struct lysc_node_choice *)iter)->dflt && !lys_getnext_data(NULL, *first, NULL, iter, NULL)) { |
| 1441 | /* create default case data */ |
| 1442 | LY_CHECK_RET(lyd_new_implicit_r(parent, first, (struct lysc_node *)((struct lysc_node_choice *)iter)->dflt, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1443 | NULL, node_types, node_when, impl_opts, diff)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1444 | } |
| 1445 | break; |
| 1446 | case LYS_CONTAINER: |
| 1447 | if (!(iter->flags & LYS_PRESENCE) && lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
| 1448 | /* create default NP container */ |
| 1449 | LY_CHECK_RET(lyd_create_inner(iter, &node)); |
Michal Vasko | 0cadfcb | 2020-11-04 17:17:05 +0100 | [diff] [blame] | 1450 | node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1451 | lyd_insert_node(parent, first, node); |
| 1452 | |
| 1453 | /* cannot be a NP container with when */ |
| 1454 | assert(!iter->when); |
| 1455 | |
Michal Vasko | e49b632 | 2020-11-05 17:38:36 +0100 | [diff] [blame] | 1456 | if (diff) { |
| 1457 | /* add into diff */ |
| 1458 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 1459 | } |
| 1460 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1461 | /* create any default children */ |
| 1462 | LY_CHECK_RET(lyd_new_implicit_r(node, lyd_node_children_p(node), NULL, NULL, node_types, node_when, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1463 | impl_opts, diff)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1464 | } |
| 1465 | break; |
| 1466 | case LYS_LEAF: |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1467 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaf *)iter)->dflt && |
| 1468 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1469 | /* create default leaf */ |
| 1470 | ret = lyd_create_term2(iter, ((struct lysc_node_leaf *)iter)->dflt, &node); |
| 1471 | if (ret == LY_EINCOMPLETE) { |
| 1472 | if (node_types) { |
| 1473 | /* remember to resolve type */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1474 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1475 | } |
| 1476 | } else if (ret) { |
| 1477 | return ret; |
| 1478 | } |
Michal Vasko | 0cadfcb | 2020-11-04 17:17:05 +0100 | [diff] [blame] | 1479 | node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1480 | lyd_insert_node(parent, first, node); |
| 1481 | |
| 1482 | if (iter->when && node_when) { |
| 1483 | /* remember to resolve when */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1484 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1485 | } |
| 1486 | if (diff) { |
| 1487 | /* add into diff */ |
| 1488 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 1489 | } |
| 1490 | } |
| 1491 | break; |
| 1492 | case LYS_LEAFLIST: |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1493 | if (!(impl_opts & LYD_IMPLICIT_NO_DEFAULTS) && ((struct lysc_node_leaflist *)iter)->dflts && |
| 1494 | lyd_find_sibling_val(*first, iter, NULL, 0, NULL)) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1495 | /* create all default leaf-lists */ |
| 1496 | dflts = ((struct lysc_node_leaflist *)iter)->dflts; |
| 1497 | LY_ARRAY_FOR(dflts, u) { |
| 1498 | ret = lyd_create_term2(iter, dflts[u], &node); |
| 1499 | if (ret == LY_EINCOMPLETE) { |
| 1500 | if (node_types) { |
| 1501 | /* remember to resolve type */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1502 | LY_CHECK_RET(ly_set_add(node_types, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1503 | } |
| 1504 | } else if (ret) { |
| 1505 | return ret; |
| 1506 | } |
Radek Krejci | c5b54a0 | 2020-11-05 17:13:18 +0100 | [diff] [blame] | 1507 | node->flags = LYD_DEFAULT | (node->schema->when ? LYD_WHEN_TRUE : 0); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1508 | lyd_insert_node(parent, first, node); |
| 1509 | |
| 1510 | if (iter->when && node_when) { |
| 1511 | /* remember to resolve when */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1512 | LY_CHECK_RET(ly_set_add(node_when, node, 1, NULL)); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1513 | } |
| 1514 | if (diff) { |
| 1515 | /* add into diff */ |
| 1516 | LY_CHECK_RET(lyd_val_diff_add(node, LYD_DIFF_OP_CREATE, diff)); |
| 1517 | } |
| 1518 | } |
| 1519 | } |
| 1520 | break; |
| 1521 | default: |
| 1522 | /* without defaults */ |
| 1523 | break; |
| 1524 | } |
| 1525 | } |
| 1526 | |
| 1527 | return LY_SUCCESS; |
| 1528 | } |
| 1529 | |
| 1530 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1531 | 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] | 1532 | { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1533 | struct lyd_node *node; |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1534 | LY_ERR ret = LY_SUCCESS; |
| 1535 | |
| 1536 | LY_CHECK_ARG_RET(NULL, tree, LY_EINVAL); |
| 1537 | if (diff) { |
| 1538 | *diff = NULL; |
| 1539 | } |
| 1540 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1541 | LYD_TREE_DFS_BEGIN(tree, node) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1542 | /* skip added default nodes */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1543 | if (((node->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) && |
| 1544 | (node->schema->nodetype & LYD_NODE_INNER)) { |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1545 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(node, lyd_node_children_p((struct lyd_node *)node), NULL, NULL, NULL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1546 | NULL, implicit_options, diff), cleanup); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1547 | } |
| 1548 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1549 | LYD_TREE_DFS_END(tree, node); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | cleanup: |
| 1553 | if (ret && diff) { |
| 1554 | lyd_free_all(*diff); |
| 1555 | *diff = NULL; |
| 1556 | } |
| 1557 | return ret; |
| 1558 | } |
| 1559 | |
| 1560 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1561 | 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] | 1562 | { |
| 1563 | const struct lys_module *mod; |
| 1564 | struct lyd_node *d = NULL; |
| 1565 | uint32_t i = 0; |
| 1566 | LY_ERR ret = LY_SUCCESS; |
| 1567 | |
| 1568 | LY_CHECK_ARG_RET(ctx, tree, *tree || ctx, LY_EINVAL); |
| 1569 | if (diff) { |
| 1570 | *diff = NULL; |
| 1571 | } |
| 1572 | if (!ctx) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1573 | ctx = LYD_CTX(*tree); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1574 | } |
| 1575 | |
| 1576 | /* add nodes for each module one-by-one */ |
| 1577 | while ((mod = ly_ctx_get_module_iter(ctx, &i))) { |
| 1578 | if (!mod->implemented) { |
| 1579 | continue; |
| 1580 | } |
| 1581 | |
| 1582 | LY_CHECK_GOTO(ret = lyd_new_implicit_module(tree, mod, implicit_options, diff ? &d : NULL), cleanup); |
| 1583 | if (d) { |
| 1584 | /* merge into one diff */ |
| 1585 | lyd_insert_sibling(*diff, d, diff); |
| 1586 | |
| 1587 | d = NULL; |
| 1588 | } |
| 1589 | } |
| 1590 | |
| 1591 | cleanup: |
| 1592 | if (ret && diff) { |
| 1593 | lyd_free_all(*diff); |
| 1594 | *diff = NULL; |
| 1595 | } |
| 1596 | return ret; |
| 1597 | } |
| 1598 | |
| 1599 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1600 | lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, struct lyd_node **diff) |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1601 | { |
| 1602 | struct lyd_node *root, *d = NULL; |
| 1603 | LY_ERR ret = LY_SUCCESS; |
| 1604 | |
| 1605 | LY_CHECK_ARG_RET(NULL, tree, module, LY_EINVAL); |
| 1606 | if (diff) { |
| 1607 | *diff = NULL; |
| 1608 | } |
| 1609 | |
| 1610 | /* add all top-level defaults for this module */ |
| 1611 | LY_CHECK_GOTO(ret = lyd_new_implicit_r(NULL, tree, NULL, module, NULL, NULL, implicit_options, diff), cleanup); |
| 1612 | |
| 1613 | /* process nested nodes */ |
| 1614 | LY_LIST_FOR(*tree, root) { |
| 1615 | /* skip added default nodes */ |
| 1616 | if ((root->flags & (LYD_DEFAULT | LYD_NEW)) != (LYD_DEFAULT | LYD_NEW)) { |
| 1617 | LY_CHECK_GOTO(ret = lyd_new_implicit_tree(root, implicit_options, diff ? &d : NULL), cleanup); |
| 1618 | |
| 1619 | if (d) { |
| 1620 | /* merge into one diff */ |
| 1621 | lyd_insert_sibling(*diff, d, diff); |
| 1622 | |
| 1623 | d = NULL; |
| 1624 | } |
| 1625 | } |
| 1626 | } |
| 1627 | |
| 1628 | cleanup: |
| 1629 | if (ret && diff) { |
| 1630 | lyd_free_all(*diff); |
| 1631 | *diff = NULL; |
| 1632 | } |
| 1633 | return ret; |
| 1634 | } |
| 1635 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1636 | struct lyd_node * |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1637 | 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] | 1638 | { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1639 | const struct lysc_node *schema, *sparent; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1640 | struct lyd_node *match = NULL; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1641 | ly_bool found; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1642 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1643 | assert(new_node); |
| 1644 | |
| 1645 | if (!first_sibling || !new_node->schema) { |
| 1646 | /* insert at the end, no next anchor */ |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1647 | return NULL; |
| 1648 | } |
| 1649 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1650 | if (first_sibling->parent && first_sibling->parent->children_ht) { |
| 1651 | /* find the anchor using hashes */ |
| 1652 | sparent = first_sibling->parent->schema; |
| 1653 | schema = lys_getnext(new_node->schema, sparent, NULL, 0); |
| 1654 | while (schema) { |
| 1655 | /* keep trying to find the first existing instance of the closest following schema sibling, |
| 1656 | * otherwise return NULL - inserting at the end */ |
| 1657 | if (!lyd_find_sibling_schema(first_sibling, schema, &match)) { |
| 1658 | break; |
| 1659 | } |
| 1660 | |
| 1661 | schema = lys_getnext(schema, sparent, NULL, 0); |
| 1662 | } |
| 1663 | } else { |
| 1664 | /* find the anchor without hashes */ |
| 1665 | match = (struct lyd_node *)first_sibling; |
| 1666 | if (!lysc_data_parent(new_node->schema)) { |
| 1667 | /* we are in top-level, skip all the data from preceding modules */ |
| 1668 | LY_LIST_FOR(match, match) { |
| 1669 | if (!match->schema || (strcmp(lyd_owner_module(match)->name, lyd_owner_module(new_node)->name) >= 0)) { |
| 1670 | break; |
| 1671 | } |
| 1672 | } |
| 1673 | } |
| 1674 | |
| 1675 | /* get the first schema sibling */ |
| 1676 | sparent = lysc_data_parent(new_node->schema); |
| 1677 | schema = lys_getnext(NULL, sparent, new_node->schema->module->compiled, 0); |
| 1678 | |
| 1679 | found = 0; |
| 1680 | LY_LIST_FOR(match, match) { |
| 1681 | if (!match->schema || (lyd_owner_module(match) != lyd_owner_module(new_node))) { |
| 1682 | /* we have found an opaque node, which must be at the end, so use it OR |
| 1683 | * modules do not match, so we must have traversed all the data from new_node module (if any), |
| 1684 | * we have found the first node of the next module, that is what we want */ |
| 1685 | break; |
| 1686 | } |
| 1687 | |
| 1688 | /* skip schema nodes until we find the instantiated one */ |
| 1689 | while (!found) { |
| 1690 | if (new_node->schema == schema) { |
| 1691 | /* we have found the schema of the new node, continue search to find the first |
| 1692 | * data node with a different schema (after our schema) */ |
| 1693 | found = 1; |
| 1694 | break; |
| 1695 | } |
| 1696 | if (match->schema == schema) { |
| 1697 | /* current node (match) is a data node still before the new node, continue search in data */ |
| 1698 | break; |
| 1699 | } |
| 1700 | schema = lys_getnext(schema, sparent, new_node->schema->module->compiled, 0); |
| 1701 | assert(schema); |
| 1702 | } |
| 1703 | |
| 1704 | if (found && (match->schema != new_node->schema)) { |
| 1705 | /* find the next node after we have found our node schema data instance */ |
| 1706 | break; |
| 1707 | } |
| 1708 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | return match; |
| 1712 | } |
| 1713 | |
| 1714 | /** |
| 1715 | * @brief Insert node after a sibling. |
| 1716 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1717 | * Handles inserting into NP containers and key-less lists. |
| 1718 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1719 | * @param[in] sibling Sibling to insert after. |
| 1720 | * @param[in] node Node to insert. |
| 1721 | */ |
| 1722 | static void |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1723 | lyd_insert_after_node(struct lyd_node *sibling, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1724 | { |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1725 | struct lyd_node_inner *par; |
| 1726 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1727 | assert(!node->next && (node->prev == node)); |
| 1728 | |
| 1729 | node->next = sibling->next; |
| 1730 | node->prev = sibling; |
| 1731 | sibling->next = node; |
| 1732 | if (node->next) { |
| 1733 | /* sibling had a succeeding node */ |
| 1734 | node->next->prev = node; |
| 1735 | } else { |
| 1736 | /* sibling was last, find first sibling and change its prev */ |
| 1737 | if (sibling->parent) { |
| 1738 | sibling = sibling->parent->child; |
| 1739 | } else { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1740 | for ( ; sibling->prev->next != node; sibling = sibling->prev) {} |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1741 | } |
| 1742 | sibling->prev = node; |
| 1743 | } |
| 1744 | node->parent = sibling->parent; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1745 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1746 | for (par = node->parent; par; par = par->parent) { |
| 1747 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 1748 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1749 | par->flags &= ~LYD_DEFAULT; |
| 1750 | } |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1751 | if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1752 | /* rehash key-less list */ |
| 1753 | lyd_hash((struct lyd_node *)par); |
| 1754 | } |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1755 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * @brief Insert node before a sibling. |
| 1760 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1761 | * Handles inserting into NP containers and key-less lists. |
| 1762 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1763 | * @param[in] sibling Sibling to insert before. |
| 1764 | * @param[in] node Node to insert. |
| 1765 | */ |
| 1766 | static void |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1767 | lyd_insert_before_node(struct lyd_node *sibling, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1768 | { |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1769 | struct lyd_node_inner *par; |
| 1770 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1771 | assert(!node->next && (node->prev == node)); |
| 1772 | |
| 1773 | node->next = sibling; |
| 1774 | /* covers situation of sibling being first */ |
| 1775 | node->prev = sibling->prev; |
| 1776 | sibling->prev = node; |
| 1777 | if (node->prev->next) { |
| 1778 | /* sibling had a preceding node */ |
| 1779 | node->prev->next = node; |
| 1780 | } else if (sibling->parent) { |
| 1781 | /* sibling was first and we must also change parent child pointer */ |
| 1782 | sibling->parent->child = node; |
| 1783 | } |
| 1784 | node->parent = sibling->parent; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1785 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1786 | for (par = node->parent; par; par = par->parent) { |
| 1787 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 1788 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1789 | par->flags &= ~LYD_DEFAULT; |
| 1790 | } |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1791 | if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1792 | /* rehash key-less list */ |
| 1793 | lyd_hash((struct lyd_node *)par); |
| 1794 | } |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1795 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1796 | } |
| 1797 | |
| 1798 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1799 | * @brief Insert node as the first and only child of a parent. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1800 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1801 | * Handles inserting into NP containers and key-less lists. |
| 1802 | * |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1803 | * @param[in] parent Parent to insert into. |
| 1804 | * @param[in] node Node to insert. |
| 1805 | */ |
| 1806 | static void |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1807 | lyd_insert_only_child(struct lyd_node *parent, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1808 | { |
| 1809 | struct lyd_node_inner *par; |
| 1810 | |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1811 | assert(parent && !lyd_child(parent) && !node->next && (node->prev == node)); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 1812 | assert(!parent->schema || (parent->schema->nodetype & LYD_NODE_INNER)); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1813 | |
| 1814 | par = (struct lyd_node_inner *)parent; |
| 1815 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1816 | par->child = node; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1817 | node->parent = par; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1818 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1819 | for ( ; par; par = par->parent) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1820 | if ((par->flags & LYD_DEFAULT) && !(node->flags & LYD_DEFAULT)) { |
| 1821 | /* remove default flags from NP containers */ |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1822 | par->flags &= ~LYD_DEFAULT; |
| 1823 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 1824 | if (par->schema && (par->schema->nodetype == LYS_LIST) && (par->schema->flags & LYS_KEYLESS)) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1825 | /* rehash key-less list */ |
| 1826 | lyd_hash((struct lyd_node *)par); |
| 1827 | } |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1828 | } |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 1829 | } |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1830 | |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 1831 | /** |
| 1832 | * @brief Learn whether a list instance has all the keys. |
| 1833 | * |
| 1834 | * @param[in] list List instance to check. |
| 1835 | * @return non-zero if all the keys were found, |
| 1836 | * @return 0 otherwise. |
| 1837 | */ |
| 1838 | static int |
| 1839 | lyd_insert_has_keys(const struct lyd_node *list) |
| 1840 | { |
| 1841 | const struct lyd_node *key; |
| 1842 | const struct lysc_node *skey = NULL; |
| 1843 | |
| 1844 | assert(list->schema->nodetype == LYS_LIST); |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 1845 | key = lyd_child(list); |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 1846 | while ((skey = lys_getnext(skey, list->schema, NULL, 0)) && (skey->flags & LYS_KEY)) { |
| 1847 | if (!key || (key->schema != skey)) { |
| 1848 | /* key missing */ |
| 1849 | return 0; |
| 1850 | } |
| 1851 | |
| 1852 | key = key->next; |
| 1853 | } |
| 1854 | |
| 1855 | /* all keys found */ |
| 1856 | return 1; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | void |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1860 | lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling_p, struct lyd_node *node) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1861 | { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1862 | struct lyd_node *anchor, *first_sibling; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1863 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1864 | /* inserting list without its keys is not supported */ |
| 1865 | assert((parent || first_sibling_p) && node && (node->hash || !node->schema)); |
Michal Vasko | f756c94 | 2020-11-06 17:21:37 +0100 | [diff] [blame] | 1866 | assert(!parent || !parent->schema || |
| 1867 | (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] | 1868 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1869 | if (!parent && first_sibling_p && (*first_sibling_p) && (*first_sibling_p)->parent) { |
| 1870 | parent = (struct lyd_node *)(*first_sibling_p)->parent; |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1871 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1872 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1873 | /* get first sibling */ |
| 1874 | first_sibling = parent ? ((struct lyd_node_inner *)parent)->child : *first_sibling_p; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1875 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1876 | /* find the anchor, our next node, so we can insert before it */ |
| 1877 | anchor = lyd_insert_get_next_anchor(first_sibling, node); |
| 1878 | if (anchor) { |
| 1879 | lyd_insert_before_node(anchor, node); |
Michal Vasko | 2612319 | 2020-11-09 21:02:34 +0100 | [diff] [blame] | 1880 | if (!parent && (*first_sibling_p == anchor)) { |
| 1881 | /* move first sibling */ |
| 1882 | *first_sibling_p = node; |
| 1883 | } |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1884 | } else if (first_sibling) { |
| 1885 | lyd_insert_after_node(first_sibling->prev, node); |
| 1886 | } else if (parent) { |
| 1887 | lyd_insert_only_child(parent, node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1888 | } else { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1889 | *first_sibling_p = node; |
| 1890 | } |
| 1891 | |
| 1892 | /* insert into parent HT */ |
| 1893 | lyd_insert_hash(node); |
| 1894 | |
| 1895 | /* finish hashes for our parent, if needed and possible */ |
Michal Vasko | 9e8de2d | 2020-09-01 08:17:10 +0200 | [diff] [blame] | 1896 | 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] | 1897 | lyd_hash(parent); |
| 1898 | |
| 1899 | /* now we can insert even the list into its parent HT */ |
| 1900 | lyd_insert_hash(parent); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1901 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1902 | } |
| 1903 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1904 | static LY_ERR |
| 1905 | lyd_insert_check_schema(const struct lysc_node *parent, const struct lysc_node *schema) |
| 1906 | { |
| 1907 | const struct lysc_node *par2; |
| 1908 | |
| 1909 | assert(schema); |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 1910 | assert(!parent || !(parent->nodetype & (LYS_CASE | LYS_CHOICE))); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1911 | |
| 1912 | /* find schema parent */ |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 1913 | par2 = lysc_data_parent(schema); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1914 | |
| 1915 | if (parent) { |
| 1916 | /* inner node */ |
| 1917 | if (par2 != parent) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1918 | 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] | 1919 | parent->name); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1920 | return LY_EINVAL; |
| 1921 | } |
| 1922 | } else { |
| 1923 | /* top-level node */ |
| 1924 | if (par2) { |
Radek Krejci | f6d14cb | 2020-07-02 16:11:45 +0200 | [diff] [blame] | 1925 | 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] | 1926 | return LY_EINVAL; |
| 1927 | } |
| 1928 | } |
| 1929 | |
| 1930 | return LY_SUCCESS; |
| 1931 | } |
| 1932 | |
| 1933 | API LY_ERR |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1934 | lyd_insert_child(struct lyd_node *parent, struct lyd_node *node) |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1935 | { |
| 1936 | struct lyd_node *iter; |
| 1937 | |
Michal Vasko | 654bc85 | 2020-06-23 13:28:06 +0200 | [diff] [blame] | 1938 | LY_CHECK_ARG_RET(NULL, parent, node, parent->schema->nodetype & LYD_NODE_INNER, LY_EINVAL); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1939 | |
| 1940 | LY_CHECK_RET(lyd_insert_check_schema(parent->schema, node->schema)); |
| 1941 | |
| 1942 | if (node->schema->flags & LYS_KEY) { |
| 1943 | LOGERR(parent->schema->module->ctx, LY_EINVAL, "Cannot insert key \"%s\".", node->schema->name); |
| 1944 | return LY_EINVAL; |
| 1945 | } |
| 1946 | |
| 1947 | if (node->parent || node->prev->next) { |
| 1948 | lyd_unlink_tree(node); |
| 1949 | } |
| 1950 | |
| 1951 | while (node) { |
| 1952 | iter = node->next; |
| 1953 | lyd_unlink_tree(node); |
| 1954 | lyd_insert_node(parent, NULL, node); |
| 1955 | node = iter; |
| 1956 | } |
| 1957 | return LY_SUCCESS; |
| 1958 | } |
| 1959 | |
| 1960 | API LY_ERR |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1961 | 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] | 1962 | { |
| 1963 | struct lyd_node *iter; |
| 1964 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1965 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1966 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1967 | if (sibling) { |
| 1968 | LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema)); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1969 | } |
| 1970 | |
| 1971 | if (node->parent || node->prev->next) { |
| 1972 | lyd_unlink_tree(node); |
| 1973 | } |
| 1974 | |
| 1975 | while (node) { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1976 | if (node->schema->flags & LYS_KEY) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1977 | 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] | 1978 | return LY_EINVAL; |
| 1979 | } |
| 1980 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1981 | iter = node->next; |
| 1982 | lyd_unlink_tree(node); |
| 1983 | lyd_insert_node(NULL, &sibling, node); |
| 1984 | node = iter; |
| 1985 | } |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1986 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1987 | if (first) { |
| 1988 | /* find the first sibling */ |
| 1989 | *first = sibling; |
| 1990 | while ((*first)->prev->next) { |
| 1991 | *first = (*first)->prev; |
Michal Vasko | 0249f7c | 2020-03-05 16:36:40 +0100 | [diff] [blame] | 1992 | } |
| 1993 | } |
| 1994 | |
| 1995 | return LY_SUCCESS; |
| 1996 | } |
| 1997 | |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1998 | API LY_ERR |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1999 | lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node) |
| 2000 | { |
| 2001 | struct lyd_node *iter; |
| 2002 | |
| 2003 | LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL); |
| 2004 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2005 | LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema)); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2006 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2007 | if (!(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] | 2008 | 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] | 2009 | return LY_EINVAL; |
| 2010 | } |
| 2011 | |
| 2012 | if (node->parent || node->prev->next) { |
| 2013 | lyd_unlink_tree(node); |
| 2014 | } |
| 2015 | |
| 2016 | /* insert in reverse order to get the original order */ |
| 2017 | node = node->prev; |
| 2018 | while (node) { |
| 2019 | iter = node->prev; |
| 2020 | lyd_unlink_tree(node); |
| 2021 | |
| 2022 | lyd_insert_before_node(sibling, node); |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 2023 | lyd_insert_hash(node); |
| 2024 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2025 | /* move the anchor accordingly */ |
| 2026 | sibling = node; |
| 2027 | |
| 2028 | node = (iter == node) ? NULL : iter; |
| 2029 | } |
| 2030 | return LY_SUCCESS; |
| 2031 | } |
| 2032 | |
| 2033 | API LY_ERR |
| 2034 | lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node) |
| 2035 | { |
| 2036 | struct lyd_node *iter; |
| 2037 | |
| 2038 | LY_CHECK_ARG_RET(NULL, sibling, node, LY_EINVAL); |
| 2039 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2040 | LY_CHECK_RET(lyd_insert_check_schema(lysc_data_parent(sibling->schema), node->schema)); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2041 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2042 | if (!(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] | 2043 | 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] | 2044 | return LY_EINVAL; |
| 2045 | } |
| 2046 | |
| 2047 | if (node->parent || node->prev->next) { |
| 2048 | lyd_unlink_tree(node); |
| 2049 | } |
| 2050 | |
| 2051 | while (node) { |
| 2052 | iter = node->next; |
| 2053 | lyd_unlink_tree(node); |
| 2054 | |
| 2055 | lyd_insert_after_node(sibling, node); |
Michal Vasko | 751cb4d | 2020-07-14 12:25:28 +0200 | [diff] [blame] | 2056 | lyd_insert_hash(node); |
| 2057 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2058 | /* move the anchor accordingly */ |
| 2059 | sibling = node; |
| 2060 | |
| 2061 | node = iter; |
| 2062 | } |
| 2063 | return LY_SUCCESS; |
| 2064 | } |
| 2065 | |
| 2066 | API void |
| 2067 | lyd_unlink_tree(struct lyd_node *node) |
| 2068 | { |
| 2069 | struct lyd_node *iter; |
| 2070 | |
| 2071 | if (!node) { |
| 2072 | return; |
| 2073 | } |
| 2074 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 2075 | /* update hashes while still linked into the tree */ |
| 2076 | lyd_unlink_hash(node); |
| 2077 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2078 | /* unlink from siblings */ |
| 2079 | if (node->prev->next) { |
| 2080 | node->prev->next = node->next; |
| 2081 | } |
| 2082 | if (node->next) { |
| 2083 | node->next->prev = node->prev; |
| 2084 | } else { |
| 2085 | /* unlinking the last node */ |
| 2086 | if (node->parent) { |
| 2087 | iter = node->parent->child; |
| 2088 | } else { |
| 2089 | iter = node->prev; |
| 2090 | while (iter->prev != node) { |
| 2091 | iter = iter->prev; |
| 2092 | } |
| 2093 | } |
| 2094 | /* update the "last" pointer from the first node */ |
| 2095 | iter->prev = node->prev; |
| 2096 | } |
| 2097 | |
| 2098 | /* unlink from parent */ |
| 2099 | if (node->parent) { |
| 2100 | if (node->parent->child == node) { |
| 2101 | /* the node is the first child */ |
| 2102 | node->parent->child = node->next; |
| 2103 | } |
| 2104 | |
Michal Vasko | ab49dbe | 2020-07-17 12:32:47 +0200 | [diff] [blame] | 2105 | /* 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] | 2106 | if (node->parent->schema && (node->parent->schema->nodetype == LYS_CONTAINER) && |
| 2107 | !(node->parent->flags & LYD_DEFAULT) && !(node->parent->schema->flags & LYS_PRESENCE)) { |
Michal Vasko | ab49dbe | 2020-07-17 12:32:47 +0200 | [diff] [blame] | 2108 | LY_LIST_FOR(node->parent->child, iter) { |
| 2109 | if ((iter != node) && !(iter->flags & LYD_DEFAULT)) { |
| 2110 | break; |
| 2111 | } |
| 2112 | } |
| 2113 | if (!iter) { |
| 2114 | node->parent->flags |= LYD_DEFAULT; |
| 2115 | } |
| 2116 | } |
| 2117 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2118 | /* check for keyless list and update its hash */ |
| 2119 | for (iter = (struct lyd_node *)node->parent; iter; iter = (struct lyd_node *)iter->parent) { |
Michal Vasko | 413c7f2 | 2020-05-05 12:34:06 +0200 | [diff] [blame] | 2120 | if (iter->schema && (iter->schema->flags & LYS_KEYLESS)) { |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2121 | lyd_hash(iter); |
| 2122 | } |
| 2123 | } |
| 2124 | |
| 2125 | node->parent = NULL; |
| 2126 | } |
| 2127 | |
| 2128 | node->next = NULL; |
| 2129 | node->prev = node; |
| 2130 | } |
| 2131 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2132 | void |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2133 | 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] | 2134 | { |
| 2135 | struct lyd_meta *last, *iter; |
| 2136 | |
| 2137 | assert(parent); |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2138 | |
| 2139 | if (!meta) { |
| 2140 | return; |
| 2141 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2142 | |
| 2143 | for (iter = meta; iter; iter = iter->next) { |
| 2144 | iter->parent = parent; |
| 2145 | } |
| 2146 | |
| 2147 | /* insert as the last attribute */ |
| 2148 | if (parent->meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2149 | for (last = parent->meta; last->next; last = last->next) {} |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2150 | last->next = meta; |
| 2151 | } else { |
| 2152 | parent->meta = meta; |
| 2153 | } |
| 2154 | |
| 2155 | /* remove default flags from NP containers */ |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2156 | 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] | 2157 | parent->flags &= ~LYD_DEFAULT; |
| 2158 | parent = (struct lyd_node *)parent->parent; |
| 2159 | } |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2160 | } |
| 2161 | |
| 2162 | LY_ERR |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2163 | lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name, |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2164 | size_t name_len, const char *value, size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format, |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2165 | void *prefix_data, uint32_t hints, ly_bool clear_dflt, ly_bool *incomplete) |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2166 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2167 | LY_ERR rc; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2168 | struct lysc_ext_instance *ant = NULL; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2169 | struct lyd_meta *mt, *last; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2170 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2171 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2172 | assert((parent || meta) && mod); |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 2173 | |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2174 | LY_ARRAY_FOR(mod->compiled->exts, u) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2175 | if ((mod->compiled->exts[u].def->plugin == lyext_plugins_internal[LYEXT_PLUGIN_INTERNAL_ANNOTATION].plugin) && |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2176 | !ly_strncmp(mod->compiled->exts[u].argument, name, name_len)) { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2177 | /* we have the annotation definition */ |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 2178 | ant = &mod->compiled->exts[u]; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2179 | break; |
| 2180 | } |
| 2181 | } |
| 2182 | if (!ant) { |
| 2183 | /* attribute is not defined as a metadata annotation (RFC 7952) */ |
| 2184 | LOGERR(mod->ctx, LY_EINVAL, "Annotation definition for attribute \"%s:%.*s\" not found.", |
| 2185 | mod->name, name_len, name); |
| 2186 | return LY_EINVAL; |
| 2187 | } |
| 2188 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2189 | mt = calloc(1, sizeof *mt); |
| 2190 | LY_CHECK_ERR_RET(!mt, LOGMEM(mod->ctx), LY_EMEM); |
| 2191 | mt->parent = parent; |
| 2192 | mt->annotation = ant; |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2193 | rc = lyd_value_store(mod->ctx, &mt->value, ((struct lyext_metadata *)ant->data)->type, value, value_len, dynamic, |
| 2194 | format, prefix_data, hints, parent ? parent->schema : NULL, incomplete, LY_VLOG_NONE, NULL); |
| 2195 | LY_CHECK_ERR_RET(rc, free(mt), rc); |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2196 | rc = lydict_insert(mod->ctx, name, name_len, &mt->name); |
| 2197 | LY_CHECK_ERR_RET(rc, free(mt), rc); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2198 | |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 2199 | /* insert as the last attribute */ |
| 2200 | if (parent) { |
Michal Vasko | 871a025 | 2020-11-11 18:35:24 +0100 | [diff] [blame] | 2201 | lyd_insert_meta(parent, mt, clear_dflt); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2202 | } else if (*meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2203 | for (last = *meta; last->next; last = last->next) {} |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2204 | last->next = mt; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2205 | } |
| 2206 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 2207 | if (meta) { |
| 2208 | *meta = mt; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2209 | } |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2210 | return LY_SUCCESS; |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 2211 | } |
| 2212 | |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2213 | void |
| 2214 | lyd_insert_attr(struct lyd_node *parent, struct lyd_attr *attr) |
| 2215 | { |
| 2216 | struct lyd_attr *last, *iter; |
| 2217 | struct lyd_node_opaq *opaq; |
| 2218 | |
| 2219 | assert(parent && !parent->schema); |
| 2220 | |
| 2221 | if (!attr) { |
| 2222 | return; |
| 2223 | } |
| 2224 | |
| 2225 | opaq = (struct lyd_node_opaq *)parent; |
| 2226 | for (iter = attr; iter; iter = iter->next) { |
| 2227 | iter->parent = opaq; |
| 2228 | } |
| 2229 | |
| 2230 | /* insert as the last attribute */ |
| 2231 | if (opaq->attr) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2232 | for (last = opaq->attr; last->next; last = last->next) {} |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2233 | last->next = attr; |
| 2234 | } else { |
| 2235 | opaq->attr = attr; |
| 2236 | } |
| 2237 | } |
| 2238 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2239 | LY_ERR |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2240 | 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] | 2241 | const char *prefix, size_t prefix_len, const char *module_key, size_t module_key_len, const char *value, |
| 2242 | size_t value_len, ly_bool *dynamic, LY_PREFIX_FORMAT format, void *val_prefix_data, uint32_t hints) |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2243 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2244 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2245 | struct lyd_attr *at, *last; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2246 | |
| 2247 | assert(ctx && (parent || attr) && (!parent || !parent->schema)); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 2248 | assert(name && name_len && format); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2249 | |
| 2250 | if (!value_len) { |
| 2251 | value = ""; |
| 2252 | } |
| 2253 | |
| 2254 | at = calloc(1, sizeof *at); |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 2255 | 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] | 2256 | |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2257 | 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] | 2258 | if (prefix_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2259 | 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] | 2260 | } |
| 2261 | if (module_key_len) { |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2262 | 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] | 2263 | } |
| 2264 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2265 | if (dynamic && *dynamic) { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2266 | ret = lydict_insert_zc(ctx, (char *)value, &at->value); |
| 2267 | LY_CHECK_GOTO(ret, finish); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2268 | *dynamic = 0; |
| 2269 | } else { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2270 | 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] | 2271 | } |
Michal Vasko | 501af03 | 2020-11-11 20:27:44 +0100 | [diff] [blame] | 2272 | at->format = format; |
| 2273 | at->val_prefix_data = val_prefix_data; |
| 2274 | at->hints = hints; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2275 | |
| 2276 | /* insert as the last attribute */ |
| 2277 | if (parent) { |
Michal Vasko | a5da329 | 2020-08-12 13:10:50 +0200 | [diff] [blame] | 2278 | lyd_insert_attr(parent, at); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2279 | } else if (*attr) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2280 | for (last = *attr; last->next; last = last->next) {} |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2281 | last->next = at; |
| 2282 | } |
| 2283 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2284 | finish: |
| 2285 | if (ret) { |
| 2286 | lyd_free_attr_single(ctx, at); |
| 2287 | } else if (attr) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2288 | *attr = at; |
| 2289 | } |
| 2290 | return LY_SUCCESS; |
| 2291 | } |
| 2292 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2293 | API const struct lyd_node_term * |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2294 | lyd_target(const struct ly_path *path, const struct lyd_node *tree) |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2295 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2296 | struct lyd_node *target; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2297 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2298 | if (ly_path_eval(path, tree, &target)) { |
| 2299 | return NULL; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2300 | } |
| 2301 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2302 | return (struct lyd_node_term *)target; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2303 | } |
| 2304 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2305 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2306 | lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options) |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2307 | { |
| 2308 | const struct lyd_node *iter1, *iter2; |
| 2309 | struct lyd_node_term *term1, *term2; |
| 2310 | struct lyd_node_any *any1, *any2; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2311 | struct lyd_node_opaq *opaq1, *opaq2; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2312 | size_t len1, len2; |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 2313 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2314 | if (!node1 || !node2) { |
| 2315 | if (node1 == node2) { |
| 2316 | return LY_SUCCESS; |
| 2317 | } else { |
| 2318 | return LY_ENOT; |
| 2319 | } |
| 2320 | } |
| 2321 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2322 | if ((LYD_CTX(node1) != LYD_CTX(node2)) || (node1->schema != node2->schema)) { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2323 | return LY_ENOT; |
| 2324 | } |
| 2325 | |
| 2326 | if (node1->hash != node2->hash) { |
| 2327 | return LY_ENOT; |
| 2328 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2329 | /* equal hashes do not mean equal nodes, they can be just in collision (or both be 0) so the nodes must be checked explicitly */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2330 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2331 | if (!node1->schema) { |
| 2332 | opaq1 = (struct lyd_node_opaq *)node1; |
| 2333 | opaq2 = (struct lyd_node_opaq *)node2; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2334 | if ((opaq1->name.name != opaq2->name.name) || (opaq1->format != opaq2->format) || |
| 2335 | (opaq1->name.module_ns != opaq2->name.module_ns)) { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2336 | return LY_ENOT; |
| 2337 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2338 | switch (opaq1->format) { |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 2339 | case LY_PREF_XML: |
| 2340 | if (lyxml_value_compare(LYD_CTX(node1), opaq1->value, opaq1->val_prefix_data, opaq2->value, opaq2->val_prefix_data)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2341 | return LY_ENOT; |
| 2342 | } |
| 2343 | break; |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 2344 | case LY_PREF_JSON: |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 2345 | /* prefixes in JSON are unique, so it is not necessary to canonize the values */ |
| 2346 | if (strcmp(opaq1->value, opaq2->value)) { |
| 2347 | return LY_ENOT; |
| 2348 | } |
| 2349 | break; |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 2350 | default: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2351 | /* not allowed */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2352 | LOGINT(LYD_CTX(node1)); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2353 | return LY_EINT; |
| 2354 | } |
| 2355 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 2356 | iter1 = opaq1->child; |
| 2357 | iter2 = opaq2->child; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2358 | goto all_children_compare; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2359 | } |
| 2360 | return LY_SUCCESS; |
| 2361 | } else { |
| 2362 | switch (node1->schema->nodetype) { |
| 2363 | case LYS_LEAF: |
| 2364 | case LYS_LEAFLIST: |
| 2365 | if (options & LYD_COMPARE_DEFAULTS) { |
| 2366 | if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) { |
| 2367 | return LY_ENOT; |
| 2368 | } |
| 2369 | } |
| 2370 | |
Michal Vasko | 1a2bf2e | 2020-06-16 13:07:48 +0200 | [diff] [blame] | 2371 | term1 = (struct lyd_node_term *)node1; |
| 2372 | term2 = (struct lyd_node_term *)node2; |
| 2373 | if (term1->value.realtype != term2->value.realtype) { |
| 2374 | return LY_ENOT; |
| 2375 | } |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2376 | |
Michal Vasko | 1a2bf2e | 2020-06-16 13:07:48 +0200 | [diff] [blame] | 2377 | return term1->value.realtype->plugin->compare(&term1->value, &term2->value); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2378 | case LYS_CONTAINER: |
| 2379 | if (options & LYD_COMPARE_DEFAULTS) { |
| 2380 | if ((node1->flags & LYD_DEFAULT) != (node2->flags & LYD_DEFAULT)) { |
| 2381 | return LY_ENOT; |
| 2382 | } |
| 2383 | } |
| 2384 | if (options & LYD_COMPARE_FULL_RECURSION) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2385 | iter1 = ((struct lyd_node_inner *)node1)->child; |
| 2386 | iter2 = ((struct lyd_node_inner *)node2)->child; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2387 | goto all_children_compare; |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2388 | } |
| 2389 | return LY_SUCCESS; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 2390 | case LYS_RPC: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2391 | case LYS_ACTION: |
| 2392 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 2393 | /* TODO action/RPC |
| 2394 | goto all_children_compare; |
| 2395 | */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2396 | } |
| 2397 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2398 | case LYS_NOTIF: |
| 2399 | if (options & LYD_COMPARE_FULL_RECURSION) { |
| 2400 | /* TODO Notification |
| 2401 | goto all_children_compare; |
| 2402 | */ |
| 2403 | } |
| 2404 | return LY_SUCCESS; |
| 2405 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2406 | iter1 = ((struct lyd_node_inner *)node1)->child; |
| 2407 | iter2 = ((struct lyd_node_inner *)node2)->child; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2408 | |
| 2409 | if (!(node1->schema->flags & LYS_KEYLESS) && !(options & LYD_COMPARE_FULL_RECURSION)) { |
| 2410 | /* lists with keys, their equivalence is based on their keys */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2411 | for (struct lysc_node *key = ((struct lysc_node_list *)node1->schema)->child; |
Michal Vasko | c57d9a9 | 2020-06-23 13:28:27 +0200 | [diff] [blame] | 2412 | key && (key->flags & LYS_KEY); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2413 | key = key->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2414 | if (lyd_compare_single(iter1, iter2, options)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2415 | return LY_ENOT; |
| 2416 | } |
| 2417 | iter1 = iter1->next; |
| 2418 | iter2 = iter2->next; |
| 2419 | } |
| 2420 | } else { |
| 2421 | /* lists without keys, their equivalence is based on equivalence of all the children (both direct and indirect) */ |
| 2422 | |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2423 | all_children_compare: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2424 | if (!iter1 && !iter2) { |
| 2425 | /* no children, nothing to compare */ |
| 2426 | return LY_SUCCESS; |
| 2427 | } |
| 2428 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2429 | for ( ; iter1 && iter2; iter1 = iter1->next, iter2 = iter2->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2430 | if (lyd_compare_single(iter1, iter2, options | LYD_COMPARE_FULL_RECURSION)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2431 | return LY_ENOT; |
| 2432 | } |
| 2433 | } |
| 2434 | if (iter1 || iter2) { |
| 2435 | return LY_ENOT; |
| 2436 | } |
| 2437 | } |
| 2438 | return LY_SUCCESS; |
| 2439 | case LYS_ANYXML: |
| 2440 | case LYS_ANYDATA: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 2441 | any1 = (struct lyd_node_any *)node1; |
| 2442 | any2 = (struct lyd_node_any *)node2; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2443 | |
| 2444 | if (any1->value_type != any2->value_type) { |
| 2445 | return LY_ENOT; |
| 2446 | } |
| 2447 | switch (any1->value_type) { |
| 2448 | case LYD_ANYDATA_DATATREE: |
| 2449 | iter1 = any1->value.tree; |
| 2450 | iter2 = any2->value.tree; |
| 2451 | goto all_children_compare; |
| 2452 | case LYD_ANYDATA_STRING: |
| 2453 | case LYD_ANYDATA_XML: |
| 2454 | case LYD_ANYDATA_JSON: |
| 2455 | len1 = strlen(any1->value.str); |
| 2456 | len2 = strlen(any2->value.str); |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2457 | if ((len1 != len2) || strcmp(any1->value.str, any2->value.str)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2458 | return LY_ENOT; |
| 2459 | } |
| 2460 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2461 | case LYD_ANYDATA_LYB: |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 2462 | len1 = lyd_lyb_data_length(any1->value.mem); |
| 2463 | len2 = lyd_lyb_data_length(any2->value.mem); |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2464 | if ((len1 != len2) || memcmp(any1->value.mem, any2->value.mem, len1)) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2465 | return LY_ENOT; |
| 2466 | } |
| 2467 | return LY_SUCCESS; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2468 | } |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2469 | } |
| 2470 | } |
| 2471 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2472 | LOGINT(LYD_CTX(node1)); |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 2473 | return LY_EINT; |
| 2474 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2475 | |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 2476 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2477 | 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] | 2478 | { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2479 | for ( ; node1 && node2; node1 = node1->next, node2 = node2->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2480 | LY_CHECK_RET(lyd_compare_single(node1, node2, options)); |
| 2481 | } |
| 2482 | |
Michal Vasko | 11a8143 | 2020-07-28 16:31:29 +0200 | [diff] [blame] | 2483 | if (node1 == node2) { |
| 2484 | return LY_SUCCESS; |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2485 | } |
Michal Vasko | 11a8143 | 2020-07-28 16:31:29 +0200 | [diff] [blame] | 2486 | return LY_ENOT; |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2487 | } |
| 2488 | |
| 2489 | API LY_ERR |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 2490 | lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2) |
| 2491 | { |
| 2492 | if (!meta1 || !meta2) { |
| 2493 | if (meta1 == meta2) { |
| 2494 | return LY_SUCCESS; |
| 2495 | } else { |
| 2496 | return LY_ENOT; |
| 2497 | } |
| 2498 | } |
| 2499 | |
Michal Vasko | a808306 | 2020-11-06 17:22:10 +0100 | [diff] [blame] | 2500 | 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] | 2501 | return LY_ENOT; |
| 2502 | } |
| 2503 | |
| 2504 | if (meta1->value.realtype != meta2->value.realtype) { |
| 2505 | return LY_ENOT; |
| 2506 | } |
| 2507 | |
| 2508 | return meta1->value.realtype->plugin->compare(&meta1->value, &meta2->value); |
| 2509 | } |
| 2510 | |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2511 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2512 | * @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] | 2513 | * |
| 2514 | * 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] | 2515 | * |
| 2516 | * @param[in] node Original node to duplicate |
| 2517 | * @param[in] parent Parent to insert into, NULL for top-level sibling. |
| 2518 | * @param[in,out] first First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set. |
| 2519 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| 2520 | * @param[out] dup_p Pointer where the created duplicated node is placed (besides connecting it int @p parent / @p first sibling). |
| 2521 | * @return LY_ERR value |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2522 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2523 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2524 | lyd_dup_r(const struct lyd_node *node, struct lyd_node *parent, struct lyd_node **first, uint32_t options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2525 | struct lyd_node **dup_p) |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2526 | { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2527 | LY_ERR ret; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2528 | struct lyd_node *dup = NULL; |
Michal Vasko | 61551fa | 2020-07-09 15:45:45 +0200 | [diff] [blame] | 2529 | struct lyd_meta *meta; |
| 2530 | struct lyd_node_any *any; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2531 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2532 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2533 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2534 | if (!node->schema) { |
| 2535 | dup = calloc(1, sizeof(struct lyd_node_opaq)); |
| 2536 | } else { |
| 2537 | switch (node->schema->nodetype) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 2538 | case LYS_RPC: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2539 | case LYS_ACTION: |
| 2540 | case LYS_NOTIF: |
| 2541 | case LYS_CONTAINER: |
| 2542 | case LYS_LIST: |
| 2543 | dup = calloc(1, sizeof(struct lyd_node_inner)); |
| 2544 | break; |
| 2545 | case LYS_LEAF: |
| 2546 | case LYS_LEAFLIST: |
| 2547 | dup = calloc(1, sizeof(struct lyd_node_term)); |
| 2548 | break; |
| 2549 | case LYS_ANYDATA: |
| 2550 | case LYS_ANYXML: |
| 2551 | dup = calloc(1, sizeof(struct lyd_node_any)); |
| 2552 | break; |
| 2553 | default: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2554 | LOGINT(LYD_CTX(node)); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2555 | ret = LY_EINT; |
| 2556 | goto error; |
| 2557 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2558 | } |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2559 | LY_CHECK_ERR_GOTO(!dup, LOGMEM(LYD_CTX(node)); ret = LY_EMEM, error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2560 | |
Michal Vasko | f6df0a0 | 2020-06-16 13:08:34 +0200 | [diff] [blame] | 2561 | if (options & LYD_DUP_WITH_FLAGS) { |
| 2562 | dup->flags = node->flags; |
| 2563 | } else { |
| 2564 | dup->flags = (node->flags & LYD_DEFAULT) | LYD_NEW; |
| 2565 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2566 | dup->schema = node->schema; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2567 | dup->prev = dup; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2568 | |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2569 | /* duplicate metadata */ |
| 2570 | if (!(options & LYD_DUP_NO_META)) { |
| 2571 | LY_LIST_FOR(node->meta, meta) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2572 | LY_CHECK_GOTO(ret = lyd_dup_meta_single(meta, dup, NULL), error); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2573 | } |
| 2574 | } |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2575 | |
| 2576 | /* nodetype-specific work */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2577 | if (!dup->schema) { |
| 2578 | struct lyd_node_opaq *opaq = (struct lyd_node_opaq *)dup; |
| 2579 | struct lyd_node_opaq *orig = (struct lyd_node_opaq *)node; |
| 2580 | struct lyd_node *child; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2581 | |
| 2582 | if (options & LYD_DUP_RECURSIVE) { |
| 2583 | /* duplicate all the children */ |
| 2584 | LY_LIST_FOR(orig->child, child) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2585 | LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2586 | } |
| 2587 | } |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2588 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.name, 0, &opaq->name.name), error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2589 | opaq->format = orig->format; |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2590 | if (orig->name.prefix) { |
| 2591 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.prefix, 0, &opaq->name.prefix), error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2592 | } |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 2593 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->name.module_ns, 0, &opaq->name.module_ns), error); |
Michal Vasko | 6b5cb2a | 2020-11-11 19:11:21 +0100 | [diff] [blame] | 2594 | if (orig->val_prefix_data) { |
| 2595 | ret = ly_dup_prefix_data(LYD_CTX(node), opaq->format, orig->val_prefix_data, &opaq->val_prefix_data); |
| 2596 | LY_CHECK_GOTO(ret, error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2597 | } |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2598 | LY_CHECK_GOTO(ret = lydict_insert(LYD_CTX(node), orig->value, 0, &opaq->value), error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2599 | opaq->ctx = orig->ctx; |
| 2600 | } else if (dup->schema->nodetype & LYD_NODE_TERM) { |
| 2601 | struct lyd_node_term *term = (struct lyd_node_term *)dup; |
| 2602 | struct lyd_node_term *orig = (struct lyd_node_term *)node; |
| 2603 | |
| 2604 | term->hash = orig->hash; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2605 | LY_CHECK_ERR_GOTO(orig->value.realtype->plugin->duplicate(LYD_CTX(node), &orig->value, &term->value), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2606 | LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."); ret = LY_EINT, error); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2607 | } else if (dup->schema->nodetype & LYD_NODE_INNER) { |
| 2608 | struct lyd_node_inner *orig = (struct lyd_node_inner *)node; |
| 2609 | struct lyd_node *child; |
| 2610 | |
| 2611 | if (options & LYD_DUP_RECURSIVE) { |
| 2612 | /* duplicate all the children */ |
| 2613 | LY_LIST_FOR(orig->child, child) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2614 | LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2615 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2616 | } else if ((dup->schema->nodetype == LYS_LIST) && !(dup->schema->flags & LYS_KEYLESS)) { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2617 | /* always duplicate keys of a list */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2618 | child = orig->child; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2619 | for (struct lysc_node *key = ((struct lysc_node_list *)dup->schema)->child; |
Michal Vasko | c57d9a9 | 2020-06-23 13:28:27 +0200 | [diff] [blame] | 2620 | key && (key->flags & LYS_KEY); |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 2621 | key = key->next) { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2622 | if (!child) { |
| 2623 | /* possibly not keys are present in filtered tree */ |
| 2624 | break; |
Radek Krejci | 0fe9b51 | 2019-07-26 17:51:05 +0200 | [diff] [blame] | 2625 | } else if (child->schema != key) { |
| 2626 | /* possibly not all keys are present in filtered tree, |
| 2627 | * but there can be also some non-key nodes */ |
| 2628 | continue; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2629 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2630 | LY_CHECK_GOTO(ret = lyd_dup_r(child, dup, NULL, options, NULL), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2631 | child = child->next; |
| 2632 | } |
| 2633 | } |
| 2634 | lyd_hash(dup); |
| 2635 | } else if (dup->schema->nodetype & LYD_NODE_ANY) { |
Michal Vasko | 61551fa | 2020-07-09 15:45:45 +0200 | [diff] [blame] | 2636 | dup->hash = node->hash; |
| 2637 | any = (struct lyd_node_any *)node; |
| 2638 | 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] | 2639 | } |
| 2640 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2641 | /* insert */ |
| 2642 | lyd_insert_node(parent, first, dup); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2643 | |
| 2644 | if (dup_p) { |
| 2645 | *dup_p = dup; |
| 2646 | } |
| 2647 | return LY_SUCCESS; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2648 | |
| 2649 | error: |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2650 | lyd_free_tree(dup); |
| 2651 | return ret; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2652 | } |
| 2653 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2654 | static LY_ERR |
| 2655 | lyd_dup_get_local_parent(const struct lyd_node *node, const struct lyd_node_inner *parent, struct lyd_node **dup_parent, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2656 | struct lyd_node_inner **local_parent) |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2657 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2658 | const struct lyd_node_inner *orig_parent, *iter; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2659 | ly_bool repeat = 1; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2660 | |
| 2661 | *dup_parent = NULL; |
| 2662 | *local_parent = NULL; |
| 2663 | |
| 2664 | for (orig_parent = node->parent; repeat && orig_parent; orig_parent = orig_parent->parent) { |
| 2665 | if (parent && (parent->schema == orig_parent->schema)) { |
| 2666 | /* stop creating parents, connect what we have into the provided parent */ |
| 2667 | iter = parent; |
| 2668 | repeat = 0; |
| 2669 | } else { |
| 2670 | iter = NULL; |
| 2671 | LY_CHECK_RET(lyd_dup_r((struct lyd_node *)orig_parent, NULL, (struct lyd_node **)&iter, 0, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2672 | (struct lyd_node **)&iter)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2673 | } |
| 2674 | if (!*local_parent) { |
| 2675 | *local_parent = (struct lyd_node_inner *)iter; |
| 2676 | } |
| 2677 | if (iter->child) { |
| 2678 | /* 1) list - add after keys |
| 2679 | * 2) provided parent with some children */ |
| 2680 | iter->child->prev->next = *dup_parent; |
| 2681 | if (*dup_parent) { |
| 2682 | (*dup_parent)->prev = iter->child->prev; |
| 2683 | iter->child->prev = *dup_parent; |
| 2684 | } |
| 2685 | } else { |
| 2686 | ((struct lyd_node_inner *)iter)->child = *dup_parent; |
| 2687 | } |
| 2688 | if (*dup_parent) { |
| 2689 | (*dup_parent)->parent = (struct lyd_node_inner *)iter; |
| 2690 | } |
| 2691 | *dup_parent = (struct lyd_node *)iter; |
| 2692 | } |
| 2693 | |
| 2694 | if (repeat && parent) { |
| 2695 | /* given parent and created parents chain actually do not interconnect */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2696 | LOGERR(LYD_CTX(node), LY_EINVAL, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2697 | "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] | 2698 | return LY_EINVAL; |
| 2699 | } |
| 2700 | |
| 2701 | return LY_SUCCESS; |
| 2702 | } |
| 2703 | |
| 2704 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2705 | lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, ly_bool nosiblings, struct lyd_node **dup) |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2706 | { |
| 2707 | LY_ERR rc; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2708 | const struct lyd_node *orig; /* original node to be duplicated */ |
| 2709 | struct lyd_node *first = NULL; /* the first duplicated node, this is returned */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2710 | struct lyd_node *top = NULL; /* the most higher created node */ |
| 2711 | 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] | 2712 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2713 | LY_CHECK_ARG_RET(NULL, node, LY_EINVAL); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2714 | |
| 2715 | if (options & LYD_DUP_WITH_PARENTS) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2716 | LY_CHECK_GOTO(rc = lyd_dup_get_local_parent(node, parent, &top, &local_parent), error); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2717 | } else { |
| 2718 | local_parent = parent; |
| 2719 | } |
| 2720 | |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2721 | LY_LIST_FOR(node, orig) { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 2722 | /* if there is no local parent, it will be inserted into first */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2723 | LY_CHECK_GOTO(rc = lyd_dup_r(orig, (struct lyd_node *)local_parent, &first, options, first ? NULL : &first), error); |
| 2724 | if (nosiblings) { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2725 | break; |
| 2726 | } |
| 2727 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2728 | |
| 2729 | /* rehash if needed */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2730 | for ( ; local_parent; local_parent = local_parent->parent) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2731 | if ((local_parent->schema->nodetype == LYS_LIST) && (local_parent->schema->flags & LYS_KEYLESS)) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2732 | lyd_hash((struct lyd_node *)local_parent); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2733 | } |
| 2734 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2735 | |
| 2736 | if (dup) { |
| 2737 | *dup = first; |
| 2738 | } |
| 2739 | return LY_SUCCESS; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2740 | |
| 2741 | error: |
| 2742 | if (top) { |
| 2743 | lyd_free_tree(top); |
| 2744 | } else { |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 2745 | lyd_free_siblings(first); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2746 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2747 | return rc; |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 2748 | } |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2749 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2750 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2751 | 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] | 2752 | { |
| 2753 | return lyd_dup(node, parent, options, 1, dup); |
| 2754 | } |
| 2755 | |
| 2756 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2757 | 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] | 2758 | { |
| 2759 | return lyd_dup(node, parent, options, 0, dup); |
| 2760 | } |
| 2761 | |
| 2762 | API LY_ERR |
| 2763 | 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] | 2764 | { |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2765 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2766 | struct lyd_meta *mt, *last; |
| 2767 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2768 | LY_CHECK_ARG_RET(NULL, meta, node, LY_EINVAL); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2769 | |
| 2770 | /* create a copy */ |
| 2771 | mt = calloc(1, sizeof *mt); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2772 | LY_CHECK_ERR_RET(!mt, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2773 | mt->annotation = meta->annotation; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2774 | 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] | 2775 | LY_CHECK_ERR_GOTO(ret, LOGERR(LYD_CTX(node), LY_EINT, "Value duplication failed."), finish); |
| 2776 | 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] | 2777 | |
| 2778 | /* insert as the last attribute */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2779 | mt->parent = node; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2780 | if (node->meta) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 2781 | for (last = node->meta; last->next; last = last->next) {} |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2782 | last->next = mt; |
| 2783 | } else { |
| 2784 | node->meta = mt; |
| 2785 | } |
| 2786 | |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 2787 | finish: |
| 2788 | if (ret) { |
| 2789 | lyd_free_meta_single(mt); |
| 2790 | } else if (dup) { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2791 | *dup = mt; |
| 2792 | } |
| 2793 | return LY_SUCCESS; |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 2794 | } |
| 2795 | |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2796 | /** |
| 2797 | * @brief Merge a source sibling into target siblings. |
| 2798 | * |
| 2799 | * @param[in,out] first_trg First target sibling, is updated if top-level. |
| 2800 | * @param[in] parent_trg Target parent. |
| 2801 | * @param[in,out] sibling_src Source sibling to merge, set to NULL if spent. |
| 2802 | * @param[in] options Merge options. |
| 2803 | * @return LY_ERR value. |
| 2804 | */ |
| 2805 | static LY_ERR |
| 2806 | lyd_merge_sibling_r(struct lyd_node **first_trg, struct lyd_node *parent_trg, const struct lyd_node **sibling_src_p, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2807 | uint16_t options) |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2808 | { |
| 2809 | LY_ERR ret; |
| 2810 | const struct lyd_node *child_src, *tmp, *sibling_src; |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 2811 | struct lyd_node *match_trg, *dup_src, *elem; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2812 | struct lysc_type *type; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2813 | |
| 2814 | sibling_src = *sibling_src_p; |
| 2815 | if (sibling_src->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) { |
| 2816 | /* try to find the exact instance */ |
| 2817 | ret = lyd_find_sibling_first(*first_trg, sibling_src, &match_trg); |
| 2818 | } else { |
| 2819 | /* try to simply find the node, there cannot be more instances */ |
| 2820 | ret = lyd_find_sibling_val(*first_trg, sibling_src->schema, NULL, 0, &match_trg); |
| 2821 | } |
| 2822 | |
| 2823 | if (!ret) { |
| 2824 | /* node found, make sure even value matches for all node types */ |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2825 | if ((match_trg->schema->nodetype == LYS_LEAF) && lyd_compare_single(sibling_src, match_trg, LYD_COMPARE_DEFAULTS)) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2826 | /* since they are different, they cannot both be default */ |
| 2827 | assert(!(sibling_src->flags & LYD_DEFAULT) || !(match_trg->flags & LYD_DEFAULT)); |
| 2828 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2829 | /* update value (or only LYD_DEFAULT flag) only if flag set or the source node is not default */ |
| 2830 | if ((options & LYD_MERGE_DEFAULTS) || !(sibling_src->flags & LYD_DEFAULT)) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2831 | type = ((struct lysc_node_leaf *)match_trg->schema)->type; |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2832 | type->plugin->free(LYD_CTX(match_trg), &((struct lyd_node_term *)match_trg)->value); |
| 2833 | 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] | 2834 | &((struct lyd_node_term *)match_trg)->value)); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2835 | |
| 2836 | /* copy flags and add LYD_NEW */ |
| 2837 | match_trg->flags = sibling_src->flags | LYD_NEW; |
| 2838 | } |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 2839 | } 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] | 2840 | /* update value */ |
| 2841 | 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] | 2842 | ((struct lyd_node_any *)sibling_src)->value_type)); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2843 | |
| 2844 | /* copy flags and add LYD_NEW */ |
| 2845 | match_trg->flags = sibling_src->flags | LYD_NEW; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2846 | } else { |
| 2847 | /* check descendants, recursively */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 2848 | LY_LIST_FOR_SAFE(lyd_child_no_keys(sibling_src), tmp, child_src) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2849 | LY_CHECK_RET(lyd_merge_sibling_r(lyd_node_children_p(match_trg), match_trg, &child_src, options)); |
| 2850 | } |
| 2851 | } |
| 2852 | } else { |
| 2853 | /* node not found, merge it */ |
| 2854 | if (options & LYD_MERGE_DESTRUCT) { |
| 2855 | dup_src = (struct lyd_node *)sibling_src; |
| 2856 | lyd_unlink_tree(dup_src); |
| 2857 | /* spend it */ |
| 2858 | *sibling_src_p = NULL; |
| 2859 | } else { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2860 | 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] | 2861 | } |
| 2862 | |
| 2863 | /* set LYD_NEW for all the new nodes, required for validation */ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 2864 | LYD_TREE_DFS_BEGIN(dup_src, elem) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2865 | elem->flags |= LYD_NEW; |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 2866 | LYD_TREE_DFS_END(dup_src, elem); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2867 | } |
| 2868 | |
| 2869 | lyd_insert_node(parent_trg, first_trg, dup_src); |
| 2870 | } |
| 2871 | |
| 2872 | return LY_SUCCESS; |
| 2873 | } |
| 2874 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2875 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2876 | lyd_merge(struct lyd_node **target, const struct lyd_node *source, uint16_t options, ly_bool nosiblings) |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2877 | { |
| 2878 | const struct lyd_node *sibling_src, *tmp; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2879 | ly_bool first; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2880 | |
| 2881 | LY_CHECK_ARG_RET(NULL, target, LY_EINVAL); |
| 2882 | |
| 2883 | if (!source) { |
| 2884 | /* nothing to merge */ |
| 2885 | return LY_SUCCESS; |
| 2886 | } |
| 2887 | |
| 2888 | if (lysc_data_parent((*target)->schema) || lysc_data_parent(source->schema)) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2889 | 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] | 2890 | return LY_EINVAL; |
| 2891 | } |
| 2892 | |
| 2893 | LY_LIST_FOR_SAFE(source, tmp, sibling_src) { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2894 | first = (sibling_src == source) ? 1 : 0; |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2895 | LY_CHECK_RET(lyd_merge_sibling_r(target, NULL, &sibling_src, options)); |
| 2896 | if (first && !sibling_src) { |
| 2897 | /* source was spent (unlinked), move to the next node */ |
| 2898 | source = tmp; |
| 2899 | } |
| 2900 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2901 | if (nosiblings) { |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 2902 | break; |
| 2903 | } |
| 2904 | } |
| 2905 | |
| 2906 | if (options & LYD_MERGE_DESTRUCT) { |
| 2907 | /* free any leftover source data that were not merged */ |
| 2908 | lyd_free_siblings((struct lyd_node *)source); |
| 2909 | } |
| 2910 | |
| 2911 | return LY_SUCCESS; |
| 2912 | } |
| 2913 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 2914 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2915 | 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] | 2916 | { |
| 2917 | return lyd_merge(target, source, options, 1); |
| 2918 | } |
| 2919 | |
| 2920 | API LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2921 | 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] | 2922 | { |
| 2923 | return lyd_merge(target, source, options, 0); |
| 2924 | } |
| 2925 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2926 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2927 | 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] | 2928 | { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 2929 | /* ending \0 */ |
| 2930 | ++reqlen; |
| 2931 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2932 | if (reqlen > *buflen) { |
| 2933 | if (is_static) { |
| 2934 | return LY_EINCOMPLETE; |
| 2935 | } |
| 2936 | |
| 2937 | *buffer = ly_realloc(*buffer, reqlen * sizeof **buffer); |
| 2938 | if (!*buffer) { |
| 2939 | return LY_EMEM; |
| 2940 | } |
| 2941 | |
| 2942 | *buflen = reqlen; |
| 2943 | } |
| 2944 | |
| 2945 | return LY_SUCCESS; |
| 2946 | } |
| 2947 | |
Michal Vasko | d59035b | 2020-07-08 12:00:06 +0200 | [diff] [blame] | 2948 | LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2949 | 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] | 2950 | { |
| 2951 | const struct lyd_node *key; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2952 | size_t len; |
| 2953 | const char *val; |
| 2954 | char quot; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2955 | |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 2956 | for (key = lyd_child(node); key && (key->schema->flags & LYS_KEY); key = key->next) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2957 | val = LYD_CANON_VALUE(key); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2958 | len = 1 + strlen(key->schema->name) + 2 + strlen(val) + 2; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2959 | 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] | 2960 | |
| 2961 | quot = '\''; |
| 2962 | if (strchr(val, '\'')) { |
| 2963 | quot = '"'; |
| 2964 | } |
| 2965 | *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] | 2966 | } |
| 2967 | |
| 2968 | return LY_SUCCESS; |
| 2969 | } |
| 2970 | |
| 2971 | /** |
| 2972 | * @brief Append leaf-list value predicate to path. |
| 2973 | * |
| 2974 | * @param[in] node Node to print. |
| 2975 | * @param[in,out] buffer Buffer to print to. |
| 2976 | * @param[in,out] buflen Current buffer length. |
| 2977 | * @param[in,out] bufused Current number of characters used in @p buffer. |
| 2978 | * @param[in] is_static Whether buffer is static or can be reallocated. |
| 2979 | * @return LY_ERR |
| 2980 | */ |
| 2981 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2982 | 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] | 2983 | { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2984 | size_t len; |
| 2985 | const char *val; |
| 2986 | char quot; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2987 | |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 2988 | val = LYD_CANON_VALUE(node); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2989 | len = 4 + strlen(val) + 2; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2990 | 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] | 2991 | |
| 2992 | quot = '\''; |
| 2993 | if (strchr(val, '\'')) { |
| 2994 | quot = '"'; |
| 2995 | } |
| 2996 | *bufused += sprintf(*buffer + *bufused, "[.=%c%s%c]", quot, val, quot); |
| 2997 | |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 2998 | return LY_SUCCESS; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 2999 | } |
| 3000 | |
| 3001 | /** |
| 3002 | * @brief Append node position (relative to its other instances) predicate to path. |
| 3003 | * |
| 3004 | * @param[in] node Node to print. |
| 3005 | * @param[in,out] buffer Buffer to print to. |
| 3006 | * @param[in,out] buflen Current buffer length. |
| 3007 | * @param[in,out] bufused Current number of characters used in @p buffer. |
| 3008 | * @param[in] is_static Whether buffer is static or can be reallocated. |
| 3009 | * @return LY_ERR |
| 3010 | */ |
| 3011 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3012 | 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] | 3013 | { |
| 3014 | const struct lyd_node *first, *iter; |
| 3015 | size_t len; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3016 | uint64_t pos; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3017 | char *val = NULL; |
| 3018 | LY_ERR rc; |
| 3019 | |
| 3020 | if (node->parent) { |
| 3021 | first = node->parent->child; |
| 3022 | } else { |
Michal Vasko | e070bfe | 2020-08-31 12:27:25 +0200 | [diff] [blame] | 3023 | for (first = node; first->prev->next; first = first->prev) {} |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3024 | } |
| 3025 | pos = 1; |
| 3026 | for (iter = first; iter != node; iter = iter->next) { |
| 3027 | if (iter->schema == node->schema) { |
| 3028 | ++pos; |
| 3029 | } |
| 3030 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3031 | if (asprintf(&val, "%" PRIu64, pos) == -1) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3032 | return LY_EMEM; |
| 3033 | } |
| 3034 | |
| 3035 | len = 1 + strlen(val) + 1; |
| 3036 | rc = lyd_path_str_enlarge(buffer, buflen, *bufused + len, is_static); |
| 3037 | if (rc != LY_SUCCESS) { |
| 3038 | goto cleanup; |
| 3039 | } |
| 3040 | |
| 3041 | *bufused += sprintf(*buffer + *bufused, "[%s]", val); |
| 3042 | |
| 3043 | cleanup: |
| 3044 | free(val); |
| 3045 | return rc; |
| 3046 | } |
| 3047 | |
| 3048 | API char * |
| 3049 | lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen) |
| 3050 | { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3051 | ly_bool is_static = 0; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3052 | uint32_t i, depth; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3053 | size_t bufused = 0, len; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3054 | const struct lyd_node *iter; |
| 3055 | const struct lys_module *mod; |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 3056 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3057 | |
| 3058 | LY_CHECK_ARG_RET(NULL, node, NULL); |
| 3059 | if (buffer) { |
| 3060 | LY_CHECK_ARG_RET(node->schema->module->ctx, buflen > 1, NULL); |
| 3061 | is_static = 1; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3062 | } else { |
| 3063 | buflen = 0; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3064 | } |
| 3065 | |
| 3066 | switch (pathtype) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3067 | case LYD_PATH_LOG: |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 3068 | case LYD_PATH_LOG_NO_LAST_PRED: |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3069 | depth = 1; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3070 | for (iter = node; iter->parent; iter = (const struct lyd_node *)iter->parent) { |
| 3071 | ++depth; |
| 3072 | } |
| 3073 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3074 | goto iter_print; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3075 | while (depth) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3076 | /* find the right node */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 3077 | for (iter = node, i = 1; i < depth; iter = (const struct lyd_node *)iter->parent, ++i) {} |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3078 | iter_print: |
| 3079 | /* print prefix and name */ |
| 3080 | mod = NULL; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3081 | if (iter->schema && (!iter->parent || (iter->schema->module != iter->parent->schema->module))) { |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3082 | mod = iter->schema->module; |
| 3083 | } |
| 3084 | |
| 3085 | /* realloc string */ |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 3086 | len = 1 + (mod ? strlen(mod->name) + 1 : 0) + (iter->schema ? strlen(iter->schema->name) : |
| 3087 | strlen(((struct lyd_node_opaq *)iter)->name.name)); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3088 | rc = lyd_path_str_enlarge(&buffer, &buflen, bufused + len, is_static); |
| 3089 | if (rc != LY_SUCCESS) { |
| 3090 | break; |
| 3091 | } |
| 3092 | |
| 3093 | /* print next node */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 3094 | bufused += sprintf(buffer + bufused, "/%s%s%s", mod ? mod->name : "", mod ? ":" : "", |
Michal Vasko | ad92b67 | 2020-11-12 13:11:31 +0100 | [diff] [blame] | 3095 | iter->schema ? iter->schema->name : ((struct lyd_node_opaq *)iter)->name.name); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3096 | |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 3097 | /* do not always print the last (first) predicate */ |
Michal Vasko | 552e112 | 2020-11-06 17:22:44 +0100 | [diff] [blame] | 3098 | if (iter->schema && ((depth > 1) || (pathtype == LYD_PATH_LOG))) { |
Michal Vasko | 790b2bc | 2020-08-03 13:35:06 +0200 | [diff] [blame] | 3099 | switch (iter->schema->nodetype) { |
| 3100 | case LYS_LIST: |
| 3101 | if (iter->schema->flags & LYS_KEYLESS) { |
| 3102 | /* print its position */ |
| 3103 | rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 3104 | } else { |
| 3105 | /* print all list keys in predicates */ |
| 3106 | rc = lyd_path_list_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 3107 | } |
| 3108 | break; |
| 3109 | case LYS_LEAFLIST: |
| 3110 | if (iter->schema->flags & LYS_CONFIG_W) { |
| 3111 | /* print leaf-list value */ |
| 3112 | rc = lyd_path_leaflist_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 3113 | } else { |
| 3114 | /* print its position */ |
| 3115 | rc = lyd_path_position_predicate(iter, &buffer, &buflen, &bufused, is_static); |
| 3116 | } |
| 3117 | break; |
| 3118 | default: |
| 3119 | /* nothing to print more */ |
| 3120 | break; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3121 | } |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3122 | } |
| 3123 | if (rc != LY_SUCCESS) { |
| 3124 | break; |
| 3125 | } |
| 3126 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 3127 | --depth; |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 3128 | } |
| 3129 | break; |
| 3130 | } |
| 3131 | |
| 3132 | return buffer; |
| 3133 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3134 | |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 3135 | API struct lyd_meta * |
| 3136 | lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name) |
| 3137 | { |
| 3138 | struct lyd_meta *ret = NULL; |
| 3139 | const struct ly_ctx *ctx; |
| 3140 | const char *prefix, *tmp; |
| 3141 | char *str; |
| 3142 | size_t pref_len, name_len; |
| 3143 | |
| 3144 | LY_CHECK_ARG_RET(NULL, module || strchr(name, ':'), name, NULL); |
| 3145 | |
| 3146 | if (!first) { |
| 3147 | return NULL; |
| 3148 | } |
| 3149 | |
| 3150 | ctx = first->annotation->module->ctx; |
| 3151 | |
| 3152 | /* parse the name */ |
| 3153 | tmp = name; |
| 3154 | if (ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len) || tmp[0]) { |
| 3155 | LOGERR(ctx, LY_EINVAL, "Metadata name \"%s\" is not valid.", name); |
| 3156 | return NULL; |
| 3157 | } |
| 3158 | |
| 3159 | /* find the module */ |
| 3160 | if (prefix) { |
| 3161 | str = strndup(prefix, pref_len); |
| 3162 | module = ly_ctx_get_module_latest(ctx, str); |
| 3163 | free(str); |
| 3164 | LY_CHECK_ERR_RET(!module, LOGERR(ctx, LY_EINVAL, "Module \"%.*s\" not found.", pref_len, prefix), NULL); |
| 3165 | } |
| 3166 | |
| 3167 | /* find the metadata */ |
| 3168 | LY_LIST_FOR(first, first) { |
| 3169 | if ((first->annotation->module == module) && !strcmp(first->name, name)) { |
| 3170 | ret = (struct lyd_meta *)first; |
| 3171 | break; |
| 3172 | } |
| 3173 | } |
| 3174 | |
| 3175 | return ret; |
| 3176 | } |
| 3177 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3178 | API LY_ERR |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3179 | lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match) |
| 3180 | { |
| 3181 | struct lyd_node **match_p; |
| 3182 | struct lyd_node_inner *parent; |
| 3183 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 3184 | LY_CHECK_ARG_RET(NULL, target, LY_EINVAL); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3185 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 3186 | if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(target->schema))) { |
| 3187 | /* no data or schema mismatch */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3188 | if (match) { |
| 3189 | *match = NULL; |
| 3190 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3191 | return LY_ENOTFOUND; |
| 3192 | } |
| 3193 | |
| 3194 | /* find first sibling */ |
| 3195 | if (siblings->parent) { |
| 3196 | siblings = siblings->parent->child; |
| 3197 | } else { |
| 3198 | while (siblings->prev->next) { |
| 3199 | siblings = siblings->prev; |
| 3200 | } |
| 3201 | } |
| 3202 | |
| 3203 | parent = (struct lyd_node_inner *)siblings->parent; |
| 3204 | if (parent && parent->children_ht) { |
| 3205 | assert(target->hash); |
| 3206 | |
| 3207 | /* find by hash */ |
| 3208 | if (!lyht_find(parent->children_ht, &target, target->hash, (void **)&match_p)) { |
Michal Vasko | da85903 | 2020-07-14 12:20:14 +0200 | [diff] [blame] | 3209 | /* check even value when needed */ |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3210 | if (!(target->schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) || !lyd_compare_single(target, *match_p, 0)) { |
Michal Vasko | da85903 | 2020-07-14 12:20:14 +0200 | [diff] [blame] | 3211 | siblings = *match_p; |
| 3212 | } else { |
| 3213 | siblings = NULL; |
| 3214 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3215 | } else { |
| 3216 | /* not found */ |
| 3217 | siblings = NULL; |
| 3218 | } |
| 3219 | } else { |
| 3220 | /* no children hash table */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 3221 | for ( ; siblings; siblings = siblings->next) { |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 3222 | if (!lyd_compare_single(siblings, target, 0)) { |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3223 | break; |
| 3224 | } |
| 3225 | } |
| 3226 | } |
| 3227 | |
| 3228 | if (!siblings) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3229 | if (match) { |
| 3230 | *match = NULL; |
| 3231 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3232 | return LY_ENOTFOUND; |
| 3233 | } |
| 3234 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3235 | if (match) { |
| 3236 | *match = (struct lyd_node *)siblings; |
| 3237 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3238 | return LY_SUCCESS; |
| 3239 | } |
| 3240 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3241 | /** |
| 3242 | * @brief Comparison callback to match schema node with a schema of a data node. |
| 3243 | * |
| 3244 | * @param[in] val1_p Pointer to the schema node |
| 3245 | * @param[in] val2_p Pointer to the data node |
| 3246 | * Implementation of ::values_equal_cb. |
| 3247 | */ |
| 3248 | static ly_bool |
| 3249 | 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] | 3250 | { |
| 3251 | struct lysc_node *val1; |
| 3252 | struct lyd_node *val2; |
| 3253 | |
| 3254 | val1 = *((struct lysc_node **)val1_p); |
| 3255 | val2 = *((struct lyd_node **)val2_p); |
| 3256 | |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3257 | if (val1 == val2->schema) { |
| 3258 | /* schema match is enough */ |
| 3259 | return 1; |
| 3260 | } else { |
| 3261 | return 0; |
| 3262 | } |
| 3263 | } |
| 3264 | |
| 3265 | static LY_ERR |
| 3266 | lyd_find_sibling_schema(const struct lyd_node *siblings, const struct lysc_node *schema, struct lyd_node **match) |
| 3267 | { |
| 3268 | struct lyd_node **match_p; |
| 3269 | struct lyd_node_inner *parent; |
| 3270 | uint32_t hash; |
| 3271 | values_equal_cb ht_cb; |
| 3272 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 3273 | assert(siblings && schema); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3274 | |
| 3275 | parent = (struct lyd_node_inner *)siblings->parent; |
| 3276 | if (parent && parent->children_ht) { |
| 3277 | /* calculate our hash */ |
| 3278 | hash = dict_hash_multi(0, schema->module->name, strlen(schema->module->name)); |
| 3279 | hash = dict_hash_multi(hash, schema->name, strlen(schema->name)); |
| 3280 | hash = dict_hash_multi(hash, NULL, 0); |
| 3281 | |
| 3282 | /* use special hash table function */ |
| 3283 | ht_cb = lyht_set_cb(parent->children_ht, lyd_hash_table_schema_val_equal); |
| 3284 | |
| 3285 | /* find by hash */ |
| 3286 | if (!lyht_find(parent->children_ht, &schema, hash, (void **)&match_p)) { |
| 3287 | siblings = *match_p; |
| 3288 | } else { |
| 3289 | /* not found */ |
| 3290 | siblings = NULL; |
| 3291 | } |
| 3292 | |
| 3293 | /* set the original hash table compare function back */ |
| 3294 | lyht_set_cb(parent->children_ht, ht_cb); |
| 3295 | } else { |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 3296 | /* find first sibling */ |
| 3297 | if (siblings->parent) { |
| 3298 | siblings = siblings->parent->child; |
| 3299 | } else { |
| 3300 | while (siblings->prev->next) { |
| 3301 | siblings = siblings->prev; |
| 3302 | } |
| 3303 | } |
| 3304 | |
| 3305 | /* search manually without hashes */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 3306 | for ( ; siblings; siblings = siblings->next) { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3307 | if (siblings->schema == schema) { |
| 3308 | /* schema match is enough */ |
| 3309 | break; |
| 3310 | } |
| 3311 | } |
| 3312 | } |
| 3313 | |
| 3314 | if (!siblings) { |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3315 | if (match) { |
| 3316 | *match = NULL; |
| 3317 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3318 | return LY_ENOTFOUND; |
| 3319 | } |
| 3320 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3321 | if (match) { |
| 3322 | *match = (struct lyd_node *)siblings; |
| 3323 | } |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3324 | return LY_SUCCESS; |
| 3325 | } |
| 3326 | |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3327 | API LY_ERR |
| 3328 | 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] | 3329 | size_t val_len, struct lyd_node **match) |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3330 | { |
| 3331 | LY_ERR rc; |
| 3332 | struct lyd_node *target = NULL; |
| 3333 | |
Michal Vasko | 4c583e8 | 2020-07-17 12:16:14 +0200 | [diff] [blame] | 3334 | LY_CHECK_ARG_RET(NULL, schema, !(schema->nodetype & (LYS_CHOICE | LYS_CASE)), LY_EINVAL); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3335 | |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 3336 | if (!siblings || (lysc_data_parent(siblings->schema) != lysc_data_parent(schema))) { |
| 3337 | /* no data or schema mismatch */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 3338 | if (match) { |
| 3339 | *match = NULL; |
| 3340 | } |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3341 | return LY_ENOTFOUND; |
| 3342 | } |
| 3343 | |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 3344 | if (key_or_value && !val_len) { |
| 3345 | val_len = strlen(key_or_value); |
| 3346 | } |
| 3347 | |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 3348 | if ((schema->nodetype & (LYS_LIST | LYS_LEAFLIST)) && key_or_value) { |
| 3349 | /* create a data node and find the instance */ |
| 3350 | if (schema->nodetype == LYS_LEAFLIST) { |
| 3351 | /* target used attributes: schema, hash, value */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 3352 | rc = lyd_create_term(schema, key_or_value, val_len, NULL, LY_PREF_JSON, NULL, LYD_HINT_DATA, NULL, &target); |
| 3353 | LY_CHECK_RET(rc); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 3354 | } else { |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 3355 | /* target used attributes: schema, hash, child (all keys) */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3356 | 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] | 3357 | } |
| 3358 | |
| 3359 | /* find it */ |
| 3360 | rc = lyd_find_sibling_first(siblings, target, match); |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 3361 | } else { |
| 3362 | /* find the first schema node instance */ |
| 3363 | rc = lyd_find_sibling_schema(siblings, schema, match); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3364 | } |
| 3365 | |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 3366 | lyd_free_tree(target); |
| 3367 | return rc; |
| 3368 | } |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3369 | |
| 3370 | API LY_ERR |
| 3371 | lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set) |
| 3372 | { |
| 3373 | LY_ERR ret = LY_SUCCESS; |
| 3374 | struct lyxp_set xp_set; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3375 | struct lyxp_expr *exp = NULL; |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3376 | uint32_t i; |
| 3377 | |
| 3378 | LY_CHECK_ARG_RET(NULL, ctx_node, xpath, set, LY_EINVAL); |
| 3379 | |
| 3380 | memset(&xp_set, 0, sizeof xp_set); |
| 3381 | |
| 3382 | /* compile expression */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3383 | ret = lyxp_expr_parse((struct ly_ctx *)LYD_CTX(ctx_node), xpath, 0, 1, &exp); |
| 3384 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3385 | |
| 3386 | /* evaluate expression */ |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 3387 | ret = lyxp_eval(exp, NULL, LY_PREF_JSON, NULL, ctx_node, ctx_node, &xp_set, LYXP_IGNORE_WHEN); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3388 | LY_CHECK_GOTO(ret, cleanup); |
| 3389 | |
| 3390 | /* allocate return set */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 3391 | ret = ly_set_new(set); |
| 3392 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3393 | |
| 3394 | /* transform into ly_set */ |
| 3395 | if (xp_set.type == LYXP_SET_NODE_SET) { |
| 3396 | /* allocate memory for all the elements once (even though not all items must be elements but most likely will be) */ |
| 3397 | (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3398 | LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(LYD_CTX(ctx_node)); ret = LY_EMEM, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3399 | (*set)->size = xp_set.used; |
| 3400 | |
| 3401 | for (i = 0; i < xp_set.used; ++i) { |
| 3402 | if (xp_set.val.nodes[i].type == LYXP_NODE_ELEM) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 3403 | 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] | 3404 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3405 | } |
| 3406 | } |
| 3407 | } |
| 3408 | |
| 3409 | cleanup: |
Michal Vasko | 0691d52 | 2020-05-21 13:21:47 +0200 | [diff] [blame] | 3410 | lyxp_set_free_content(&xp_set); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 3411 | lyxp_expr_free((struct ly_ctx *)LYD_CTX(ctx_node), exp); |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 3412 | return ret; |
| 3413 | } |
Radek Krejci | ca98914 | 2020-11-05 11:32:22 +0100 | [diff] [blame] | 3414 | |
| 3415 | API uint32_t |
| 3416 | lyd_list_pos(const struct lyd_node *instance) |
| 3417 | { |
| 3418 | const struct lyd_node *iter = NULL; |
| 3419 | uint32_t pos = 0; |
| 3420 | |
| 3421 | if (!instance || !(instance->schema->nodetype & (LYS_LIST | LYS_LEAFLIST))) { |
| 3422 | return 0; |
| 3423 | } |
| 3424 | |
| 3425 | /* data instances are ordered, so we can stop when we found instance of other schema node */ |
| 3426 | for (iter = instance; iter->schema == instance->schema; iter = iter->prev) { |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 3427 | if (pos && (iter->next == NULL)) { |
Radek Krejci | ca98914 | 2020-11-05 11:32:22 +0100 | [diff] [blame] | 3428 | /* overrun to the end of the siblings list */ |
| 3429 | break; |
| 3430 | } |
| 3431 | ++pos; |
| 3432 | } |
| 3433 | |
| 3434 | return pos; |
| 3435 | } |
Radek Krejci | 4233f9b | 2020-11-05 12:38:35 +0100 | [diff] [blame] | 3436 | |
| 3437 | API struct lyd_node * |
| 3438 | lyd_first_sibling(const struct lyd_node *node) |
| 3439 | { |
| 3440 | struct lyd_node *start; |
| 3441 | |
| 3442 | if (!node) { |
| 3443 | return NULL; |
| 3444 | } |
| 3445 | |
| 3446 | /* get the first sibling */ |
| 3447 | if (node->parent) { |
| 3448 | start = node->parent->child; |
| 3449 | } else { |
Radek Krejci | bb27df3 | 2020-11-13 15:39:16 +0100 | [diff] [blame] | 3450 | for (start = (struct lyd_node *)node; start->prev->next; start = start->prev) {} |
Radek Krejci | 4233f9b | 2020-11-05 12:38:35 +0100 | [diff] [blame] | 3451 | } |
| 3452 | |
| 3453 | return start; |
| 3454 | } |