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