Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file xpath.c |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief YANG XPath evaluation functions |
| 5 | * |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2022 CESNET, z.s.p.o. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [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 | */ |
Christian Hopps | 32874e1 | 2021-05-01 09:43:54 -0400 | [diff] [blame] | 14 | #define _GNU_SOURCE /* asprintf, strdup */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 15 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 16 | #include "xpath.h" |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 17 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 18 | #include <assert.h> |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 19 | #include <ctype.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 20 | #include <errno.h> |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 21 | #include <math.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include <stdint.h> |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 25 | #include <string.h> |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 26 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 27 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 28 | #include "compat.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 29 | #include "context.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 30 | #include "dict.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 31 | #include "hash_table.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 32 | #include "out.h" |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 33 | #include "parser_data.h" |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 34 | #include "path.h" |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 35 | #include "plugins_types.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 36 | #include "printer_data.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 37 | #include "schema_compile_node.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 38 | #include "tree.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 39 | #include "tree_data.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 40 | #include "tree_data_internal.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 41 | #include "tree_edit.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 42 | #include "tree_schema_internal.h" |
| 43 | #include "xml.h" |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 44 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 45 | static LY_ERR reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth); |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 46 | static LY_ERR eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, |
| 47 | struct lyxp_set *set, uint32_t options); |
Michal Vasko | 9392369 | 2021-05-07 15:28:02 +0200 | [diff] [blame] | 48 | static LY_ERR moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set, |
| 49 | const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod); |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 50 | static LY_ERR moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, |
| 51 | enum lyxp_axis axis, uint32_t options); |
| 52 | static LY_ERR moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, |
| 53 | enum lyxp_axis axis, uint32_t options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 54 | |
aPiecek | 96dc1e3 | 2021-10-08 15:45:59 +0200 | [diff] [blame] | 55 | /* Functions are divided into the following basic classes: |
| 56 | * |
| 57 | * (re)parse functions: |
| 58 | * Parse functions parse the expression into |
| 59 | * tokens (syntactic analysis). |
| 60 | * Reparse functions perform semantic analysis |
| 61 | * (do not save the result, just a check) of |
| 62 | * the expression and fill repeat indices. |
| 63 | * |
| 64 | * warn functions: |
| 65 | * Warn functions check specific reasonable conditions for schema XPath |
| 66 | * and print a warning if they are not satisfied. |
| 67 | * |
| 68 | * moveto functions: |
| 69 | * They and only they actually change the context (set). |
| 70 | * |
| 71 | * eval functions: |
| 72 | * They execute a parsed XPath expression on some data subtree. |
| 73 | */ |
| 74 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 75 | /** |
| 76 | * @brief Print the type of an XPath \p set. |
| 77 | * |
| 78 | * @param[in] set Set to use. |
| 79 | * @return Set type string. |
| 80 | */ |
| 81 | static const char * |
| 82 | print_set_type(struct lyxp_set *set) |
| 83 | { |
| 84 | switch (set->type) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 85 | case LYXP_SET_NODE_SET: |
| 86 | return "node set"; |
| 87 | case LYXP_SET_SCNODE_SET: |
| 88 | return "schema node set"; |
| 89 | case LYXP_SET_BOOLEAN: |
| 90 | return "boolean"; |
| 91 | case LYXP_SET_NUMBER: |
| 92 | return "number"; |
| 93 | case LYXP_SET_STRING: |
| 94 | return "string"; |
| 95 | } |
| 96 | |
| 97 | return NULL; |
| 98 | } |
| 99 | |
Michal Vasko | 24cddf8 | 2020-06-01 08:17:01 +0200 | [diff] [blame] | 100 | const char * |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 101 | lyxp_token2str(enum lyxp_token tok) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 102 | { |
| 103 | switch (tok) { |
| 104 | case LYXP_TOKEN_PAR1: |
| 105 | return "("; |
| 106 | case LYXP_TOKEN_PAR2: |
| 107 | return ")"; |
| 108 | case LYXP_TOKEN_BRACK1: |
| 109 | return "["; |
| 110 | case LYXP_TOKEN_BRACK2: |
| 111 | return "]"; |
| 112 | case LYXP_TOKEN_DOT: |
| 113 | return "."; |
| 114 | case LYXP_TOKEN_DDOT: |
| 115 | return ".."; |
| 116 | case LYXP_TOKEN_AT: |
| 117 | return "@"; |
| 118 | case LYXP_TOKEN_COMMA: |
| 119 | return ","; |
| 120 | case LYXP_TOKEN_NAMETEST: |
| 121 | return "NameTest"; |
| 122 | case LYXP_TOKEN_NODETYPE: |
| 123 | return "NodeType"; |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 124 | case LYXP_TOKEN_VARREF: |
| 125 | return "VariableReference"; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 126 | case LYXP_TOKEN_FUNCNAME: |
| 127 | return "FunctionName"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 128 | case LYXP_TOKEN_OPER_LOG: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 129 | return "Operator(Logic)"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 130 | case LYXP_TOKEN_OPER_EQUAL: |
| 131 | return "Operator(Equal)"; |
| 132 | case LYXP_TOKEN_OPER_NEQUAL: |
| 133 | return "Operator(Non-equal)"; |
| 134 | case LYXP_TOKEN_OPER_COMP: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 135 | return "Operator(Comparison)"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 136 | case LYXP_TOKEN_OPER_MATH: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 137 | return "Operator(Math)"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 138 | case LYXP_TOKEN_OPER_UNI: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 139 | return "Operator(Union)"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 140 | case LYXP_TOKEN_OPER_PATH: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 141 | return "Operator(Path)"; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 142 | case LYXP_TOKEN_OPER_RPATH: |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 143 | return "Operator(Recursive Path)"; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 144 | case LYXP_TOKEN_LITERAL: |
| 145 | return "Literal"; |
| 146 | case LYXP_TOKEN_NUMBER: |
| 147 | return "Number"; |
| 148 | default: |
| 149 | LOGINT(NULL); |
| 150 | return ""; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 155 | * @brief Transform string into an axis. |
| 156 | * |
| 157 | * @param[in] str String to transform. |
| 158 | * @param[in] str_len Length of @p str. |
| 159 | * @return Transformed axis. |
| 160 | */ |
| 161 | static enum lyxp_axis |
| 162 | str2axis(const char *str, uint16_t str_len) |
| 163 | { |
| 164 | switch (str_len) { |
| 165 | case 4: |
| 166 | assert(!strncmp("self", str, str_len)); |
| 167 | return LYXP_AXIS_SELF; |
| 168 | case 5: |
| 169 | assert(!strncmp("child", str, str_len)); |
| 170 | return LYXP_AXIS_CHILD; |
| 171 | case 6: |
| 172 | assert(!strncmp("parent", str, str_len)); |
| 173 | return LYXP_AXIS_PARENT; |
| 174 | case 8: |
| 175 | assert(!strncmp("ancestor", str, str_len)); |
| 176 | return LYXP_AXIS_ANCESTOR; |
| 177 | case 9: |
| 178 | if (str[0] == 'a') { |
| 179 | assert(!strncmp("attribute", str, str_len)); |
| 180 | return LYXP_AXIS_ATTRIBUTE; |
| 181 | } else if (str[0] == 'f') { |
| 182 | assert(!strncmp("following", str, str_len)); |
| 183 | return LYXP_AXIS_FOLLOWING; |
| 184 | } else { |
| 185 | assert(!strncmp("preceding", str, str_len)); |
| 186 | return LYXP_AXIS_PRECEDING; |
| 187 | } |
| 188 | break; |
| 189 | case 10: |
| 190 | assert(!strncmp("descendant", str, str_len)); |
| 191 | return LYXP_AXIS_DESCENDANT; |
| 192 | case 16: |
| 193 | assert(!strncmp("ancestor-or-self", str, str_len)); |
| 194 | return LYXP_AXIS_ANCESTOR_OR_SELF; |
| 195 | case 17: |
| 196 | if (str[0] == 'f') { |
| 197 | assert(!strncmp("following-sibling", str, str_len)); |
| 198 | return LYXP_AXIS_FOLLOWING_SIBLING; |
| 199 | } else { |
| 200 | assert(!strncmp("preceding-sibling", str, str_len)); |
| 201 | return LYXP_AXIS_PRECEDING_SIBLING; |
| 202 | } |
| 203 | break; |
| 204 | case 18: |
| 205 | assert(!strncmp("descendant-or-self", str, str_len)); |
| 206 | return LYXP_AXIS_DESCENDANT_OR_SELF; |
| 207 | } |
| 208 | |
| 209 | LOGINT(NULL); |
| 210 | return 0; |
| 211 | } |
| 212 | |
| 213 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 214 | * @brief Print the whole expression \p exp to debug output. |
| 215 | * |
| 216 | * @param[in] exp Expression to use. |
| 217 | */ |
| 218 | static void |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 219 | print_expr_struct_debug(const struct lyxp_expr *exp) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 220 | { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 221 | #define MSG_BUFFER_SIZE 128 |
| 222 | char tmp[MSG_BUFFER_SIZE]; |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 223 | uint32_t i, j; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 224 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 225 | if (!exp || (ly_ll < LY_LLDBG)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 226 | return; |
| 227 | } |
| 228 | |
| 229 | LOGDBG(LY_LDGXPATH, "expression \"%s\":", exp->expr); |
| 230 | for (i = 0; i < exp->used; ++i) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 231 | sprintf(tmp, "\ttoken %s, in expression \"%.*s\"", lyxp_token2str(exp->tokens[i]), exp->tok_len[i], |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 232 | &exp->expr[exp->tok_pos[i]]); |
Michal Vasko | 2304955 | 2021-03-04 15:57:44 +0100 | [diff] [blame] | 233 | if (exp->repeat && exp->repeat[i]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 234 | sprintf(tmp + strlen(tmp), " (repeat %d", exp->repeat[i][0]); |
| 235 | for (j = 1; exp->repeat[i][j]; ++j) { |
| 236 | sprintf(tmp + strlen(tmp), ", %d", exp->repeat[i][j]); |
| 237 | } |
| 238 | strcat(tmp, ")"); |
| 239 | } |
| 240 | LOGDBG(LY_LDGXPATH, tmp); |
| 241 | } |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 242 | #undef MSG_BUFFER_SIZE |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | #ifndef NDEBUG |
| 246 | |
| 247 | /** |
| 248 | * @brief Print XPath set content to debug output. |
| 249 | * |
| 250 | * @param[in] set Set to print. |
| 251 | */ |
| 252 | static void |
| 253 | print_set_debug(struct lyxp_set *set) |
| 254 | { |
| 255 | uint32_t i; |
| 256 | char *str; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 257 | struct lyxp_set_node *item; |
| 258 | struct lyxp_set_scnode *sitem; |
| 259 | |
Radek Krejci | 52b6d51 | 2020-10-12 12:33:17 +0200 | [diff] [blame] | 260 | if (ly_ll < LY_LLDBG) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 261 | return; |
| 262 | } |
| 263 | |
| 264 | switch (set->type) { |
| 265 | case LYXP_SET_NODE_SET: |
| 266 | LOGDBG(LY_LDGXPATH, "set NODE SET:"); |
| 267 | for (i = 0; i < set->used; ++i) { |
| 268 | item = &set->val.nodes[i]; |
| 269 | |
| 270 | switch (item->type) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 271 | case LYXP_NODE_NONE: |
| 272 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): NONE", i + 1, item->pos); |
| 273 | break; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 274 | case LYXP_NODE_ROOT: |
| 275 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT", i + 1, item->pos); |
| 276 | break; |
| 277 | case LYXP_NODE_ROOT_CONFIG: |
| 278 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ROOT CONFIG", i + 1, item->pos); |
| 279 | break; |
| 280 | case LYXP_NODE_ELEM: |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 281 | if ((item->node->schema->nodetype == LYS_LIST) && (lyd_child(item->node)->schema->nodetype == LYS_LEAF)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 282 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (1st child val: %s)", i + 1, item->pos, |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 283 | item->node->schema->name, lyd_get_value(lyd_child(item->node))); |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 284 | } else if (item->node->schema->nodetype == LYS_LEAFLIST) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 285 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s (val: %s)", i + 1, item->pos, |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 286 | item->node->schema->name, lyd_get_value(item->node)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 287 | } else { |
| 288 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): ELEM %s", i + 1, item->pos, item->node->schema->name); |
| 289 | } |
| 290 | break; |
| 291 | case LYXP_NODE_TEXT: |
| 292 | if (item->node->schema->nodetype & LYS_ANYDATA) { |
| 293 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT <%s>", i + 1, item->pos, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 294 | item->node->schema->nodetype == LYS_ANYXML ? "anyxml" : "anydata"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 295 | } else { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 296 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): TEXT %s", i + 1, item->pos, lyd_get_value(item->node)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 297 | } |
| 298 | break; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 299 | case LYXP_NODE_META: |
| 300 | LOGDBG(LY_LDGXPATH, "\t%d (pos %u): META %s = %s", i + 1, item->pos, set->val.meta[i].meta->name, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 301 | set->val.meta[i].meta->value); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 302 | break; |
| 303 | } |
| 304 | } |
| 305 | break; |
| 306 | |
| 307 | case LYXP_SET_SCNODE_SET: |
| 308 | LOGDBG(LY_LDGXPATH, "set SCNODE SET:"); |
| 309 | for (i = 0; i < set->used; ++i) { |
| 310 | sitem = &set->val.scnodes[i]; |
| 311 | |
| 312 | switch (sitem->type) { |
| 313 | case LYXP_NODE_ROOT: |
| 314 | LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT", i + 1, sitem->in_ctx); |
| 315 | break; |
| 316 | case LYXP_NODE_ROOT_CONFIG: |
| 317 | LOGDBG(LY_LDGXPATH, "\t%d (%u): ROOT CONFIG", i + 1, sitem->in_ctx); |
| 318 | break; |
| 319 | case LYXP_NODE_ELEM: |
| 320 | LOGDBG(LY_LDGXPATH, "\t%d (%u): ELEM %s", i + 1, sitem->in_ctx, sitem->scnode->name); |
| 321 | break; |
| 322 | default: |
| 323 | LOGINT(NULL); |
| 324 | break; |
| 325 | } |
| 326 | } |
| 327 | break; |
| 328 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 329 | case LYXP_SET_BOOLEAN: |
| 330 | LOGDBG(LY_LDGXPATH, "set BOOLEAN"); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 331 | LOGDBG(LY_LDGXPATH, "\t%s", (set->val.bln ? "true" : "false")); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 332 | break; |
| 333 | |
| 334 | case LYXP_SET_STRING: |
| 335 | LOGDBG(LY_LDGXPATH, "set STRING"); |
| 336 | LOGDBG(LY_LDGXPATH, "\t%s", set->val.str); |
| 337 | break; |
| 338 | |
| 339 | case LYXP_SET_NUMBER: |
| 340 | LOGDBG(LY_LDGXPATH, "set NUMBER"); |
| 341 | |
| 342 | if (isnan(set->val.num)) { |
| 343 | str = strdup("NaN"); |
| 344 | } else if ((set->val.num == 0) || (set->val.num == -0.0f)) { |
| 345 | str = strdup("0"); |
| 346 | } else if (isinf(set->val.num) && !signbit(set->val.num)) { |
| 347 | str = strdup("Infinity"); |
| 348 | } else if (isinf(set->val.num) && signbit(set->val.num)) { |
| 349 | str = strdup("-Infinity"); |
| 350 | } else if ((long long)set->val.num == set->val.num) { |
| 351 | if (asprintf(&str, "%lld", (long long)set->val.num) == -1) { |
| 352 | str = NULL; |
| 353 | } |
| 354 | } else { |
| 355 | if (asprintf(&str, "%03.1Lf", set->val.num) == -1) { |
| 356 | str = NULL; |
| 357 | } |
| 358 | } |
| 359 | LY_CHECK_ERR_RET(!str, LOGMEM(NULL), ); |
| 360 | |
| 361 | LOGDBG(LY_LDGXPATH, "\t%s", str); |
| 362 | free(str); |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | #endif |
| 367 | |
| 368 | /** |
| 369 | * @brief Realloc the string \p str. |
| 370 | * |
| 371 | * @param[in] ctx libyang context for logging. |
| 372 | * @param[in] needed How much free space is required. |
| 373 | * @param[in,out] str Pointer to the string to use. |
| 374 | * @param[in,out] used Used bytes in \p str. |
| 375 | * @param[in,out] size Allocated bytes in \p str. |
| 376 | * @return LY_ERR |
| 377 | */ |
| 378 | static LY_ERR |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 379 | cast_string_realloc(const struct ly_ctx *ctx, uint16_t needed, char **str, uint16_t *used, uint16_t *size) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 380 | { |
| 381 | if (*size - *used < needed) { |
| 382 | do { |
| 383 | if ((UINT16_MAX - *size) < LYXP_STRING_CAST_SIZE_STEP) { |
| 384 | LOGERR(ctx, LY_EINVAL, "XPath string length limit (%u) reached.", UINT16_MAX); |
| 385 | return LY_EINVAL; |
| 386 | } |
| 387 | *size += LYXP_STRING_CAST_SIZE_STEP; |
| 388 | } while (*size - *used < needed); |
| 389 | *str = ly_realloc(*str, *size * sizeof(char)); |
| 390 | LY_CHECK_ERR_RET(!(*str), LOGMEM(ctx), LY_EMEM); |
| 391 | } |
| 392 | |
| 393 | return LY_SUCCESS; |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * @brief Cast nodes recursively to one string @p str. |
| 398 | * |
| 399 | * @param[in] node Node to cast. |
| 400 | * @param[in] fake_cont Whether to put the data into a "fake" container. |
| 401 | * @param[in] root_type Type of the XPath root. |
| 402 | * @param[in] indent Current indent. |
| 403 | * @param[in,out] str Resulting string. |
| 404 | * @param[in,out] used Used bytes in @p str. |
| 405 | * @param[in,out] size Allocated bytes in @p str. |
| 406 | * @return LY_ERR |
| 407 | */ |
| 408 | static LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 409 | cast_string_recursive(const struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, uint16_t indent, |
| 410 | char **str, uint16_t *used, uint16_t *size) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 411 | { |
Radek Krejci | 7f769d7 | 2020-07-11 23:13:56 +0200 | [diff] [blame] | 412 | char *buf, *line, *ptr = NULL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 413 | const char *value_str; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 414 | const struct lyd_node *child; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 415 | struct lyd_node *tree; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 416 | struct lyd_node_any *any; |
| 417 | LY_ERR rc; |
| 418 | |
| 419 | if ((root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) { |
| 420 | return LY_SUCCESS; |
| 421 | } |
| 422 | |
| 423 | if (fake_cont) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 424 | rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 425 | LY_CHECK_RET(rc); |
| 426 | strcpy(*str + (*used - 1), "\n"); |
| 427 | ++(*used); |
| 428 | |
| 429 | ++indent; |
| 430 | } |
| 431 | |
| 432 | switch (node->schema->nodetype) { |
| 433 | case LYS_CONTAINER: |
| 434 | case LYS_LIST: |
| 435 | case LYS_RPC: |
| 436 | case LYS_NOTIF: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 437 | rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 438 | LY_CHECK_RET(rc); |
| 439 | strcpy(*str + (*used - 1), "\n"); |
| 440 | ++(*used); |
| 441 | |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 442 | for (child = lyd_child(node); child; child = child->next) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 443 | rc = cast_string_recursive(child, 0, root_type, indent + 1, str, used, size); |
| 444 | LY_CHECK_RET(rc); |
| 445 | } |
| 446 | |
| 447 | break; |
| 448 | |
| 449 | case LYS_LEAF: |
| 450 | case LYS_LEAFLIST: |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 451 | value_str = lyd_get_value(node); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 452 | |
| 453 | /* print indent */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 454 | LY_CHECK_RET(cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(value_str) + 1, str, used, size)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 455 | memset(*str + (*used - 1), ' ', indent * 2); |
| 456 | *used += indent * 2; |
| 457 | |
| 458 | /* print value */ |
| 459 | if (*used == 1) { |
| 460 | sprintf(*str + (*used - 1), "%s", value_str); |
| 461 | *used += strlen(value_str); |
| 462 | } else { |
| 463 | sprintf(*str + (*used - 1), "%s\n", value_str); |
| 464 | *used += strlen(value_str) + 1; |
| 465 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 466 | |
| 467 | break; |
| 468 | |
| 469 | case LYS_ANYXML: |
| 470 | case LYS_ANYDATA: |
| 471 | any = (struct lyd_node_any *)node; |
| 472 | if (!(void *)any->value.tree) { |
| 473 | /* no content */ |
| 474 | buf = strdup(""); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 475 | LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 476 | } else { |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 477 | struct ly_out *out; |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 478 | |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 479 | if (any->value_type == LYD_ANYDATA_LYB) { |
| 480 | /* try to parse it into a data tree */ |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 481 | if (lyd_parse_data_mem((struct ly_ctx *)LYD_CTX(node), any->value.mem, LYD_LYB, |
| 482 | LYD_PARSE_ONLY | LYD_PARSE_STRICT, 0, &tree) == LY_SUCCESS) { |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 483 | /* successfully parsed */ |
| 484 | free(any->value.mem); |
| 485 | any->value.tree = tree; |
| 486 | any->value_type = LYD_ANYDATA_DATATREE; |
| 487 | } |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 488 | /* error is covered by the following switch where LYD_ANYDATA_LYB causes failure */ |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 489 | } |
| 490 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 491 | switch (any->value_type) { |
| 492 | case LYD_ANYDATA_STRING: |
| 493 | case LYD_ANYDATA_XML: |
| 494 | case LYD_ANYDATA_JSON: |
| 495 | buf = strdup(any->value.json); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 496 | LY_CHECK_ERR_RET(!buf, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 497 | break; |
| 498 | case LYD_ANYDATA_DATATREE: |
Radek Krejci | 84ce7b1 | 2020-06-11 17:28:25 +0200 | [diff] [blame] | 499 | LY_CHECK_RET(ly_out_new_memory(&buf, 0, &out)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 500 | rc = lyd_print_all(out, any->value.tree, LYD_XML, 0); |
Radek Krejci | 241f6b5 | 2020-05-21 18:13:49 +0200 | [diff] [blame] | 501 | ly_out_free(out, NULL, 0); |
Radek Krejci | a5bba31 | 2020-01-09 15:41:20 +0100 | [diff] [blame] | 502 | LY_CHECK_RET(rc < 0, -rc); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 503 | break; |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 504 | case LYD_ANYDATA_LYB: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 505 | LOGERR(LYD_CTX(node), LY_EINVAL, "Cannot convert LYB anydata into string."); |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 506 | return LY_EINVAL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | |
| 510 | line = strtok_r(buf, "\n", &ptr); |
| 511 | do { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 512 | rc = cast_string_realloc(LYD_CTX(node), indent * 2 + strlen(line) + 1, str, used, size); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 513 | if (rc != LY_SUCCESS) { |
| 514 | free(buf); |
| 515 | return rc; |
| 516 | } |
| 517 | memset(*str + (*used - 1), ' ', indent * 2); |
| 518 | *used += indent * 2; |
| 519 | |
| 520 | strcpy(*str + (*used - 1), line); |
| 521 | *used += strlen(line); |
| 522 | |
| 523 | strcpy(*str + (*used - 1), "\n"); |
| 524 | *used += 1; |
| 525 | } while ((line = strtok_r(NULL, "\n", &ptr))); |
| 526 | |
| 527 | free(buf); |
| 528 | break; |
| 529 | |
| 530 | default: |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 531 | LOGINT_RET(LYD_CTX(node)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | if (fake_cont) { |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 535 | rc = cast_string_realloc(LYD_CTX(node), 1, str, used, size); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 536 | LY_CHECK_RET(rc); |
| 537 | strcpy(*str + (*used - 1), "\n"); |
| 538 | ++(*used); |
| 539 | |
| 540 | --indent; |
| 541 | } |
| 542 | |
| 543 | return LY_SUCCESS; |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * @brief Cast an element into a string. |
| 548 | * |
| 549 | * @param[in] node Node to cast. |
| 550 | * @param[in] fake_cont Whether to put the data into a "fake" container. |
| 551 | * @param[in] root_type Type of the XPath root. |
| 552 | * @param[out] str Element cast to dynamically-allocated string. |
| 553 | * @return LY_ERR |
| 554 | */ |
| 555 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 556 | cast_string_elem(struct lyd_node *node, ly_bool fake_cont, enum lyxp_node_type root_type, char **str) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 557 | { |
| 558 | uint16_t used, size; |
| 559 | LY_ERR rc; |
| 560 | |
| 561 | *str = malloc(LYXP_STRING_CAST_SIZE_START * sizeof(char)); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 562 | LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 563 | (*str)[0] = '\0'; |
| 564 | used = 1; |
| 565 | size = LYXP_STRING_CAST_SIZE_START; |
| 566 | |
| 567 | rc = cast_string_recursive(node, fake_cont, root_type, 0, str, &used, &size); |
| 568 | if (rc != LY_SUCCESS) { |
| 569 | free(*str); |
| 570 | return rc; |
| 571 | } |
| 572 | |
| 573 | if (size > used) { |
| 574 | *str = ly_realloc(*str, used * sizeof(char)); |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 575 | LY_CHECK_ERR_RET(!*str, LOGMEM(LYD_CTX(node)), LY_EMEM); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 576 | } |
| 577 | return LY_SUCCESS; |
| 578 | } |
| 579 | |
| 580 | /** |
| 581 | * @brief Cast a LYXP_SET_NODE_SET set into a string. |
| 582 | * Context position aware. |
| 583 | * |
| 584 | * @param[in] set Set to cast. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 585 | * @param[out] str Cast dynamically-allocated string. |
| 586 | * @return LY_ERR |
| 587 | */ |
| 588 | static LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 589 | cast_node_set_to_string(struct lyxp_set *set, char **str) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 590 | { |
Michal Vasko | aa67706 | 2021-03-09 13:52:53 +0100 | [diff] [blame] | 591 | if (!set->used) { |
| 592 | *str = strdup(""); |
| 593 | if (!*str) { |
| 594 | LOGMEM_RET(set->ctx); |
| 595 | } |
| 596 | return LY_SUCCESS; |
| 597 | } |
| 598 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 599 | switch (set->val.nodes[0].type) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 600 | case LYXP_NODE_NONE: |
| 601 | /* invalid */ |
| 602 | LOGINT_RET(set->ctx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 603 | case LYXP_NODE_ROOT: |
| 604 | case LYXP_NODE_ROOT_CONFIG: |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 605 | return cast_string_elem(set->val.nodes[0].node, 1, set->root_type, str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 606 | case LYXP_NODE_ELEM: |
| 607 | case LYXP_NODE_TEXT: |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 608 | return cast_string_elem(set->val.nodes[0].node, 0, set->root_type, str); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 609 | case LYXP_NODE_META: |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 610 | *str = strdup(lyd_get_meta_value(set->val.meta[0].meta)); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 611 | if (!*str) { |
| 612 | LOGMEM_RET(set->ctx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 613 | } |
| 614 | return LY_SUCCESS; |
| 615 | } |
| 616 | |
| 617 | LOGINT_RET(set->ctx); |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * @brief Cast a string into an XPath number. |
| 622 | * |
| 623 | * @param[in] str String to use. |
| 624 | * @return Cast number. |
| 625 | */ |
| 626 | static long double |
| 627 | cast_string_to_number(const char *str) |
| 628 | { |
| 629 | long double num; |
| 630 | char *ptr; |
| 631 | |
| 632 | errno = 0; |
| 633 | num = strtold(str, &ptr); |
| 634 | if (errno || *ptr) { |
| 635 | num = NAN; |
| 636 | } |
| 637 | return num; |
| 638 | } |
| 639 | |
| 640 | /** |
| 641 | * @brief Callback for checking value equality. |
| 642 | * |
Michal Vasko | 62524a9 | 2021-02-26 10:08:50 +0100 | [diff] [blame] | 643 | * Implementation of ::lyht_value_equal_cb. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 644 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 645 | * @param[in] val1_p First value. |
| 646 | * @param[in] val2_p Second value. |
| 647 | * @param[in] mod Whether hash table is being modified. |
| 648 | * @param[in] cb_data Callback data. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 649 | * @return Boolean value whether values are equal or not. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 650 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 651 | static ly_bool |
| 652 | set_values_equal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data)) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 653 | { |
| 654 | struct lyxp_set_hash_node *val1, *val2; |
| 655 | |
| 656 | val1 = (struct lyxp_set_hash_node *)val1_p; |
| 657 | val2 = (struct lyxp_set_hash_node *)val2_p; |
| 658 | |
| 659 | if ((val1->node == val2->node) && (val1->type == val2->type)) { |
| 660 | return 1; |
| 661 | } |
| 662 | |
| 663 | return 0; |
| 664 | } |
| 665 | |
| 666 | /** |
| 667 | * @brief Insert node and its hash into set. |
| 668 | * |
| 669 | * @param[in] set et to insert to. |
| 670 | * @param[in] node Node with hash. |
| 671 | * @param[in] type Node type. |
| 672 | */ |
| 673 | static void |
| 674 | set_insert_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type) |
| 675 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 676 | LY_ERR r; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 677 | uint32_t i, hash; |
| 678 | struct lyxp_set_hash_node hnode; |
| 679 | |
| 680 | if (!set->ht && (set->used >= LYD_HT_MIN_ITEMS)) { |
| 681 | /* create hash table and add all the nodes */ |
| 682 | set->ht = lyht_new(1, sizeof(struct lyxp_set_hash_node), set_values_equal_cb, NULL, 1); |
| 683 | for (i = 0; i < set->used; ++i) { |
| 684 | hnode.node = set->val.nodes[i].node; |
| 685 | hnode.type = set->val.nodes[i].type; |
| 686 | |
| 687 | hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node); |
| 688 | hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type); |
| 689 | hash = dict_hash_multi(hash, NULL, 0); |
| 690 | |
| 691 | r = lyht_insert(set->ht, &hnode, hash, NULL); |
| 692 | assert(!r); |
| 693 | (void)r; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 694 | |
Michal Vasko | 9d6befd | 2019-12-11 14:56:56 +0100 | [diff] [blame] | 695 | if (hnode.node == node) { |
| 696 | /* it was just added, do not add it twice */ |
| 697 | node = NULL; |
| 698 | } |
| 699 | } |
| 700 | } |
| 701 | |
| 702 | if (set->ht && node) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 703 | /* add the new node into hash table */ |
| 704 | hnode.node = node; |
| 705 | hnode.type = type; |
| 706 | |
| 707 | hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node); |
| 708 | hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type); |
| 709 | hash = dict_hash_multi(hash, NULL, 0); |
| 710 | |
| 711 | r = lyht_insert(set->ht, &hnode, hash, NULL); |
| 712 | assert(!r); |
| 713 | (void)r; |
| 714 | } |
| 715 | } |
| 716 | |
| 717 | /** |
| 718 | * @brief Remove node and its hash from set. |
| 719 | * |
| 720 | * @param[in] set Set to remove from. |
| 721 | * @param[in] node Node to remove. |
| 722 | * @param[in] type Node type. |
| 723 | */ |
| 724 | static void |
| 725 | set_remove_node_hash(struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type) |
| 726 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 727 | LY_ERR r; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 728 | struct lyxp_set_hash_node hnode; |
| 729 | uint32_t hash; |
| 730 | |
| 731 | if (set->ht) { |
| 732 | hnode.node = node; |
| 733 | hnode.type = type; |
| 734 | |
| 735 | hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node); |
| 736 | hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type); |
| 737 | hash = dict_hash_multi(hash, NULL, 0); |
| 738 | |
| 739 | r = lyht_remove(set->ht, &hnode, hash); |
| 740 | assert(!r); |
| 741 | (void)r; |
| 742 | |
| 743 | if (!set->ht->used) { |
| 744 | lyht_free(set->ht); |
| 745 | set->ht = NULL; |
| 746 | } |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * @brief Check whether node is in set based on its hash. |
| 752 | * |
| 753 | * @param[in] set Set to search in. |
| 754 | * @param[in] node Node to search for. |
| 755 | * @param[in] type Node type. |
| 756 | * @param[in] skip_idx Index in @p set to skip. |
| 757 | * @return LY_ERR |
| 758 | */ |
| 759 | static LY_ERR |
| 760 | set_dup_node_hash_check(const struct lyxp_set *set, struct lyd_node *node, enum lyxp_node_type type, int skip_idx) |
| 761 | { |
| 762 | struct lyxp_set_hash_node hnode, *match_p; |
| 763 | uint32_t hash; |
| 764 | |
| 765 | hnode.node = node; |
| 766 | hnode.type = type; |
| 767 | |
| 768 | hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node); |
| 769 | hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type); |
| 770 | hash = dict_hash_multi(hash, NULL, 0); |
| 771 | |
| 772 | if (!lyht_find(set->ht, &hnode, hash, (void **)&match_p)) { |
| 773 | if ((skip_idx > -1) && (set->val.nodes[skip_idx].node == match_p->node) && (set->val.nodes[skip_idx].type == match_p->type)) { |
| 774 | /* we found it on the index that should be skipped, find another */ |
| 775 | hnode = *match_p; |
| 776 | if (lyht_find_next(set->ht, &hnode, hash, (void **)&match_p)) { |
| 777 | /* none other found */ |
| 778 | return LY_SUCCESS; |
| 779 | } |
| 780 | } |
| 781 | |
| 782 | return LY_EEXIST; |
| 783 | } |
| 784 | |
| 785 | /* not found */ |
| 786 | return LY_SUCCESS; |
| 787 | } |
| 788 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 789 | void |
| 790 | lyxp_set_free_content(struct lyxp_set *set) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 791 | { |
| 792 | if (!set) { |
| 793 | return; |
| 794 | } |
| 795 | |
| 796 | if (set->type == LYXP_SET_NODE_SET) { |
| 797 | free(set->val.nodes); |
| 798 | lyht_free(set->ht); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 799 | } else if (set->type == LYXP_SET_SCNODE_SET) { |
| 800 | free(set->val.scnodes); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 801 | lyht_free(set->ht); |
| 802 | } else { |
| 803 | if (set->type == LYXP_SET_STRING) { |
| 804 | free(set->val.str); |
| 805 | } |
| 806 | set->type = LYXP_SET_NODE_SET; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 807 | } |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 808 | |
| 809 | set->val.nodes = NULL; |
| 810 | set->used = 0; |
| 811 | set->size = 0; |
| 812 | set->ht = NULL; |
| 813 | set->ctx_pos = 0; |
aPiecek | 748da73 | 2021-06-01 09:56:43 +0200 | [diff] [blame] | 814 | set->ctx_size = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 815 | } |
| 816 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 817 | /** |
| 818 | * @brief Free dynamically-allocated set. |
| 819 | * |
| 820 | * @param[in] set Set to free. |
| 821 | */ |
| 822 | static void |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 823 | lyxp_set_free(struct lyxp_set *set) |
| 824 | { |
| 825 | if (!set) { |
| 826 | return; |
| 827 | } |
| 828 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 829 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 830 | free(set); |
| 831 | } |
| 832 | |
| 833 | /** |
| 834 | * @brief Initialize set context. |
| 835 | * |
| 836 | * @param[in] new Set to initialize. |
| 837 | * @param[in] set Arbitrary initialized set. |
| 838 | */ |
| 839 | static void |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 840 | set_init(struct lyxp_set *new, const struct lyxp_set *set) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 841 | { |
| 842 | memset(new, 0, sizeof *new); |
Michal Vasko | 02a7738 | 2019-09-12 11:47:35 +0200 | [diff] [blame] | 843 | if (set) { |
| 844 | new->ctx = set->ctx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 845 | new->cur_node = set->cur_node; |
Michal Vasko | 588112f | 2019-12-10 14:51:53 +0100 | [diff] [blame] | 846 | new->root_type = set->root_type; |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 847 | new->context_op = set->context_op; |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 848 | new->tree = set->tree; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 849 | new->cur_mod = set->cur_mod; |
Michal Vasko | 02a7738 | 2019-09-12 11:47:35 +0200 | [diff] [blame] | 850 | new->format = set->format; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 851 | new->prefix_data = set->prefix_data; |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 852 | new->vars = set->vars; |
Michal Vasko | 02a7738 | 2019-09-12 11:47:35 +0200 | [diff] [blame] | 853 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | /** |
| 857 | * @brief Create a deep copy of a set. |
| 858 | * |
| 859 | * @param[in] set Set to copy. |
| 860 | * @return Copy of @p set. |
| 861 | */ |
| 862 | static struct lyxp_set * |
| 863 | set_copy(struct lyxp_set *set) |
| 864 | { |
| 865 | struct lyxp_set *ret; |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 866 | uint32_t i; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 867 | |
| 868 | if (!set) { |
| 869 | return NULL; |
| 870 | } |
| 871 | |
| 872 | ret = malloc(sizeof *ret); |
| 873 | LY_CHECK_ERR_RET(!ret, LOGMEM(set->ctx), NULL); |
| 874 | set_init(ret, set); |
| 875 | |
| 876 | if (set->type == LYXP_SET_SCNODE_SET) { |
| 877 | ret->type = set->type; |
| 878 | |
| 879 | for (i = 0; i < set->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 880 | if ((set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) || |
| 881 | (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START)) { |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 882 | uint32_t idx; |
| 883 | LY_CHECK_ERR_RET(lyxp_set_scnode_insert_node(ret, set->val.scnodes[i].scnode, set->val.scnodes[i].type, &idx), |
| 884 | lyxp_set_free(ret), NULL); |
Michal Vasko | 3f27c52 | 2020-01-06 08:37:49 +0100 | [diff] [blame] | 885 | /* coverity seems to think scnodes can be NULL */ |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 886 | if (!ret->val.scnodes) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 887 | lyxp_set_free(ret); |
| 888 | return NULL; |
| 889 | } |
Michal Vasko | ba71654 | 2019-12-16 10:01:58 +0100 | [diff] [blame] | 890 | ret->val.scnodes[idx].in_ctx = set->val.scnodes[i].in_ctx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 891 | } |
| 892 | } |
| 893 | } else if (set->type == LYXP_SET_NODE_SET) { |
| 894 | ret->type = set->type; |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 895 | if (set->used) { |
| 896 | ret->val.nodes = malloc(set->used * sizeof *ret->val.nodes); |
| 897 | LY_CHECK_ERR_RET(!ret->val.nodes, LOGMEM(set->ctx); free(ret), NULL); |
| 898 | memcpy(ret->val.nodes, set->val.nodes, set->used * sizeof *ret->val.nodes); |
| 899 | } else { |
| 900 | ret->val.nodes = NULL; |
| 901 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 902 | |
| 903 | ret->used = ret->size = set->used; |
| 904 | ret->ctx_pos = set->ctx_pos; |
| 905 | ret->ctx_size = set->ctx_size; |
Michal Vasko | 4a04e54 | 2021-02-01 08:58:30 +0100 | [diff] [blame] | 906 | if (set->ht) { |
| 907 | ret->ht = lyht_dup(set->ht); |
| 908 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 909 | } else { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 910 | memcpy(ret, set, sizeof *ret); |
| 911 | if (set->type == LYXP_SET_STRING) { |
| 912 | ret->val.str = strdup(set->val.str); |
| 913 | LY_CHECK_ERR_RET(!ret->val.str, LOGMEM(set->ctx); free(ret), NULL); |
| 914 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | return ret; |
| 918 | } |
| 919 | |
| 920 | /** |
| 921 | * @brief Fill XPath set with a string. Any current data are disposed of. |
| 922 | * |
| 923 | * @param[in] set Set to fill. |
| 924 | * @param[in] string String to fill into \p set. |
| 925 | * @param[in] str_len Length of \p string. 0 is a valid value! |
| 926 | */ |
| 927 | static void |
| 928 | set_fill_string(struct lyxp_set *set, const char *string, uint16_t str_len) |
| 929 | { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 930 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 931 | |
| 932 | set->type = LYXP_SET_STRING; |
| 933 | if ((str_len == 0) && (string[0] != '\0')) { |
| 934 | string = ""; |
| 935 | } |
| 936 | set->val.str = strndup(string, str_len); |
| 937 | } |
| 938 | |
| 939 | /** |
| 940 | * @brief Fill XPath set with a number. Any current data are disposed of. |
| 941 | * |
| 942 | * @param[in] set Set to fill. |
| 943 | * @param[in] number Number to fill into \p set. |
| 944 | */ |
| 945 | static void |
| 946 | set_fill_number(struct lyxp_set *set, long double number) |
| 947 | { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 948 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 949 | |
| 950 | set->type = LYXP_SET_NUMBER; |
| 951 | set->val.num = number; |
| 952 | } |
| 953 | |
| 954 | /** |
| 955 | * @brief Fill XPath set with a boolean. Any current data are disposed of. |
| 956 | * |
| 957 | * @param[in] set Set to fill. |
| 958 | * @param[in] boolean Boolean to fill into \p set. |
| 959 | */ |
| 960 | static void |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 961 | set_fill_boolean(struct lyxp_set *set, ly_bool boolean) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 962 | { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 963 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 964 | |
| 965 | set->type = LYXP_SET_BOOLEAN; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 966 | set->val.bln = boolean; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | /** |
| 970 | * @brief Fill XPath set with the value from another set (deep assign). |
| 971 | * Any current data are disposed of. |
| 972 | * |
| 973 | * @param[in] trg Set to fill. |
| 974 | * @param[in] src Source set to copy into \p trg. |
| 975 | */ |
| 976 | static void |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 977 | set_fill_set(struct lyxp_set *trg, const struct lyxp_set *src) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 978 | { |
| 979 | if (!trg || !src) { |
| 980 | return; |
| 981 | } |
| 982 | |
| 983 | if (trg->type == LYXP_SET_NODE_SET) { |
| 984 | free(trg->val.nodes); |
| 985 | } else if (trg->type == LYXP_SET_STRING) { |
| 986 | free(trg->val.str); |
| 987 | } |
| 988 | set_init(trg, src); |
| 989 | |
| 990 | if (src->type == LYXP_SET_SCNODE_SET) { |
| 991 | trg->type = LYXP_SET_SCNODE_SET; |
| 992 | trg->used = src->used; |
| 993 | trg->size = src->used; |
| 994 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 995 | if (trg->size) { |
| 996 | trg->val.scnodes = ly_realloc(trg->val.scnodes, trg->size * sizeof *trg->val.scnodes); |
| 997 | LY_CHECK_ERR_RET(!trg->val.scnodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), ); |
| 998 | memcpy(trg->val.scnodes, src->val.scnodes, src->used * sizeof *src->val.scnodes); |
| 999 | } else { |
| 1000 | trg->val.scnodes = NULL; |
| 1001 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1002 | } else if (src->type == LYXP_SET_BOOLEAN) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1003 | set_fill_boolean(trg, src->val.bln); |
Michal Vasko | 44f3d2c | 2020-08-24 09:49:38 +0200 | [diff] [blame] | 1004 | } else if (src->type == LYXP_SET_NUMBER) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1005 | set_fill_number(trg, src->val.num); |
| 1006 | } else if (src->type == LYXP_SET_STRING) { |
| 1007 | set_fill_string(trg, src->val.str, strlen(src->val.str)); |
| 1008 | } else { |
| 1009 | if (trg->type == LYXP_SET_NODE_SET) { |
| 1010 | free(trg->val.nodes); |
| 1011 | } else if (trg->type == LYXP_SET_STRING) { |
| 1012 | free(trg->val.str); |
| 1013 | } |
| 1014 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1015 | assert(src->type == LYXP_SET_NODE_SET); |
| 1016 | |
| 1017 | trg->type = LYXP_SET_NODE_SET; |
| 1018 | trg->used = src->used; |
| 1019 | trg->size = src->used; |
| 1020 | trg->ctx_pos = src->ctx_pos; |
| 1021 | trg->ctx_size = src->ctx_size; |
| 1022 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 1023 | if (trg->size) { |
| 1024 | trg->val.nodes = malloc(trg->size * sizeof *trg->val.nodes); |
| 1025 | LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx); memset(trg, 0, sizeof *trg), ); |
| 1026 | memcpy(trg->val.nodes, src->val.nodes, src->used * sizeof *src->val.nodes); |
| 1027 | } else { |
| 1028 | trg->val.nodes = NULL; |
| 1029 | } |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1030 | if (src->ht) { |
| 1031 | trg->ht = lyht_dup(src->ht); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1032 | } else { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1033 | trg->ht = NULL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | } |
| 1037 | |
| 1038 | /** |
| 1039 | * @brief Clear context of all schema nodes. |
| 1040 | * |
| 1041 | * @param[in] set Set to clear. |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 1042 | * @param[in] new_ctx New context state for all the nodes currently in the context. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1043 | */ |
| 1044 | static void |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 1045 | set_scnode_clear_ctx(struct lyxp_set *set, int32_t new_ctx) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1046 | { |
| 1047 | uint32_t i; |
| 1048 | |
| 1049 | for (i = 0; i < set->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1050 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 1051 | set->val.scnodes[i].in_ctx = new_ctx; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1052 | } else if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_START) { |
| 1053 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1054 | } |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | /** |
| 1059 | * @brief Remove a node from a set. Removing last node changes |
| 1060 | * set into LYXP_SET_EMPTY. Context position aware. |
| 1061 | * |
| 1062 | * @param[in] set Set to use. |
| 1063 | * @param[in] idx Index from @p set of the node to be removed. |
| 1064 | */ |
| 1065 | static void |
| 1066 | set_remove_node(struct lyxp_set *set, uint32_t idx) |
| 1067 | { |
| 1068 | assert(set && (set->type == LYXP_SET_NODE_SET)); |
| 1069 | assert(idx < set->used); |
| 1070 | |
| 1071 | set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type); |
| 1072 | |
| 1073 | --set->used; |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 1074 | if (idx < set->used) { |
| 1075 | memmove(&set->val.nodes[idx], &set->val.nodes[idx + 1], (set->used - idx) * sizeof *set->val.nodes); |
| 1076 | } else if (!set->used) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1077 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1078 | } |
| 1079 | } |
| 1080 | |
| 1081 | /** |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1082 | * @brief Remove a node from a set by setting its type to LYXP_NODE_NONE. |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1083 | * |
| 1084 | * @param[in] set Set to use. |
| 1085 | * @param[in] idx Index from @p set of the node to be removed. |
| 1086 | */ |
| 1087 | static void |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1088 | set_remove_node_none(struct lyxp_set *set, uint32_t idx) |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1089 | { |
| 1090 | assert(set && (set->type == LYXP_SET_NODE_SET)); |
| 1091 | assert(idx < set->used); |
| 1092 | |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1093 | if (set->val.nodes[idx].type == LYXP_NODE_ELEM) { |
| 1094 | set_remove_node_hash(set, set->val.nodes[idx].node, set->val.nodes[idx].type); |
| 1095 | } |
| 1096 | set->val.nodes[idx].type = LYXP_NODE_NONE; |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | /** |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1100 | * @brief Remove all LYXP_NODE_NONE nodes from a set. Removing last node changes |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1101 | * set into LYXP_SET_EMPTY. Context position aware. |
| 1102 | * |
| 1103 | * @param[in] set Set to consolidate. |
| 1104 | */ |
| 1105 | static void |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1106 | set_remove_nodes_none(struct lyxp_set *set) |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1107 | { |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 1108 | uint32_t i, orig_used, end = 0; |
| 1109 | int64_t start; |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1110 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1111 | assert(set); |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1112 | |
| 1113 | orig_used = set->used; |
| 1114 | set->used = 0; |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1115 | for (i = 0; i < orig_used; ) { |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1116 | start = -1; |
| 1117 | do { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1118 | if ((set->val.nodes[i].type != LYXP_NODE_NONE) && (start == -1)) { |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1119 | start = i; |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1120 | } else if ((start > -1) && (set->val.nodes[i].type == LYXP_NODE_NONE)) { |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1121 | end = i; |
| 1122 | ++i; |
| 1123 | break; |
| 1124 | } |
| 1125 | |
| 1126 | ++i; |
| 1127 | if (i == orig_used) { |
| 1128 | end = i; |
| 1129 | } |
| 1130 | } while (i < orig_used); |
| 1131 | |
| 1132 | if (start > -1) { |
| 1133 | /* move the whole chunk of valid nodes together */ |
| 1134 | if (set->used != (unsigned)start) { |
| 1135 | memmove(&set->val.nodes[set->used], &set->val.nodes[start], (end - start) * sizeof *set->val.nodes); |
| 1136 | } |
| 1137 | set->used += end - start; |
| 1138 | } |
| 1139 | } |
Michal Vasko | 57eab13 | 2019-09-24 11:46:26 +0200 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1143 | * @brief Check for duplicates in a node set. |
| 1144 | * |
| 1145 | * @param[in] set Set to check. |
| 1146 | * @param[in] node Node to look for in @p set. |
| 1147 | * @param[in] node_type Type of @p node. |
| 1148 | * @param[in] skip_idx Index from @p set to skip. |
| 1149 | * @return LY_ERR |
| 1150 | */ |
| 1151 | static LY_ERR |
| 1152 | set_dup_node_check(const struct lyxp_set *set, const struct lyd_node *node, enum lyxp_node_type node_type, int skip_idx) |
| 1153 | { |
| 1154 | uint32_t i; |
| 1155 | |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 1156 | if (set->ht && node) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1157 | return set_dup_node_hash_check(set, (struct lyd_node *)node, node_type, skip_idx); |
| 1158 | } |
| 1159 | |
| 1160 | for (i = 0; i < set->used; ++i) { |
| 1161 | if ((skip_idx > -1) && (i == (unsigned)skip_idx)) { |
| 1162 | continue; |
| 1163 | } |
| 1164 | |
| 1165 | if ((set->val.nodes[i].node == node) && (set->val.nodes[i].type == node_type)) { |
| 1166 | return LY_EEXIST; |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | return LY_SUCCESS; |
| 1171 | } |
| 1172 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1173 | ly_bool |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1174 | lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, int skip_idx, |
| 1175 | uint32_t *index_p) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1176 | { |
| 1177 | uint32_t i; |
| 1178 | |
| 1179 | for (i = 0; i < set->used; ++i) { |
| 1180 | if ((skip_idx > -1) && (i == (unsigned)skip_idx)) { |
| 1181 | continue; |
| 1182 | } |
| 1183 | |
| 1184 | if ((set->val.scnodes[i].scnode == node) && (set->val.scnodes[i].type == node_type)) { |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1185 | if (index_p) { |
| 1186 | *index_p = i; |
| 1187 | } |
| 1188 | return 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1189 | } |
| 1190 | } |
| 1191 | |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1192 | return 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1193 | } |
| 1194 | |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 1195 | void |
| 1196 | lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1197 | { |
| 1198 | uint32_t orig_used, i, j; |
| 1199 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1200 | assert((set1->type == LYXP_SET_SCNODE_SET) && (set2->type == LYXP_SET_SCNODE_SET)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1201 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1202 | if (!set2->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1203 | return; |
| 1204 | } |
| 1205 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1206 | if (!set1->used) { |
aPiecek | adc1e4f | 2021-10-07 11:15:12 +0200 | [diff] [blame] | 1207 | /* release hidden allocated data (lyxp_set.size) */ |
| 1208 | lyxp_set_free_content(set1); |
| 1209 | /* direct copying of the entire structure */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1210 | memcpy(set1, set2, sizeof *set1); |
| 1211 | return; |
| 1212 | } |
| 1213 | |
| 1214 | if (set1->used + set2->used > set1->size) { |
| 1215 | set1->size = set1->used + set2->used; |
| 1216 | set1->val.scnodes = ly_realloc(set1->val.scnodes, set1->size * sizeof *set1->val.scnodes); |
| 1217 | LY_CHECK_ERR_RET(!set1->val.scnodes, LOGMEM(set1->ctx), ); |
| 1218 | } |
| 1219 | |
| 1220 | orig_used = set1->used; |
| 1221 | |
| 1222 | for (i = 0; i < set2->used; ++i) { |
| 1223 | for (j = 0; j < orig_used; ++j) { |
| 1224 | /* detect duplicities */ |
| 1225 | if (set1->val.scnodes[j].scnode == set2->val.scnodes[i].scnode) { |
| 1226 | break; |
| 1227 | } |
| 1228 | } |
| 1229 | |
Michal Vasko | 0587bce | 2020-12-10 12:19:21 +0100 | [diff] [blame] | 1230 | if (j < orig_used) { |
| 1231 | /* node is there, but update its status if needed */ |
| 1232 | if (set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_START_USED) { |
| 1233 | set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx; |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 1234 | } else if ((set1->val.scnodes[j].in_ctx == LYXP_SET_SCNODE_ATOM_NODE) && |
| 1235 | (set2->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_VAL)) { |
| 1236 | set1->val.scnodes[j].in_ctx = set2->val.scnodes[i].in_ctx; |
Michal Vasko | 0587bce | 2020-12-10 12:19:21 +0100 | [diff] [blame] | 1237 | } |
| 1238 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1239 | memcpy(&set1->val.scnodes[set1->used], &set2->val.scnodes[i], sizeof *set2->val.scnodes); |
| 1240 | ++set1->used; |
| 1241 | } |
| 1242 | } |
| 1243 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1244 | lyxp_set_free_content(set2); |
| 1245 | set2->type = LYXP_SET_SCNODE_SET; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | /** |
| 1249 | * @brief Insert a node into a set. Context position aware. |
| 1250 | * |
| 1251 | * @param[in] set Set to use. |
| 1252 | * @param[in] node Node to insert to @p set. |
| 1253 | * @param[in] pos Sort position of @p node. If left 0, it is filled just before sorting. |
| 1254 | * @param[in] node_type Node type of @p node. |
| 1255 | * @param[in] idx Index in @p set to insert into. |
| 1256 | */ |
| 1257 | static void |
| 1258 | set_insert_node(struct lyxp_set *set, const struct lyd_node *node, uint32_t pos, enum lyxp_node_type node_type, uint32_t idx) |
| 1259 | { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1260 | assert(set && (set->type == LYXP_SET_NODE_SET)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1261 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1262 | if (!set->size) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1263 | /* first item */ |
| 1264 | if (idx) { |
| 1265 | /* no real harm done, but it is a bug */ |
| 1266 | LOGINT(set->ctx); |
| 1267 | idx = 0; |
| 1268 | } |
| 1269 | set->val.nodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.nodes); |
| 1270 | LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), ); |
| 1271 | set->type = LYXP_SET_NODE_SET; |
| 1272 | set->used = 0; |
| 1273 | set->size = LYXP_SET_SIZE_START; |
| 1274 | set->ctx_pos = 1; |
| 1275 | set->ctx_size = 1; |
| 1276 | set->ht = NULL; |
| 1277 | } else { |
| 1278 | /* not an empty set */ |
| 1279 | if (set->used == set->size) { |
| 1280 | |
| 1281 | /* set is full */ |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 1282 | set->val.nodes = ly_realloc(set->val.nodes, (set->size * LYXP_SET_SIZE_MUL_STEP) * sizeof *set->val.nodes); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1283 | LY_CHECK_ERR_RET(!set->val.nodes, LOGMEM(set->ctx), ); |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 1284 | set->size *= LYXP_SET_SIZE_MUL_STEP; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | if (idx > set->used) { |
| 1288 | LOGINT(set->ctx); |
| 1289 | idx = set->used; |
| 1290 | } |
| 1291 | |
| 1292 | /* make space for the new node */ |
| 1293 | if (idx < set->used) { |
| 1294 | memmove(&set->val.nodes[idx + 1], &set->val.nodes[idx], (set->used - idx) * sizeof *set->val.nodes); |
| 1295 | } |
| 1296 | } |
| 1297 | |
| 1298 | /* finally assign the value */ |
| 1299 | set->val.nodes[idx].node = (struct lyd_node *)node; |
| 1300 | set->val.nodes[idx].type = node_type; |
| 1301 | set->val.nodes[idx].pos = pos; |
| 1302 | ++set->used; |
| 1303 | |
Michal Vasko | 2416fdd | 2021-10-01 11:07:10 +0200 | [diff] [blame] | 1304 | /* add into hash table */ |
| 1305 | set_insert_node_hash(set, (struct lyd_node *)node, node_type); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1306 | } |
| 1307 | |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1308 | LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 1309 | lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, |
| 1310 | uint32_t *index_p) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1311 | { |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1312 | uint32_t index; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1313 | |
| 1314 | assert(set->type == LYXP_SET_SCNODE_SET); |
| 1315 | |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 1316 | if (!set->size) { |
| 1317 | /* first item */ |
| 1318 | set->val.scnodes = malloc(LYXP_SET_SIZE_START * sizeof *set->val.scnodes); |
| 1319 | LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM); |
| 1320 | set->type = LYXP_SET_SCNODE_SET; |
| 1321 | set->used = 0; |
| 1322 | set->size = LYXP_SET_SIZE_START; |
| 1323 | set->ctx_pos = 1; |
| 1324 | set->ctx_size = 1; |
| 1325 | set->ht = NULL; |
| 1326 | } |
| 1327 | |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1328 | if (lyxp_set_scnode_contains(set, node, node_type, -1, &index)) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1329 | set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1330 | } else { |
| 1331 | if (set->used == set->size) { |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 1332 | set->val.scnodes = ly_realloc(set->val.scnodes, (set->size * LYXP_SET_SIZE_MUL_STEP) * sizeof *set->val.scnodes); |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1333 | LY_CHECK_ERR_RET(!set->val.scnodes, LOGMEM(set->ctx), LY_EMEM); |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 1334 | set->size *= LYXP_SET_SIZE_MUL_STEP; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1335 | } |
| 1336 | |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1337 | index = set->used; |
| 1338 | set->val.scnodes[index].scnode = (struct lysc_node *)node; |
| 1339 | set->val.scnodes[index].type = node_type; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1340 | set->val.scnodes[index].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1341 | ++set->used; |
| 1342 | } |
| 1343 | |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 1344 | if (index_p) { |
| 1345 | *index_p = index; |
| 1346 | } |
| 1347 | |
| 1348 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1349 | } |
| 1350 | |
| 1351 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1352 | * @brief Set all nodes with ctx 1 to a new unique context value. |
| 1353 | * |
| 1354 | * @param[in] set Set to modify. |
| 1355 | * @return New context value. |
| 1356 | */ |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 1357 | static int32_t |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1358 | set_scnode_new_in_ctx(struct lyxp_set *set) |
| 1359 | { |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 1360 | uint32_t i; |
| 1361 | int32_t ret_ctx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1362 | |
| 1363 | assert(set->type == LYXP_SET_SCNODE_SET); |
| 1364 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1365 | ret_ctx = LYXP_SET_SCNODE_ATOM_PRED_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1366 | retry: |
| 1367 | for (i = 0; i < set->used; ++i) { |
| 1368 | if (set->val.scnodes[i].in_ctx >= ret_ctx) { |
| 1369 | ret_ctx = set->val.scnodes[i].in_ctx + 1; |
| 1370 | goto retry; |
| 1371 | } |
| 1372 | } |
| 1373 | for (i = 0; i < set->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1374 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1375 | set->val.scnodes[i].in_ctx = ret_ctx; |
| 1376 | } |
| 1377 | } |
| 1378 | |
| 1379 | return ret_ctx; |
| 1380 | } |
| 1381 | |
| 1382 | /** |
| 1383 | * @brief Get unique @p node position in the data. |
| 1384 | * |
| 1385 | * @param[in] node Node to find. |
| 1386 | * @param[in] node_type Node type of @p node. |
| 1387 | * @param[in] root Root node. |
| 1388 | * @param[in] root_type Type of the XPath @p root node. |
| 1389 | * @param[in] prev Node that we think is before @p node in DFS from @p root. Can optionally |
| 1390 | * be used to increase efficiency and start the DFS from this node. |
| 1391 | * @param[in] prev_pos Node @p prev position. Optional, but must be set if @p prev is set. |
| 1392 | * @return Node position. |
| 1393 | */ |
| 1394 | static uint32_t |
| 1395 | get_node_pos(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyd_node *root, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1396 | enum lyxp_node_type root_type, const struct lyd_node **prev, uint32_t *prev_pos) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1397 | { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1398 | const struct lyd_node *elem = NULL, *top_sibling; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1399 | uint32_t pos = 1; |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1400 | ly_bool found = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1401 | |
| 1402 | assert(prev && prev_pos && !root->prev->next); |
| 1403 | |
| 1404 | if ((node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ROOT_CONFIG)) { |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
| 1408 | if (*prev) { |
| 1409 | /* start from the previous element instead from the root */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1410 | pos = *prev_pos; |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1411 | for (top_sibling = *prev; top_sibling->parent; top_sibling = lyd_parent(top_sibling)) {} |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1412 | goto dfs_search; |
| 1413 | } |
| 1414 | |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1415 | LY_LIST_FOR(root, top_sibling) { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1416 | LYD_TREE_DFS_BEGIN(top_sibling, elem) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1417 | dfs_search: |
Michal Vasko | a9309bb | 2021-07-09 09:31:55 +0200 | [diff] [blame] | 1418 | LYD_TREE_DFS_continue = 0; |
| 1419 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1420 | if (*prev && !elem) { |
| 1421 | /* resume previous DFS */ |
| 1422 | elem = LYD_TREE_DFS_next = (struct lyd_node *)*prev; |
| 1423 | LYD_TREE_DFS_continue = 0; |
| 1424 | } |
| 1425 | |
Michal Vasko | 482a682 | 2022-05-06 08:56:12 +0200 | [diff] [blame] | 1426 | if (!elem->schema || ((root_type == LYXP_NODE_ROOT_CONFIG) && (elem->schema->flags & LYS_CONFIG_R))) { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1427 | /* skip */ |
| 1428 | LYD_TREE_DFS_continue = 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1429 | } else { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1430 | if (elem == node) { |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1431 | found = 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1432 | break; |
| 1433 | } |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1434 | ++pos; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1435 | } |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1436 | |
| 1437 | LYD_TREE_DFS_END(top_sibling, elem); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1438 | } |
| 1439 | |
| 1440 | /* node found */ |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1441 | if (found) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1442 | break; |
| 1443 | } |
| 1444 | } |
| 1445 | |
Michal Vasko | fb6c9dd | 2020-11-18 18:18:47 +0100 | [diff] [blame] | 1446 | if (!found) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1447 | if (!(*prev)) { |
| 1448 | /* we went from root and failed to find it, cannot be */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 1449 | LOGINT(LYD_CTX(node)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1450 | return 0; |
| 1451 | } else { |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1452 | /* start the search again from the beginning */ |
| 1453 | *prev = root; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1454 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 1455 | top_sibling = root; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1456 | pos = 1; |
| 1457 | goto dfs_search; |
| 1458 | } |
| 1459 | } |
| 1460 | |
| 1461 | /* remember the last found node for next time */ |
| 1462 | *prev = node; |
| 1463 | *prev_pos = pos; |
| 1464 | |
| 1465 | return pos; |
| 1466 | } |
| 1467 | |
| 1468 | /** |
| 1469 | * @brief Assign (fill) missing node positions. |
| 1470 | * |
| 1471 | * @param[in] set Set to fill positions in. |
| 1472 | * @param[in] root Context root node. |
| 1473 | * @param[in] root_type Context root type. |
| 1474 | * @return LY_ERR |
| 1475 | */ |
| 1476 | static LY_ERR |
| 1477 | set_assign_pos(struct lyxp_set *set, const struct lyd_node *root, enum lyxp_node_type root_type) |
| 1478 | { |
| 1479 | const struct lyd_node *prev = NULL, *tmp_node; |
| 1480 | uint32_t i, tmp_pos = 0; |
| 1481 | |
| 1482 | for (i = 0; i < set->used; ++i) { |
| 1483 | if (!set->val.nodes[i].pos) { |
| 1484 | tmp_node = NULL; |
| 1485 | switch (set->val.nodes[i].type) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1486 | case LYXP_NODE_META: |
| 1487 | tmp_node = set->val.meta[i].meta->parent; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1488 | if (!tmp_node) { |
| 1489 | LOGINT_RET(root->schema->module->ctx); |
| 1490 | } |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1491 | /* fall through */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1492 | case LYXP_NODE_ELEM: |
| 1493 | case LYXP_NODE_TEXT: |
| 1494 | if (!tmp_node) { |
| 1495 | tmp_node = set->val.nodes[i].node; |
| 1496 | } |
| 1497 | set->val.nodes[i].pos = get_node_pos(tmp_node, set->val.nodes[i].type, root, root_type, &prev, &tmp_pos); |
| 1498 | break; |
| 1499 | default: |
| 1500 | /* all roots have position 0 */ |
| 1501 | break; |
| 1502 | } |
| 1503 | } |
| 1504 | } |
| 1505 | |
| 1506 | return LY_SUCCESS; |
| 1507 | } |
| 1508 | |
| 1509 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1510 | * @brief Get unique @p meta position in the parent metadata. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1511 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1512 | * @param[in] meta Metadata to use. |
| 1513 | * @return Metadata position. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1514 | */ |
| 1515 | static uint16_t |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1516 | get_meta_pos(struct lyd_meta *meta) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1517 | { |
| 1518 | uint16_t pos = 0; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1519 | struct lyd_meta *meta2; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1520 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1521 | for (meta2 = meta->parent->meta; meta2 && (meta2 != meta); meta2 = meta2->next) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1522 | ++pos; |
| 1523 | } |
| 1524 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1525 | assert(meta2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1526 | return pos; |
| 1527 | } |
| 1528 | |
| 1529 | /** |
| 1530 | * @brief Compare 2 nodes in respect to XPath document order. |
| 1531 | * |
| 1532 | * @param[in] item1 1st node. |
| 1533 | * @param[in] item2 2nd node. |
| 1534 | * @return If 1st > 2nd returns 1, 1st == 2nd returns 0, and 1st < 2nd returns -1. |
| 1535 | */ |
| 1536 | static int |
| 1537 | set_sort_compare(struct lyxp_set_node *item1, struct lyxp_set_node *item2) |
| 1538 | { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1539 | uint32_t meta_pos1 = 0, meta_pos2 = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1540 | |
| 1541 | if (item1->pos < item2->pos) { |
| 1542 | return -1; |
| 1543 | } |
| 1544 | |
| 1545 | if (item1->pos > item2->pos) { |
| 1546 | return 1; |
| 1547 | } |
| 1548 | |
| 1549 | /* node positions are equal, the fun case */ |
| 1550 | |
| 1551 | /* 1st ELEM - == - 2nd TEXT, 1st TEXT - == - 2nd ELEM */ |
| 1552 | /* special case since text nodes are actually saved as their parents */ |
| 1553 | if ((item1->node == item2->node) && (item1->type != item2->type)) { |
| 1554 | if (item1->type == LYXP_NODE_ELEM) { |
| 1555 | assert(item2->type == LYXP_NODE_TEXT); |
| 1556 | return -1; |
| 1557 | } else { |
| 1558 | assert((item1->type == LYXP_NODE_TEXT) && (item2->type == LYXP_NODE_ELEM)); |
| 1559 | return 1; |
| 1560 | } |
| 1561 | } |
| 1562 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1563 | /* we need meta positions now */ |
| 1564 | if (item1->type == LYXP_NODE_META) { |
| 1565 | meta_pos1 = get_meta_pos((struct lyd_meta *)item1->node); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1566 | } |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1567 | if (item2->type == LYXP_NODE_META) { |
| 1568 | meta_pos2 = get_meta_pos((struct lyd_meta *)item2->node); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1569 | } |
| 1570 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1571 | /* 1st ROOT - 2nd ROOT, 1st ELEM - 2nd ELEM, 1st TEXT - 2nd TEXT, 1st META - =pos= - 2nd META */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1572 | /* check for duplicates */ |
| 1573 | if (item1->node == item2->node) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1574 | assert((item1->type == item2->type) && ((item1->type != LYXP_NODE_META) || (meta_pos1 == meta_pos2))); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1575 | return 0; |
| 1576 | } |
| 1577 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1578 | /* 1st ELEM - 2nd TEXT, 1st ELEM - any pos - 2nd META */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1579 | /* elem is always first, 2nd node is after it */ |
| 1580 | if (item1->type == LYXP_NODE_ELEM) { |
| 1581 | assert(item2->type != LYXP_NODE_ELEM); |
| 1582 | return -1; |
| 1583 | } |
| 1584 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1585 | /* 1st TEXT - 2nd ELEM, 1st TEXT - any pos - 2nd META, 1st META - any pos - 2nd ELEM, 1st META - >pos> - 2nd META */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1586 | /* 2nd is before 1st */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1587 | if (((item1->type == LYXP_NODE_TEXT) && |
| 1588 | ((item2->type == LYXP_NODE_ELEM) || (item2->type == LYXP_NODE_META))) || |
| 1589 | ((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_ELEM)) || |
| 1590 | (((item1->type == LYXP_NODE_META) && (item2->type == LYXP_NODE_META)) && |
| 1591 | (meta_pos1 > meta_pos2))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1592 | return 1; |
| 1593 | } |
| 1594 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 1595 | /* 1st META - any pos - 2nd TEXT, 1st META <pos< - 2nd META */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1596 | /* 2nd is after 1st */ |
| 1597 | return -1; |
| 1598 | } |
| 1599 | |
| 1600 | /** |
| 1601 | * @brief Set cast for comparisons. |
| 1602 | * |
| 1603 | * @param[in] trg Target set to cast source into. |
| 1604 | * @param[in] src Source set. |
| 1605 | * @param[in] type Target set type. |
| 1606 | * @param[in] src_idx Source set node index. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1607 | * @return LY_ERR |
| 1608 | */ |
| 1609 | static LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1610 | set_comp_cast(struct lyxp_set *trg, struct lyxp_set *src, enum lyxp_set_type type, uint32_t src_idx) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1611 | { |
| 1612 | assert(src->type == LYXP_SET_NODE_SET); |
| 1613 | |
| 1614 | set_init(trg, src); |
| 1615 | |
| 1616 | /* insert node into target set */ |
| 1617 | set_insert_node(trg, src->val.nodes[src_idx].node, src->val.nodes[src_idx].pos, src->val.nodes[src_idx].type, 0); |
| 1618 | |
| 1619 | /* cast target set appropriately */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1620 | return lyxp_set_cast(trg, type); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1621 | } |
| 1622 | |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1623 | /** |
| 1624 | * @brief Set content canonization for comparisons. |
| 1625 | * |
| 1626 | * @param[in] trg Target set to put the canononized source into. |
| 1627 | * @param[in] src Source set. |
| 1628 | * @param[in] xp_node Source XPath node/meta to use for canonization. |
| 1629 | * @return LY_ERR |
| 1630 | */ |
| 1631 | static LY_ERR |
| 1632 | set_comp_canonize(struct lyxp_set *trg, const struct lyxp_set *src, const struct lyxp_set_node *xp_node) |
| 1633 | { |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1634 | const struct lysc_type *type = NULL; |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1635 | struct lyd_value val; |
| 1636 | struct ly_err_item *err = NULL; |
| 1637 | char *str, *ptr; |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1638 | LY_ERR rc; |
| 1639 | |
| 1640 | /* is there anything to canonize even? */ |
| 1641 | if ((src->type == LYXP_SET_NUMBER) || (src->type == LYXP_SET_STRING)) { |
| 1642 | /* do we have a type to use for canonization? */ |
| 1643 | if ((xp_node->type == LYXP_NODE_ELEM) && (xp_node->node->schema->nodetype & LYD_NODE_TERM)) { |
| 1644 | type = ((struct lyd_node_term *)xp_node->node)->value.realtype; |
| 1645 | } else if (xp_node->type == LYXP_NODE_META) { |
| 1646 | type = ((struct lyd_meta *)xp_node->node)->value.realtype; |
| 1647 | } |
| 1648 | } |
| 1649 | if (!type) { |
| 1650 | goto fill; |
| 1651 | } |
| 1652 | |
| 1653 | if (src->type == LYXP_SET_NUMBER) { |
| 1654 | /* canonize number */ |
| 1655 | if (asprintf(&str, "%Lf", src->val.num) == -1) { |
| 1656 | LOGMEM(src->ctx); |
| 1657 | return LY_EMEM; |
| 1658 | } |
| 1659 | } else { |
| 1660 | /* canonize string */ |
| 1661 | str = strdup(src->val.str); |
| 1662 | } |
| 1663 | |
| 1664 | /* ignore errors, the value may not satisfy schema constraints */ |
Radek Krejci | 0b01330 | 2021-03-29 15:22:32 +0200 | [diff] [blame] | 1665 | rc = type->plugin->store(src->ctx, type, str, strlen(str), LYPLG_TYPE_STORE_DYNAMIC, src->format, src->prefix_data, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1666 | LYD_HINT_DATA, xp_node->node->schema, &val, NULL, &err); |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1667 | ly_err_free(err); |
| 1668 | if (rc) { |
| 1669 | /* invalid value */ |
Radek Iša | 4846022 | 2021-03-02 15:18:32 +0100 | [diff] [blame] | 1670 | /* function store automaticaly dealloc value when fail */ |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1671 | goto fill; |
| 1672 | } |
| 1673 | |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1674 | /* use the canonized value */ |
| 1675 | set_init(trg, src); |
| 1676 | trg->type = src->type; |
| 1677 | if (src->type == LYXP_SET_NUMBER) { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 1678 | trg->val.num = strtold(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL), &ptr); |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1679 | LY_CHECK_ERR_RET(ptr[0], LOGINT(src->ctx), LY_EINT); |
| 1680 | } else { |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 1681 | trg->val.str = strdup(type->plugin->print(src->ctx, &val, LY_VALUE_CANON, NULL, NULL, NULL)); |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 1682 | } |
| 1683 | type->plugin->free(src->ctx, &val); |
| 1684 | return LY_SUCCESS; |
| 1685 | |
| 1686 | fill: |
| 1687 | /* no canonization needed/possible */ |
| 1688 | set_fill_set(trg, src); |
| 1689 | return LY_SUCCESS; |
| 1690 | } |
| 1691 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1692 | /** |
| 1693 | * @brief Bubble sort @p set into XPath document order. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 1694 | * Context position aware. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1695 | * |
| 1696 | * @param[in] set Set to sort. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1697 | * @return How many times the whole set was traversed - 1 (if set was sorted, returns 0). |
| 1698 | */ |
| 1699 | static int |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1700 | set_sort(struct lyxp_set *set) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1701 | { |
| 1702 | uint32_t i, j; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1703 | int ret = 0, cmp; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1704 | ly_bool inverted, change; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1705 | const struct lyd_node *root; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1706 | struct lyxp_set_node item; |
| 1707 | struct lyxp_set_hash_node hnode; |
| 1708 | uint64_t hash; |
| 1709 | |
Michal Vasko | 3cf8fbf | 2020-05-27 15:21:21 +0200 | [diff] [blame] | 1710 | if ((set->type != LYXP_SET_NODE_SET) || (set->used < 2)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1711 | return 0; |
| 1712 | } |
| 1713 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1714 | /* find first top-level node to be used as anchor for positions */ |
Michal Vasko | 4a7d4d6 | 2021-12-13 17:05:06 +0100 | [diff] [blame] | 1715 | for (root = set->tree; root->parent; root = lyd_parent(root)) {} |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1716 | for ( ; root->prev->next; root = root->prev) {} |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1717 | |
| 1718 | /* fill positions */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1719 | if (set_assign_pos(set, root, set->root_type)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1720 | return -1; |
| 1721 | } |
| 1722 | |
Michal Vasko | 88a9e80 | 2022-05-24 10:50:28 +0200 | [diff] [blame^] | 1723 | #ifndef NDEBUG |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1724 | LOGDBG(LY_LDGXPATH, "SORT BEGIN"); |
| 1725 | print_set_debug(set); |
Michal Vasko | 88a9e80 | 2022-05-24 10:50:28 +0200 | [diff] [blame^] | 1726 | #endif |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1727 | |
| 1728 | for (i = 0; i < set->used; ++i) { |
| 1729 | inverted = 0; |
| 1730 | change = 0; |
| 1731 | |
| 1732 | for (j = 1; j < set->used - i; ++j) { |
| 1733 | /* compare node positions */ |
| 1734 | if (inverted) { |
| 1735 | cmp = set_sort_compare(&set->val.nodes[j], &set->val.nodes[j - 1]); |
| 1736 | } else { |
| 1737 | cmp = set_sort_compare(&set->val.nodes[j - 1], &set->val.nodes[j]); |
| 1738 | } |
| 1739 | |
| 1740 | /* swap if needed */ |
| 1741 | if ((inverted && (cmp < 0)) || (!inverted && (cmp > 0))) { |
| 1742 | change = 1; |
| 1743 | |
| 1744 | item = set->val.nodes[j - 1]; |
| 1745 | set->val.nodes[j - 1] = set->val.nodes[j]; |
| 1746 | set->val.nodes[j] = item; |
| 1747 | } else { |
| 1748 | /* whether node_pos1 should be smaller than node_pos2 or the other way around */ |
| 1749 | inverted = !inverted; |
| 1750 | } |
| 1751 | } |
| 1752 | |
| 1753 | ++ret; |
| 1754 | |
| 1755 | if (!change) { |
| 1756 | break; |
| 1757 | } |
| 1758 | } |
| 1759 | |
Michal Vasko | 88a9e80 | 2022-05-24 10:50:28 +0200 | [diff] [blame^] | 1760 | #ifndef NDEBUG |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1761 | LOGDBG(LY_LDGXPATH, "SORT END %d", ret); |
| 1762 | print_set_debug(set); |
Michal Vasko | 88a9e80 | 2022-05-24 10:50:28 +0200 | [diff] [blame^] | 1763 | #endif |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1764 | |
| 1765 | /* check node hashes */ |
| 1766 | if (set->used >= LYD_HT_MIN_ITEMS) { |
| 1767 | assert(set->ht); |
| 1768 | for (i = 0; i < set->used; ++i) { |
| 1769 | hnode.node = set->val.nodes[i].node; |
| 1770 | hnode.type = set->val.nodes[i].type; |
| 1771 | |
| 1772 | hash = dict_hash_multi(0, (const char *)&hnode.node, sizeof hnode.node); |
| 1773 | hash = dict_hash_multi(hash, (const char *)&hnode.type, sizeof hnode.type); |
| 1774 | hash = dict_hash_multi(hash, NULL, 0); |
| 1775 | |
| 1776 | assert(!lyht_find(set->ht, &hnode, hash, NULL)); |
| 1777 | } |
| 1778 | } |
| 1779 | |
| 1780 | return ret - 1; |
| 1781 | } |
| 1782 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1783 | /** |
| 1784 | * @brief Merge 2 sorted sets into one. |
| 1785 | * |
| 1786 | * @param[in,out] trg Set to merge into. Duplicates are removed. |
| 1787 | * @param[in] src Set to be merged into @p trg. It is cast to #LYXP_SET_EMPTY on success. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1788 | * @return LY_ERR |
| 1789 | */ |
| 1790 | static LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1791 | set_sorted_merge(struct lyxp_set *trg, struct lyxp_set *src) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1792 | { |
| 1793 | uint32_t i, j, k, count, dup_count; |
| 1794 | int cmp; |
| 1795 | const struct lyd_node *root; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1796 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1797 | if ((trg->type != LYXP_SET_NODE_SET) || (src->type != LYXP_SET_NODE_SET)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1798 | return LY_EINVAL; |
| 1799 | } |
| 1800 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1801 | if (!src->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1802 | return LY_SUCCESS; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1803 | } else if (!trg->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1804 | set_fill_set(trg, src); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1805 | lyxp_set_free_content(src); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1806 | return LY_SUCCESS; |
| 1807 | } |
| 1808 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1809 | /* find first top-level node to be used as anchor for positions */ |
Michal Vasko | 0143b68 | 2021-12-13 17:13:09 +0100 | [diff] [blame] | 1810 | for (root = trg->tree; root->parent; root = lyd_parent(root)) {} |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1811 | for ( ; root->prev->next; root = root->prev) {} |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1812 | |
| 1813 | /* fill positions */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 1814 | if (set_assign_pos(trg, root, trg->root_type) || set_assign_pos(src, root, src->root_type)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1815 | return LY_EINT; |
| 1816 | } |
| 1817 | |
| 1818 | #ifndef NDEBUG |
| 1819 | LOGDBG(LY_LDGXPATH, "MERGE target"); |
| 1820 | print_set_debug(trg); |
| 1821 | LOGDBG(LY_LDGXPATH, "MERGE source"); |
| 1822 | print_set_debug(src); |
| 1823 | #endif |
| 1824 | |
| 1825 | /* make memory for the merge (duplicates are not detected yet, so space |
| 1826 | * will likely be wasted on them, too bad) */ |
| 1827 | if (trg->size - trg->used < src->used) { |
| 1828 | trg->size = trg->used + src->used; |
| 1829 | |
| 1830 | trg->val.nodes = ly_realloc(trg->val.nodes, trg->size * sizeof *trg->val.nodes); |
| 1831 | LY_CHECK_ERR_RET(!trg->val.nodes, LOGMEM(src->ctx), LY_EMEM); |
| 1832 | } |
| 1833 | |
| 1834 | i = 0; |
| 1835 | j = 0; |
| 1836 | count = 0; |
| 1837 | dup_count = 0; |
| 1838 | do { |
| 1839 | cmp = set_sort_compare(&src->val.nodes[i], &trg->val.nodes[j]); |
| 1840 | if (!cmp) { |
| 1841 | if (!count) { |
| 1842 | /* duplicate, just skip it */ |
| 1843 | ++i; |
| 1844 | ++j; |
| 1845 | } else { |
| 1846 | /* we are copying something already, so let's copy the duplicate too, |
| 1847 | * we are hoping that afterwards there are some more nodes to |
| 1848 | * copy and this way we can copy them all together */ |
| 1849 | ++count; |
| 1850 | ++dup_count; |
| 1851 | ++i; |
| 1852 | ++j; |
| 1853 | } |
| 1854 | } else if (cmp < 0) { |
| 1855 | /* inserting src node into trg, just remember it for now */ |
| 1856 | ++count; |
| 1857 | ++i; |
| 1858 | |
| 1859 | /* insert the hash now */ |
| 1860 | set_insert_node_hash(trg, src->val.nodes[i - 1].node, src->val.nodes[i - 1].type); |
| 1861 | } else if (count) { |
| 1862 | copy_nodes: |
| 1863 | /* time to actually copy the nodes, we have found the largest block of nodes */ |
| 1864 | memmove(&trg->val.nodes[j + (count - dup_count)], |
| 1865 | &trg->val.nodes[j], |
| 1866 | (trg->used - j) * sizeof *trg->val.nodes); |
| 1867 | memcpy(&trg->val.nodes[j - dup_count], &src->val.nodes[i - count], count * sizeof *src->val.nodes); |
| 1868 | |
| 1869 | trg->used += count - dup_count; |
| 1870 | /* do not change i, except the copying above, we are basically doing exactly what is in the else branch below */ |
| 1871 | j += count - dup_count; |
| 1872 | |
| 1873 | count = 0; |
| 1874 | dup_count = 0; |
| 1875 | } else { |
| 1876 | ++j; |
| 1877 | } |
| 1878 | } while ((i < src->used) && (j < trg->used)); |
| 1879 | |
| 1880 | if ((i < src->used) || count) { |
| 1881 | /* insert all the hashes first */ |
| 1882 | for (k = i; k < src->used; ++k) { |
| 1883 | set_insert_node_hash(trg, src->val.nodes[k].node, src->val.nodes[k].type); |
| 1884 | } |
| 1885 | |
| 1886 | /* loop ended, but we need to copy something at trg end */ |
| 1887 | count += src->used - i; |
| 1888 | i = src->used; |
| 1889 | goto copy_nodes; |
| 1890 | } |
| 1891 | |
| 1892 | /* we are inserting hashes before the actual node insert, which causes |
| 1893 | * situations when there were initially not enough items for a hash table, |
| 1894 | * but even after some were inserted, hash table was not created (during |
| 1895 | * insertion the number of items is not updated yet) */ |
| 1896 | if (!trg->ht && (trg->used >= LYD_HT_MIN_ITEMS)) { |
| 1897 | set_insert_node_hash(trg, NULL, 0); |
| 1898 | } |
| 1899 | |
| 1900 | #ifndef NDEBUG |
| 1901 | LOGDBG(LY_LDGXPATH, "MERGE result"); |
| 1902 | print_set_debug(trg); |
| 1903 | #endif |
| 1904 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 1905 | lyxp_set_free_content(src); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1906 | return LY_SUCCESS; |
| 1907 | } |
| 1908 | |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1909 | LY_ERR |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1910 | lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1911 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1912 | if (exp->used == tok_idx) { |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1913 | if (ctx) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1914 | LOGVAL(ctx, LY_VCODE_XP_EOF); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1915 | } |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1916 | return LY_EINCOMPLETE; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1917 | } |
| 1918 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1919 | if (want_tok && (exp->tokens[tok_idx] != want_tok)) { |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1920 | if (ctx) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 1921 | LOGVAL(ctx, LY_VCODE_XP_INTOK2, lyxp_token2str(exp->tokens[tok_idx]), |
| 1922 | &exp->expr[exp->tok_pos[tok_idx]], lyxp_token2str(want_tok)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1923 | } |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1924 | return LY_ENOT; |
| 1925 | } |
| 1926 | |
| 1927 | return LY_SUCCESS; |
| 1928 | } |
| 1929 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1930 | LY_ERR |
| 1931 | lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok) |
| 1932 | { |
| 1933 | LY_CHECK_RET(lyxp_check_token(ctx, exp, *tok_idx, want_tok)); |
| 1934 | |
| 1935 | /* skip the token */ |
| 1936 | ++(*tok_idx); |
| 1937 | |
| 1938 | return LY_SUCCESS; |
| 1939 | } |
| 1940 | |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1941 | /* just like lyxp_check_token() but tests for 2 tokens */ |
| 1942 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 1943 | exp_check_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok1, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1944 | enum lyxp_token want_tok2) |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1945 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1946 | if (exp->used == tok_idx) { |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1947 | if (ctx) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 1948 | LOGVAL(ctx, LY_VCODE_XP_EOF); |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1949 | } |
| 1950 | return LY_EINCOMPLETE; |
| 1951 | } |
| 1952 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1953 | if ((exp->tokens[tok_idx] != want_tok1) && (exp->tokens[tok_idx] != want_tok2)) { |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1954 | if (ctx) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 1955 | LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[tok_idx]), |
Michal Vasko | 0b468e6 | 2020-10-19 09:33:04 +0200 | [diff] [blame] | 1956 | &exp->expr[exp->tok_pos[tok_idx]]); |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 1957 | } |
| 1958 | return LY_ENOT; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1959 | } |
| 1960 | |
| 1961 | return LY_SUCCESS; |
| 1962 | } |
| 1963 | |
Michal Vasko | 4911eeb | 2021-06-28 11:23:05 +0200 | [diff] [blame] | 1964 | LY_ERR |
| 1965 | lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok1, |
| 1966 | enum lyxp_token want_tok2) |
| 1967 | { |
| 1968 | LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, want_tok1, want_tok2)); |
| 1969 | |
| 1970 | /* skip the token */ |
| 1971 | ++(*tok_idx); |
| 1972 | |
| 1973 | return LY_SUCCESS; |
| 1974 | } |
| 1975 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1976 | /** |
| 1977 | * @brief Stack operation push on the repeat array. |
| 1978 | * |
| 1979 | * @param[in] exp Expression to use. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1980 | * @param[in] tok_idx Position in the expresion \p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1981 | * @param[in] repeat_op_idx Index from \p exp of the operator token. This value is pushed. |
| 1982 | */ |
| 1983 | static void |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1984 | exp_repeat_push(struct lyxp_expr *exp, uint16_t tok_idx, uint16_t repeat_op_idx) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1985 | { |
| 1986 | uint16_t i; |
| 1987 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1988 | if (exp->repeat[tok_idx]) { |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 1989 | for (i = 0; exp->repeat[tok_idx][i]; ++i) {} |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1990 | exp->repeat[tok_idx] = realloc(exp->repeat[tok_idx], (i + 2) * sizeof *exp->repeat[tok_idx]); |
| 1991 | LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), ); |
| 1992 | exp->repeat[tok_idx][i] = repeat_op_idx; |
| 1993 | exp->repeat[tok_idx][i + 1] = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1994 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1995 | exp->repeat[tok_idx] = calloc(2, sizeof *exp->repeat[tok_idx]); |
| 1996 | LY_CHECK_ERR_RET(!exp->repeat[tok_idx], LOGMEM(NULL), ); |
| 1997 | exp->repeat[tok_idx][0] = repeat_op_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 1998 | } |
| 1999 | } |
| 2000 | |
| 2001 | /** |
| 2002 | * @brief Reparse Predicate. Logs directly on error. |
| 2003 | * |
| 2004 | * [7] Predicate ::= '[' Expr ']' |
| 2005 | * |
| 2006 | * @param[in] ctx Context for logging. |
| 2007 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2008 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2009 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2010 | * @return LY_ERR |
| 2011 | */ |
| 2012 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2013 | reparse_predicate(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2014 | { |
| 2015 | LY_ERR rc; |
| 2016 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2017 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2018 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2019 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2020 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2021 | rc = reparse_or_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2022 | LY_CHECK_RET(rc); |
| 2023 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2024 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_BRACK2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2025 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2026 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2027 | |
| 2028 | return LY_SUCCESS; |
| 2029 | } |
| 2030 | |
| 2031 | /** |
| 2032 | * @brief Reparse RelativeLocationPath. Logs directly on error. |
| 2033 | * |
| 2034 | * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step |
| 2035 | * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..' |
| 2036 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
| 2037 | * |
| 2038 | * @param[in] ctx Context for logging. |
| 2039 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2040 | * @param[in] tok_idx Position in the expression \p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2041 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2042 | * @return LY_ERR (LY_EINCOMPLETE on forward reference) |
| 2043 | */ |
| 2044 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2045 | reparse_relative_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2046 | { |
| 2047 | LY_ERR rc; |
| 2048 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2049 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2050 | LY_CHECK_RET(rc); |
| 2051 | |
| 2052 | goto step; |
| 2053 | do { |
| 2054 | /* '/' or '//' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2055 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2056 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2057 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2058 | LY_CHECK_RET(rc); |
| 2059 | step: |
| 2060 | /* Step */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2061 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2062 | case LYXP_TOKEN_DOT: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2063 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2064 | break; |
| 2065 | |
| 2066 | case LYXP_TOKEN_DDOT: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2067 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2068 | break; |
| 2069 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2070 | case LYXP_TOKEN_AXISNAME: |
| 2071 | ++(*tok_idx); |
| 2072 | |
| 2073 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_DCOLON); |
| 2074 | LY_CHECK_RET(rc); |
| 2075 | |
| 2076 | /* fall through */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2077 | case LYXP_TOKEN_AT: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2078 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2079 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2080 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2081 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2082 | if ((exp->tokens[*tok_idx] != LYXP_TOKEN_NAMETEST) && (exp->tokens[*tok_idx] != LYXP_TOKEN_NODETYPE)) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2083 | LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2084 | return LY_EVALID; |
| 2085 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2086 | if (exp->tokens[*tok_idx] == LYXP_TOKEN_NODETYPE) { |
| 2087 | goto reparse_nodetype; |
| 2088 | } |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2089 | /* fall through */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2090 | case LYXP_TOKEN_NAMETEST: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2091 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2092 | goto reparse_predicate; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2093 | |
| 2094 | case LYXP_TOKEN_NODETYPE: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2095 | reparse_nodetype: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2096 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2097 | |
| 2098 | /* '(' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2099 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2100 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2101 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2102 | |
| 2103 | /* ')' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2104 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2105 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2106 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2107 | |
| 2108 | reparse_predicate: |
| 2109 | /* Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2110 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) { |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2111 | rc = reparse_predicate(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2112 | LY_CHECK_RET(rc); |
| 2113 | } |
| 2114 | break; |
| 2115 | default: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2116 | LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2117 | return LY_EVALID; |
| 2118 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2119 | } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2120 | |
| 2121 | return LY_SUCCESS; |
| 2122 | } |
| 2123 | |
| 2124 | /** |
| 2125 | * @brief Reparse AbsoluteLocationPath. Logs directly on error. |
| 2126 | * |
| 2127 | * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath |
| 2128 | * |
| 2129 | * @param[in] ctx Context for logging. |
| 2130 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2131 | * @param[in] tok_idx Position in the expression \p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2132 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2133 | * @return LY_ERR |
| 2134 | */ |
| 2135 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2136 | reparse_absolute_location_path(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2137 | { |
| 2138 | LY_ERR rc; |
| 2139 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2140 | LY_CHECK_RET(exp_check_token2(ctx, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2141 | |
| 2142 | /* '/' RelativeLocationPath? */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2143 | if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2144 | /* '/' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2145 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2146 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2147 | if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2148 | return LY_SUCCESS; |
| 2149 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2150 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2151 | case LYXP_TOKEN_DOT: |
| 2152 | case LYXP_TOKEN_DDOT: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2153 | case LYXP_TOKEN_AXISNAME: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2154 | case LYXP_TOKEN_AT: |
| 2155 | case LYXP_TOKEN_NAMETEST: |
| 2156 | case LYXP_TOKEN_NODETYPE: |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2157 | rc = reparse_relative_location_path(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2158 | LY_CHECK_RET(rc); |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 2159 | /* fall through */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2160 | default: |
| 2161 | break; |
| 2162 | } |
| 2163 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2164 | } else { |
Radek Krejci | f6a1100 | 2020-08-21 13:29:07 +0200 | [diff] [blame] | 2165 | /* '//' RelativeLocationPath */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2166 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2167 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2168 | rc = reparse_relative_location_path(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2169 | LY_CHECK_RET(rc); |
| 2170 | } |
| 2171 | |
| 2172 | return LY_SUCCESS; |
| 2173 | } |
| 2174 | |
| 2175 | /** |
| 2176 | * @brief Reparse FunctionCall. Logs directly on error. |
| 2177 | * |
| 2178 | * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')' |
| 2179 | * |
| 2180 | * @param[in] ctx Context for logging. |
| 2181 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2182 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2183 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2184 | * @return LY_ERR |
| 2185 | */ |
| 2186 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2187 | reparse_function_call(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2188 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2189 | int8_t min_arg_count = -1; |
| 2190 | uint32_t arg_count, max_arg_count = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2191 | uint16_t func_tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2192 | LY_ERR rc; |
| 2193 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2194 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_FUNCNAME); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2195 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2196 | func_tok_idx = *tok_idx; |
| 2197 | switch (exp->tok_len[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2198 | case 3: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2199 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2200 | min_arg_count = 1; |
| 2201 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2202 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2203 | min_arg_count = 1; |
| 2204 | max_arg_count = 1; |
| 2205 | } |
| 2206 | break; |
| 2207 | case 4: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2208 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2209 | min_arg_count = 1; |
| 2210 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2211 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2212 | min_arg_count = 0; |
| 2213 | max_arg_count = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2214 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2215 | min_arg_count = 0; |
| 2216 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2217 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2218 | min_arg_count = 0; |
| 2219 | max_arg_count = 0; |
| 2220 | } |
| 2221 | break; |
| 2222 | case 5: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2223 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2224 | min_arg_count = 1; |
| 2225 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2226 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2227 | min_arg_count = 0; |
| 2228 | max_arg_count = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2229 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2230 | min_arg_count = 1; |
| 2231 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2232 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2233 | min_arg_count = 1; |
| 2234 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2235 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2236 | min_arg_count = 1; |
| 2237 | max_arg_count = 1; |
| 2238 | } |
| 2239 | break; |
| 2240 | case 6: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2241 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2242 | min_arg_count = 2; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2243 | max_arg_count = UINT32_MAX; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2244 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2245 | min_arg_count = 0; |
| 2246 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2247 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2248 | min_arg_count = 0; |
| 2249 | max_arg_count = 1; |
| 2250 | } |
| 2251 | break; |
| 2252 | case 7: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2253 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2254 | min_arg_count = 1; |
| 2255 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2256 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2257 | min_arg_count = 1; |
| 2258 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2259 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2260 | min_arg_count = 0; |
| 2261 | max_arg_count = 0; |
| 2262 | } |
| 2263 | break; |
| 2264 | case 8: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2265 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2266 | min_arg_count = 2; |
| 2267 | max_arg_count = 2; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2268 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2269 | min_arg_count = 0; |
| 2270 | max_arg_count = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2271 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2272 | min_arg_count = 2; |
| 2273 | max_arg_count = 2; |
| 2274 | } |
| 2275 | break; |
| 2276 | case 9: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2277 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2278 | min_arg_count = 2; |
| 2279 | max_arg_count = 3; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2280 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2281 | min_arg_count = 3; |
| 2282 | max_arg_count = 3; |
| 2283 | } |
| 2284 | break; |
| 2285 | case 10: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2286 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2287 | min_arg_count = 0; |
| 2288 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2289 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2290 | min_arg_count = 1; |
| 2291 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2292 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2293 | min_arg_count = 2; |
| 2294 | max_arg_count = 2; |
| 2295 | } |
| 2296 | break; |
| 2297 | case 11: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2298 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2299 | min_arg_count = 2; |
| 2300 | max_arg_count = 2; |
| 2301 | } |
| 2302 | break; |
| 2303 | case 12: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2304 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2305 | min_arg_count = 2; |
| 2306 | max_arg_count = 2; |
| 2307 | } |
| 2308 | break; |
| 2309 | case 13: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2310 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2311 | min_arg_count = 0; |
| 2312 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2313 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2314 | min_arg_count = 0; |
| 2315 | max_arg_count = 1; |
| 2316 | } |
| 2317 | break; |
| 2318 | case 15: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2319 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2320 | min_arg_count = 0; |
| 2321 | max_arg_count = 1; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2322 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2323 | min_arg_count = 2; |
| 2324 | max_arg_count = 2; |
| 2325 | } |
| 2326 | break; |
| 2327 | case 16: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2328 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2329 | min_arg_count = 2; |
| 2330 | max_arg_count = 2; |
| 2331 | } |
| 2332 | break; |
| 2333 | case 20: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2334 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2335 | min_arg_count = 2; |
| 2336 | max_arg_count = 2; |
| 2337 | } |
| 2338 | break; |
| 2339 | } |
| 2340 | if (min_arg_count == -1) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2341 | LOGVAL(ctx, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2342 | return LY_EINVAL; |
| 2343 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2344 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2345 | |
| 2346 | /* '(' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2347 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2348 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2349 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2350 | |
| 2351 | /* ( Expr ( ',' Expr )* )? */ |
| 2352 | arg_count = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2353 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2354 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2355 | if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2356 | ++arg_count; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2357 | rc = reparse_or_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2358 | LY_CHECK_RET(rc); |
| 2359 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2360 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) { |
| 2361 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2362 | |
| 2363 | ++arg_count; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2364 | rc = reparse_or_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2365 | LY_CHECK_RET(rc); |
| 2366 | } |
| 2367 | |
| 2368 | /* ')' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2369 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2370 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2371 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2372 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 2373 | if ((arg_count < (uint32_t)min_arg_count) || (arg_count > max_arg_count)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2374 | LOGVAL(ctx, LY_VCODE_XP_INARGCOUNT, arg_count, exp->tok_len[func_tok_idx], &exp->expr[exp->tok_pos[func_tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2375 | return LY_EVALID; |
| 2376 | } |
| 2377 | |
| 2378 | return LY_SUCCESS; |
| 2379 | } |
| 2380 | |
| 2381 | /** |
| 2382 | * @brief Reparse PathExpr. Logs directly on error. |
| 2383 | * |
| 2384 | * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate* |
| 2385 | * | PrimaryExpr Predicate* '/' RelativeLocationPath |
| 2386 | * | PrimaryExpr Predicate* '//' RelativeLocationPath |
| 2387 | * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 2388 | * [8] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2389 | * |
| 2390 | * @param[in] ctx Context for logging. |
| 2391 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2392 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2393 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2394 | * @return LY_ERR |
| 2395 | */ |
| 2396 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2397 | reparse_path_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2398 | { |
| 2399 | LY_ERR rc; |
| 2400 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2401 | if (lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_NONE)) { |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 2402 | return LY_EVALID; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2403 | } |
| 2404 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2405 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2406 | case LYXP_TOKEN_PAR1: |
| 2407 | /* '(' Expr ')' Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2408 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2409 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2410 | rc = reparse_or_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2411 | LY_CHECK_RET(rc); |
| 2412 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2413 | rc = lyxp_check_token(ctx, exp, *tok_idx, LYXP_TOKEN_PAR2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2414 | LY_CHECK_RET(rc); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2415 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2416 | goto predicate; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2417 | case LYXP_TOKEN_DOT: |
| 2418 | case LYXP_TOKEN_DDOT: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2419 | case LYXP_TOKEN_AXISNAME: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2420 | case LYXP_TOKEN_AT: |
| 2421 | case LYXP_TOKEN_NAMETEST: |
| 2422 | case LYXP_TOKEN_NODETYPE: |
| 2423 | /* RelativeLocationPath */ |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2424 | rc = reparse_relative_location_path(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2425 | LY_CHECK_RET(rc); |
| 2426 | break; |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 2427 | case LYXP_TOKEN_VARREF: |
| 2428 | /* VariableReference */ |
| 2429 | ++(*tok_idx); |
| 2430 | goto predicate; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2431 | case LYXP_TOKEN_FUNCNAME: |
| 2432 | /* FunctionCall */ |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2433 | rc = reparse_function_call(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2434 | LY_CHECK_RET(rc); |
| 2435 | goto predicate; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 2436 | case LYXP_TOKEN_OPER_PATH: |
| 2437 | case LYXP_TOKEN_OPER_RPATH: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2438 | /* AbsoluteLocationPath */ |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2439 | rc = reparse_absolute_location_path(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2440 | LY_CHECK_RET(rc); |
| 2441 | break; |
| 2442 | case LYXP_TOKEN_LITERAL: |
| 2443 | /* Literal */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2444 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2445 | goto predicate; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2446 | case LYXP_TOKEN_NUMBER: |
| 2447 | /* Number */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2448 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2449 | goto predicate; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2450 | default: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2451 | LOGVAL(ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2452 | return LY_EVALID; |
| 2453 | } |
| 2454 | |
| 2455 | return LY_SUCCESS; |
| 2456 | |
| 2457 | predicate: |
| 2458 | /* Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2459 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) { |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2460 | rc = reparse_predicate(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2461 | LY_CHECK_RET(rc); |
| 2462 | } |
| 2463 | |
| 2464 | /* ('/' or '//') RelativeLocationPath */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2465 | if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2466 | |
| 2467 | /* '/' or '//' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2468 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2469 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2470 | rc = reparse_relative_location_path(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2471 | LY_CHECK_RET(rc); |
| 2472 | } |
| 2473 | |
| 2474 | return LY_SUCCESS; |
| 2475 | } |
| 2476 | |
| 2477 | /** |
| 2478 | * @brief Reparse UnaryExpr. Logs directly on error. |
| 2479 | * |
| 2480 | * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr |
| 2481 | * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr |
| 2482 | * |
| 2483 | * @param[in] ctx Context for logging. |
| 2484 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2485 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2486 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2487 | * @return LY_ERR |
| 2488 | */ |
| 2489 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2490 | reparse_unary_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2491 | { |
| 2492 | uint16_t prev_exp; |
| 2493 | LY_ERR rc; |
| 2494 | |
| 2495 | /* ('-')* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2496 | prev_exp = *tok_idx; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2497 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) && |
| 2498 | (exp->expr[exp->tok_pos[*tok_idx]] == '-')) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2499 | exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNARY); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2500 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2501 | } |
| 2502 | |
| 2503 | /* PathExpr */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2504 | prev_exp = *tok_idx; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2505 | rc = reparse_path_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2506 | LY_CHECK_RET(rc); |
| 2507 | |
| 2508 | /* ('|' PathExpr)* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2509 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_UNI)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2510 | exp_repeat_push(exp, prev_exp, LYXP_EXPR_UNION); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2511 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2512 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2513 | rc = reparse_path_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2514 | LY_CHECK_RET(rc); |
| 2515 | } |
| 2516 | |
| 2517 | return LY_SUCCESS; |
| 2518 | } |
| 2519 | |
| 2520 | /** |
| 2521 | * @brief Reparse AdditiveExpr. Logs directly on error. |
| 2522 | * |
| 2523 | * [15] AdditiveExpr ::= MultiplicativeExpr |
| 2524 | * | AdditiveExpr '+' MultiplicativeExpr |
| 2525 | * | AdditiveExpr '-' MultiplicativeExpr |
| 2526 | * [16] MultiplicativeExpr ::= UnaryExpr |
| 2527 | * | MultiplicativeExpr '*' UnaryExpr |
| 2528 | * | MultiplicativeExpr 'div' UnaryExpr |
| 2529 | * | MultiplicativeExpr 'mod' UnaryExpr |
| 2530 | * |
| 2531 | * @param[in] ctx Context for logging. |
| 2532 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2533 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2534 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2535 | * @return LY_ERR |
| 2536 | */ |
| 2537 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2538 | reparse_additive_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2539 | { |
| 2540 | uint16_t prev_add_exp, prev_mul_exp; |
| 2541 | LY_ERR rc; |
| 2542 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2543 | prev_add_exp = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2544 | goto reparse_multiplicative_expr; |
| 2545 | |
| 2546 | /* ('+' / '-' MultiplicativeExpr)* */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2547 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) && |
| 2548 | ((exp->expr[exp->tok_pos[*tok_idx]] == '+') || (exp->expr[exp->tok_pos[*tok_idx]] == '-'))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2549 | exp_repeat_push(exp, prev_add_exp, LYXP_EXPR_ADDITIVE); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2550 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2551 | |
| 2552 | reparse_multiplicative_expr: |
| 2553 | /* UnaryExpr */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2554 | prev_mul_exp = *tok_idx; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2555 | rc = reparse_unary_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2556 | LY_CHECK_RET(rc); |
| 2557 | |
| 2558 | /* ('*' / 'div' / 'mod' UnaryExpr)* */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2559 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) && |
| 2560 | ((exp->expr[exp->tok_pos[*tok_idx]] == '*') || (exp->tok_len[*tok_idx] == 3))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2561 | exp_repeat_push(exp, prev_mul_exp, LYXP_EXPR_MULTIPLICATIVE); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2562 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2563 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2564 | rc = reparse_unary_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2565 | LY_CHECK_RET(rc); |
| 2566 | } |
| 2567 | } |
| 2568 | |
| 2569 | return LY_SUCCESS; |
| 2570 | } |
| 2571 | |
| 2572 | /** |
| 2573 | * @brief Reparse EqualityExpr. Logs directly on error. |
| 2574 | * |
| 2575 | * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr |
| 2576 | * | EqualityExpr '!=' RelationalExpr |
| 2577 | * [14] RelationalExpr ::= AdditiveExpr |
| 2578 | * | RelationalExpr '<' AdditiveExpr |
| 2579 | * | RelationalExpr '>' AdditiveExpr |
| 2580 | * | RelationalExpr '<=' AdditiveExpr |
| 2581 | * | RelationalExpr '>=' AdditiveExpr |
| 2582 | * |
| 2583 | * @param[in] ctx Context for logging. |
| 2584 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2585 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2586 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2587 | * @return LY_ERR |
| 2588 | */ |
| 2589 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2590 | reparse_equality_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2591 | { |
| 2592 | uint16_t prev_eq_exp, prev_rel_exp; |
| 2593 | LY_ERR rc; |
| 2594 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2595 | prev_eq_exp = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2596 | goto reparse_additive_expr; |
| 2597 | |
| 2598 | /* ('=' / '!=' RelationalExpr)* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2599 | while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_EQUAL, LYXP_TOKEN_OPER_NEQUAL)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2600 | exp_repeat_push(exp, prev_eq_exp, LYXP_EXPR_EQUALITY); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2601 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2602 | |
| 2603 | reparse_additive_expr: |
| 2604 | /* AdditiveExpr */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2605 | prev_rel_exp = *tok_idx; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2606 | rc = reparse_additive_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2607 | LY_CHECK_RET(rc); |
| 2608 | |
| 2609 | /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2610 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_COMP)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2611 | exp_repeat_push(exp, prev_rel_exp, LYXP_EXPR_RELATIONAL); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2612 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2613 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2614 | rc = reparse_additive_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2615 | LY_CHECK_RET(rc); |
| 2616 | } |
| 2617 | } |
| 2618 | |
| 2619 | return LY_SUCCESS; |
| 2620 | } |
| 2621 | |
| 2622 | /** |
| 2623 | * @brief Reparse OrExpr. Logs directly on error. |
| 2624 | * |
| 2625 | * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr |
| 2626 | * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr |
| 2627 | * |
| 2628 | * @param[in] ctx Context for logging. |
| 2629 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2630 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2631 | * @param[in] depth Current number of nested expressions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2632 | * @return LY_ERR |
| 2633 | */ |
| 2634 | static LY_ERR |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2635 | reparse_or_expr(const struct ly_ctx *ctx, struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t depth) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2636 | { |
| 2637 | uint16_t prev_or_exp, prev_and_exp; |
| 2638 | LY_ERR rc; |
| 2639 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2640 | ++depth; |
| 2641 | LY_CHECK_ERR_RET(depth > LYXP_MAX_BLOCK_DEPTH, LOGVAL(ctx, LY_VCODE_XP_DEPTH), LY_EINVAL); |
| 2642 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2643 | prev_or_exp = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2644 | goto reparse_equality_expr; |
| 2645 | |
| 2646 | /* ('or' AndExpr)* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2647 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_LOG) && (exp->tok_len[*tok_idx] == 2)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2648 | exp_repeat_push(exp, prev_or_exp, LYXP_EXPR_OR); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2649 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2650 | |
| 2651 | reparse_equality_expr: |
| 2652 | /* EqualityExpr */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2653 | prev_and_exp = *tok_idx; |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2654 | rc = reparse_equality_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2655 | LY_CHECK_RET(rc); |
| 2656 | |
| 2657 | /* ('and' EqualityExpr)* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2658 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_LOG) && (exp->tok_len[*tok_idx] == 3)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2659 | exp_repeat_push(exp, prev_and_exp, LYXP_EXPR_AND); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2660 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2661 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 2662 | rc = reparse_equality_expr(ctx, exp, tok_idx, depth); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2663 | LY_CHECK_RET(rc); |
| 2664 | } |
| 2665 | } |
| 2666 | |
| 2667 | return LY_SUCCESS; |
| 2668 | } |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2669 | |
| 2670 | /** |
| 2671 | * @brief Parse NCName. |
| 2672 | * |
| 2673 | * @param[in] ncname Name to parse. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2674 | * @return Length of @p ncname valid bytes. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2675 | */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2676 | static ssize_t |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2677 | parse_ncname(const char *ncname) |
| 2678 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 2679 | uint32_t uc; |
Radek Krejci | d427026 | 2019-01-07 15:07:25 +0100 | [diff] [blame] | 2680 | size_t size; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2681 | ssize_t len = 0; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2682 | |
| 2683 | LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), 0); |
| 2684 | if (!is_xmlqnamestartchar(uc) || (uc == ':')) { |
| 2685 | return len; |
| 2686 | } |
| 2687 | |
| 2688 | do { |
| 2689 | len += size; |
Radek Krejci | 9a564c9 | 2019-01-07 14:53:57 +0100 | [diff] [blame] | 2690 | if (!*ncname) { |
| 2691 | break; |
| 2692 | } |
Radek Krejci | d427026 | 2019-01-07 15:07:25 +0100 | [diff] [blame] | 2693 | LY_CHECK_RET(ly_getutf8(&ncname, &uc, &size), -len); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2694 | } while (is_xmlqnamechar(uc) && (uc != ':')); |
| 2695 | |
| 2696 | return len; |
| 2697 | } |
| 2698 | |
| 2699 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2700 | * @brief Add @p token into the expression @p exp. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2701 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2702 | * @param[in] ctx Context for logging. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2703 | * @param[in] exp Expression to use. |
| 2704 | * @param[in] token Token to add. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2705 | * @param[in] tok_pos Token position in the XPath expression. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2706 | * @param[in] tok_len Token length in the XPath expression. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2707 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2708 | */ |
| 2709 | static LY_ERR |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 2710 | exp_add_token(const struct ly_ctx *ctx, struct lyxp_expr *exp, enum lyxp_token token, uint16_t tok_pos, uint16_t tok_len) |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2711 | { |
| 2712 | uint32_t prev; |
| 2713 | |
| 2714 | if (exp->used == exp->size) { |
| 2715 | prev = exp->size; |
| 2716 | exp->size += LYXP_EXPR_SIZE_STEP; |
| 2717 | if (prev > exp->size) { |
| 2718 | LOGINT(ctx); |
| 2719 | return LY_EINT; |
| 2720 | } |
| 2721 | |
| 2722 | exp->tokens = ly_realloc(exp->tokens, exp->size * sizeof *exp->tokens); |
| 2723 | LY_CHECK_ERR_RET(!exp->tokens, LOGMEM(ctx), LY_EMEM); |
| 2724 | exp->tok_pos = ly_realloc(exp->tok_pos, exp->size * sizeof *exp->tok_pos); |
| 2725 | LY_CHECK_ERR_RET(!exp->tok_pos, LOGMEM(ctx), LY_EMEM); |
| 2726 | exp->tok_len = ly_realloc(exp->tok_len, exp->size * sizeof *exp->tok_len); |
| 2727 | LY_CHECK_ERR_RET(!exp->tok_len, LOGMEM(ctx), LY_EMEM); |
| 2728 | } |
| 2729 | |
| 2730 | exp->tokens[exp->used] = token; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 2731 | exp->tok_pos[exp->used] = tok_pos; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2732 | exp->tok_len[exp->used] = tok_len; |
| 2733 | ++exp->used; |
| 2734 | return LY_SUCCESS; |
| 2735 | } |
| 2736 | |
| 2737 | void |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 2738 | lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr) |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2739 | { |
| 2740 | uint16_t i; |
| 2741 | |
| 2742 | if (!expr) { |
| 2743 | return; |
| 2744 | } |
| 2745 | |
| 2746 | lydict_remove(ctx, expr->expr); |
| 2747 | free(expr->tokens); |
| 2748 | free(expr->tok_pos); |
| 2749 | free(expr->tok_len); |
| 2750 | if (expr->repeat) { |
| 2751 | for (i = 0; i < expr->used; ++i) { |
| 2752 | free(expr->repeat[i]); |
| 2753 | } |
| 2754 | } |
| 2755 | free(expr->repeat); |
| 2756 | free(expr); |
| 2757 | } |
| 2758 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2759 | /** |
| 2760 | * @brief Parse Axis name. |
| 2761 | * |
| 2762 | * @param[in] str String to parse. |
| 2763 | * @param[in] str_len Length of @p str. |
| 2764 | * @return LY_SUCCESS if an axis. |
| 2765 | * @return LY_ENOT otherwise. |
| 2766 | */ |
| 2767 | static LY_ERR |
| 2768 | expr_parse_axis(const char *str, size_t str_len) |
| 2769 | { |
| 2770 | switch (str_len) { |
| 2771 | case 4: |
| 2772 | if (!strncmp("self", str, str_len)) { |
| 2773 | return LY_SUCCESS; |
| 2774 | } |
| 2775 | break; |
| 2776 | case 5: |
| 2777 | if (!strncmp("child", str, str_len)) { |
| 2778 | return LY_SUCCESS; |
| 2779 | } |
| 2780 | break; |
| 2781 | case 6: |
| 2782 | if (!strncmp("parent", str, str_len)) { |
| 2783 | return LY_SUCCESS; |
| 2784 | } |
| 2785 | break; |
| 2786 | case 8: |
| 2787 | if (!strncmp("ancestor", str, str_len)) { |
| 2788 | return LY_SUCCESS; |
| 2789 | } |
| 2790 | break; |
| 2791 | case 9: |
| 2792 | if (!strncmp("attribute", str, str_len)) { |
| 2793 | return LY_SUCCESS; |
| 2794 | } else if (!strncmp("following", str, str_len)) { |
| 2795 | return LY_SUCCESS; |
| 2796 | } else if (!strncmp("namespace", str, str_len)) { |
| 2797 | LOGERR(NULL, LY_EINVAL, "Axis \"namespace\" not supported."); |
| 2798 | return LY_ENOT; |
| 2799 | } else if (!strncmp("preceding", str, str_len)) { |
| 2800 | return LY_SUCCESS; |
| 2801 | } |
| 2802 | break; |
| 2803 | case 10: |
| 2804 | if (!strncmp("descendant", str, str_len)) { |
| 2805 | return LY_SUCCESS; |
| 2806 | } |
| 2807 | break; |
| 2808 | case 16: |
| 2809 | if (!strncmp("ancestor-or-self", str, str_len)) { |
| 2810 | return LY_SUCCESS; |
| 2811 | } |
| 2812 | break; |
| 2813 | case 17: |
| 2814 | if (!strncmp("following-sibling", str, str_len)) { |
| 2815 | return LY_SUCCESS; |
| 2816 | } else if (!strncmp("preceding-sibling", str, str_len)) { |
| 2817 | return LY_SUCCESS; |
| 2818 | } |
| 2819 | break; |
| 2820 | case 18: |
| 2821 | if (!strncmp("descendant-or-self", str, str_len)) { |
| 2822 | return LY_SUCCESS; |
| 2823 | } |
| 2824 | break; |
| 2825 | } |
| 2826 | |
| 2827 | return LY_ENOT; |
| 2828 | } |
| 2829 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2830 | LY_ERR |
| 2831 | lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr_str, size_t expr_len, ly_bool reparse, struct lyxp_expr **expr_p) |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2832 | { |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2833 | LY_ERR ret = LY_SUCCESS; |
| 2834 | struct lyxp_expr *expr; |
Radek Krejci | d427026 | 2019-01-07 15:07:25 +0100 | [diff] [blame] | 2835 | size_t parsed = 0, tok_len; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2836 | enum lyxp_token tok_type; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2837 | ly_bool prev_func_check = 0, prev_ntype_check = 0, has_axis; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2838 | uint16_t tok_idx = 0; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2839 | ssize_t ncname_len; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2840 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2841 | assert(expr_p); |
| 2842 | |
| 2843 | if (!expr_str[0]) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2844 | LOGVAL(ctx, LY_VCODE_XP_EOF); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2845 | return LY_EVALID; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2846 | } |
| 2847 | |
| 2848 | if (!expr_len) { |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2849 | expr_len = strlen(expr_str); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2850 | } |
| 2851 | if (expr_len > UINT16_MAX) { |
Michal Vasko | 623ac7b | 2021-04-09 12:44:23 +0200 | [diff] [blame] | 2852 | LOGVAL(ctx, LYVE_XPATH, "XPath expression cannot be longer than %u characters.", UINT16_MAX); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2853 | return LY_EVALID; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2854 | } |
| 2855 | |
| 2856 | /* init lyxp_expr structure */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2857 | expr = calloc(1, sizeof *expr); |
| 2858 | LY_CHECK_ERR_GOTO(!expr, LOGMEM(ctx); ret = LY_EMEM, error); |
| 2859 | LY_CHECK_GOTO(ret = lydict_insert(ctx, expr_str, expr_len, &expr->expr), error); |
| 2860 | expr->used = 0; |
| 2861 | expr->size = LYXP_EXPR_SIZE_START; |
| 2862 | expr->tokens = malloc(expr->size * sizeof *expr->tokens); |
| 2863 | LY_CHECK_ERR_GOTO(!expr->tokens, LOGMEM(ctx); ret = LY_EMEM, error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2864 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2865 | expr->tok_pos = malloc(expr->size * sizeof *expr->tok_pos); |
| 2866 | LY_CHECK_ERR_GOTO(!expr->tok_pos, LOGMEM(ctx); ret = LY_EMEM, error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2867 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2868 | expr->tok_len = malloc(expr->size * sizeof *expr->tok_len); |
| 2869 | LY_CHECK_ERR_GOTO(!expr->tok_len, LOGMEM(ctx); ret = LY_EMEM, error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2870 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2871 | /* make expr 0-terminated */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2872 | expr_str = expr->expr; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 2873 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2874 | while (is_xmlws(expr_str[parsed])) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2875 | ++parsed; |
| 2876 | } |
| 2877 | |
| 2878 | do { |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2879 | if (expr_str[parsed] == '(') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2880 | |
| 2881 | /* '(' */ |
| 2882 | tok_len = 1; |
| 2883 | tok_type = LYXP_TOKEN_PAR1; |
| 2884 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2885 | if (prev_ntype_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST) && |
| 2886 | (((expr->tok_len[expr->used - 1] == 4) && |
| 2887 | (!strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "node", 4) || |
| 2888 | !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "text", 4))) || |
| 2889 | ((expr->tok_len[expr->used - 1] == 7) && |
| 2890 | !strncmp(&expr_str[expr->tok_pos[expr->used - 1]], "comment", 7)))) { |
| 2891 | /* it is NodeType after all */ |
| 2892 | expr->tokens[expr->used - 1] = LYXP_TOKEN_NODETYPE; |
| 2893 | |
| 2894 | prev_ntype_check = 0; |
| 2895 | prev_func_check = 0; |
| 2896 | } else if (prev_func_check && expr->used && (expr->tokens[expr->used - 1] == LYXP_TOKEN_NAMETEST)) { |
| 2897 | /* it is FunctionName after all */ |
| 2898 | expr->tokens[expr->used - 1] = LYXP_TOKEN_FUNCNAME; |
| 2899 | |
| 2900 | prev_ntype_check = 0; |
| 2901 | prev_func_check = 0; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2902 | } |
| 2903 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2904 | } else if (expr_str[parsed] == ')') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2905 | |
| 2906 | /* ')' */ |
| 2907 | tok_len = 1; |
| 2908 | tok_type = LYXP_TOKEN_PAR2; |
| 2909 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2910 | } else if (expr_str[parsed] == '[') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2911 | |
| 2912 | /* '[' */ |
| 2913 | tok_len = 1; |
| 2914 | tok_type = LYXP_TOKEN_BRACK1; |
| 2915 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2916 | } else if (expr_str[parsed] == ']') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2917 | |
| 2918 | /* ']' */ |
| 2919 | tok_len = 1; |
| 2920 | tok_type = LYXP_TOKEN_BRACK2; |
| 2921 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2922 | } else if (!strncmp(&expr_str[parsed], "..", 2)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2923 | |
| 2924 | /* '..' */ |
| 2925 | tok_len = 2; |
| 2926 | tok_type = LYXP_TOKEN_DDOT; |
| 2927 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2928 | } else if ((expr_str[parsed] == '.') && (!isdigit(expr_str[parsed + 1]))) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2929 | |
| 2930 | /* '.' */ |
| 2931 | tok_len = 1; |
| 2932 | tok_type = LYXP_TOKEN_DOT; |
| 2933 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2934 | } else if (expr_str[parsed] == '@') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2935 | |
| 2936 | /* '@' */ |
| 2937 | tok_len = 1; |
| 2938 | tok_type = LYXP_TOKEN_AT; |
| 2939 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2940 | } else if (expr_str[parsed] == ',') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2941 | |
| 2942 | /* ',' */ |
| 2943 | tok_len = 1; |
| 2944 | tok_type = LYXP_TOKEN_COMMA; |
| 2945 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2946 | } else if (expr_str[parsed] == '\'') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2947 | |
| 2948 | /* Literal with ' */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2949 | for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\''); ++tok_len) {} |
| 2950 | LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0', |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2951 | LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2952 | error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2953 | ++tok_len; |
| 2954 | tok_type = LYXP_TOKEN_LITERAL; |
| 2955 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2956 | } else if (expr_str[parsed] == '\"') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2957 | |
| 2958 | /* Literal with " */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2959 | for (tok_len = 1; (expr_str[parsed + tok_len] != '\0') && (expr_str[parsed + tok_len] != '\"'); ++tok_len) {} |
| 2960 | LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == '\0', |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 2961 | LOGVAL(ctx, LY_VCODE_XP_EOE, expr_str[parsed], &expr_str[parsed]); ret = LY_EVALID, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 2962 | error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2963 | ++tok_len; |
| 2964 | tok_type = LYXP_TOKEN_LITERAL; |
| 2965 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2966 | } else if ((expr_str[parsed] == '.') || (isdigit(expr_str[parsed]))) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2967 | |
| 2968 | /* Number */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2969 | for (tok_len = 0; isdigit(expr_str[parsed + tok_len]); ++tok_len) {} |
| 2970 | if (expr_str[parsed + tok_len] == '.') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2971 | ++tok_len; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2972 | for ( ; isdigit(expr_str[parsed + tok_len]); ++tok_len) {} |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2973 | } |
| 2974 | tok_type = LYXP_TOKEN_NUMBER; |
| 2975 | |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 2976 | } else if (expr_str[parsed] == '$') { |
| 2977 | |
| 2978 | /* VariableReference */ |
| 2979 | parsed++; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 2980 | ncname_len = parse_ncname(&expr_str[parsed]); |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 2981 | LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len], |
| 2982 | parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error); |
| 2983 | tok_len = ncname_len; |
| 2984 | LY_CHECK_ERR_GOTO(expr_str[parsed + tok_len] == ':', |
| 2985 | LOGVAL(ctx, LYVE_XPATH, "Variable with prefix is not supported."); ret = LY_EVALID, |
| 2986 | error); |
| 2987 | tok_type = LYXP_TOKEN_VARREF; |
| 2988 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2989 | } else if (expr_str[parsed] == '/') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2990 | |
| 2991 | /* Operator '/', '//' */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 2992 | if (!strncmp(&expr_str[parsed], "//", 2)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2993 | tok_len = 2; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 2994 | tok_type = LYXP_TOKEN_OPER_RPATH; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2995 | } else { |
| 2996 | tok_len = 1; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 2997 | tok_type = LYXP_TOKEN_OPER_PATH; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2998 | } |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 2999 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3000 | } else if (!strncmp(&expr_str[parsed], "!=", 2)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3001 | |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3002 | /* Operator '!=' */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3003 | tok_len = 2; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3004 | tok_type = LYXP_TOKEN_OPER_NEQUAL; |
| 3005 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3006 | } else if (!strncmp(&expr_str[parsed], "<=", 2) || !strncmp(&expr_str[parsed], ">=", 2)) { |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3007 | |
| 3008 | /* Operator '<=', '>=' */ |
| 3009 | tok_len = 2; |
| 3010 | tok_type = LYXP_TOKEN_OPER_COMP; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3011 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3012 | } else if (expr_str[parsed] == '|') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3013 | |
| 3014 | /* Operator '|' */ |
| 3015 | tok_len = 1; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3016 | tok_type = LYXP_TOKEN_OPER_UNI; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3017 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3018 | } else if ((expr_str[parsed] == '+') || (expr_str[parsed] == '-')) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3019 | |
| 3020 | /* Operator '+', '-' */ |
| 3021 | tok_len = 1; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3022 | tok_type = LYXP_TOKEN_OPER_MATH; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3023 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3024 | } else if (expr_str[parsed] == '=') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3025 | |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3026 | /* Operator '=' */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3027 | tok_len = 1; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3028 | tok_type = LYXP_TOKEN_OPER_EQUAL; |
| 3029 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3030 | } else if ((expr_str[parsed] == '<') || (expr_str[parsed] == '>')) { |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3031 | |
| 3032 | /* Operator '<', '>' */ |
| 3033 | tok_len = 1; |
| 3034 | tok_type = LYXP_TOKEN_OPER_COMP; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3035 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3036 | } else if (expr->used && (expr->tokens[expr->used - 1] != LYXP_TOKEN_AT) && |
| 3037 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_PAR1) && |
| 3038 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_BRACK1) && |
| 3039 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_COMMA) && |
| 3040 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_LOG) && |
| 3041 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_EQUAL) && |
| 3042 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_NEQUAL) && |
| 3043 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_COMP) && |
| 3044 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_MATH) && |
| 3045 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_UNI) && |
| 3046 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_PATH) && |
| 3047 | (expr->tokens[expr->used - 1] != LYXP_TOKEN_OPER_RPATH)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3048 | |
| 3049 | /* Operator '*', 'or', 'and', 'mod', or 'div' */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3050 | if (expr_str[parsed] == '*') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3051 | tok_len = 1; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3052 | tok_type = LYXP_TOKEN_OPER_MATH; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3053 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3054 | } else if (!strncmp(&expr_str[parsed], "or", 2)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3055 | tok_len = 2; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3056 | tok_type = LYXP_TOKEN_OPER_LOG; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3057 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3058 | } else if (!strncmp(&expr_str[parsed], "and", 3)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3059 | tok_len = 3; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3060 | tok_type = LYXP_TOKEN_OPER_LOG; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3061 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3062 | } else if (!strncmp(&expr_str[parsed], "mod", 3) || !strncmp(&expr_str[parsed], "div", 3)) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3063 | tok_len = 3; |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 3064 | tok_type = LYXP_TOKEN_OPER_MATH; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3065 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 3066 | } else if (prev_ntype_check || prev_func_check) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3067 | LOGVAL(ctx, LYVE_XPATH, "Invalid character 0x%x ('%c'), perhaps \"%.*s\" is supposed to be a function call.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3068 | expr_str[parsed], expr_str[parsed], expr->tok_len[expr->used - 1], &expr->expr[expr->tok_pos[expr->used - 1]]); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3069 | ret = LY_EVALID; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3070 | goto error; |
| 3071 | } else { |
Michal Vasko | 774ce40 | 2021-04-14 15:35:06 +0200 | [diff] [blame] | 3072 | LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], parsed + 1, expr_str); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3073 | ret = LY_EVALID; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3074 | goto error; |
| 3075 | } |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3076 | } else { |
| 3077 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 3078 | /* (AxisName '::')? ((NCName ':')? '*' | QName) or NodeType/FunctionName */ |
| 3079 | if (expr_str[parsed] == '*') { |
| 3080 | ncname_len = 1; |
| 3081 | } else { |
| 3082 | ncname_len = parse_ncname(&expr_str[parsed]); |
| 3083 | LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len], |
| 3084 | parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error); |
| 3085 | } |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3086 | tok_len = ncname_len; |
| 3087 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 3088 | has_axis = 0; |
| 3089 | if (!strncmp(&expr_str[parsed + tok_len], "::", 2)) { |
| 3090 | /* axis */ |
| 3091 | LY_CHECK_ERR_GOTO(expr_parse_axis(&expr_str[parsed], ncname_len), |
| 3092 | LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed], parsed + 1, expr_str); ret = LY_EVALID, error); |
| 3093 | tok_type = LYXP_TOKEN_AXISNAME; |
| 3094 | |
| 3095 | LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error); |
| 3096 | parsed += tok_len; |
| 3097 | |
| 3098 | /* '::' */ |
| 3099 | tok_len = 2; |
| 3100 | tok_type = LYXP_TOKEN_DCOLON; |
| 3101 | |
| 3102 | LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error); |
| 3103 | parsed += tok_len; |
| 3104 | |
| 3105 | if (expr_str[parsed] == '*') { |
| 3106 | ncname_len = 1; |
| 3107 | } else { |
| 3108 | ncname_len = parse_ncname(&expr_str[parsed]); |
| 3109 | LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len], |
| 3110 | parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error); |
| 3111 | } |
| 3112 | tok_len = ncname_len; |
| 3113 | |
| 3114 | has_axis = 1; |
| 3115 | } |
| 3116 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3117 | if (expr_str[parsed + tok_len] == ':') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3118 | ++tok_len; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3119 | if (expr_str[parsed + tok_len] == '*') { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3120 | ++tok_len; |
| 3121 | } else { |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3122 | ncname_len = parse_ncname(&expr_str[parsed + tok_len]); |
Michal Vasko | e2be546 | 2021-08-04 10:49:42 +0200 | [diff] [blame] | 3123 | LY_CHECK_ERR_GOTO(ncname_len < 1, LOGVAL(ctx, LY_VCODE_XP_INEXPR, expr_str[parsed - ncname_len], |
Michal Vasko | 774ce40 | 2021-04-14 15:35:06 +0200 | [diff] [blame] | 3124 | parsed - ncname_len + 1, expr_str); ret = LY_EVALID, error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3125 | tok_len += ncname_len; |
| 3126 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 3127 | /* remove old flags to prevent ambiguities */ |
| 3128 | prev_ntype_check = 0; |
| 3129 | prev_func_check = 0; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3130 | tok_type = LYXP_TOKEN_NAMETEST; |
| 3131 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 3132 | /* if not '*', there is no prefix so it can still be NodeType/FunctionName, we can't finally decide now */ |
| 3133 | prev_ntype_check = (expr_str[parsed] == '*') ? 0 : 1; |
| 3134 | prev_func_check = (prev_ntype_check && !has_axis) ? 1 : 0; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3135 | tok_type = LYXP_TOKEN_NAMETEST; |
| 3136 | } |
| 3137 | } |
| 3138 | |
| 3139 | /* store the token, move on to the next one */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3140 | LY_CHECK_GOTO(ret = exp_add_token(ctx, expr, tok_type, parsed, tok_len), error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3141 | parsed += tok_len; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3142 | while (is_xmlws(expr_str[parsed])) { |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3143 | ++parsed; |
| 3144 | } |
| 3145 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3146 | } while (expr_str[parsed]); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3147 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3148 | if (reparse) { |
| 3149 | /* prealloc repeat */ |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3150 | expr->repeat = calloc(expr->size, sizeof *expr->repeat); |
| 3151 | LY_CHECK_ERR_GOTO(!expr->repeat, LOGMEM(ctx); ret = LY_EMEM, error); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3152 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3153 | /* fill repeat */ |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 3154 | LY_CHECK_ERR_GOTO(reparse_or_expr(ctx, expr, &tok_idx, 0), ret = LY_EVALID, error); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3155 | if (expr->used > tok_idx) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3156 | LOGVAL(ctx, LYVE_XPATH, "Unparsed characters \"%s\" left at the end of an XPath expression.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3157 | &expr->expr[expr->tok_pos[tok_idx]]); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3158 | ret = LY_EVALID; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3159 | goto error; |
| 3160 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3161 | } |
| 3162 | |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3163 | print_expr_struct_debug(expr); |
| 3164 | *expr_p = expr; |
| 3165 | return LY_SUCCESS; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3166 | |
| 3167 | error: |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 3168 | lyxp_expr_free(ctx, expr); |
| 3169 | return ret; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 3170 | } |
| 3171 | |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 3172 | LY_ERR |
| 3173 | lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup_p) |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3174 | { |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 3175 | LY_ERR ret = LY_SUCCESS; |
| 3176 | struct lyxp_expr *dup = NULL; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3177 | uint32_t i, j; |
| 3178 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 3179 | if (!exp) { |
| 3180 | goto cleanup; |
| 3181 | } |
| 3182 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3183 | dup = calloc(1, sizeof *dup); |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 3184 | LY_CHECK_ERR_GOTO(!dup, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3185 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 3186 | if (exp->used) { |
| 3187 | dup->tokens = malloc(exp->used * sizeof *dup->tokens); |
| 3188 | LY_CHECK_ERR_GOTO(!dup->tokens, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 3189 | memcpy(dup->tokens, exp->tokens, exp->used * sizeof *dup->tokens); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3190 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 3191 | dup->tok_pos = malloc(exp->used * sizeof *dup->tok_pos); |
| 3192 | LY_CHECK_ERR_GOTO(!dup->tok_pos, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 3193 | memcpy(dup->tok_pos, exp->tok_pos, exp->used * sizeof *dup->tok_pos); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3194 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 3195 | dup->tok_len = malloc(exp->used * sizeof *dup->tok_len); |
| 3196 | LY_CHECK_ERR_GOTO(!dup->tok_len, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 3197 | memcpy(dup->tok_len, exp->tok_len, exp->used * sizeof *dup->tok_len); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3198 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 3199 | dup->repeat = malloc(exp->used * sizeof *dup->repeat); |
| 3200 | LY_CHECK_ERR_GOTO(!dup->repeat, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 3201 | for (i = 0; i < exp->used; ++i) { |
| 3202 | if (!exp->repeat[i]) { |
| 3203 | dup->repeat[i] = NULL; |
| 3204 | } else { |
| 3205 | for (j = 0; exp->repeat[i][j]; ++j) {} |
| 3206 | /* the ending 0 as well */ |
| 3207 | ++j; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3208 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 3209 | dup->repeat[i] = malloc(j * sizeof **dup->repeat); |
| 3210 | LY_CHECK_ERR_GOTO(!dup->repeat[i], LOGMEM(ctx); ret = LY_EMEM, cleanup); |
| 3211 | memcpy(dup->repeat[i], exp->repeat[i], j * sizeof **dup->repeat); |
| 3212 | dup->repeat[i][j - 1] = 0; |
| 3213 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3214 | } |
| 3215 | } |
| 3216 | |
| 3217 | dup->used = exp->used; |
| 3218 | dup->size = exp->used; |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 3219 | LY_CHECK_GOTO(ret = lydict_insert(ctx, exp->expr, 0, &dup->expr), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3220 | |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 3221 | cleanup: |
| 3222 | if (ret) { |
| 3223 | lyxp_expr_free(ctx, dup); |
| 3224 | } else { |
| 3225 | *dup_p = dup; |
| 3226 | } |
| 3227 | return ret; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3228 | } |
| 3229 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3230 | /** |
| 3231 | * @brief Get the last-added schema node that is currently in the context. |
| 3232 | * |
| 3233 | * @param[in] set Set to search in. |
| 3234 | * @return Last-added schema context node, NULL if no node is in context. |
| 3235 | */ |
| 3236 | static struct lysc_node * |
| 3237 | warn_get_scnode_in_ctx(struct lyxp_set *set) |
| 3238 | { |
| 3239 | uint32_t i; |
| 3240 | |
| 3241 | if (!set || (set->type != LYXP_SET_SCNODE_SET)) { |
| 3242 | return NULL; |
| 3243 | } |
| 3244 | |
| 3245 | i = set->used; |
| 3246 | do { |
| 3247 | --i; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 3248 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3249 | /* if there are more, simply return the first found (last added) */ |
| 3250 | return set->val.scnodes[i].scnode; |
| 3251 | } |
| 3252 | } while (i); |
| 3253 | |
| 3254 | return NULL; |
| 3255 | } |
| 3256 | |
| 3257 | /** |
| 3258 | * @brief Test whether a type is numeric - integer type or decimal64. |
| 3259 | * |
| 3260 | * @param[in] type Type to test. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3261 | * @return Boolean value whether @p type is numeric type or not. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3262 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3263 | static ly_bool |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3264 | warn_is_numeric_type(struct lysc_type *type) |
| 3265 | { |
| 3266 | struct lysc_type_union *uni; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3267 | ly_bool ret; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3268 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3269 | |
| 3270 | switch (type->basetype) { |
| 3271 | case LY_TYPE_DEC64: |
| 3272 | case LY_TYPE_INT8: |
| 3273 | case LY_TYPE_UINT8: |
| 3274 | case LY_TYPE_INT16: |
| 3275 | case LY_TYPE_UINT16: |
| 3276 | case LY_TYPE_INT32: |
| 3277 | case LY_TYPE_UINT32: |
| 3278 | case LY_TYPE_INT64: |
| 3279 | case LY_TYPE_UINT64: |
| 3280 | return 1; |
| 3281 | case LY_TYPE_UNION: |
| 3282 | uni = (struct lysc_type_union *)type; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3283 | LY_ARRAY_FOR(uni->types, u) { |
| 3284 | ret = warn_is_numeric_type(uni->types[u]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3285 | if (ret) { |
| 3286 | /* found a suitable type */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3287 | return ret; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3288 | } |
| 3289 | } |
| 3290 | /* did not find any suitable type */ |
| 3291 | return 0; |
| 3292 | case LY_TYPE_LEAFREF: |
| 3293 | return warn_is_numeric_type(((struct lysc_type_leafref *)type)->realtype); |
| 3294 | default: |
| 3295 | return 0; |
| 3296 | } |
| 3297 | } |
| 3298 | |
| 3299 | /** |
| 3300 | * @brief Test whether a type is string-like - no integers, decimal64 or binary. |
| 3301 | * |
| 3302 | * @param[in] type Type to test. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3303 | * @return Boolean value whether @p type's basetype is string type or not. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3304 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3305 | static ly_bool |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3306 | warn_is_string_type(struct lysc_type *type) |
| 3307 | { |
| 3308 | struct lysc_type_union *uni; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3309 | ly_bool ret; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3310 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3311 | |
| 3312 | switch (type->basetype) { |
| 3313 | case LY_TYPE_BITS: |
| 3314 | case LY_TYPE_ENUM: |
| 3315 | case LY_TYPE_IDENT: |
| 3316 | case LY_TYPE_INST: |
| 3317 | case LY_TYPE_STRING: |
| 3318 | return 1; |
| 3319 | case LY_TYPE_UNION: |
| 3320 | uni = (struct lysc_type_union *)type; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3321 | LY_ARRAY_FOR(uni->types, u) { |
| 3322 | ret = warn_is_string_type(uni->types[u]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3323 | if (ret) { |
| 3324 | /* found a suitable type */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3325 | return ret; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3326 | } |
| 3327 | } |
| 3328 | /* did not find any suitable type */ |
| 3329 | return 0; |
| 3330 | case LY_TYPE_LEAFREF: |
| 3331 | return warn_is_string_type(((struct lysc_type_leafref *)type)->realtype); |
| 3332 | default: |
| 3333 | return 0; |
| 3334 | } |
| 3335 | } |
| 3336 | |
| 3337 | /** |
| 3338 | * @brief Test whether a type is one specific type. |
| 3339 | * |
| 3340 | * @param[in] type Type to test. |
| 3341 | * @param[in] base Expected type. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3342 | * @return Boolean value whether the given @p type is of the specific basetype @p base. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3343 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3344 | static ly_bool |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3345 | warn_is_specific_type(struct lysc_type *type, LY_DATA_TYPE base) |
| 3346 | { |
| 3347 | struct lysc_type_union *uni; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3348 | ly_bool ret; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3349 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3350 | |
| 3351 | if (type->basetype == base) { |
| 3352 | return 1; |
| 3353 | } else if (type->basetype == LY_TYPE_UNION) { |
| 3354 | uni = (struct lysc_type_union *)type; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3355 | LY_ARRAY_FOR(uni->types, u) { |
| 3356 | ret = warn_is_specific_type(uni->types[u], base); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3357 | if (ret) { |
| 3358 | /* found a suitable type */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3359 | return ret; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3360 | } |
| 3361 | } |
| 3362 | /* did not find any suitable type */ |
| 3363 | return 0; |
| 3364 | } else if (type->basetype == LY_TYPE_LEAFREF) { |
| 3365 | return warn_is_specific_type(((struct lysc_type_leafref *)type)->realtype, base); |
| 3366 | } |
| 3367 | |
| 3368 | return 0; |
| 3369 | } |
| 3370 | |
| 3371 | /** |
| 3372 | * @brief Get next type of a (union) type. |
| 3373 | * |
| 3374 | * @param[in] type Base type. |
| 3375 | * @param[in] prev_type Previously returned type. |
| 3376 | * @return Next type or NULL. |
| 3377 | */ |
| 3378 | static struct lysc_type * |
| 3379 | warn_is_equal_type_next_type(struct lysc_type *type, struct lysc_type *prev_type) |
| 3380 | { |
| 3381 | struct lysc_type_union *uni; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3382 | ly_bool found = 0; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3383 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3384 | |
| 3385 | switch (type->basetype) { |
| 3386 | case LY_TYPE_UNION: |
| 3387 | uni = (struct lysc_type_union *)type; |
| 3388 | if (!prev_type) { |
| 3389 | return uni->types[0]; |
| 3390 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3391 | LY_ARRAY_FOR(uni->types, u) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3392 | if (found) { |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3393 | return uni->types[u]; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3394 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 3395 | if (prev_type == uni->types[u]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3396 | found = 1; |
| 3397 | } |
| 3398 | } |
| 3399 | return NULL; |
| 3400 | default: |
| 3401 | if (prev_type) { |
| 3402 | assert(type == prev_type); |
| 3403 | return NULL; |
| 3404 | } else { |
| 3405 | return type; |
| 3406 | } |
| 3407 | } |
| 3408 | } |
| 3409 | |
| 3410 | /** |
| 3411 | * @brief Test whether 2 types have a common type. |
| 3412 | * |
| 3413 | * @param[in] type1 First type. |
| 3414 | * @param[in] type2 Second type. |
| 3415 | * @return 1 if they do, 0 otherwise. |
| 3416 | */ |
| 3417 | static int |
| 3418 | warn_is_equal_type(struct lysc_type *type1, struct lysc_type *type2) |
| 3419 | { |
| 3420 | struct lysc_type *t1, *rt1, *t2, *rt2; |
| 3421 | |
| 3422 | t1 = NULL; |
| 3423 | while ((t1 = warn_is_equal_type_next_type(type1, t1))) { |
| 3424 | if (t1->basetype == LY_TYPE_LEAFREF) { |
| 3425 | rt1 = ((struct lysc_type_leafref *)t1)->realtype; |
| 3426 | } else { |
| 3427 | rt1 = t1; |
| 3428 | } |
| 3429 | |
| 3430 | t2 = NULL; |
| 3431 | while ((t2 = warn_is_equal_type_next_type(type2, t2))) { |
| 3432 | if (t2->basetype == LY_TYPE_LEAFREF) { |
| 3433 | rt2 = ((struct lysc_type_leafref *)t2)->realtype; |
| 3434 | } else { |
| 3435 | rt2 = t2; |
| 3436 | } |
| 3437 | |
| 3438 | if (rt2->basetype == rt1->basetype) { |
| 3439 | /* match found */ |
| 3440 | return 1; |
| 3441 | } |
| 3442 | } |
| 3443 | } |
| 3444 | |
| 3445 | return 0; |
| 3446 | } |
| 3447 | |
| 3448 | /** |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3449 | * @brief Print warning with information about the XPath subexpression that caused previous warning. |
| 3450 | * |
| 3451 | * @param[in] ctx Context for logging. |
| 3452 | * @param[in] tok_pos Index of the subexpression in the whole expression. |
| 3453 | * @param[in] subexpr Subexpression start. |
| 3454 | * @param[in] subexpr_len Length of @p subexpr to print. |
| 3455 | * @param[in] cur_scnode Expression context node. |
| 3456 | */ |
| 3457 | static void |
| 3458 | warn_subexpr_log(const struct ly_ctx *ctx, uint16_t tok_pos, const char *subexpr, int subexpr_len, |
| 3459 | const struct lysc_node *cur_scnode) |
| 3460 | { |
| 3461 | char *path; |
| 3462 | |
| 3463 | path = lysc_path(cur_scnode, LYSC_PATH_LOG, NULL, 0); |
| 3464 | LOGWRN(ctx, "Previous warning generated by XPath subexpression[%" PRIu16 "] \"%.*s\" with context node \"%s\".", |
| 3465 | tok_pos, subexpr_len, subexpr, path); |
| 3466 | free(path); |
| 3467 | } |
| 3468 | |
| 3469 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3470 | * @brief Check both operands of comparison operators. |
| 3471 | * |
| 3472 | * @param[in] ctx Context for errors. |
| 3473 | * @param[in] set1 First operand set. |
| 3474 | * @param[in] set2 Second operand set. |
| 3475 | * @param[in] numbers_only Whether accept only numbers or other types are fine too (for '=' and '!='). |
| 3476 | * @param[in] expr Start of the expression to print with the warning. |
| 3477 | * @param[in] tok_pos Token position. |
| 3478 | */ |
| 3479 | static void |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3480 | warn_operands(struct ly_ctx *ctx, struct lyxp_set *set1, struct lyxp_set *set2, ly_bool numbers_only, const char *expr, |
| 3481 | uint16_t tok_pos) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3482 | { |
| 3483 | struct lysc_node_leaf *node1, *node2; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 3484 | ly_bool leaves = 1, warning = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3485 | |
| 3486 | node1 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set1); |
| 3487 | node2 = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set2); |
| 3488 | |
| 3489 | if (!node1 && !node2) { |
| 3490 | /* no node-sets involved, nothing to do */ |
| 3491 | return; |
| 3492 | } |
| 3493 | |
| 3494 | if (node1) { |
| 3495 | if (!(node1->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 3496 | LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node1->nodetype), node1->name); |
| 3497 | warning = 1; |
| 3498 | leaves = 0; |
| 3499 | } else if (numbers_only && !warn_is_numeric_type(node1->type)) { |
| 3500 | LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node1->name); |
| 3501 | warning = 1; |
| 3502 | } |
| 3503 | } |
| 3504 | |
| 3505 | if (node2) { |
| 3506 | if (!(node2->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 3507 | LOGWRN(ctx, "Node type %s \"%s\" used as operand.", lys_nodetype2str(node2->nodetype), node2->name); |
| 3508 | warning = 1; |
| 3509 | leaves = 0; |
| 3510 | } else if (numbers_only && !warn_is_numeric_type(node2->type)) { |
| 3511 | LOGWRN(ctx, "Node \"%s\" is not of a numeric type, but used where it was expected.", node2->name); |
| 3512 | warning = 1; |
| 3513 | } |
| 3514 | } |
| 3515 | |
| 3516 | if (node1 && node2 && leaves && !numbers_only) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3517 | if ((warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type)) || |
| 3518 | (!warn_is_numeric_type(node1->type) && warn_is_numeric_type(node2->type)) || |
| 3519 | (!warn_is_numeric_type(node1->type) && !warn_is_numeric_type(node2->type) && |
| 3520 | !warn_is_equal_type(node1->type, node2->type))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3521 | LOGWRN(ctx, "Incompatible types of operands \"%s\" and \"%s\" for comparison.", node1->name, node2->name); |
| 3522 | warning = 1; |
| 3523 | } |
| 3524 | } |
| 3525 | |
| 3526 | if (warning) { |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3527 | warn_subexpr_log(ctx, tok_pos, expr + tok_pos, 20, set1->cur_scnode); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3528 | } |
| 3529 | } |
| 3530 | |
| 3531 | /** |
| 3532 | * @brief Check that a value is valid for a leaf. If not applicable, does nothing. |
| 3533 | * |
| 3534 | * @param[in] exp Parsed XPath expression. |
| 3535 | * @param[in] set Set with the leaf/leaf-list. |
| 3536 | * @param[in] val_exp Index of the value (literal/number) in @p exp. |
| 3537 | * @param[in] equal_exp Index of the start of the equality expression in @p exp. |
| 3538 | * @param[in] last_equal_exp Index of the end of the equality expression in @p exp. |
| 3539 | */ |
| 3540 | static void |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 3541 | warn_equality_value(const struct lyxp_expr *exp, struct lyxp_set *set, uint16_t val_exp, uint16_t equal_exp, |
| 3542 | uint16_t last_equal_exp) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3543 | { |
| 3544 | struct lysc_node *scnode; |
| 3545 | struct lysc_type *type; |
| 3546 | char *value; |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3547 | struct lyd_value storage; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3548 | LY_ERR rc; |
| 3549 | struct ly_err_item *err = NULL; |
| 3550 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3551 | if ((scnode = warn_get_scnode_in_ctx(set)) && (scnode->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && |
| 3552 | ((exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) || (exp->tokens[val_exp] == LYXP_TOKEN_NUMBER))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3553 | /* check that the node can have the specified value */ |
| 3554 | if (exp->tokens[val_exp] == LYXP_TOKEN_LITERAL) { |
| 3555 | value = strndup(exp->expr + exp->tok_pos[val_exp] + 1, exp->tok_len[val_exp] - 2); |
| 3556 | } else { |
| 3557 | value = strndup(exp->expr + exp->tok_pos[val_exp], exp->tok_len[val_exp]); |
| 3558 | } |
| 3559 | if (!value) { |
| 3560 | LOGMEM(set->ctx); |
| 3561 | return; |
| 3562 | } |
| 3563 | |
| 3564 | if ((((struct lysc_node_leaf *)scnode)->type->basetype == LY_TYPE_IDENT) && !strchr(value, ':')) { |
| 3565 | LOGWRN(set->ctx, "Identityref \"%s\" comparison with identity \"%s\" without prefix, consider adding" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3566 | " a prefix or best using \"derived-from(-or-self)()\" functions.", scnode->name, value); |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3567 | warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp], |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3568 | (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp], |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3569 | set->cur_scnode); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3570 | } |
| 3571 | |
| 3572 | type = ((struct lysc_node_leaf *)scnode)->type; |
| 3573 | if (type->basetype != LY_TYPE_IDENT) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 3574 | rc = type->plugin->store(set->ctx, type, value, strlen(value), 0, set->format, set->prefix_data, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 3575 | LYD_HINT_DATA, scnode, &storage, NULL, &err); |
Michal Vasko | bf42e83 | 2020-11-23 16:59:42 +0100 | [diff] [blame] | 3576 | if (rc == LY_EINCOMPLETE) { |
| 3577 | rc = LY_SUCCESS; |
| 3578 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3579 | |
| 3580 | if (err) { |
| 3581 | LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type (%s).", value, err->msg); |
| 3582 | ly_err_free(err); |
| 3583 | } else if (rc != LY_SUCCESS) { |
| 3584 | LOGWRN(set->ctx, "Invalid value \"%s\" which does not fit the type.", value); |
| 3585 | } |
| 3586 | if (rc != LY_SUCCESS) { |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3587 | warn_subexpr_log(set->ctx, exp->tok_pos[equal_exp], exp->expr + exp->tok_pos[equal_exp], |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 3588 | (exp->tok_pos[last_equal_exp] - exp->tok_pos[equal_exp]) + exp->tok_len[last_equal_exp], |
Michal Vasko | aa95652 | 2021-11-11 10:45:34 +0100 | [diff] [blame] | 3589 | set->cur_scnode); |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3590 | } else { |
| 3591 | type->plugin->free(set->ctx, &storage); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3592 | } |
| 3593 | } |
| 3594 | free(value); |
| 3595 | } |
| 3596 | } |
| 3597 | |
| 3598 | /* |
| 3599 | * XPath functions |
| 3600 | */ |
| 3601 | |
| 3602 | /** |
| 3603 | * @brief Execute the YANG 1.1 bit-is-set(node-set, string) function. Returns LYXP_SET_BOOLEAN |
| 3604 | * depending on whether the first node bit value from the second argument is set. |
| 3605 | * |
| 3606 | * @param[in] args Array of arguments. |
| 3607 | * @param[in] arg_count Count of elements in @p args. |
| 3608 | * @param[in,out] set Context and result set at the same time. |
| 3609 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3610 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3611 | */ |
| 3612 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3613 | xpath_bit_is_set(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3614 | { |
| 3615 | struct lyd_node_term *leaf; |
| 3616 | struct lysc_node_leaf *sleaf; |
Michal Vasko | 2588b95 | 2021-07-29 07:43:26 +0200 | [diff] [blame] | 3617 | struct lyd_value_bits *bits; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3618 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 3619 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3620 | |
| 3621 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3622 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3623 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3624 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 3625 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 3626 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3627 | sleaf->name); |
| 3628 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_BITS)) { |
| 3629 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"bits\".", __func__, sleaf->name); |
| 3630 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3631 | } |
| 3632 | |
| 3633 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 3634 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3635 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3636 | sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3637 | } else if (!warn_is_string_type(sleaf->type)) { |
| 3638 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3639 | } |
| 3640 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3641 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3642 | return rc; |
| 3643 | } |
| 3644 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3645 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3646 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "bit-is-set(node-set, string)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3647 | return LY_EVALID; |
| 3648 | } |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3649 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3650 | LY_CHECK_RET(rc); |
| 3651 | |
| 3652 | set_fill_boolean(set, 0); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3653 | if (args[0]->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3654 | leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node; |
Michal Vasko | 2588b95 | 2021-07-29 07:43:26 +0200 | [diff] [blame] | 3655 | if ((leaf->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (leaf->value.realtype->basetype == LY_TYPE_BITS)) { |
| 3656 | LYD_VALUE_GET(&leaf->value, bits); |
| 3657 | LY_ARRAY_FOR(bits->items, u) { |
| 3658 | if (!strcmp(bits->items[u]->name, args[1]->val.str)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3659 | set_fill_boolean(set, 1); |
| 3660 | break; |
| 3661 | } |
| 3662 | } |
| 3663 | } |
| 3664 | } |
| 3665 | |
| 3666 | return LY_SUCCESS; |
| 3667 | } |
| 3668 | |
| 3669 | /** |
| 3670 | * @brief Execute the XPath boolean(object) function. Returns LYXP_SET_BOOLEAN |
| 3671 | * with the argument converted to boolean. |
| 3672 | * |
| 3673 | * @param[in] args Array of arguments. |
| 3674 | * @param[in] arg_count Count of elements in @p args. |
| 3675 | * @param[in,out] set Context and result set at the same time. |
| 3676 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3677 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3678 | */ |
| 3679 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3680 | xpath_boolean(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3681 | { |
| 3682 | LY_ERR rc; |
| 3683 | |
| 3684 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3685 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3686 | return LY_SUCCESS; |
| 3687 | } |
| 3688 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3689 | rc = lyxp_set_cast(args[0], LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3690 | LY_CHECK_RET(rc); |
| 3691 | set_fill_set(set, args[0]); |
| 3692 | |
| 3693 | return LY_SUCCESS; |
| 3694 | } |
| 3695 | |
| 3696 | /** |
| 3697 | * @brief Execute the XPath ceiling(number) function. Returns LYXP_SET_NUMBER |
| 3698 | * with the first argument rounded up to the nearest integer. |
| 3699 | * |
| 3700 | * @param[in] args Array of arguments. |
| 3701 | * @param[in] arg_count Count of elements in @p args. |
| 3702 | * @param[in,out] set Context and result set at the same time. |
| 3703 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3704 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3705 | */ |
| 3706 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3707 | xpath_ceiling(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3708 | { |
| 3709 | struct lysc_node_leaf *sleaf; |
| 3710 | LY_ERR rc = LY_SUCCESS; |
| 3711 | |
| 3712 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3713 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3714 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3715 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 3716 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 3717 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3718 | sleaf->name); |
| 3719 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) { |
| 3720 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name); |
| 3721 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3722 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3723 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3724 | return rc; |
| 3725 | } |
| 3726 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3727 | rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3728 | LY_CHECK_RET(rc); |
| 3729 | if ((long long)args[0]->val.num != args[0]->val.num) { |
| 3730 | set_fill_number(set, ((long long)args[0]->val.num) + 1); |
| 3731 | } else { |
| 3732 | set_fill_number(set, args[0]->val.num); |
| 3733 | } |
| 3734 | |
| 3735 | return LY_SUCCESS; |
| 3736 | } |
| 3737 | |
| 3738 | /** |
| 3739 | * @brief Execute the XPath concat(string, string, string*) function. |
| 3740 | * Returns LYXP_SET_STRING with the concatenation of all the arguments. |
| 3741 | * |
| 3742 | * @param[in] args Array of arguments. |
| 3743 | * @param[in] arg_count Count of elements in @p args. |
| 3744 | * @param[in,out] set Context and result set at the same time. |
| 3745 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3746 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3747 | */ |
| 3748 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3749 | xpath_concat(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3750 | { |
| 3751 | uint16_t i; |
| 3752 | char *str = NULL; |
| 3753 | size_t used = 1; |
| 3754 | LY_ERR rc = LY_SUCCESS; |
| 3755 | struct lysc_node_leaf *sleaf; |
| 3756 | |
| 3757 | if (options & LYXP_SCNODE_ALL) { |
| 3758 | for (i = 0; i < arg_count; ++i) { |
| 3759 | if ((args[i]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[i]))) { |
| 3760 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 3761 | LOGWRN(set->ctx, "Argument #%u of %s is a %s node \"%s\".", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 3762 | i + 1, __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3763 | } else if (!warn_is_string_type(sleaf->type)) { |
Radek Krejci | 70124c8 | 2020-08-14 22:17:03 +0200 | [diff] [blame] | 3764 | LOGWRN(set->ctx, "Argument #%u of %s is node \"%s\", not of string-type.", i + 1, __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3765 | } |
| 3766 | } |
| 3767 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3768 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3769 | return rc; |
| 3770 | } |
| 3771 | |
| 3772 | for (i = 0; i < arg_count; ++i) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3773 | rc = lyxp_set_cast(args[i], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3774 | if (rc != LY_SUCCESS) { |
| 3775 | free(str); |
| 3776 | return rc; |
| 3777 | } |
| 3778 | |
| 3779 | str = ly_realloc(str, (used + strlen(args[i]->val.str)) * sizeof(char)); |
| 3780 | LY_CHECK_ERR_RET(!str, LOGMEM(set->ctx), LY_EMEM); |
| 3781 | strcpy(str + used - 1, args[i]->val.str); |
| 3782 | used += strlen(args[i]->val.str); |
| 3783 | } |
| 3784 | |
| 3785 | /* free, kind of */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3786 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3787 | set->type = LYXP_SET_STRING; |
| 3788 | set->val.str = str; |
| 3789 | |
| 3790 | return LY_SUCCESS; |
| 3791 | } |
| 3792 | |
| 3793 | /** |
| 3794 | * @brief Execute the XPath contains(string, string) function. |
| 3795 | * Returns LYXP_SET_BOOLEAN whether the second argument can |
| 3796 | * be found in the first or not. |
| 3797 | * |
| 3798 | * @param[in] args Array of arguments. |
| 3799 | * @param[in] arg_count Count of elements in @p args. |
| 3800 | * @param[in,out] set Context and result set at the same time. |
| 3801 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3802 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3803 | */ |
| 3804 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3805 | xpath_contains(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3806 | { |
| 3807 | struct lysc_node_leaf *sleaf; |
| 3808 | LY_ERR rc = LY_SUCCESS; |
| 3809 | |
| 3810 | if (options & LYXP_SCNODE_ALL) { |
| 3811 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 3812 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3813 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3814 | sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3815 | } else if (!warn_is_string_type(sleaf->type)) { |
| 3816 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3817 | } |
| 3818 | } |
| 3819 | |
| 3820 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 3821 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3822 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3823 | sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3824 | } else if (!warn_is_string_type(sleaf->type)) { |
| 3825 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3826 | } |
| 3827 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3828 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3829 | return rc; |
| 3830 | } |
| 3831 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3832 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3833 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 3834 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3835 | LY_CHECK_RET(rc); |
| 3836 | |
| 3837 | if (strstr(args[0]->val.str, args[1]->val.str)) { |
| 3838 | set_fill_boolean(set, 1); |
| 3839 | } else { |
| 3840 | set_fill_boolean(set, 0); |
| 3841 | } |
| 3842 | |
| 3843 | return LY_SUCCESS; |
| 3844 | } |
| 3845 | |
| 3846 | /** |
| 3847 | * @brief Execute the XPath count(node-set) function. Returns LYXP_SET_NUMBER |
| 3848 | * with the size of the node-set from the argument. |
| 3849 | * |
| 3850 | * @param[in] args Array of arguments. |
| 3851 | * @param[in] arg_count Count of elements in @p args. |
| 3852 | * @param[in,out] set Context and result set at the same time. |
| 3853 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3854 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3855 | */ |
| 3856 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3857 | xpath_count(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3858 | { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3859 | LY_ERR rc = LY_SUCCESS; |
| 3860 | |
| 3861 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3862 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3863 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3864 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3865 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3866 | return rc; |
| 3867 | } |
| 3868 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3869 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3870 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "count(node-set)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3871 | return LY_EVALID; |
| 3872 | } |
| 3873 | |
| 3874 | set_fill_number(set, args[0]->used); |
| 3875 | return LY_SUCCESS; |
| 3876 | } |
| 3877 | |
| 3878 | /** |
| 3879 | * @brief Execute the XPath current() function. Returns LYXP_SET_NODE_SET |
| 3880 | * with the context with the intial node. |
| 3881 | * |
| 3882 | * @param[in] args Array of arguments. |
| 3883 | * @param[in] arg_count Count of elements in @p args. |
| 3884 | * @param[in,out] set Context and result set at the same time. |
| 3885 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3886 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3887 | */ |
| 3888 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3889 | xpath_current(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3890 | { |
| 3891 | if (arg_count || args) { |
Radek Krejci | e87c7dc | 2021-06-02 21:25:42 +0200 | [diff] [blame] | 3892 | LOGVAL(set->ctx, LY_VCODE_XP_INARGCOUNT, arg_count, LY_PRI_LENSTR("current()")); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3893 | return LY_EVALID; |
| 3894 | } |
| 3895 | |
| 3896 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3897 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3898 | |
Michal Vasko | 296dfaf | 2021-12-13 16:57:42 +0100 | [diff] [blame] | 3899 | if (set->cur_scnode) { |
| 3900 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, set->cur_scnode, LYXP_NODE_ELEM, NULL)); |
| 3901 | } else { |
| 3902 | /* root node */ |
| 3903 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL)); |
| 3904 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3905 | } else { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3906 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3907 | |
Michal Vasko | 296dfaf | 2021-12-13 16:57:42 +0100 | [diff] [blame] | 3908 | if (set->cur_node) { |
| 3909 | /* position is filled later */ |
| 3910 | set_insert_node(set, set->cur_node, 0, LYXP_NODE_ELEM, 0); |
| 3911 | } else { |
| 3912 | /* root node */ |
| 3913 | set_insert_node(set, NULL, 0, set->root_type, 0); |
| 3914 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3915 | } |
| 3916 | |
| 3917 | return LY_SUCCESS; |
| 3918 | } |
| 3919 | |
| 3920 | /** |
| 3921 | * @brief Execute the YANG 1.1 deref(node-set) function. Returns LYXP_SET_NODE_SET with either |
| 3922 | * leafref or instance-identifier target node(s). |
| 3923 | * |
| 3924 | * @param[in] args Array of arguments. |
| 3925 | * @param[in] arg_count Count of elements in @p args. |
| 3926 | * @param[in,out] set Context and result set at the same time. |
| 3927 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 3928 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3929 | */ |
| 3930 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 3931 | xpath_deref(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3932 | { |
| 3933 | struct lyd_node_term *leaf; |
Michal Vasko | 42e497c | 2020-01-06 08:38:25 +0100 | [diff] [blame] | 3934 | struct lysc_node_leaf *sleaf = NULL; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3935 | struct lysc_type_leafref *lref; |
Michal Vasko | ae9e4cb | 2019-09-25 08:43:05 +0200 | [diff] [blame] | 3936 | const struct lysc_node *target; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3937 | struct ly_path *p; |
| 3938 | struct lyd_node *node; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3939 | char *errmsg = NULL; |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 3940 | uint8_t oper; |
Michal Vasko | 741bb56 | 2021-06-24 11:59:50 +0200 | [diff] [blame] | 3941 | LY_ERR r; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3942 | |
| 3943 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3944 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3945 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3946 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
Michal Vasko | 423ba3f | 2021-07-19 13:08:50 +0200 | [diff] [blame] | 3947 | if (!(sleaf->nodetype & LYD_NODE_TERM)) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3948 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 3949 | sleaf->name); |
Michal Vasko | ed725d7 | 2021-06-23 12:03:45 +0200 | [diff] [blame] | 3950 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_LEAFREF) && |
| 3951 | !warn_is_specific_type(sleaf->type, LY_TYPE_INST)) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 3952 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"leafref\" nor \"instance-identifier\".", |
| 3953 | __func__, sleaf->name); |
| 3954 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3955 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 3956 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 423ba3f | 2021-07-19 13:08:50 +0200 | [diff] [blame] | 3957 | if (sleaf && (sleaf->nodetype & LYD_NODE_TERM) && (sleaf->type->basetype == LY_TYPE_LEAFREF)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3958 | lref = (struct lysc_type_leafref *)sleaf->type; |
Michal Vasko | d1e53b9 | 2021-01-28 13:11:06 +0100 | [diff] [blame] | 3959 | oper = (sleaf->flags & LYS_IS_OUTPUT) ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3960 | |
| 3961 | /* it was already evaluated on schema, it must succeed */ |
Michal Vasko | 741bb56 | 2021-06-24 11:59:50 +0200 | [diff] [blame] | 3962 | r = ly_path_compile_leafref(set->ctx, &sleaf->node, NULL, lref->path, oper, LY_PATH_TARGET_MANY, |
Michal Vasko | 24fc4d1 | 2021-07-12 14:41:20 +0200 | [diff] [blame] | 3963 | LY_VALUE_SCHEMA_RESOLVED, lref->prefixes, &p); |
Michal Vasko | 741bb56 | 2021-06-24 11:59:50 +0200 | [diff] [blame] | 3964 | if (!r) { |
| 3965 | /* get the target node */ |
| 3966 | target = p[LY_ARRAY_COUNT(p) - 1].node; |
| 3967 | ly_path_free(set->ctx, p); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3968 | |
Michal Vasko | 741bb56 | 2021-06-24 11:59:50 +0200 | [diff] [blame] | 3969 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, target, LYXP_NODE_ELEM, NULL)); |
| 3970 | } /* else the target was found before but is disabled so it was removed */ |
Michal Vasko | ae9e4cb | 2019-09-25 08:43:05 +0200 | [diff] [blame] | 3971 | } |
| 3972 | |
Michal Vasko | 741bb56 | 2021-06-24 11:59:50 +0200 | [diff] [blame] | 3973 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3974 | } |
| 3975 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3976 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 3977 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "deref(node-set)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3978 | return LY_EVALID; |
| 3979 | } |
| 3980 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 3981 | lyxp_set_free_content(set); |
| 3982 | if (args[0]->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3983 | leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node; |
| 3984 | sleaf = (struct lysc_node_leaf *)leaf->schema; |
| 3985 | if (sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
| 3986 | if (sleaf->type->basetype == LY_TYPE_LEAFREF) { |
| 3987 | /* find leafref target */ |
Radek Krejci | 0b01330 | 2021-03-29 15:22:32 +0200 | [diff] [blame] | 3988 | if (lyplg_type_resolve_leafref((struct lysc_type_leafref *)sleaf->type, &leaf->node, &leaf->value, set->tree, |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 3989 | &node, &errmsg)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3990 | LOGERR(set->ctx, LY_EVALID, errmsg); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3991 | free(errmsg); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3992 | return LY_EVALID; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3993 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3994 | } else { |
| 3995 | assert(sleaf->type->basetype == LY_TYPE_INST); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 3996 | if (ly_path_eval(leaf->value.target, set->tree, &node)) { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 3997 | LOGERR(set->ctx, LY_EVALID, "Invalid instance-identifier \"%s\" value - required instance not found.", |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 3998 | lyd_get_value(&leaf->node)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 3999 | return LY_EVALID; |
| 4000 | } |
| 4001 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 4002 | |
| 4003 | /* insert it */ |
| 4004 | set_insert_node(set, node, 0, LYXP_NODE_ELEM, 0); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4005 | } |
| 4006 | } |
| 4007 | |
| 4008 | return LY_SUCCESS; |
| 4009 | } |
| 4010 | |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4011 | static LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4012 | xpath_derived_(struct lyxp_set **args, struct lyxp_set *set, uint32_t options, ly_bool self_match, const char *func) |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4013 | { |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 4014 | uint32_t i; |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4015 | LY_ARRAY_COUNT_TYPE u; |
| 4016 | struct lyd_node_term *leaf; |
| 4017 | struct lysc_node_leaf *sleaf; |
| 4018 | struct lyd_meta *meta; |
Michal Vasko | 9392369 | 2021-05-07 15:28:02 +0200 | [diff] [blame] | 4019 | struct lyd_value *val; |
| 4020 | const struct lys_module *mod; |
| 4021 | const char *id_name; |
| 4022 | uint16_t id_len; |
| 4023 | struct lysc_ident *id; |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4024 | LY_ERR rc = LY_SUCCESS; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4025 | ly_bool found; |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4026 | |
| 4027 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4028 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4029 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", func); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4030 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4031 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4032 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype), |
| 4033 | sleaf->name); |
| 4034 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_IDENT)) { |
| 4035 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"identityref\".", func, sleaf->name); |
| 4036 | } |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4037 | } |
| 4038 | |
| 4039 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 4040 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4041 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", func, lys_nodetype2str(sleaf->nodetype), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 4042 | sleaf->name); |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4043 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4044 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", func, sleaf->name); |
| 4045 | } |
| 4046 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4047 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4048 | return rc; |
| 4049 | } |
| 4050 | |
| 4051 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4052 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "derived-from(-or-self)(node-set, string)"); |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4053 | return LY_EVALID; |
| 4054 | } |
| 4055 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
| 4056 | LY_CHECK_RET(rc); |
| 4057 | |
Michal Vasko | 9392369 | 2021-05-07 15:28:02 +0200 | [diff] [blame] | 4058 | /* parse the identity */ |
| 4059 | id_name = args[1]->val.str; |
| 4060 | id_len = strlen(id_name); |
| 4061 | rc = moveto_resolve_model(&id_name, &id_len, set, set->cur_node ? set->cur_node->schema : NULL, &mod); |
| 4062 | LY_CHECK_RET(rc); |
| 4063 | if (!mod) { |
| 4064 | LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" without a prefix.", (int)id_len, id_name); |
| 4065 | return LY_EVALID; |
| 4066 | } |
| 4067 | |
| 4068 | /* find the identity */ |
| 4069 | found = 0; |
| 4070 | LY_ARRAY_FOR(mod->identities, u) { |
| 4071 | if (!ly_strncmp(mod->identities[u].name, id_name, id_len)) { |
| 4072 | /* we have match */ |
| 4073 | found = 1; |
| 4074 | break; |
| 4075 | } |
| 4076 | } |
| 4077 | if (!found) { |
| 4078 | LOGVAL(set->ctx, LYVE_XPATH, "Identity \"%.*s\" not found in module \"%s\".", (int)id_len, id_name, mod->name); |
| 4079 | return LY_EVALID; |
| 4080 | } |
| 4081 | id = &mod->identities[u]; |
| 4082 | |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4083 | set_fill_boolean(set, 0); |
| 4084 | found = 0; |
| 4085 | for (i = 0; i < args[0]->used; ++i) { |
| 4086 | if ((args[0]->val.nodes[i].type != LYXP_NODE_ELEM) && (args[0]->val.nodes[i].type != LYXP_NODE_META)) { |
| 4087 | continue; |
| 4088 | } |
| 4089 | |
| 4090 | if (args[0]->val.nodes[i].type == LYXP_NODE_ELEM) { |
| 4091 | leaf = (struct lyd_node_term *)args[0]->val.nodes[i].node; |
| 4092 | sleaf = (struct lysc_node_leaf *)leaf->schema; |
| 4093 | val = &leaf->value; |
| 4094 | if (!(sleaf->nodetype & LYD_NODE_TERM) || (leaf->value.realtype->basetype != LY_TYPE_IDENT)) { |
| 4095 | /* uninteresting */ |
| 4096 | continue; |
| 4097 | } |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4098 | } else { |
| 4099 | meta = args[0]->val.meta[i].meta; |
| 4100 | val = &meta->value; |
| 4101 | if (val->realtype->basetype != LY_TYPE_IDENT) { |
| 4102 | /* uninteresting */ |
| 4103 | continue; |
| 4104 | } |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4105 | } |
| 4106 | |
Michal Vasko | 9392369 | 2021-05-07 15:28:02 +0200 | [diff] [blame] | 4107 | /* check the identity itself */ |
| 4108 | if (self_match && (id == val->ident)) { |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4109 | set_fill_boolean(set, 1); |
| 4110 | found = 1; |
| 4111 | } |
Michal Vasko | 9392369 | 2021-05-07 15:28:02 +0200 | [diff] [blame] | 4112 | if (!found && !lyplg_type_identity_isderived(id, val->ident)) { |
| 4113 | set_fill_boolean(set, 1); |
| 4114 | found = 1; |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4115 | } |
| 4116 | |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4117 | if (found) { |
| 4118 | break; |
| 4119 | } |
| 4120 | } |
| 4121 | |
| 4122 | return LY_SUCCESS; |
| 4123 | } |
| 4124 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4125 | /** |
| 4126 | * @brief Execute the YANG 1.1 derived-from(node-set, string) function. Returns LYXP_SET_BOOLEAN depending |
| 4127 | * on whether the first argument nodes contain a node of an identity derived from the second |
| 4128 | * argument identity. |
| 4129 | * |
| 4130 | * @param[in] args Array of arguments. |
| 4131 | * @param[in] arg_count Count of elements in @p args. |
| 4132 | * @param[in,out] set Context and result set at the same time. |
| 4133 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4134 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4135 | */ |
| 4136 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4137 | xpath_derived_from(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4138 | { |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4139 | return xpath_derived_(args, set, options, 0, __func__); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4140 | } |
| 4141 | |
| 4142 | /** |
| 4143 | * @brief Execute the YANG 1.1 derived-from-or-self(node-set, string) function. Returns LYXP_SET_BOOLEAN depending |
| 4144 | * on whether the first argument nodes contain a node of an identity that either is or is derived from |
| 4145 | * the second argument identity. |
| 4146 | * |
| 4147 | * @param[in] args Array of arguments. |
| 4148 | * @param[in] arg_count Count of elements in @p args. |
| 4149 | * @param[in,out] set Context and result set at the same time. |
| 4150 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4151 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4152 | */ |
| 4153 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4154 | xpath_derived_from_or_self(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4155 | { |
Michal Vasko | e0dd59d | 2020-07-17 16:10:23 +0200 | [diff] [blame] | 4156 | return xpath_derived_(args, set, options, 1, __func__); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4157 | } |
| 4158 | |
| 4159 | /** |
| 4160 | * @brief Execute the YANG 1.1 enum-value(node-set) function. Returns LYXP_SET_NUMBER |
| 4161 | * with the integer value of the first node's enum value, otherwise NaN. |
| 4162 | * |
| 4163 | * @param[in] args Array of arguments. |
| 4164 | * @param[in] arg_count Count of elements in @p args. |
| 4165 | * @param[in,out] set Context and result set at the same time. |
| 4166 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4167 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4168 | */ |
| 4169 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4170 | xpath_enum_value(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4171 | { |
| 4172 | struct lyd_node_term *leaf; |
| 4173 | struct lysc_node_leaf *sleaf; |
| 4174 | LY_ERR rc = LY_SUCCESS; |
| 4175 | |
| 4176 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4177 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4178 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4179 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4180 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4181 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 4182 | sleaf->name); |
| 4183 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_ENUM)) { |
| 4184 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"enumeration\".", __func__, sleaf->name); |
| 4185 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4186 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4187 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4188 | return rc; |
| 4189 | } |
| 4190 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4191 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4192 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "enum-value(node-set)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4193 | return LY_EVALID; |
| 4194 | } |
| 4195 | |
| 4196 | set_fill_number(set, NAN); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4197 | if (args[0]->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4198 | leaf = (struct lyd_node_term *)args[0]->val.nodes[0].node; |
| 4199 | sleaf = (struct lysc_node_leaf *)leaf->schema; |
| 4200 | if ((sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST)) && (sleaf->type->basetype == LY_TYPE_ENUM)) { |
| 4201 | set_fill_number(set, leaf->value.enum_item->value); |
| 4202 | } |
| 4203 | } |
| 4204 | |
| 4205 | return LY_SUCCESS; |
| 4206 | } |
| 4207 | |
| 4208 | /** |
| 4209 | * @brief Execute the XPath false() function. Returns LYXP_SET_BOOLEAN |
| 4210 | * with false value. |
| 4211 | * |
| 4212 | * @param[in] args Array of arguments. |
| 4213 | * @param[in] arg_count Count of elements in @p args. |
| 4214 | * @param[in,out] set Context and result set at the same time. |
| 4215 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4216 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4217 | */ |
| 4218 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4219 | xpath_false(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4220 | { |
| 4221 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4222 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4223 | return LY_SUCCESS; |
| 4224 | } |
| 4225 | |
| 4226 | set_fill_boolean(set, 0); |
| 4227 | return LY_SUCCESS; |
| 4228 | } |
| 4229 | |
| 4230 | /** |
| 4231 | * @brief Execute the XPath floor(number) function. Returns LYXP_SET_NUMBER |
| 4232 | * with the first argument floored (truncated). |
| 4233 | * |
| 4234 | * @param[in] args Array of arguments. |
| 4235 | * @param[in] arg_count Count of elements in @p args. |
| 4236 | * @param[in,out] set Context and result set at the same time. |
| 4237 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4238 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4239 | */ |
| 4240 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4241 | xpath_floor(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t UNUSED(options)) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4242 | { |
| 4243 | LY_ERR rc; |
| 4244 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4245 | rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4246 | LY_CHECK_RET(rc); |
| 4247 | if (isfinite(args[0]->val.num)) { |
| 4248 | set_fill_number(set, (long long)args[0]->val.num); |
| 4249 | } |
| 4250 | |
| 4251 | return LY_SUCCESS; |
| 4252 | } |
| 4253 | |
| 4254 | /** |
| 4255 | * @brief Execute the XPath lang(string) function. Returns LYXP_SET_BOOLEAN |
| 4256 | * whether the language of the text matches the one from the argument. |
| 4257 | * |
| 4258 | * @param[in] args Array of arguments. |
| 4259 | * @param[in] arg_count Count of elements in @p args. |
| 4260 | * @param[in,out] set Context and result set at the same time. |
| 4261 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4262 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4263 | */ |
| 4264 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4265 | xpath_lang(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4266 | { |
| 4267 | const struct lyd_node *node; |
| 4268 | struct lysc_node_leaf *sleaf; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4269 | struct lyd_meta *meta = NULL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4270 | const char *val; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4271 | LY_ERR rc = LY_SUCCESS; |
| 4272 | |
| 4273 | if (options & LYXP_SCNODE_ALL) { |
| 4274 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4275 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4276 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 4277 | sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4278 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4279 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4280 | } |
| 4281 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4282 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4283 | return rc; |
| 4284 | } |
| 4285 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4286 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4287 | LY_CHECK_RET(rc); |
| 4288 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4289 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4290 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "lang(string)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4291 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4292 | } else if (!set->used) { |
| 4293 | set_fill_boolean(set, 0); |
| 4294 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4295 | } |
| 4296 | |
| 4297 | switch (set->val.nodes[0].type) { |
| 4298 | case LYXP_NODE_ELEM: |
| 4299 | case LYXP_NODE_TEXT: |
| 4300 | node = set->val.nodes[0].node; |
| 4301 | break; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4302 | case LYXP_NODE_META: |
| 4303 | node = set->val.meta[0].meta->parent; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4304 | break; |
| 4305 | default: |
| 4306 | /* nothing to do with roots */ |
| 4307 | set_fill_boolean(set, 0); |
| 4308 | return LY_SUCCESS; |
| 4309 | } |
| 4310 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4311 | /* find lang metadata */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 4312 | for ( ; node; node = lyd_parent(node)) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4313 | for (meta = node->meta; meta; meta = meta->next) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4314 | /* annotations */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4315 | if (meta->name && !strcmp(meta->name, "lang") && !strcmp(meta->annotation->module->name, "xml")) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4316 | break; |
| 4317 | } |
| 4318 | } |
| 4319 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4320 | if (meta) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4321 | break; |
| 4322 | } |
| 4323 | } |
| 4324 | |
| 4325 | /* compare languages */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4326 | if (!meta) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4327 | set_fill_boolean(set, 0); |
| 4328 | } else { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4329 | uint64_t i; |
| 4330 | |
Radek Krejci | 6d5ba0c | 2021-04-26 07:49:59 +0200 | [diff] [blame] | 4331 | val = lyd_get_meta_value(meta); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4332 | for (i = 0; args[0]->val.str[i]; ++i) { |
| 4333 | if (tolower(args[0]->val.str[i]) != tolower(val[i])) { |
| 4334 | set_fill_boolean(set, 0); |
| 4335 | break; |
| 4336 | } |
| 4337 | } |
| 4338 | if (!args[0]->val.str[i]) { |
| 4339 | if (!val[i] || (val[i] == '-')) { |
| 4340 | set_fill_boolean(set, 1); |
| 4341 | } else { |
| 4342 | set_fill_boolean(set, 0); |
| 4343 | } |
| 4344 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4345 | } |
| 4346 | |
| 4347 | return LY_SUCCESS; |
| 4348 | } |
| 4349 | |
| 4350 | /** |
| 4351 | * @brief Execute the XPath last() function. Returns LYXP_SET_NUMBER |
| 4352 | * with the context size. |
| 4353 | * |
| 4354 | * @param[in] args Array of arguments. |
| 4355 | * @param[in] arg_count Count of elements in @p args. |
| 4356 | * @param[in,out] set Context and result set at the same time. |
| 4357 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4358 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4359 | */ |
| 4360 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4361 | xpath_last(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4362 | { |
| 4363 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4364 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4365 | return LY_SUCCESS; |
| 4366 | } |
| 4367 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4368 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4369 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "last()"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4370 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4371 | } else if (!set->used) { |
| 4372 | set_fill_number(set, 0); |
| 4373 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4374 | } |
| 4375 | |
| 4376 | set_fill_number(set, set->ctx_size); |
| 4377 | return LY_SUCCESS; |
| 4378 | } |
| 4379 | |
| 4380 | /** |
| 4381 | * @brief Execute the XPath local-name(node-set?) function. Returns LYXP_SET_STRING |
| 4382 | * with the node name without namespace from the argument or the context. |
| 4383 | * |
| 4384 | * @param[in] args Array of arguments. |
| 4385 | * @param[in] arg_count Count of elements in @p args. |
| 4386 | * @param[in,out] set Context and result set at the same time. |
| 4387 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4388 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4389 | */ |
| 4390 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4391 | xpath_local_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4392 | { |
| 4393 | struct lyxp_set_node *item; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 4394 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4395 | /* suppress unused variable warning */ |
| 4396 | (void)options; |
| 4397 | |
| 4398 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4399 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4400 | return LY_SUCCESS; |
| 4401 | } |
| 4402 | |
| 4403 | if (arg_count) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4404 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4405 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 4406 | "local-name(node-set?)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4407 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4408 | } else if (!args[0]->used) { |
| 4409 | set_fill_string(set, "", 0); |
| 4410 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4411 | } |
| 4412 | |
| 4413 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4414 | assert(!set_sort(args[0])); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4415 | |
| 4416 | item = &args[0]->val.nodes[0]; |
| 4417 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4418 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4419 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "local-name(node-set?)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4420 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4421 | } else if (!set->used) { |
| 4422 | set_fill_string(set, "", 0); |
| 4423 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4424 | } |
| 4425 | |
| 4426 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4427 | assert(!set_sort(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4428 | |
| 4429 | item = &set->val.nodes[0]; |
| 4430 | } |
| 4431 | |
| 4432 | switch (item->type) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 4433 | case LYXP_NODE_NONE: |
| 4434 | LOGINT_RET(set->ctx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4435 | case LYXP_NODE_ROOT: |
| 4436 | case LYXP_NODE_ROOT_CONFIG: |
| 4437 | case LYXP_NODE_TEXT: |
| 4438 | set_fill_string(set, "", 0); |
| 4439 | break; |
| 4440 | case LYXP_NODE_ELEM: |
| 4441 | set_fill_string(set, item->node->schema->name, strlen(item->node->schema->name)); |
| 4442 | break; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4443 | case LYXP_NODE_META: |
| 4444 | set_fill_string(set, ((struct lyd_meta *)item->node)->name, strlen(((struct lyd_meta *)item->node)->name)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4445 | break; |
| 4446 | } |
| 4447 | |
| 4448 | return LY_SUCCESS; |
| 4449 | } |
| 4450 | |
| 4451 | /** |
| 4452 | * @brief Execute the XPath name(node-set?) function. Returns LYXP_SET_STRING |
| 4453 | * with the node name fully qualified (with namespace) from the argument or the context. |
| 4454 | * |
| 4455 | * @param[in] args Array of arguments. |
| 4456 | * @param[in] arg_count Count of elements in @p args. |
| 4457 | * @param[in,out] set Context and result set at the same time. |
| 4458 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4459 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4460 | */ |
| 4461 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4462 | xpath_name(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4463 | { |
| 4464 | struct lyxp_set_node *item; |
Michal Vasko | ed4fcfe | 2020-07-08 10:38:56 +0200 | [diff] [blame] | 4465 | struct lys_module *mod = NULL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4466 | char *str; |
Michal Vasko | ed4fcfe | 2020-07-08 10:38:56 +0200 | [diff] [blame] | 4467 | const char *name = NULL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4468 | |
| 4469 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4470 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4471 | return LY_SUCCESS; |
| 4472 | } |
| 4473 | |
| 4474 | if (arg_count) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4475 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4476 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "name(node-set?)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4477 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4478 | } else if (!args[0]->used) { |
| 4479 | set_fill_string(set, "", 0); |
| 4480 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4481 | } |
| 4482 | |
| 4483 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4484 | assert(!set_sort(args[0])); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4485 | |
| 4486 | item = &args[0]->val.nodes[0]; |
| 4487 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4488 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4489 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "name(node-set?)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4490 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4491 | } else if (!set->used) { |
| 4492 | set_fill_string(set, "", 0); |
| 4493 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4494 | } |
| 4495 | |
| 4496 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4497 | assert(!set_sort(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4498 | |
| 4499 | item = &set->val.nodes[0]; |
| 4500 | } |
| 4501 | |
| 4502 | switch (item->type) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 4503 | case LYXP_NODE_NONE: |
| 4504 | LOGINT_RET(set->ctx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4505 | case LYXP_NODE_ROOT: |
| 4506 | case LYXP_NODE_ROOT_CONFIG: |
| 4507 | case LYXP_NODE_TEXT: |
Michal Vasko | ed4fcfe | 2020-07-08 10:38:56 +0200 | [diff] [blame] | 4508 | /* keep NULL */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4509 | break; |
| 4510 | case LYXP_NODE_ELEM: |
| 4511 | mod = item->node->schema->module; |
| 4512 | name = item->node->schema->name; |
| 4513 | break; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4514 | case LYXP_NODE_META: |
| 4515 | mod = ((struct lyd_meta *)item->node)->annotation->module; |
| 4516 | name = ((struct lyd_meta *)item->node)->name; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4517 | break; |
| 4518 | } |
| 4519 | |
| 4520 | if (mod && name) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 4521 | int rc = asprintf(&str, "%s:%s", ly_get_prefix(mod, set->format, set->prefix_data), name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4522 | LY_CHECK_ERR_RET(rc == -1, LOGMEM(set->ctx), LY_EMEM); |
| 4523 | set_fill_string(set, str, strlen(str)); |
| 4524 | free(str); |
| 4525 | } else { |
| 4526 | set_fill_string(set, "", 0); |
| 4527 | } |
| 4528 | |
| 4529 | return LY_SUCCESS; |
| 4530 | } |
| 4531 | |
| 4532 | /** |
| 4533 | * @brief Execute the XPath namespace-uri(node-set?) function. Returns LYXP_SET_STRING |
| 4534 | * with the namespace of the node from the argument or the context. |
| 4535 | * |
| 4536 | * @param[in] args Array of arguments. |
| 4537 | * @param[in] arg_count Count of elements in @p args. |
| 4538 | * @param[in,out] set Context and result set at the same time. |
| 4539 | * @param[in] options XPath options. |
| 4540 | * @return LY_ERR (LY_EINVAL for wrong arguments on schema) |
| 4541 | */ |
| 4542 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4543 | xpath_namespace_uri(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4544 | { |
| 4545 | struct lyxp_set_node *item; |
| 4546 | struct lys_module *mod; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 4547 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4548 | /* suppress unused variable warning */ |
| 4549 | (void)options; |
| 4550 | |
| 4551 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4552 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4553 | return LY_SUCCESS; |
| 4554 | } |
| 4555 | |
| 4556 | if (arg_count) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4557 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4558 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 4559 | "namespace-uri(node-set?)"); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4560 | return LY_EVALID; |
| 4561 | } else if (!args[0]->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4562 | set_fill_string(set, "", 0); |
| 4563 | return LY_SUCCESS; |
| 4564 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4565 | |
| 4566 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4567 | assert(!set_sort(args[0])); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4568 | |
| 4569 | item = &args[0]->val.nodes[0]; |
| 4570 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4571 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4572 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "namespace-uri(node-set?)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4573 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4574 | } else if (!set->used) { |
| 4575 | set_fill_string(set, "", 0); |
| 4576 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4577 | } |
| 4578 | |
| 4579 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4580 | assert(!set_sort(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4581 | |
| 4582 | item = &set->val.nodes[0]; |
| 4583 | } |
| 4584 | |
| 4585 | switch (item->type) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 4586 | case LYXP_NODE_NONE: |
| 4587 | LOGINT_RET(set->ctx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4588 | case LYXP_NODE_ROOT: |
| 4589 | case LYXP_NODE_ROOT_CONFIG: |
| 4590 | case LYXP_NODE_TEXT: |
| 4591 | set_fill_string(set, "", 0); |
| 4592 | break; |
| 4593 | case LYXP_NODE_ELEM: |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4594 | case LYXP_NODE_META: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4595 | if (item->type == LYXP_NODE_ELEM) { |
| 4596 | mod = item->node->schema->module; |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4597 | } else { /* LYXP_NODE_META */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4598 | /* annotations */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 4599 | mod = ((struct lyd_meta *)item->node)->annotation->module; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4600 | } |
| 4601 | |
| 4602 | set_fill_string(set, mod->ns, strlen(mod->ns)); |
| 4603 | break; |
| 4604 | } |
| 4605 | |
| 4606 | return LY_SUCCESS; |
| 4607 | } |
| 4608 | |
| 4609 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4610 | * @brief Execute the XPath normalize-space(string?) function. Returns LYXP_SET_STRING |
| 4611 | * with normalized value (no leading, trailing, double white spaces) of the node |
| 4612 | * from the argument or the context. |
| 4613 | * |
| 4614 | * @param[in] args Array of arguments. |
| 4615 | * @param[in] arg_count Count of elements in @p args. |
| 4616 | * @param[in,out] set Context and result set at the same time. |
| 4617 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4618 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4619 | */ |
| 4620 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4621 | xpath_normalize_space(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4622 | { |
| 4623 | uint16_t i, new_used; |
| 4624 | char *new; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 4625 | ly_bool have_spaces = 0, space_before = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4626 | struct lysc_node_leaf *sleaf; |
| 4627 | LY_ERR rc = LY_SUCCESS; |
| 4628 | |
| 4629 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4630 | if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && |
| 4631 | (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4632 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4633 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 4634 | sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4635 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4636 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4637 | } |
| 4638 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4639 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4640 | return rc; |
| 4641 | } |
| 4642 | |
| 4643 | if (arg_count) { |
| 4644 | set_fill_set(set, args[0]); |
| 4645 | } |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4646 | rc = lyxp_set_cast(set, LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4647 | LY_CHECK_RET(rc); |
| 4648 | |
| 4649 | /* is there any normalization necessary? */ |
| 4650 | for (i = 0; set->val.str[i]; ++i) { |
| 4651 | if (is_xmlws(set->val.str[i])) { |
| 4652 | if ((i == 0) || space_before || (!set->val.str[i + 1])) { |
| 4653 | have_spaces = 1; |
| 4654 | break; |
| 4655 | } |
| 4656 | space_before = 1; |
| 4657 | } else { |
| 4658 | space_before = 0; |
| 4659 | } |
| 4660 | } |
| 4661 | |
| 4662 | /* yep, there is */ |
| 4663 | if (have_spaces) { |
| 4664 | /* it's enough, at least one character will go, makes space for ending '\0' */ |
| 4665 | new = malloc(strlen(set->val.str) * sizeof(char)); |
| 4666 | LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM); |
| 4667 | new_used = 0; |
| 4668 | |
| 4669 | space_before = 0; |
| 4670 | for (i = 0; set->val.str[i]; ++i) { |
| 4671 | if (is_xmlws(set->val.str[i])) { |
| 4672 | if ((i == 0) || space_before) { |
| 4673 | space_before = 1; |
| 4674 | continue; |
| 4675 | } else { |
| 4676 | space_before = 1; |
| 4677 | } |
| 4678 | } else { |
| 4679 | space_before = 0; |
| 4680 | } |
| 4681 | |
| 4682 | new[new_used] = (space_before ? ' ' : set->val.str[i]); |
| 4683 | ++new_used; |
| 4684 | } |
| 4685 | |
| 4686 | /* at worst there is one trailing space now */ |
| 4687 | if (new_used && is_xmlws(new[new_used - 1])) { |
| 4688 | --new_used; |
| 4689 | } |
| 4690 | |
| 4691 | new = ly_realloc(new, (new_used + 1) * sizeof(char)); |
| 4692 | LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM); |
| 4693 | new[new_used] = '\0'; |
| 4694 | |
| 4695 | free(set->val.str); |
| 4696 | set->val.str = new; |
| 4697 | } |
| 4698 | |
| 4699 | return LY_SUCCESS; |
| 4700 | } |
| 4701 | |
| 4702 | /** |
| 4703 | * @brief Execute the XPath not(boolean) function. Returns LYXP_SET_BOOLEAN |
| 4704 | * with the argument converted to boolean and logically inverted. |
| 4705 | * |
| 4706 | * @param[in] args Array of arguments. |
| 4707 | * @param[in] arg_count Count of elements in @p args. |
| 4708 | * @param[in,out] set Context and result set at the same time. |
| 4709 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4710 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4711 | */ |
| 4712 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4713 | xpath_not(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4714 | { |
| 4715 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4716 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4717 | return LY_SUCCESS; |
| 4718 | } |
| 4719 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4720 | lyxp_set_cast(args[0], LYXP_SET_BOOLEAN); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 4721 | if (args[0]->val.bln) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4722 | set_fill_boolean(set, 0); |
| 4723 | } else { |
| 4724 | set_fill_boolean(set, 1); |
| 4725 | } |
| 4726 | |
| 4727 | return LY_SUCCESS; |
| 4728 | } |
| 4729 | |
| 4730 | /** |
| 4731 | * @brief Execute the XPath number(object?) function. Returns LYXP_SET_NUMBER |
| 4732 | * with the number representation of either the argument or the context. |
| 4733 | * |
| 4734 | * @param[in] args Array of arguments. |
| 4735 | * @param[in] arg_count Count of elements in @p args. |
| 4736 | * @param[in,out] set Context and result set at the same time. |
| 4737 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4738 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4739 | */ |
| 4740 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4741 | xpath_number(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4742 | { |
| 4743 | LY_ERR rc; |
| 4744 | |
| 4745 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4746 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4747 | return LY_SUCCESS; |
| 4748 | } |
| 4749 | |
| 4750 | if (arg_count) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4751 | rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4752 | LY_CHECK_RET(rc); |
| 4753 | set_fill_set(set, args[0]); |
| 4754 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4755 | rc = lyxp_set_cast(set, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4756 | LY_CHECK_RET(rc); |
| 4757 | } |
| 4758 | |
| 4759 | return LY_SUCCESS; |
| 4760 | } |
| 4761 | |
| 4762 | /** |
| 4763 | * @brief Execute the XPath position() function. Returns LYXP_SET_NUMBER |
| 4764 | * with the context position. |
| 4765 | * |
| 4766 | * @param[in] args Array of arguments. |
| 4767 | * @param[in] arg_count Count of elements in @p args. |
| 4768 | * @param[in,out] set Context and result set at the same time. |
| 4769 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4770 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4771 | */ |
| 4772 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4773 | xpath_position(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4774 | { |
| 4775 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4776 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4777 | return LY_SUCCESS; |
| 4778 | } |
| 4779 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4780 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4781 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "position()"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4782 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 4783 | } else if (!set->used) { |
| 4784 | set_fill_number(set, 0); |
| 4785 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4786 | } |
| 4787 | |
| 4788 | set_fill_number(set, set->ctx_pos); |
| 4789 | |
| 4790 | /* UNUSED in 'Release' build type */ |
| 4791 | (void)options; |
| 4792 | return LY_SUCCESS; |
| 4793 | } |
| 4794 | |
| 4795 | /** |
| 4796 | * @brief Execute the YANG 1.1 re-match(string, string) function. Returns LYXP_SET_BOOLEAN |
| 4797 | * depending on whether the second argument regex matches the first argument string. For details refer to |
| 4798 | * YANG 1.1 RFC section 10.2.1. |
| 4799 | * |
| 4800 | * @param[in] args Array of arguments. |
| 4801 | * @param[in] arg_count Count of elements in @p args. |
| 4802 | * @param[in,out] set Context and result set at the same time. |
| 4803 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4804 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4805 | */ |
| 4806 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4807 | xpath_re_match(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4808 | { |
| 4809 | struct lysc_pattern **patterns = NULL, **pattern; |
| 4810 | struct lysc_node_leaf *sleaf; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4811 | LY_ERR rc = LY_SUCCESS; |
| 4812 | struct ly_err_item *err; |
| 4813 | |
| 4814 | if (options & LYXP_SCNODE_ALL) { |
| 4815 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4816 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4817 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4818 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4819 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4820 | } |
| 4821 | } |
| 4822 | |
| 4823 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 4824 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4825 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4826 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4827 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4828 | } |
| 4829 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4830 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4831 | return rc; |
| 4832 | } |
| 4833 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4834 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4835 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4836 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4837 | LY_CHECK_RET(rc); |
| 4838 | |
| 4839 | LY_ARRAY_NEW_RET(set->ctx, patterns, pattern, LY_EMEM); |
Radek Iša | 45802b5 | 2021-02-09 09:21:58 +0100 | [diff] [blame] | 4840 | *pattern = calloc(1, sizeof **pattern); |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 4841 | LOG_LOCSET(NULL, set->cur_node, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 4842 | rc = lys_compile_type_pattern_check(set->ctx, args[1]->val.str, &(*pattern)->code); |
Michal Vasko | 4a7d4d6 | 2021-12-13 17:05:06 +0100 | [diff] [blame] | 4843 | if (set->cur_node) { |
| 4844 | LOG_LOCBACK(0, 1, 0, 0); |
| 4845 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4846 | if (rc != LY_SUCCESS) { |
| 4847 | LY_ARRAY_FREE(patterns); |
| 4848 | return rc; |
| 4849 | } |
| 4850 | |
Radek Krejci | 0b01330 | 2021-03-29 15:22:32 +0200 | [diff] [blame] | 4851 | rc = lyplg_type_validate_patterns(patterns, args[0]->val.str, strlen(args[0]->val.str), &err); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4852 | pcre2_code_free((*pattern)->code); |
| 4853 | free(*pattern); |
| 4854 | LY_ARRAY_FREE(patterns); |
| 4855 | if (rc && (rc != LY_EVALID)) { |
Michal Vasko | 177d0ed | 2020-11-23 16:43:03 +0100 | [diff] [blame] | 4856 | ly_err_print(set->ctx, err); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4857 | ly_err_free(err); |
| 4858 | return rc; |
| 4859 | } |
| 4860 | |
| 4861 | if (rc == LY_EVALID) { |
| 4862 | ly_err_free(err); |
| 4863 | set_fill_boolean(set, 0); |
| 4864 | } else { |
| 4865 | set_fill_boolean(set, 1); |
| 4866 | } |
| 4867 | |
| 4868 | return LY_SUCCESS; |
| 4869 | } |
| 4870 | |
| 4871 | /** |
| 4872 | * @brief Execute the XPath round(number) function. Returns LYXP_SET_NUMBER |
| 4873 | * with the rounded first argument. For details refer to |
| 4874 | * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-round. |
| 4875 | * |
| 4876 | * @param[in] args Array of arguments. |
| 4877 | * @param[in] arg_count Count of elements in @p args. |
| 4878 | * @param[in,out] set Context and result set at the same time. |
| 4879 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4880 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4881 | */ |
| 4882 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4883 | xpath_round(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4884 | { |
| 4885 | struct lysc_node_leaf *sleaf; |
| 4886 | LY_ERR rc = LY_SUCCESS; |
| 4887 | |
| 4888 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4889 | if (args[0]->type != LYXP_SET_SCNODE_SET) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4890 | LOGWRN(set->ctx, "Argument #1 of %s not a node-set as expected.", __func__); |
Michal Vasko | 5676f4e | 2021-04-06 17:14:45 +0200 | [diff] [blame] | 4891 | } else if ((sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4892 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4893 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), |
| 4894 | sleaf->name); |
| 4895 | } else if (!warn_is_specific_type(sleaf->type, LY_TYPE_DEC64)) { |
| 4896 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of type \"decimal64\".", __func__, sleaf->name); |
| 4897 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4898 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4899 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4900 | return rc; |
| 4901 | } |
| 4902 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4903 | rc = lyxp_set_cast(args[0], LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4904 | LY_CHECK_RET(rc); |
| 4905 | |
| 4906 | /* cover only the cases where floor can't be used */ |
| 4907 | if ((args[0]->val.num == -0.0f) || ((args[0]->val.num < 0) && (args[0]->val.num >= -0.5))) { |
| 4908 | set_fill_number(set, -0.0f); |
| 4909 | } else { |
| 4910 | args[0]->val.num += 0.5; |
| 4911 | rc = xpath_floor(args, 1, args[0], options); |
| 4912 | LY_CHECK_RET(rc); |
| 4913 | set_fill_number(set, args[0]->val.num); |
| 4914 | } |
| 4915 | |
| 4916 | return LY_SUCCESS; |
| 4917 | } |
| 4918 | |
| 4919 | /** |
| 4920 | * @brief Execute the XPath starts-with(string, string) function. |
| 4921 | * Returns LYXP_SET_BOOLEAN whether the second argument is |
| 4922 | * the prefix of the first or not. |
| 4923 | * |
| 4924 | * @param[in] args Array of arguments. |
| 4925 | * @param[in] arg_count Count of elements in @p args. |
| 4926 | * @param[in,out] set Context and result set at the same time. |
| 4927 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4928 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4929 | */ |
| 4930 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4931 | xpath_starts_with(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4932 | { |
| 4933 | struct lysc_node_leaf *sleaf; |
| 4934 | LY_ERR rc = LY_SUCCESS; |
| 4935 | |
| 4936 | if (options & LYXP_SCNODE_ALL) { |
| 4937 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 4938 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4939 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4940 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4941 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4942 | } |
| 4943 | } |
| 4944 | |
| 4945 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 4946 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 4947 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4948 | } else if (!warn_is_string_type(sleaf->type)) { |
| 4949 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4950 | } |
| 4951 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4952 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4953 | return rc; |
| 4954 | } |
| 4955 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4956 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4957 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4958 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4959 | LY_CHECK_RET(rc); |
| 4960 | |
| 4961 | if (strncmp(args[0]->val.str, args[1]->val.str, strlen(args[1]->val.str))) { |
| 4962 | set_fill_boolean(set, 0); |
| 4963 | } else { |
| 4964 | set_fill_boolean(set, 1); |
| 4965 | } |
| 4966 | |
| 4967 | return LY_SUCCESS; |
| 4968 | } |
| 4969 | |
| 4970 | /** |
| 4971 | * @brief Execute the XPath string(object?) function. Returns LYXP_SET_STRING |
| 4972 | * with the string representation of either the argument or the context. |
| 4973 | * |
| 4974 | * @param[in] args Array of arguments. |
| 4975 | * @param[in] arg_count Count of elements in @p args. |
| 4976 | * @param[in,out] set Context and result set at the same time. |
| 4977 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 4978 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4979 | */ |
| 4980 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 4981 | xpath_string(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4982 | { |
| 4983 | LY_ERR rc; |
| 4984 | |
| 4985 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 4986 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4987 | return LY_SUCCESS; |
| 4988 | } |
| 4989 | |
| 4990 | if (arg_count) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4991 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4992 | LY_CHECK_RET(rc); |
| 4993 | set_fill_set(set, args[0]); |
| 4994 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 4995 | rc = lyxp_set_cast(set, LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 4996 | LY_CHECK_RET(rc); |
| 4997 | } |
| 4998 | |
| 4999 | return LY_SUCCESS; |
| 5000 | } |
| 5001 | |
| 5002 | /** |
| 5003 | * @brief Execute the XPath string-length(string?) function. Returns LYXP_SET_NUMBER |
| 5004 | * with the length of the string in either the argument or the context. |
| 5005 | * |
| 5006 | * @param[in] args Array of arguments. |
| 5007 | * @param[in] arg_count Count of elements in @p args. |
| 5008 | * @param[in,out] set Context and result set at the same time. |
| 5009 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5010 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5011 | */ |
| 5012 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5013 | xpath_string_length(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5014 | { |
| 5015 | struct lysc_node_leaf *sleaf; |
| 5016 | LY_ERR rc = LY_SUCCESS; |
| 5017 | |
| 5018 | if (options & LYXP_SCNODE_ALL) { |
| 5019 | if (arg_count && (args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 5020 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5021 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5022 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5023 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5024 | } |
| 5025 | } |
| 5026 | if (!arg_count && (set->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(set))) { |
| 5027 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5028 | LOGWRN(set->ctx, "Argument #0 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5029 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5030 | LOGWRN(set->ctx, "Argument #0 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5031 | } |
| 5032 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5033 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5034 | return rc; |
| 5035 | } |
| 5036 | |
| 5037 | if (arg_count) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5038 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5039 | LY_CHECK_RET(rc); |
| 5040 | set_fill_number(set, strlen(args[0]->val.str)); |
| 5041 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5042 | rc = lyxp_set_cast(set, LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5043 | LY_CHECK_RET(rc); |
| 5044 | set_fill_number(set, strlen(set->val.str)); |
| 5045 | } |
| 5046 | |
| 5047 | return LY_SUCCESS; |
| 5048 | } |
| 5049 | |
| 5050 | /** |
| 5051 | * @brief Execute the XPath substring(string, number, number?) function. |
| 5052 | * Returns LYXP_SET_STRING substring of the first argument starting |
| 5053 | * on the second argument index ending on the third argument index, |
| 5054 | * indexed from 1. For exact definition refer to |
| 5055 | * http://www.w3.org/TR/1999/REC-xpath-19991116/#function-substring. |
| 5056 | * |
| 5057 | * @param[in] args Array of arguments. |
| 5058 | * @param[in] arg_count Count of elements in @p args. |
| 5059 | * @param[in,out] set Context and result set at the same time. |
| 5060 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5061 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5062 | */ |
| 5063 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5064 | xpath_substring(struct lyxp_set **args, uint16_t arg_count, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5065 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5066 | int32_t start, len; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5067 | uint16_t str_start, str_len, pos; |
| 5068 | struct lysc_node_leaf *sleaf; |
| 5069 | LY_ERR rc = LY_SUCCESS; |
| 5070 | |
| 5071 | if (options & LYXP_SCNODE_ALL) { |
| 5072 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 5073 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5074 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5075 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5076 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5077 | } |
| 5078 | } |
| 5079 | |
| 5080 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 5081 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5082 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5083 | } else if (!warn_is_numeric_type(sleaf->type)) { |
| 5084 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5085 | } |
| 5086 | } |
| 5087 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 5088 | if ((arg_count == 3) && (args[2]->type == LYXP_SET_SCNODE_SET) && |
| 5089 | (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5090 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5091 | LOGWRN(set->ctx, "Argument #3 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5092 | } else if (!warn_is_numeric_type(sleaf->type)) { |
| 5093 | LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5094 | } |
| 5095 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5096 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5097 | return rc; |
| 5098 | } |
| 5099 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5100 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5101 | LY_CHECK_RET(rc); |
| 5102 | |
| 5103 | /* start */ |
| 5104 | if (xpath_round(&args[1], 1, args[1], options)) { |
| 5105 | return -1; |
| 5106 | } |
| 5107 | if (isfinite(args[1]->val.num)) { |
| 5108 | start = args[1]->val.num - 1; |
| 5109 | } else if (isinf(args[1]->val.num) && signbit(args[1]->val.num)) { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5110 | start = INT32_MIN; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5111 | } else { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5112 | start = INT32_MAX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5113 | } |
| 5114 | |
| 5115 | /* len */ |
| 5116 | if (arg_count == 3) { |
| 5117 | rc = xpath_round(&args[2], 1, args[2], options); |
| 5118 | LY_CHECK_RET(rc); |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5119 | if (isnan(args[2]->val.num) || signbit(args[2]->val.num)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5120 | len = 0; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5121 | } else if (isfinite(args[2]->val.num)) { |
| 5122 | len = args[2]->val.num; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5123 | } else { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5124 | len = INT32_MAX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5125 | } |
| 5126 | } else { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5127 | len = INT32_MAX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5128 | } |
| 5129 | |
| 5130 | /* find matching character positions */ |
| 5131 | str_start = 0; |
| 5132 | str_len = 0; |
| 5133 | for (pos = 0; args[0]->val.str[pos]; ++pos) { |
| 5134 | if (pos < start) { |
| 5135 | ++str_start; |
| 5136 | } else if (pos < start + len) { |
| 5137 | ++str_len; |
| 5138 | } else { |
| 5139 | break; |
| 5140 | } |
| 5141 | } |
| 5142 | |
| 5143 | set_fill_string(set, args[0]->val.str + str_start, str_len); |
| 5144 | return LY_SUCCESS; |
| 5145 | } |
| 5146 | |
| 5147 | /** |
| 5148 | * @brief Execute the XPath substring-after(string, string) function. |
| 5149 | * Returns LYXP_SET_STRING with the string succeeding the occurance |
| 5150 | * of the second argument in the first or an empty string. |
| 5151 | * |
| 5152 | * @param[in] args Array of arguments. |
| 5153 | * @param[in] arg_count Count of elements in @p args. |
| 5154 | * @param[in,out] set Context and result set at the same time. |
| 5155 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5156 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5157 | */ |
| 5158 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5159 | xpath_substring_after(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5160 | { |
| 5161 | char *ptr; |
| 5162 | struct lysc_node_leaf *sleaf; |
| 5163 | LY_ERR rc = LY_SUCCESS; |
| 5164 | |
| 5165 | if (options & LYXP_SCNODE_ALL) { |
| 5166 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 5167 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5168 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5169 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5170 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5171 | } |
| 5172 | } |
| 5173 | |
| 5174 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 5175 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5176 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5177 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5178 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5179 | } |
| 5180 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5181 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5182 | return rc; |
| 5183 | } |
| 5184 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5185 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5186 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5187 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5188 | LY_CHECK_RET(rc); |
| 5189 | |
| 5190 | ptr = strstr(args[0]->val.str, args[1]->val.str); |
| 5191 | if (ptr) { |
| 5192 | set_fill_string(set, ptr + strlen(args[1]->val.str), strlen(ptr + strlen(args[1]->val.str))); |
| 5193 | } else { |
| 5194 | set_fill_string(set, "", 0); |
| 5195 | } |
| 5196 | |
| 5197 | return LY_SUCCESS; |
| 5198 | } |
| 5199 | |
| 5200 | /** |
| 5201 | * @brief Execute the XPath substring-before(string, string) function. |
| 5202 | * Returns LYXP_SET_STRING with the string preceding the occurance |
| 5203 | * of the second argument in the first or an empty string. |
| 5204 | * |
| 5205 | * @param[in] args Array of arguments. |
| 5206 | * @param[in] arg_count Count of elements in @p args. |
| 5207 | * @param[in,out] set Context and result set at the same time. |
| 5208 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5209 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5210 | */ |
| 5211 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5212 | xpath_substring_before(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5213 | { |
| 5214 | char *ptr; |
| 5215 | struct lysc_node_leaf *sleaf; |
| 5216 | LY_ERR rc = LY_SUCCESS; |
| 5217 | |
| 5218 | if (options & LYXP_SCNODE_ALL) { |
| 5219 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 5220 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5221 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5222 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5223 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5224 | } |
| 5225 | } |
| 5226 | |
| 5227 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 5228 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5229 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5230 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5231 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5232 | } |
| 5233 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5234 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5235 | return rc; |
| 5236 | } |
| 5237 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5238 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5239 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5240 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5241 | LY_CHECK_RET(rc); |
| 5242 | |
| 5243 | ptr = strstr(args[0]->val.str, args[1]->val.str); |
| 5244 | if (ptr) { |
| 5245 | set_fill_string(set, args[0]->val.str, ptr - args[0]->val.str); |
| 5246 | } else { |
| 5247 | set_fill_string(set, "", 0); |
| 5248 | } |
| 5249 | |
| 5250 | return LY_SUCCESS; |
| 5251 | } |
| 5252 | |
| 5253 | /** |
| 5254 | * @brief Execute the XPath sum(node-set) function. Returns LYXP_SET_NUMBER |
| 5255 | * with the sum of all the nodes in the context. |
| 5256 | * |
| 5257 | * @param[in] args Array of arguments. |
| 5258 | * @param[in] arg_count Count of elements in @p args. |
| 5259 | * @param[in,out] set Context and result set at the same time. |
| 5260 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5261 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5262 | */ |
| 5263 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5264 | xpath_sum(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5265 | { |
| 5266 | long double num; |
| 5267 | char *str; |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 5268 | uint32_t i; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5269 | struct lyxp_set set_item; |
| 5270 | struct lysc_node_leaf *sleaf; |
| 5271 | LY_ERR rc = LY_SUCCESS; |
| 5272 | |
| 5273 | if (options & LYXP_SCNODE_ALL) { |
| 5274 | if (args[0]->type == LYXP_SET_SCNODE_SET) { |
| 5275 | for (i = 0; i < args[0]->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 5276 | if (args[0]->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5277 | sleaf = (struct lysc_node_leaf *)args[0]->val.scnodes[i].scnode; |
| 5278 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5279 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 5280 | lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5281 | } else if (!warn_is_numeric_type(sleaf->type)) { |
| 5282 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of numeric type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5283 | } |
| 5284 | } |
| 5285 | } |
| 5286 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5287 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5288 | return rc; |
| 5289 | } |
| 5290 | |
| 5291 | set_fill_number(set, 0); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5292 | |
| 5293 | if (args[0]->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 5294 | LOGVAL(set->ctx, LY_VCODE_XP_INARGTYPE, 1, print_set_type(args[0]), "sum(node-set)"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5295 | return LY_EVALID; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 5296 | } else if (!args[0]->used) { |
| 5297 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5298 | } |
| 5299 | |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 5300 | set_init(&set_item, set); |
| 5301 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5302 | set_item.type = LYXP_SET_NODE_SET; |
Michal Vasko | 41decbf | 2021-11-02 11:50:21 +0100 | [diff] [blame] | 5303 | set_item.val.nodes = calloc(1, sizeof *set_item.val.nodes); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5304 | LY_CHECK_ERR_RET(!set_item.val.nodes, LOGMEM(set->ctx), LY_EMEM); |
| 5305 | |
| 5306 | set_item.used = 1; |
| 5307 | set_item.size = 1; |
| 5308 | |
| 5309 | for (i = 0; i < args[0]->used; ++i) { |
| 5310 | set_item.val.nodes[0] = args[0]->val.nodes[i]; |
| 5311 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5312 | rc = cast_node_set_to_string(&set_item, &str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5313 | LY_CHECK_RET(rc); |
| 5314 | num = cast_string_to_number(str); |
| 5315 | free(str); |
| 5316 | set->val.num += num; |
| 5317 | } |
| 5318 | |
| 5319 | free(set_item.val.nodes); |
| 5320 | |
| 5321 | return LY_SUCCESS; |
| 5322 | } |
| 5323 | |
| 5324 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5325 | * @brief Execute the XPath translate(string, string, string) function. |
| 5326 | * Returns LYXP_SET_STRING with the first argument with the characters |
| 5327 | * from the second argument replaced by those on the corresponding |
| 5328 | * positions in the third argument. |
| 5329 | * |
| 5330 | * @param[in] args Array of arguments. |
| 5331 | * @param[in] arg_count Count of elements in @p args. |
| 5332 | * @param[in,out] set Context and result set at the same time. |
| 5333 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5334 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5335 | */ |
| 5336 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5337 | xpath_translate(struct lyxp_set **args, uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5338 | { |
| 5339 | uint16_t i, j, new_used; |
| 5340 | char *new; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 5341 | ly_bool have_removed; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5342 | struct lysc_node_leaf *sleaf; |
| 5343 | LY_ERR rc = LY_SUCCESS; |
| 5344 | |
| 5345 | if (options & LYXP_SCNODE_ALL) { |
| 5346 | if ((args[0]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[0]))) { |
| 5347 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5348 | LOGWRN(set->ctx, "Argument #1 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5349 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5350 | LOGWRN(set->ctx, "Argument #1 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5351 | } |
| 5352 | } |
| 5353 | |
| 5354 | if ((args[1]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[1]))) { |
| 5355 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5356 | LOGWRN(set->ctx, "Argument #2 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5357 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5358 | LOGWRN(set->ctx, "Argument #2 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5359 | } |
| 5360 | } |
| 5361 | |
| 5362 | if ((args[2]->type == LYXP_SET_SCNODE_SET) && (sleaf = (struct lysc_node_leaf *)warn_get_scnode_in_ctx(args[2]))) { |
| 5363 | if (!(sleaf->nodetype & (LYS_LEAF | LYS_LEAFLIST))) { |
| 5364 | LOGWRN(set->ctx, "Argument #3 of %s is a %s node \"%s\".", __func__, lys_nodetype2str(sleaf->nodetype), sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5365 | } else if (!warn_is_string_type(sleaf->type)) { |
| 5366 | LOGWRN(set->ctx, "Argument #3 of %s is node \"%s\", not of string-type.", __func__, sleaf->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5367 | } |
| 5368 | } |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5369 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5370 | return rc; |
| 5371 | } |
| 5372 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5373 | rc = lyxp_set_cast(args[0], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5374 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5375 | rc = lyxp_set_cast(args[1], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5376 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5377 | rc = lyxp_set_cast(args[2], LYXP_SET_STRING); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5378 | LY_CHECK_RET(rc); |
| 5379 | |
| 5380 | new = malloc((strlen(args[0]->val.str) + 1) * sizeof(char)); |
| 5381 | LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM); |
| 5382 | new_used = 0; |
| 5383 | |
| 5384 | have_removed = 0; |
| 5385 | for (i = 0; args[0]->val.str[i]; ++i) { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 5386 | ly_bool found = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5387 | |
| 5388 | for (j = 0; args[1]->val.str[j]; ++j) { |
| 5389 | if (args[0]->val.str[i] == args[1]->val.str[j]) { |
| 5390 | /* removing this char */ |
| 5391 | if (j >= strlen(args[2]->val.str)) { |
| 5392 | have_removed = 1; |
| 5393 | found = 1; |
| 5394 | break; |
| 5395 | } |
| 5396 | /* replacing this char */ |
| 5397 | new[new_used] = args[2]->val.str[j]; |
| 5398 | ++new_used; |
| 5399 | found = 1; |
| 5400 | break; |
| 5401 | } |
| 5402 | } |
| 5403 | |
| 5404 | /* copying this char */ |
| 5405 | if (!found) { |
| 5406 | new[new_used] = args[0]->val.str[i]; |
| 5407 | ++new_used; |
| 5408 | } |
| 5409 | } |
| 5410 | |
| 5411 | if (have_removed) { |
| 5412 | new = ly_realloc(new, (new_used + 1) * sizeof(char)); |
| 5413 | LY_CHECK_ERR_RET(!new, LOGMEM(set->ctx), LY_EMEM); |
| 5414 | } |
| 5415 | new[new_used] = '\0'; |
| 5416 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 5417 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5418 | set->type = LYXP_SET_STRING; |
| 5419 | set->val.str = new; |
| 5420 | |
| 5421 | return LY_SUCCESS; |
| 5422 | } |
| 5423 | |
| 5424 | /** |
| 5425 | * @brief Execute the XPath true() function. Returns LYXP_SET_BOOLEAN |
| 5426 | * with true value. |
| 5427 | * |
| 5428 | * @param[in] args Array of arguments. |
| 5429 | * @param[in] arg_count Count of elements in @p args. |
| 5430 | * @param[in,out] set Context and result set at the same time. |
| 5431 | * @param[in] options XPath options. |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 5432 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5433 | */ |
| 5434 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5435 | xpath_true(struct lyxp_set **UNUSED(args), uint16_t UNUSED(arg_count), struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5436 | { |
| 5437 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5438 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5439 | return LY_SUCCESS; |
| 5440 | } |
| 5441 | |
| 5442 | set_fill_boolean(set, 1); |
| 5443 | return LY_SUCCESS; |
| 5444 | } |
| 5445 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5446 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5447 | * @brief Execute the XPath node() processing instruction (node type). Returns LYXP_SET_NODE_SET |
| 5448 | * with only nodes from the context. |
| 5449 | * |
| 5450 | * @param[in,out] set Context and result set at the same time. |
| 5451 | * @param[in] axis Axis to search on. |
| 5452 | * @param[in] options XPath options. |
| 5453 | * @return LY_ERR |
| 5454 | */ |
| 5455 | static LY_ERR |
| 5456 | xpath_pi_node(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options) |
| 5457 | { |
| 5458 | if (options & LYXP_SCNODE_ALL) { |
| 5459 | return moveto_scnode(set, NULL, NULL, axis, options); |
| 5460 | } |
| 5461 | |
| 5462 | if (set->type != LYXP_SET_NODE_SET) { |
| 5463 | lyxp_set_free_content(set); |
| 5464 | return LY_SUCCESS; |
| 5465 | } |
| 5466 | |
| 5467 | /* just like moving to a node with no restrictions */ |
| 5468 | return moveto_node(set, NULL, NULL, axis, options); |
| 5469 | } |
| 5470 | |
| 5471 | /** |
| 5472 | * @brief Execute the XPath text() processing instruction (node type). Returns LYXP_SET_NODE_SET |
| 5473 | * with the text content of the nodes in the context. |
| 5474 | * |
| 5475 | * @param[in,out] set Context and result set at the same time. |
| 5476 | * @param[in] axis Axis to search on. |
| 5477 | * @param[in] options XPath options. |
| 5478 | * @return LY_ERR |
| 5479 | */ |
| 5480 | static LY_ERR |
| 5481 | xpath_pi_text(struct lyxp_set *set, enum lyxp_axis axis, uint32_t options) |
| 5482 | { |
| 5483 | uint32_t i; |
| 5484 | |
| 5485 | if (options & LYXP_SCNODE_ALL) { |
| 5486 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
| 5487 | return LY_SUCCESS; |
| 5488 | } |
| 5489 | |
| 5490 | if (set->type != LYXP_SET_NODE_SET) { |
| 5491 | LOGVAL(set->ctx, LY_VCODE_XP_INCTX, print_set_type(set), "text()"); |
| 5492 | return LY_EVALID; |
| 5493 | } |
| 5494 | |
| 5495 | if (axis != LYXP_AXIS_CHILD) { |
| 5496 | /* even following and preceding axescan return text nodes, but whatever */ |
| 5497 | lyxp_set_free_content(set); |
| 5498 | return LY_SUCCESS; |
| 5499 | } |
| 5500 | |
| 5501 | for (i = 0; i < set->used; ++i) { |
| 5502 | switch (set->val.nodes[i].type) { |
| 5503 | case LYXP_NODE_NONE: |
| 5504 | LOGINT_RET(set->ctx); |
| 5505 | case LYXP_NODE_ELEM: |
| 5506 | if (set->val.nodes[i].node->schema->nodetype & (LYS_LEAF | LYS_LEAFLIST)) { |
| 5507 | set->val.nodes[i].type = LYXP_NODE_TEXT; |
| 5508 | break; |
| 5509 | } |
| 5510 | /* fall through */ |
| 5511 | case LYXP_NODE_ROOT: |
| 5512 | case LYXP_NODE_ROOT_CONFIG: |
| 5513 | case LYXP_NODE_TEXT: |
| 5514 | case LYXP_NODE_META: |
| 5515 | set_remove_node_none(set, i); |
| 5516 | break; |
| 5517 | } |
| 5518 | } |
| 5519 | set_remove_nodes_none(set); |
| 5520 | |
| 5521 | return LY_SUCCESS; |
| 5522 | } |
| 5523 | |
| 5524 | /** |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5525 | * @brief Skip prefix and return corresponding model if there is a prefix. Logs directly. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5526 | * |
Michal Vasko | 2104e9f | 2020-03-06 08:23:25 +0100 | [diff] [blame] | 5527 | * XPath @p set is expected to be a (sc)node set! |
| 5528 | * |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5529 | * @param[in,out] qname Qualified node name. If includes prefix, it is skipped. |
| 5530 | * @param[in,out] qname_len Length of @p qname, is updated accordingly. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5531 | * @param[in] set Set with general XPath context. |
| 5532 | * @param[in] ctx_scnode Context node to inherit module for unprefixed node for ::LY_PREF_JSON. |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5533 | * @param[out] moveto_mod Expected module of a matching node. |
| 5534 | * @return LY_ERR |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5535 | */ |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5536 | static LY_ERR |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5537 | moveto_resolve_model(const char **qname, uint16_t *qname_len, const struct lyxp_set *set, |
| 5538 | const struct lysc_node *ctx_scnode, const struct lys_module **moveto_mod) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5539 | { |
Michal Vasko | ed4fcfe | 2020-07-08 10:38:56 +0200 | [diff] [blame] | 5540 | const struct lys_module *mod = NULL; |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5541 | const char *ptr; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5542 | size_t pref_len; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5543 | |
Michal Vasko | 2104e9f | 2020-03-06 08:23:25 +0100 | [diff] [blame] | 5544 | assert((set->type == LYXP_SET_NODE_SET) || (set->type == LYXP_SET_SCNODE_SET)); |
| 5545 | |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5546 | if ((ptr = ly_strnchr(*qname, ':', *qname_len))) { |
| 5547 | /* specific module */ |
| 5548 | pref_len = ptr - *qname; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5549 | mod = ly_resolve_prefix(set->ctx, *qname, pref_len, set->format, set->prefix_data); |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5550 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 5551 | /* check for errors and non-implemented modules, as they are not valid */ |
Juraj Vijtiuk | d75faa6 | 2019-11-26 14:10:10 +0100 | [diff] [blame] | 5552 | if (!mod || !mod->implemented) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 5553 | LOGVAL(set->ctx, LY_VCODE_XP_INMOD, pref_len, *qname); |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5554 | return LY_EVALID; |
| 5555 | } |
Juraj Vijtiuk | d75faa6 | 2019-11-26 14:10:10 +0100 | [diff] [blame] | 5556 | |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5557 | *qname += pref_len + 1; |
| 5558 | *qname_len -= pref_len + 1; |
| 5559 | } else if (((*qname)[0] == '*') && (*qname_len == 1)) { |
| 5560 | /* all modules - special case */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5561 | mod = NULL; |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5562 | } else { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5563 | switch (set->format) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 5564 | case LY_VALUE_SCHEMA: |
| 5565 | case LY_VALUE_SCHEMA_RESOLVED: |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5566 | /* current module */ |
| 5567 | mod = set->cur_mod; |
| 5568 | break; |
Radek Krejci | 224d4b4 | 2021-04-23 13:54:59 +0200 | [diff] [blame] | 5569 | case LY_VALUE_CANON: |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 5570 | case LY_VALUE_JSON: |
Radek Krejci | f994364 | 2021-04-26 10:18:21 +0200 | [diff] [blame] | 5571 | case LY_VALUE_LYB: |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 5572 | case LY_VALUE_STR_NS: |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5573 | /* inherit parent (context node) module */ |
| 5574 | if (ctx_scnode) { |
| 5575 | mod = ctx_scnode->module; |
| 5576 | } else { |
| 5577 | mod = NULL; |
| 5578 | } |
| 5579 | break; |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 5580 | case LY_VALUE_XML: |
Michal Vasko | 52143d1 | 2021-04-14 15:36:39 +0200 | [diff] [blame] | 5581 | /* all nodes need to be prefixed */ |
| 5582 | LOGVAL(set->ctx, LYVE_DATA, "Non-prefixed node \"%.*s\" in XML xpath found.", *qname_len, *qname); |
| 5583 | return LY_EVALID; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5584 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5585 | } |
| 5586 | |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5587 | *moveto_mod = mod; |
| 5588 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5589 | } |
| 5590 | |
| 5591 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5592 | * @brief Move context @p set to the root. Handles absolute path. |
| 5593 | * Result is LYXP_SET_NODE_SET. |
| 5594 | * |
| 5595 | * @param[in,out] set Set to use. |
| 5596 | * @param[in] options Xpath options. |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 5597 | * @return LY_ERR value. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5598 | */ |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 5599 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 5600 | moveto_root(struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5601 | { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 5602 | assert(!(options & LYXP_SKIP_EXPR)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5603 | |
| 5604 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 5605 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 5606 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, NULL, set->root_type, NULL)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5607 | } else { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 5608 | set->type = LYXP_SET_NODE_SET; |
| 5609 | set->used = 0; |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 5610 | set_insert_node(set, NULL, 0, set->root_type, 0); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5611 | } |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 5612 | |
| 5613 | return LY_SUCCESS; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5614 | } |
| 5615 | |
| 5616 | /** |
| 5617 | * @brief Check @p node as a part of NameTest processing. |
| 5618 | * |
| 5619 | * @param[in] node Node to check. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5620 | * @param[in] node_type Node type of @p node. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5621 | * @param[in] set Set to read general context from. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 5622 | * @param[in] node_name Node name in the dictionary to move to, NULL for any node. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5623 | * @param[in] moveto_mod Expected module of the node, NULL for no prefix. |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 5624 | * @param[in] options XPath options. |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5625 | * @return LY_ERR (LY_ENOT if node does not match, LY_EINCOMPLETE on unresolved when, |
| 5626 | * LY_EINVAL if netither node nor any children match) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5627 | */ |
| 5628 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5629 | moveto_node_check(const struct lyd_node *node, enum lyxp_node_type node_type, const struct lyxp_set *set, |
| 5630 | const char *node_name, const struct lys_module *moveto_mod, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5631 | { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5632 | if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) { |
| 5633 | assert(node_type == set->root_type); |
| 5634 | |
| 5635 | if (node_name || moveto_mod) { |
| 5636 | /* root will not match a specific node */ |
| 5637 | return LY_ENOT; |
| 5638 | } |
| 5639 | return LY_SUCCESS; |
| 5640 | } else if (node_type != LYXP_NODE_ELEM) { |
| 5641 | /* other types will not match */ |
| 5642 | return LY_ENOT; |
| 5643 | } |
| 5644 | |
Michal Vasko | dca9f12 | 2021-07-16 13:56:22 +0200 | [diff] [blame] | 5645 | if (!node->schema) { |
| 5646 | /* opaque node never matches */ |
| 5647 | return LY_ENOT; |
| 5648 | } |
| 5649 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5650 | /* module check */ |
| 5651 | if (moveto_mod && (node->schema->module != moveto_mod)) { |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5652 | return LY_ENOT; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5653 | } |
| 5654 | |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 5655 | /* context check */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5656 | if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->schema->flags & LYS_CONFIG_R)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5657 | return LY_EINVAL; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5658 | } else if (set->context_op && (node->schema->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && |
| 5659 | (node->schema != set->context_op)) { |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 5660 | return LY_EINVAL; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5661 | } |
| 5662 | |
| 5663 | /* name check */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5664 | if (node_name && (node->schema->name != node_name)) { |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 5665 | return LY_ENOT; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5666 | } |
| 5667 | |
Michal Vasko | a142454 | 2019-11-14 16:08:52 +0100 | [diff] [blame] | 5668 | /* when check */ |
Michal Vasko | d5cfa6e | 2020-11-23 16:56:08 +0100 | [diff] [blame] | 5669 | if (!(options & LYXP_IGNORE_WHEN) && lysc_has_when(node->schema) && !(node->flags & LYD_WHEN_TRUE)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5670 | return LY_EINCOMPLETE; |
Michal Vasko | a142454 | 2019-11-14 16:08:52 +0100 | [diff] [blame] | 5671 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5672 | |
| 5673 | /* match */ |
| 5674 | return LY_SUCCESS; |
| 5675 | } |
| 5676 | |
| 5677 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5678 | * @brief Get the next node in a forward DFS. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5679 | * |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5680 | * @param[in] iter Last returned node. |
| 5681 | * @param[in] stop Node to stop the search on and not return. |
| 5682 | * @return Next node, NULL if there are no more. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5683 | */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5684 | static const struct lyd_node * |
| 5685 | moveto_axis_node_next_dfs_forward(const struct lyd_node *iter, const struct lyd_node *stop) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5686 | { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5687 | const struct lyd_node *next = NULL; |
| 5688 | |
| 5689 | /* 1) child */ |
| 5690 | next = lyd_child(iter); |
| 5691 | if (!next) { |
| 5692 | if (iter == stop) { |
| 5693 | /* reached stop, no more descendants */ |
| 5694 | return NULL; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5695 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5696 | /* 2) child next sibling */ |
| 5697 | next = iter->next; |
| 5698 | } |
| 5699 | while (!next) { |
| 5700 | iter = lyd_parent(iter); |
| 5701 | if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) { |
| 5702 | return NULL; |
| 5703 | } |
| 5704 | next = iter->next; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5705 | } |
| 5706 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5707 | return next; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5708 | } |
| 5709 | |
| 5710 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5711 | * @brief Get the next node in a backward DFS. |
| 5712 | * |
| 5713 | * @param[in] iter Last returned node. |
| 5714 | * @param[in] stop Node to stop the search on and not return. |
| 5715 | * @return Next node, NULL if there are no more. |
| 5716 | */ |
| 5717 | static const struct lyd_node * |
| 5718 | moveto_axis_node_next_dfs_backward(const struct lyd_node *iter, const struct lyd_node *stop) |
| 5719 | { |
| 5720 | const struct lyd_node *next = NULL; |
| 5721 | |
| 5722 | /* 1) previous sibling innermost last child */ |
| 5723 | next = iter->prev->next ? iter->prev : NULL; |
| 5724 | while (next && lyd_child(next)) { |
| 5725 | next = lyd_child(next); |
| 5726 | next = next->prev; |
| 5727 | } |
| 5728 | |
| 5729 | if (!next) { |
| 5730 | /* 2) parent */ |
| 5731 | iter = lyd_parent(iter); |
| 5732 | if ((!stop && !iter) || (stop && (lyd_parent(iter) == lyd_parent(stop)))) { |
| 5733 | return NULL; |
| 5734 | } |
| 5735 | next = iter; |
| 5736 | } |
| 5737 | |
| 5738 | return next; |
| 5739 | } |
| 5740 | |
| 5741 | /** |
| 5742 | * @brief Get the first node on an axis for a context node. |
| 5743 | * |
| 5744 | * @param[in,out] iter NULL, updated to the next node. |
| 5745 | * @param[in,out] iter_type Node type 0 of @p iter, updated to the node type of the next node. |
| 5746 | * @param[in] node Context node. |
| 5747 | * @param[in] node_type Type of @p node. |
| 5748 | * @param[in] axis Axis to use. |
| 5749 | * @param[in] set XPath set with the general context. |
| 5750 | * @return LY_SUCCESS on success. |
| 5751 | * @return LY_ENOTFOUND if no next node found. |
| 5752 | */ |
| 5753 | static LY_ERR |
| 5754 | moveto_axis_node_next_first(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node, |
| 5755 | enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set) |
| 5756 | { |
| 5757 | const struct lyd_node *next = NULL; |
| 5758 | enum lyxp_node_type next_type = 0; |
| 5759 | |
| 5760 | assert(!*iter); |
| 5761 | assert(!*iter_type); |
| 5762 | |
| 5763 | switch (axis) { |
| 5764 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 5765 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 5766 | case LYXP_AXIS_SELF: |
| 5767 | /* return the context node */ |
| 5768 | next = node; |
| 5769 | next_type = node_type; |
| 5770 | break; |
| 5771 | |
| 5772 | case LYXP_AXIS_ANCESTOR: |
| 5773 | case LYXP_AXIS_PARENT: |
| 5774 | if (node_type == LYXP_NODE_ELEM) { |
| 5775 | next = lyd_parent(node); |
| 5776 | next_type = next ? LYXP_NODE_ELEM : set->root_type; |
| 5777 | } else if (node_type == LYXP_NODE_TEXT) { |
| 5778 | next = node; |
| 5779 | next_type = LYXP_NODE_ELEM; |
| 5780 | } else if (node_type == LYXP_NODE_META) { |
| 5781 | next = ((struct lyd_meta *)node)->parent; |
| 5782 | next_type = LYXP_NODE_ELEM; |
| 5783 | } /* else root does not have a parent */ |
| 5784 | break; |
| 5785 | |
| 5786 | case LYXP_AXIS_CHILD: |
| 5787 | if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) { |
| 5788 | assert(!node); |
| 5789 | |
| 5790 | /* search in all the trees */ |
| 5791 | next = set->tree; |
| 5792 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5793 | } else { |
| 5794 | /* search in children */ |
| 5795 | next = lyd_child(node); |
| 5796 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5797 | } |
| 5798 | break; |
| 5799 | |
| 5800 | case LYXP_AXIS_DESCENDANT: |
| 5801 | if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) { |
| 5802 | /* top-level nodes */ |
| 5803 | next = set->tree; |
| 5804 | next_type = LYXP_NODE_ELEM; |
| 5805 | } else if (node_type == LYXP_NODE_ELEM) { |
| 5806 | /* start from the context node */ |
| 5807 | next = moveto_axis_node_next_dfs_forward(node, node); |
| 5808 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5809 | } /* else no children */ |
| 5810 | break; |
| 5811 | |
| 5812 | case LYXP_AXIS_FOLLOWING: |
| 5813 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 5814 | if (node_type == LYXP_NODE_ELEM) { |
| 5815 | /* first next sibling */ |
| 5816 | next = node->next; |
| 5817 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5818 | } /* else no sibling */ |
| 5819 | break; |
| 5820 | |
| 5821 | case LYXP_AXIS_PRECEDING: |
| 5822 | if ((node_type == LYXP_NODE_ELEM) && node->prev->next) { |
| 5823 | /* skip ancestors */ |
| 5824 | next = moveto_axis_node_next_dfs_backward(node, NULL); |
| 5825 | assert(next); |
| 5826 | next_type = LYXP_NODE_ELEM; |
| 5827 | } /* else no sibling */ |
| 5828 | break; |
| 5829 | |
| 5830 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 5831 | if (node_type == LYXP_NODE_ELEM) { |
| 5832 | /* first previous sibling */ |
| 5833 | next = node->prev->next ? node->prev : NULL; |
| 5834 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5835 | } /* else no sibling */ |
| 5836 | break; |
| 5837 | |
| 5838 | case LYXP_AXIS_ATTRIBUTE: |
| 5839 | /* handled specially */ |
| 5840 | assert(0); |
| 5841 | LOGINT(set->ctx); |
| 5842 | break; |
| 5843 | } |
| 5844 | |
| 5845 | *iter = next; |
| 5846 | *iter_type = next_type; |
| 5847 | return next_type ? LY_SUCCESS : LY_ENOTFOUND; |
| 5848 | } |
| 5849 | |
| 5850 | /** |
| 5851 | * @brief Iterate over all nodes on an axis for a context node. |
| 5852 | * |
| 5853 | * @param[in,out] iter Last returned node, start with NULL, updated to the next node. |
| 5854 | * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node. |
| 5855 | * @param[in] node Context node. |
| 5856 | * @param[in] node_type Type of @p node. |
| 5857 | * @param[in] axis Axis to use. |
| 5858 | * @param[in] set XPath set with the general context. |
| 5859 | * @return LY_SUCCESS on success. |
| 5860 | * @return LY_ENOTFOUND if no next node found. |
| 5861 | */ |
| 5862 | static LY_ERR |
| 5863 | moveto_axis_node_next(const struct lyd_node **iter, enum lyxp_node_type *iter_type, const struct lyd_node *node, |
| 5864 | enum lyxp_node_type node_type, enum lyxp_axis axis, struct lyxp_set *set) |
| 5865 | { |
| 5866 | const struct lyd_node *next = NULL; |
| 5867 | enum lyxp_node_type next_type = 0; |
| 5868 | |
| 5869 | if (!*iter_type) { |
| 5870 | /* first returned node */ |
| 5871 | return moveto_axis_node_next_first(iter, iter_type, node, node_type, axis, set); |
| 5872 | } |
| 5873 | |
| 5874 | switch (axis) { |
| 5875 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 5876 | if ((*iter == node) && (*iter_type == node_type)) { |
| 5877 | /* fake first ancestor, we returned self before */ |
| 5878 | *iter = NULL; |
| 5879 | *iter_type = 0; |
| 5880 | return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_ANCESTOR, set); |
| 5881 | } /* else continue ancestor */ |
| 5882 | |
| 5883 | /* fallthrough */ |
| 5884 | case LYXP_AXIS_ANCESTOR: |
| 5885 | if (*iter_type == LYXP_NODE_ELEM) { |
| 5886 | /* iter parent */ |
| 5887 | next = lyd_parent(*iter); |
| 5888 | next_type = next ? LYXP_NODE_ELEM : set->root_type; |
| 5889 | } /* else root, no ancestors */ |
| 5890 | break; |
| 5891 | |
| 5892 | case LYXP_AXIS_CHILD: |
| 5893 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5894 | |
| 5895 | /* next sibling (child) */ |
| 5896 | next = (*iter)->next; |
| 5897 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5898 | break; |
| 5899 | |
| 5900 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 5901 | if ((*iter == node) && (*iter_type == node_type)) { |
| 5902 | /* fake first descendant, we returned self before */ |
| 5903 | *iter = NULL; |
| 5904 | *iter_type = 0; |
| 5905 | return moveto_axis_node_next_first(iter, iter_type, node, node_type, LYXP_AXIS_DESCENDANT, set); |
| 5906 | } /* else continue descendant */ |
| 5907 | |
| 5908 | /* fallthrough */ |
| 5909 | case LYXP_AXIS_DESCENDANT: |
| 5910 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5911 | next = moveto_axis_node_next_dfs_forward(*iter, node); |
| 5912 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5913 | break; |
| 5914 | |
| 5915 | case LYXP_AXIS_FOLLOWING: |
| 5916 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5917 | next = moveto_axis_node_next_dfs_forward(*iter, NULL); |
| 5918 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5919 | break; |
| 5920 | |
| 5921 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 5922 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5923 | |
| 5924 | /* next sibling */ |
| 5925 | next = (*iter)->next; |
| 5926 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5927 | break; |
| 5928 | |
| 5929 | case LYXP_AXIS_PARENT: |
| 5930 | case LYXP_AXIS_SELF: |
| 5931 | /* parent/self was returned before */ |
| 5932 | break; |
| 5933 | |
| 5934 | case LYXP_AXIS_PRECEDING: |
| 5935 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5936 | next = moveto_axis_node_next_dfs_backward(*iter, NULL); |
| 5937 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5938 | break; |
| 5939 | |
| 5940 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 5941 | assert(*iter_type == LYXP_NODE_ELEM); |
| 5942 | |
| 5943 | /* previous sibling */ |
| 5944 | next = (*iter)->prev->next ? (*iter)->prev : NULL; |
| 5945 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 5946 | break; |
| 5947 | |
| 5948 | case LYXP_AXIS_ATTRIBUTE: |
| 5949 | /* handled specially */ |
| 5950 | assert(0); |
| 5951 | LOGINT(set->ctx); |
| 5952 | break; |
| 5953 | } |
| 5954 | |
| 5955 | *iter = next; |
| 5956 | *iter_type = next_type; |
| 5957 | return next_type ? LY_SUCCESS : LY_ENOTFOUND; |
| 5958 | } |
| 5959 | |
| 5960 | /** |
| 5961 | * @brief Move context @p set to a node. Result is LYXP_SET_NODE_SET. Context position aware. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5962 | * |
| 5963 | * @param[in,out] set Set to use. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 5964 | * @param[in] moveto_mod Matching node module, NULL for no prefix. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 5965 | * @param[in] ncname Matching node name in the dictionary, NULL for any. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5966 | * @param[in] axis Axis to search on. |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 5967 | * @param[in] options XPath options. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5968 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 5969 | */ |
| 5970 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5971 | moveto_node(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis, |
| 5972 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5973 | { |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 5974 | LY_ERR r, rc = LY_SUCCESS; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5975 | const struct lyd_node *iter; |
| 5976 | enum lyxp_node_type iter_type; |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 5977 | struct lyxp_set result; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5978 | uint32_t i; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5979 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 5980 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5981 | return LY_SUCCESS; |
| 5982 | } |
| 5983 | |
| 5984 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 5985 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5986 | return LY_EVALID; |
| 5987 | } |
| 5988 | |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 5989 | /* init result set */ |
| 5990 | set_init(&result, set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 5991 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 5992 | for (i = 0; i < set->used; ++i) { |
| 5993 | /* iterate over all the nodes on the axis of the node */ |
| 5994 | iter = NULL; |
| 5995 | iter_type = 0; |
| 5996 | while (!moveto_axis_node_next(&iter, &iter_type, set->val.nodes[i].node, set->val.nodes[i].type, axis, set)) { |
| 5997 | r = moveto_node_check(iter, iter_type, set, ncname, moveto_mod, options); |
| 5998 | if (r == LY_EINCOMPLETE) { |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 5999 | rc = r; |
| 6000 | goto cleanup; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6001 | } else if (r) { |
| 6002 | continue; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6003 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6004 | |
| 6005 | /* check for duplicates if they are possible */ |
| 6006 | switch (axis) { |
| 6007 | case LYXP_AXIS_ANCESTOR: |
| 6008 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 6009 | case LYXP_AXIS_DESCENDANT: |
| 6010 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 6011 | case LYXP_AXIS_FOLLOWING: |
| 6012 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 6013 | case LYXP_AXIS_PARENT: |
| 6014 | case LYXP_AXIS_PRECEDING: |
| 6015 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 6016 | if (set_dup_node_check(&result, iter, iter_type, -1)) { |
| 6017 | continue; |
| 6018 | } |
| 6019 | break; |
| 6020 | case LYXP_AXIS_CHILD: |
| 6021 | case LYXP_AXIS_SELF: |
| 6022 | break; |
| 6023 | case LYXP_AXIS_ATTRIBUTE: |
| 6024 | /* handled specially */ |
| 6025 | assert(0); |
| 6026 | LOGINT(set->ctx); |
| 6027 | break; |
| 6028 | } |
| 6029 | |
| 6030 | /* matching node */ |
| 6031 | set_insert_node(&result, iter, 0, iter_type, result.used); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6032 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6033 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6034 | |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6035 | /* move result to the set */ |
| 6036 | lyxp_set_free_content(set); |
| 6037 | *set = result; |
| 6038 | result.type = LYXP_SET_NUMBER; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6039 | |
| 6040 | /* sort the final set */ |
| 6041 | set_sort(set); |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6042 | |
| 6043 | cleanup: |
| 6044 | lyxp_set_free_content(&result); |
| 6045 | return rc; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6046 | } |
| 6047 | |
| 6048 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6049 | * @brief Move context @p set to child nodes using hashes. Result is LYXP_SET_NODE_SET. Context position aware. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6050 | * |
| 6051 | * @param[in,out] set Set to use. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6052 | * @param[in] scnode Matching node schema. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6053 | * @param[in] predicates If @p scnode is ::LYS_LIST or ::LYS_LEAFLIST, the predicates specifying a single instance. |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 6054 | * @param[in] options XPath options. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6055 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 6056 | */ |
| 6057 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6058 | moveto_node_hash_child(struct lyxp_set *set, const struct lysc_node *scnode, const struct ly_path_predicate *predicates, |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 6059 | uint32_t options) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6060 | { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 6061 | LY_ERR ret = LY_SUCCESS, r; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6062 | uint32_t i; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6063 | const struct lyd_node *siblings; |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6064 | struct lyxp_set result; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6065 | struct lyd_node *sub, *inst = NULL; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6066 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6067 | assert(scnode && (!(scnode->nodetype & (LYS_LIST | LYS_LEAFLIST)) || predicates)); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6068 | |
Michal Vasko | 50aaa07 | 2021-12-02 13:11:56 +0100 | [diff] [blame] | 6069 | /* init result set */ |
| 6070 | set_init(&result, set); |
| 6071 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6072 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6073 | goto cleanup; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6074 | } |
| 6075 | |
| 6076 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6077 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6078 | ret = LY_EVALID; |
| 6079 | goto cleanup; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6080 | } |
| 6081 | |
| 6082 | /* context check for all the nodes since we have the schema node */ |
| 6083 | if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) { |
| 6084 | lyxp_set_free_content(set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6085 | goto cleanup; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 6086 | } else if (set->context_op && (scnode->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && |
| 6087 | (scnode != set->context_op)) { |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 6088 | lyxp_set_free_content(set); |
| 6089 | goto cleanup; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6090 | } |
| 6091 | |
| 6092 | /* create specific data instance if needed */ |
| 6093 | if (scnode->nodetype == LYS_LIST) { |
| 6094 | LY_CHECK_GOTO(ret = lyd_create_list(scnode, predicates, &inst), cleanup); |
| 6095 | } else if (scnode->nodetype == LYS_LEAFLIST) { |
| 6096 | LY_CHECK_GOTO(ret = lyd_create_term2(scnode, &predicates[0].value, &inst), cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6097 | } |
| 6098 | |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6099 | for (i = 0; i < set->used; ++i) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6100 | siblings = NULL; |
| 6101 | |
| 6102 | if ((set->val.nodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.nodes[i].type == LYXP_NODE_ROOT)) { |
| 6103 | assert(!set->val.nodes[i].node); |
| 6104 | |
| 6105 | /* search in all the trees */ |
| 6106 | siblings = set->tree; |
| 6107 | } else if (set->val.nodes[i].type == LYXP_NODE_ELEM) { |
| 6108 | /* search in children */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 6109 | siblings = lyd_child(set->val.nodes[i].node); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6110 | } |
| 6111 | |
| 6112 | /* find the node using hashes */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6113 | if (inst) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 6114 | r = lyd_find_sibling_first(siblings, inst, &sub); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6115 | } else { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 6116 | r = lyd_find_sibling_val(siblings, scnode, NULL, 0, &sub); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6117 | } |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 6118 | LY_CHECK_ERR_GOTO(r && (r != LY_ENOTFOUND), ret = r, cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6119 | |
| 6120 | /* when check */ |
Michal Vasko | d5cfa6e | 2020-11-23 16:56:08 +0100 | [diff] [blame] | 6121 | if (!(options & LYXP_IGNORE_WHEN) && sub && lysc_has_when(sub->schema) && !(sub->flags & LYD_WHEN_TRUE)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6122 | ret = LY_EINCOMPLETE; |
| 6123 | goto cleanup; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6124 | } |
| 6125 | |
| 6126 | if (sub) { |
| 6127 | /* pos filled later */ |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6128 | set_insert_node(&result, sub, 0, LYXP_NODE_ELEM, result.used); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6129 | } |
| 6130 | } |
| 6131 | |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6132 | /* move result to the set */ |
| 6133 | lyxp_set_free_content(set); |
| 6134 | *set = result; |
| 6135 | result.type = LYXP_SET_NUMBER; |
| 6136 | assert(!set_sort(set)); |
| 6137 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6138 | cleanup: |
Michal Vasko | 230cf97 | 2021-12-02 12:31:00 +0100 | [diff] [blame] | 6139 | lyxp_set_free_content(&result); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 6140 | lyd_free_tree(inst); |
| 6141 | return ret; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6142 | } |
| 6143 | |
| 6144 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6145 | * @brief Check @p node as a part of schema NameTest processing. |
| 6146 | * |
| 6147 | * @param[in] node Schema node to check. |
| 6148 | * @param[in] ctx_scnode Context node. |
| 6149 | * @param[in] set Set to read general context from. |
| 6150 | * @param[in] node_name Node name in the dictionary to move to, NULL for any nodes. |
| 6151 | * @param[in] moveto_mod Expected module of the node, NULL for no prefix. |
| 6152 | * @return LY_ERR (LY_ENOT if node does not match, LY_EINVAL if neither node nor any children match) |
| 6153 | */ |
| 6154 | static LY_ERR |
| 6155 | moveto_scnode_check(const struct lysc_node *node, const struct lysc_node *ctx_scnode, const struct lyxp_set *set, |
| 6156 | const char *node_name, const struct lys_module *moveto_mod) |
| 6157 | { |
| 6158 | if (!moveto_mod && node_name) { |
| 6159 | switch (set->format) { |
| 6160 | case LY_VALUE_SCHEMA: |
| 6161 | case LY_VALUE_SCHEMA_RESOLVED: |
| 6162 | /* use current module */ |
| 6163 | moveto_mod = set->cur_mod; |
| 6164 | break; |
| 6165 | case LY_VALUE_JSON: |
| 6166 | case LY_VALUE_LYB: |
| 6167 | case LY_VALUE_STR_NS: |
| 6168 | /* inherit module of the context node, if any */ |
| 6169 | if (ctx_scnode) { |
| 6170 | moveto_mod = ctx_scnode->module; |
| 6171 | } |
| 6172 | break; |
| 6173 | case LY_VALUE_CANON: |
| 6174 | case LY_VALUE_XML: |
| 6175 | /* not defined */ |
| 6176 | LOGINT(set->ctx); |
| 6177 | return LY_EINVAL; |
| 6178 | } |
| 6179 | } |
| 6180 | |
| 6181 | if (!node) { |
| 6182 | /* root will not match a specific node */ |
| 6183 | if (node_name || moveto_mod) { |
| 6184 | return LY_ENOT; |
| 6185 | } |
| 6186 | return LY_SUCCESS; |
| 6187 | } |
| 6188 | |
| 6189 | /* module check */ |
| 6190 | if (moveto_mod && (node->module != moveto_mod)) { |
| 6191 | return LY_ENOT; |
| 6192 | } |
| 6193 | |
| 6194 | /* context check */ |
| 6195 | if ((set->root_type == LYXP_NODE_ROOT_CONFIG) && (node->flags & LYS_CONFIG_R)) { |
| 6196 | return LY_EINVAL; |
| 6197 | } else if (set->context_op && (node->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)) && (node != set->context_op)) { |
| 6198 | return LY_EINVAL; |
| 6199 | } |
| 6200 | |
| 6201 | /* name check */ |
| 6202 | if (node_name && (node->name != node_name)) { |
| 6203 | return LY_ENOT; |
| 6204 | } |
| 6205 | |
| 6206 | /* match */ |
| 6207 | return LY_SUCCESS; |
| 6208 | } |
| 6209 | |
| 6210 | /** |
| 6211 | * @brief Get the next node in a forward schema node DFS. |
| 6212 | * |
| 6213 | * @param[in] iter Last returned node. |
| 6214 | * @param[in] stop Node to stop the search on and not return. |
| 6215 | * @param[in] getnext_opts Options for ::lys_getnext(). |
| 6216 | * @return Next node, NULL if there are no more. |
| 6217 | */ |
| 6218 | static const struct lysc_node * |
| 6219 | moveto_axis_scnode_next_dfs_forward(const struct lysc_node *iter, const struct lysc_node *stop, uint32_t getnext_opts) |
| 6220 | { |
| 6221 | const struct lysc_node *next = NULL; |
| 6222 | |
| 6223 | next = lysc_node_child(iter); |
| 6224 | if (!next) { |
| 6225 | /* no children, try siblings */ |
| 6226 | if (iter == stop) { |
| 6227 | /* we are done, no next element to process */ |
| 6228 | return NULL; |
| 6229 | } |
| 6230 | |
| 6231 | next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts); |
| 6232 | } |
| 6233 | while (!next && iter) { |
| 6234 | /* parent is already processed, go to its sibling */ |
| 6235 | iter = iter->parent; |
| 6236 | if (iter == stop) { |
| 6237 | /* we are done, no next element to process */ |
| 6238 | return NULL; |
| 6239 | } |
| 6240 | next = lys_getnext(iter, lysc_data_parent(iter), NULL, getnext_opts); |
| 6241 | } |
| 6242 | |
| 6243 | return next; |
| 6244 | } |
| 6245 | |
| 6246 | /** |
| 6247 | * @brief Consider schema node based on its in_ctx enum value. |
| 6248 | * |
| 6249 | * @param[in,out] in_ctx In_ctx enum of the schema node, may be updated. |
| 6250 | * @param[in] axis Axis to use. |
| 6251 | * @return LY_SUCCESS on success. |
| 6252 | * @return LY_ENOT if the node should not be returned. |
| 6253 | */ |
| 6254 | static LY_ERR |
| 6255 | moveto_axis_scnode_next_in_ctx(int32_t *in_ctx, enum lyxp_axis axis) |
| 6256 | { |
| 6257 | switch (axis) { |
| 6258 | case LYXP_AXIS_SELF: |
| 6259 | if ((*in_ctx == LYXP_SET_SCNODE_START) || (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) { |
| 6260 | /* additionally put the start node into context */ |
| 6261 | *in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
| 6262 | return LY_SUCCESS; |
| 6263 | } |
| 6264 | break; |
| 6265 | case LYXP_AXIS_PARENT: |
| 6266 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 6267 | case LYXP_AXIS_ANCESTOR: |
| 6268 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 6269 | case LYXP_AXIS_DESCENDANT: |
| 6270 | case LYXP_AXIS_FOLLOWING: |
| 6271 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 6272 | case LYXP_AXIS_PRECEDING: |
| 6273 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 6274 | case LYXP_AXIS_CHILD: |
| 6275 | if (*in_ctx == LYXP_SET_SCNODE_START) { |
| 6276 | /* remember that context node was used */ |
| 6277 | *in_ctx = LYXP_SET_SCNODE_START_USED; |
| 6278 | return LY_SUCCESS; |
| 6279 | } else if (*in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
| 6280 | /* traversed */ |
| 6281 | *in_ctx = LYXP_SET_SCNODE_ATOM_NODE; |
| 6282 | return LY_SUCCESS; |
| 6283 | } |
| 6284 | break; |
| 6285 | case LYXP_AXIS_ATTRIBUTE: |
| 6286 | /* unreachable */ |
| 6287 | assert(0); |
| 6288 | LOGINT(NULL); |
| 6289 | break; |
| 6290 | } |
| 6291 | |
| 6292 | return LY_ENOT; |
| 6293 | } |
| 6294 | |
| 6295 | /** |
| 6296 | * @brief Get previous sibling for a schema node. |
| 6297 | * |
| 6298 | * @param[in] scnode Schema node. |
| 6299 | * @param[in] getnext_opts Options for ::lys_getnext(). |
| 6300 | * @return Previous sibling, NULL if none. |
| 6301 | */ |
| 6302 | static const struct lysc_node * |
| 6303 | moveto_axis_scnode_preceding_sibling(const struct lysc_node *scnode, uint32_t getnext_opts) |
| 6304 | { |
| 6305 | const struct lysc_node *next = NULL, *prev = NULL; |
| 6306 | |
| 6307 | while ((next = lys_getnext(next, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts))) { |
| 6308 | if (next == scnode) { |
| 6309 | break; |
| 6310 | } |
| 6311 | |
| 6312 | prev = next; |
| 6313 | } |
| 6314 | |
| 6315 | return prev; |
| 6316 | } |
| 6317 | |
| 6318 | /** |
| 6319 | * @brief Get the first schema node on an axis for a context node. |
| 6320 | * |
| 6321 | * @param[in,out] iter Last returned node, start with NULL, updated to the next node. |
| 6322 | * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node. |
| 6323 | * @param[in,out] iter_mod Internal module iterator, do not change. |
| 6324 | * @param[in,out] iter_mod_idx Internal module index iterator, do not change. |
| 6325 | * @param[in] scnode Context node. |
| 6326 | * @param[in] node_type Type of @p scnode. |
| 6327 | * @param[in] in_ctx In_ctx enum of @p scnode. |
| 6328 | * @param[in] axis Axis to use. |
| 6329 | * @param[in] set XPath set with the general context. |
| 6330 | * @param[in] getnext_opts Options for ::lys_getnext(). |
| 6331 | * @return LY_SUCCESS on success. |
| 6332 | * @return LY_ENOTFOUND if no next node found. |
| 6333 | */ |
| 6334 | static LY_ERR |
| 6335 | moveto_axis_scnode_next_first(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod, |
| 6336 | uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis, |
| 6337 | struct lyxp_set *set, uint32_t getnext_opts) |
| 6338 | { |
| 6339 | const struct lysc_node *next = NULL; |
| 6340 | enum lyxp_node_type next_type = 0; |
| 6341 | |
| 6342 | assert(!*iter); |
| 6343 | assert(!*iter_type); |
| 6344 | |
| 6345 | *iter_mod = NULL; |
| 6346 | *iter_mod_idx = 0; |
| 6347 | |
| 6348 | switch (axis) { |
| 6349 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 6350 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 6351 | case LYXP_AXIS_SELF: |
| 6352 | if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT) || (node_type == LYXP_NODE_ELEM)) { |
| 6353 | /* just return the node */ |
| 6354 | next = scnode; |
| 6355 | next_type = node_type; |
| 6356 | } |
| 6357 | break; |
| 6358 | |
| 6359 | case LYXP_AXIS_ANCESTOR: |
| 6360 | case LYXP_AXIS_PARENT: |
| 6361 | if (node_type == LYXP_NODE_ELEM) { |
| 6362 | next = lysc_data_parent(scnode); |
| 6363 | next_type = next ? LYXP_NODE_ELEM : set->root_type; |
| 6364 | } /* else no parent */ |
| 6365 | break; |
| 6366 | |
| 6367 | case LYXP_AXIS_DESCENDANT: |
| 6368 | case LYXP_AXIS_CHILD: |
| 6369 | if ((node_type == LYXP_NODE_ROOT_CONFIG) || (node_type == LYXP_NODE_ROOT)) { |
| 6370 | /* it can actually be in any module, it's all <running>, and even if it's moveto_mod (if set), |
| 6371 | * it can be in a top-level augment */ |
| 6372 | while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) { |
| 6373 | /* module may not be implemented or not compiled yet */ |
| 6374 | if (!(*iter_mod)->compiled) { |
| 6375 | continue; |
| 6376 | } |
| 6377 | |
| 6378 | /* get next node */ |
| 6379 | if ((next = lys_getnext(NULL, NULL, (*iter_mod)->compiled, getnext_opts))) { |
| 6380 | next_type = LYXP_NODE_ELEM; |
| 6381 | break; |
| 6382 | } |
| 6383 | } |
| 6384 | } else if (node_type == LYXP_NODE_ELEM) { |
| 6385 | /* get next node */ |
| 6386 | next = lys_getnext(NULL, scnode, NULL, getnext_opts); |
| 6387 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 6388 | } |
| 6389 | break; |
| 6390 | |
| 6391 | case LYXP_AXIS_FOLLOWING: |
| 6392 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 6393 | if (node_type == LYXP_NODE_ELEM) { |
| 6394 | /* first next sibling */ |
| 6395 | next = lys_getnext(scnode, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts); |
| 6396 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 6397 | } /* else no sibling */ |
| 6398 | break; |
| 6399 | |
| 6400 | case LYXP_AXIS_PRECEDING: |
| 6401 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 6402 | if (node_type == LYXP_NODE_ELEM) { |
| 6403 | /* first parent sibling */ |
| 6404 | next = lys_getnext(NULL, lysc_data_parent(scnode), scnode->module->compiled, getnext_opts); |
| 6405 | if (next == scnode) { |
| 6406 | /* no preceding sibling */ |
| 6407 | next = NULL; |
| 6408 | } |
| 6409 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 6410 | } /* else no sibling */ |
| 6411 | break; |
| 6412 | |
| 6413 | case LYXP_AXIS_ATTRIBUTE: |
| 6414 | /* unreachable */ |
| 6415 | assert(0); |
| 6416 | LOGINT(set->ctx); |
| 6417 | break; |
| 6418 | } |
| 6419 | |
| 6420 | *iter = next; |
| 6421 | *iter_type = next_type; |
| 6422 | return next_type ? LY_SUCCESS : LY_ENOTFOUND; |
| 6423 | } |
| 6424 | |
| 6425 | /** |
| 6426 | * @brief Iterate over all schema nodes on an axis for a context node. |
| 6427 | * |
| 6428 | * @param[in,out] iter Last returned node, start with NULL, updated to the next node. |
| 6429 | * @param[in,out] iter_type Node type of @p iter, start with 0, updated to the node type of the next node. |
| 6430 | * @param[in,out] iter_mod Internal module iterator, do not change. |
| 6431 | * @param[in,out] iter_mod_idx Internal module index iterator, do not change. |
| 6432 | * @param[in] scnode Context node. |
| 6433 | * @param[in] node_type Type of @p scnode. |
| 6434 | * @param[in] axis Axis to use. |
| 6435 | * @param[in] set XPath set with the general context. |
| 6436 | * @param[in] getnext_opts Options for ::lys_getnext(). |
| 6437 | * @return LY_SUCCESS on success. |
| 6438 | * @return LY_ENOTFOUND if no next node found. |
| 6439 | */ |
| 6440 | static LY_ERR |
| 6441 | moveto_axis_scnode_next(const struct lysc_node **iter, enum lyxp_node_type *iter_type, const struct lys_module **iter_mod, |
| 6442 | uint32_t *iter_mod_idx, const struct lysc_node *scnode, enum lyxp_node_type node_type, enum lyxp_axis axis, |
| 6443 | struct lyxp_set *set, uint32_t getnext_opts) |
| 6444 | { |
| 6445 | const struct lysc_node *next = NULL, *dfs_stop; |
| 6446 | enum lyxp_node_type next_type = 0; |
| 6447 | |
| 6448 | if (!*iter_type) { |
| 6449 | /* first returned node */ |
| 6450 | return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, axis, set, |
| 6451 | getnext_opts); |
| 6452 | } |
| 6453 | |
| 6454 | switch (axis) { |
| 6455 | case LYXP_AXIS_PARENT: |
| 6456 | case LYXP_AXIS_SELF: |
| 6457 | /* parent/self was returned before */ |
| 6458 | break; |
| 6459 | |
| 6460 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 6461 | if ((*iter == scnode) && (*iter_type == node_type)) { |
| 6462 | /* fake first ancestor, we returned self before */ |
| 6463 | *iter = NULL; |
| 6464 | *iter_type = 0; |
| 6465 | return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, |
| 6466 | LYXP_AXIS_ANCESTOR, set, getnext_opts); |
| 6467 | } /* else continue ancestor */ |
| 6468 | |
| 6469 | /* fallthrough */ |
| 6470 | case LYXP_AXIS_ANCESTOR: |
| 6471 | if (*iter_type == LYXP_NODE_ELEM) { |
| 6472 | next = lysc_data_parent(*iter); |
| 6473 | next_type = next ? LYXP_NODE_ELEM : set->root_type; |
| 6474 | } /* else no ancestor */ |
| 6475 | break; |
| 6476 | |
| 6477 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 6478 | if ((*iter == scnode) && (*iter_type == node_type)) { |
| 6479 | /* fake first descendant, we returned self before */ |
| 6480 | *iter = NULL; |
| 6481 | *iter_type = 0; |
| 6482 | return moveto_axis_scnode_next_first(iter, iter_type, iter_mod, iter_mod_idx, scnode, node_type, |
| 6483 | LYXP_AXIS_DESCENDANT, set, getnext_opts); |
| 6484 | } /* else DFS until context node */ |
| 6485 | dfs_stop = scnode; |
| 6486 | |
| 6487 | /* fallthrough */ |
| 6488 | case LYXP_AXIS_DESCENDANT: |
| 6489 | if (axis == LYXP_AXIS_DESCENDANT) { |
| 6490 | /* DFS until the context node */ |
| 6491 | dfs_stop = scnode; |
| 6492 | } |
| 6493 | |
| 6494 | /* fallthrough */ |
| 6495 | case LYXP_AXIS_PRECEDING: |
| 6496 | if (axis == LYXP_AXIS_PRECEDING) { |
| 6497 | /* DFS until the previous sibling */ |
| 6498 | dfs_stop = moveto_axis_scnode_preceding_sibling(scnode, getnext_opts); |
| 6499 | assert(dfs_stop); |
| 6500 | |
| 6501 | if (*iter == dfs_stop) { |
| 6502 | /* we are done */ |
| 6503 | break; |
| 6504 | } |
| 6505 | } |
| 6506 | |
| 6507 | /* fallthrough */ |
| 6508 | case LYXP_AXIS_FOLLOWING: |
| 6509 | if (axis == LYXP_AXIS_FOLLOWING) { |
| 6510 | /* DFS through the whole module */ |
| 6511 | dfs_stop = NULL; |
| 6512 | } |
| 6513 | |
| 6514 | /* nested nodes */ |
| 6515 | assert(*iter); |
| 6516 | next = moveto_axis_scnode_next_dfs_forward(*iter, dfs_stop, getnext_opts); |
| 6517 | if (next) { |
| 6518 | next_type = LYXP_NODE_ELEM; |
| 6519 | break; |
| 6520 | } /* else get next top-level node just like a child */ |
| 6521 | |
| 6522 | /* fallthrough */ |
| 6523 | case LYXP_AXIS_CHILD: |
| 6524 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 6525 | if (!*iter_mod) { |
| 6526 | /* nodes from a single module */ |
| 6527 | if ((next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts))) { |
| 6528 | next_type = LYXP_NODE_ELEM; |
| 6529 | break; |
| 6530 | } |
| 6531 | |
| 6532 | assert(scnode); |
| 6533 | if (!lysc_data_parent(scnode)) { |
| 6534 | /* iterating over top-level nodes, find next */ |
| 6535 | while (lysc_data_parent(*iter)) { |
| 6536 | *iter = lysc_data_parent(*iter); |
| 6537 | } |
| 6538 | if ((next = lys_getnext(*iter, NULL, (*iter)->module->compiled, getnext_opts))) { |
| 6539 | next_type = LYXP_NODE_ELEM; |
| 6540 | break; |
| 6541 | } |
| 6542 | } |
| 6543 | } |
| 6544 | |
| 6545 | while (*iter_mod) { |
| 6546 | /* module top-level nodes */ |
| 6547 | if ((next = lys_getnext(*iter, NULL, (*iter_mod)->compiled, getnext_opts))) { |
| 6548 | next_type = LYXP_NODE_ELEM; |
| 6549 | break; |
| 6550 | } |
| 6551 | |
| 6552 | /* get next module */ |
| 6553 | while ((*iter_mod = ly_ctx_get_module_iter(set->ctx, iter_mod_idx))) { |
| 6554 | /* module may not be implemented or not compiled yet */ |
| 6555 | if ((*iter_mod)->compiled) { |
| 6556 | break; |
| 6557 | } |
| 6558 | } |
| 6559 | |
| 6560 | /* new module, start over */ |
| 6561 | *iter = NULL; |
| 6562 | } |
| 6563 | break; |
| 6564 | |
| 6565 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 6566 | assert(*iter); |
| 6567 | |
| 6568 | /* next parent sibling until scnode */ |
| 6569 | next = lys_getnext(*iter, lysc_data_parent(*iter), (*iter)->module->compiled, getnext_opts); |
| 6570 | if (next == scnode) { |
| 6571 | /* no previous sibling */ |
| 6572 | next = NULL; |
| 6573 | } |
| 6574 | next_type = next ? LYXP_NODE_ELEM : 0; |
| 6575 | break; |
| 6576 | |
| 6577 | case LYXP_AXIS_ATTRIBUTE: |
| 6578 | /* unreachable */ |
| 6579 | assert(0); |
| 6580 | LOGINT(set->ctx); |
| 6581 | break; |
| 6582 | } |
| 6583 | |
| 6584 | *iter = next; |
| 6585 | *iter_type = next_type; |
| 6586 | return next_type ? LY_SUCCESS : LY_ENOTFOUND; |
| 6587 | } |
| 6588 | |
| 6589 | /** |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6590 | * @brief Move context @p set to a schema node. Result is LYXP_SET_SCNODE_SET (or LYXP_SET_EMPTY). |
| 6591 | * |
| 6592 | * @param[in,out] set Set to use. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 6593 | * @param[in] moveto_mod Matching node module, NULL for no prefix. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6594 | * @param[in] ncname Matching node name in the dictionary, NULL for any. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6595 | * @param[in] axis Axis to search on. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6596 | * @param[in] options XPath options. |
| 6597 | * @return LY_ERR |
| 6598 | */ |
| 6599 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6600 | moveto_scnode(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, enum lyxp_axis axis, |
| 6601 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6602 | { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 6603 | ly_bool temp_ctx = 0; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6604 | uint32_t getnext_opts, orig_used, i, mod_idx, idx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 6605 | const struct lys_module *mod; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6606 | const struct lysc_node *iter; |
| 6607 | enum lyxp_node_type iter_type; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6608 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6609 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6610 | return LY_SUCCESS; |
| 6611 | } |
| 6612 | |
| 6613 | if (set->type != LYXP_SET_SCNODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6614 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6615 | return LY_EVALID; |
| 6616 | } |
| 6617 | |
Michal Vasko | cafad9d | 2019-11-07 15:20:03 +0100 | [diff] [blame] | 6618 | /* getnext opts */ |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 6619 | getnext_opts = 0; |
Michal Vasko | cafad9d | 2019-11-07 15:20:03 +0100 | [diff] [blame] | 6620 | if (options & LYXP_SCNODE_OUTPUT) { |
| 6621 | getnext_opts |= LYS_GETNEXT_OUTPUT; |
| 6622 | } |
| 6623 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6624 | orig_used = set->used; |
| 6625 | for (i = 0; i < orig_used; ++i) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6626 | /* update in_ctx first */ |
| 6627 | if (moveto_axis_scnode_next_in_ctx(&set->val.scnodes[i].in_ctx, axis)) { |
| 6628 | /* not usable, skip */ |
| 6629 | continue; |
| 6630 | } |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 6631 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6632 | iter = NULL; |
| 6633 | iter_type = 0; |
| 6634 | while (!moveto_axis_scnode_next(&iter, &iter_type, &mod, &mod_idx, set->val.scnodes[i].scnode, |
| 6635 | set->val.scnodes[i].type, axis, set, getnext_opts)) { |
| 6636 | if (moveto_scnode_check(iter, NULL, set, ncname, moveto_mod)) { |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 6637 | continue; |
| 6638 | } |
| 6639 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6640 | /* insert */ |
| 6641 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, iter, iter_type, &idx)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6642 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6643 | /* we need to prevent these nodes from being considered in this moveto */ |
| 6644 | if ((idx < orig_used) && (idx > i)) { |
| 6645 | set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_NEW_CTX; |
| 6646 | temp_ctx = 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6647 | } |
| 6648 | } |
| 6649 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6650 | |
| 6651 | /* correct temporary in_ctx values */ |
| 6652 | if (temp_ctx) { |
| 6653 | for (i = 0; i < orig_used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 6654 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_NEW_CTX) { |
| 6655 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6656 | } |
| 6657 | } |
| 6658 | } |
| 6659 | |
| 6660 | return LY_SUCCESS; |
| 6661 | } |
| 6662 | |
| 6663 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6664 | * @brief Move context @p set to a child node and all its descendants. Result is LYXP_SET_NODE_SET. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6665 | * Context position aware. |
| 6666 | * |
| 6667 | * @param[in] set Set to use. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 6668 | * @param[in] moveto_mod Matching node module, NULL for no prefix. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6669 | * @param[in] ncname Matching node name in the dictionary, NULL for any. |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 6670 | * @param[in] options XPath options. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6671 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 6672 | */ |
| 6673 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6674 | moveto_node_alldesc_child(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6675 | { |
| 6676 | uint32_t i; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6677 | const struct lyd_node *next, *elem, *start; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6678 | struct lyxp_set ret_set; |
| 6679 | LY_ERR rc; |
| 6680 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6681 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6682 | return LY_SUCCESS; |
| 6683 | } |
| 6684 | |
| 6685 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6686 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6687 | return LY_EVALID; |
| 6688 | } |
| 6689 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 6690 | /* replace the original nodes (and throws away all text and meta nodes, root is replaced by a child) */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6691 | rc = xpath_pi_node(set, LYXP_AXIS_CHILD, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6692 | LY_CHECK_RET(rc); |
| 6693 | |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 6694 | /* this loop traverses all the nodes in the set and adds/keeps only those that match qname */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6695 | set_init(&ret_set, set); |
| 6696 | for (i = 0; i < set->used; ++i) { |
| 6697 | |
| 6698 | /* TREE DFS */ |
| 6699 | start = set->val.nodes[i].node; |
| 6700 | for (elem = next = start; elem; elem = next) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6701 | rc = moveto_node_check(elem, LYXP_NODE_ELEM, set, ncname, moveto_mod, options); |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 6702 | if (!rc) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6703 | /* add matching node into result set */ |
| 6704 | set_insert_node(&ret_set, elem, 0, LYXP_NODE_ELEM, ret_set.used); |
| 6705 | if (set_dup_node_check(set, elem, LYXP_NODE_ELEM, i)) { |
| 6706 | /* the node is a duplicate, we'll process it later in the set */ |
| 6707 | goto skip_children; |
| 6708 | } |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 6709 | } else if (rc == LY_EINCOMPLETE) { |
Michal Vasko | 6346ece | 2019-09-24 13:12:53 +0200 | [diff] [blame] | 6710 | return rc; |
| 6711 | } else if (rc == LY_EINVAL) { |
| 6712 | goto skip_children; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6713 | } |
| 6714 | |
| 6715 | /* TREE DFS NEXT ELEM */ |
| 6716 | /* select element for the next run - children first */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 6717 | next = lyd_child(elem); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6718 | if (!next) { |
| 6719 | skip_children: |
| 6720 | /* no children, so try siblings, but only if it's not the start, |
| 6721 | * that is considered to be the root and it's siblings are not traversed */ |
| 6722 | if (elem != start) { |
| 6723 | next = elem->next; |
| 6724 | } else { |
| 6725 | break; |
| 6726 | } |
| 6727 | } |
| 6728 | while (!next) { |
| 6729 | /* no siblings, go back through the parents */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 6730 | if (lyd_parent(elem) == start) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6731 | /* we are done, no next element to process */ |
| 6732 | break; |
| 6733 | } |
| 6734 | /* parent is already processed, go to its sibling */ |
Michal Vasko | 9e68508 | 2021-01-29 14:49:09 +0100 | [diff] [blame] | 6735 | elem = lyd_parent(elem); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6736 | next = elem->next; |
| 6737 | } |
| 6738 | } |
| 6739 | } |
| 6740 | |
| 6741 | /* make the temporary set the current one */ |
| 6742 | ret_set.ctx_pos = set->ctx_pos; |
| 6743 | ret_set.ctx_size = set->ctx_size; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6744 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6745 | memcpy(set, &ret_set, sizeof *set); |
| 6746 | |
| 6747 | return LY_SUCCESS; |
| 6748 | } |
| 6749 | |
| 6750 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6751 | * @brief Move context @p set to a child schema node and all its descendants starting from a node. |
| 6752 | * Result is LYXP_SET_NODE_SET. |
| 6753 | * |
| 6754 | * @param[in] set Set to use. |
| 6755 | * @param[in] start Start node whose subtree to add. |
| 6756 | * @param[in] start_idx Index of @p start in @p set. |
| 6757 | * @param[in] moveto_mod Matching node module, NULL for no prefix. |
| 6758 | * @param[in] ncname Matching node name in the dictionary, NULL for any. |
| 6759 | * @param[in] options XPath options. |
| 6760 | * @return LY_ERR value. |
| 6761 | */ |
| 6762 | static LY_ERR |
| 6763 | moveto_scnode_dfs(struct lyxp_set *set, const struct lysc_node *start, uint32_t start_idx, |
| 6764 | const struct lys_module *moveto_mod, const char *ncname, uint32_t options) |
| 6765 | { |
| 6766 | const struct lysc_node *next, *elem; |
| 6767 | uint32_t idx; |
| 6768 | LY_ERR rc; |
| 6769 | |
| 6770 | /* TREE DFS */ |
| 6771 | for (elem = next = start; elem; elem = next) { |
| 6772 | if ((elem == start) || (elem->nodetype & (LYS_CHOICE | LYS_CASE))) { |
| 6773 | /* schema-only nodes, skip root */ |
| 6774 | goto next_iter; |
| 6775 | } |
| 6776 | |
| 6777 | rc = moveto_scnode_check(elem, start, set, ncname, moveto_mod); |
| 6778 | if (!rc) { |
| 6779 | if (lyxp_set_scnode_contains(set, elem, LYXP_NODE_ELEM, start_idx, &idx)) { |
| 6780 | set->val.scnodes[idx].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
| 6781 | if (idx > start_idx) { |
| 6782 | /* we will process it later in the set */ |
| 6783 | goto skip_children; |
| 6784 | } |
| 6785 | } else { |
| 6786 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, elem, LYXP_NODE_ELEM, NULL)); |
| 6787 | } |
| 6788 | } else if (rc == LY_EINVAL) { |
| 6789 | goto skip_children; |
| 6790 | } |
| 6791 | |
| 6792 | next_iter: |
| 6793 | /* TREE DFS NEXT ELEM */ |
| 6794 | /* select element for the next run - children first */ |
| 6795 | next = lysc_node_child(elem); |
| 6796 | if (next && (next->nodetype == LYS_INPUT) && (options & LYXP_SCNODE_OUTPUT)) { |
| 6797 | next = next->next; |
| 6798 | } else if (next && (next->nodetype == LYS_OUTPUT) && !(options & LYXP_SCNODE_OUTPUT)) { |
| 6799 | next = next->next; |
| 6800 | } |
| 6801 | if (!next) { |
| 6802 | skip_children: |
| 6803 | /* no children, so try siblings, but only if it's not the start, |
| 6804 | * that is considered to be the root and it's siblings are not traversed */ |
| 6805 | if (elem != start) { |
| 6806 | next = elem->next; |
| 6807 | } else { |
| 6808 | break; |
| 6809 | } |
| 6810 | } |
| 6811 | while (!next) { |
| 6812 | /* no siblings, go back through the parents */ |
| 6813 | if (elem->parent == start) { |
| 6814 | /* we are done, no next element to process */ |
| 6815 | break; |
| 6816 | } |
| 6817 | /* parent is already processed, go to its sibling */ |
| 6818 | elem = elem->parent; |
| 6819 | next = elem->next; |
| 6820 | } |
| 6821 | } |
| 6822 | |
| 6823 | return LY_SUCCESS; |
| 6824 | } |
| 6825 | |
| 6826 | /** |
| 6827 | * @brief Move context @p set to a child schema node and all its descendants. Result is LYXP_SET_NODE_SET. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6828 | * |
| 6829 | * @param[in] set Set to use. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 6830 | * @param[in] moveto_mod Matching node module, NULL for no prefix. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6831 | * @param[in] ncname Matching node name in the dictionary, NULL for any. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6832 | * @param[in] options XPath options. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6833 | * @return LY_ERR value. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6834 | */ |
| 6835 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6836 | moveto_scnode_alldesc_child(struct lyxp_set *set, const struct lys_module *moveto_mod, const char *ncname, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6837 | { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6838 | uint32_t i, orig_used, mod_idx; |
| 6839 | const struct lys_module *mod; |
| 6840 | const struct lysc_node *root; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6841 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6842 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6843 | return LY_SUCCESS; |
| 6844 | } |
| 6845 | |
| 6846 | if (set->type != LYXP_SET_SCNODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6847 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6848 | return LY_EVALID; |
| 6849 | } |
| 6850 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6851 | orig_used = set->used; |
| 6852 | for (i = 0; i < orig_used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 6853 | if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_ATOM_CTX) { |
| 6854 | if (set->val.scnodes[i].in_ctx != LYXP_SET_SCNODE_START) { |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 6855 | continue; |
| 6856 | } |
| 6857 | |
| 6858 | /* remember context node */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 6859 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_START_USED; |
Michal Vasko | ec4df48 | 2019-12-16 10:02:18 +0100 | [diff] [blame] | 6860 | } else { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 6861 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6862 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6863 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6864 | if ((set->val.scnodes[i].type == LYXP_NODE_ROOT_CONFIG) || (set->val.scnodes[i].type == LYXP_NODE_ROOT)) { |
| 6865 | /* traverse all top-level nodes in all the modules */ |
| 6866 | mod_idx = 0; |
| 6867 | while ((mod = ly_ctx_get_module_iter(set->ctx, &mod_idx))) { |
| 6868 | /* module may not be implemented or not compiled yet */ |
| 6869 | if (!mod->compiled) { |
| 6870 | continue; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6871 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6872 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6873 | root = NULL; |
| 6874 | /* no getnext opts needed */ |
| 6875 | while ((root = lys_getnext(root, NULL, mod->compiled, 0))) { |
| 6876 | LY_CHECK_RET(moveto_scnode_dfs(set, root, i, moveto_mod, ncname, options)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6877 | } |
| 6878 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 6879 | |
| 6880 | } else if (set->val.scnodes[i].type == LYXP_NODE_ELEM) { |
| 6881 | /* add all the descendants recursively */ |
| 6882 | LY_CHECK_RET(moveto_scnode_dfs(set, set->val.scnodes[i].scnode, i, moveto_mod, ncname, options)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6883 | } |
| 6884 | } |
| 6885 | |
| 6886 | return LY_SUCCESS; |
| 6887 | } |
| 6888 | |
| 6889 | /** |
Michal Vasko | 61ac2f6 | 2020-05-25 12:39:51 +0200 | [diff] [blame] | 6890 | * @brief Move context @p set to an attribute. Result is LYXP_SET_NODE_SET. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6891 | * Indirectly context position aware. |
| 6892 | * |
| 6893 | * @param[in,out] set Set to use. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6894 | * @param[in] mod Matching metadata module, NULL for any. |
| 6895 | * @param[in] ncname Matching metadata name in the dictionary, NULL for any. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6896 | * @param[in] options XPath options. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6897 | * @return LY_ERR |
| 6898 | */ |
| 6899 | static LY_ERR |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6900 | moveto_attr(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6901 | { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 6902 | struct lyd_meta *sub; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6903 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 6904 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6905 | return LY_SUCCESS; |
| 6906 | } |
| 6907 | |
| 6908 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6909 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6910 | return LY_EVALID; |
| 6911 | } |
| 6912 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 6913 | for (uint32_t i = 0; i < set->used; ) { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 6914 | ly_bool replaced = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6915 | |
| 6916 | /* only attributes of an elem (not dummy) can be in the result, skip all the rest; |
| 6917 | * our attributes are always qualified */ |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 6918 | if (set->val.nodes[i].type == LYXP_NODE_ELEM) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 6919 | for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6920 | |
| 6921 | /* check "namespace" */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6922 | if (mod && (sub->annotation->module != mod)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6923 | continue; |
| 6924 | } |
| 6925 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6926 | if (!ncname || (sub->name == ncname)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6927 | /* match */ |
| 6928 | if (!replaced) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 6929 | set->val.meta[i].meta = sub; |
| 6930 | set->val.meta[i].type = LYXP_NODE_META; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6931 | /* pos does not change */ |
| 6932 | replaced = 1; |
| 6933 | } else { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 6934 | set_insert_node(set, (struct lyd_node *)sub, set->val.nodes[i].pos, LYXP_NODE_META, i + 1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6935 | } |
| 6936 | ++i; |
| 6937 | } |
| 6938 | } |
| 6939 | } |
| 6940 | |
| 6941 | if (!replaced) { |
| 6942 | /* no match */ |
| 6943 | set_remove_node(set, i); |
| 6944 | } |
| 6945 | } |
| 6946 | |
| 6947 | return LY_SUCCESS; |
| 6948 | } |
| 6949 | |
| 6950 | /** |
| 6951 | * @brief Move context @p set1 to union with @p set2. @p set2 is emptied afterwards. |
Michal Vasko | 61ac2f6 | 2020-05-25 12:39:51 +0200 | [diff] [blame] | 6952 | * Result is LYXP_SET_NODE_SET. Context position aware. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6953 | * |
| 6954 | * @param[in,out] set1 Set to use for the result. |
| 6955 | * @param[in] set2 Set that is copied to @p set1. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6956 | * @return LY_ERR |
| 6957 | */ |
| 6958 | static LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 6959 | moveto_union(struct lyxp_set *set1, struct lyxp_set *set2) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6960 | { |
| 6961 | LY_ERR rc; |
| 6962 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6963 | if ((set1->type != LYXP_SET_NODE_SET) || (set2->type != LYXP_SET_NODE_SET)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 6964 | LOGVAL(set1->ctx, LY_VCODE_XP_INOP_2, "union", print_set_type(set1), print_set_type(set2)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6965 | return LY_EVALID; |
| 6966 | } |
| 6967 | |
| 6968 | /* set2 is empty or both set1 and set2 */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6969 | if (!set2->used) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6970 | return LY_SUCCESS; |
| 6971 | } |
| 6972 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6973 | if (!set1->used) { |
aPiecek | adc1e4f | 2021-10-07 11:15:12 +0200 | [diff] [blame] | 6974 | /* release hidden allocated data (lyxp_set.size) */ |
| 6975 | lyxp_set_free_content(set1); |
| 6976 | /* direct copying of the entire structure */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6977 | memcpy(set1, set2, sizeof *set1); |
| 6978 | /* dynamic memory belongs to set1 now, do not free */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 6979 | memset(set2, 0, sizeof *set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6980 | return LY_SUCCESS; |
| 6981 | } |
| 6982 | |
| 6983 | /* we assume sets are sorted */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 6984 | assert(!set_sort(set1) && !set_sort(set2)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6985 | |
| 6986 | /* sort, remove duplicates */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 6987 | rc = set_sorted_merge(set1, set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6988 | LY_CHECK_RET(rc); |
| 6989 | |
| 6990 | /* final set must be sorted */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 6991 | assert(!set_sort(set1)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6992 | |
| 6993 | return LY_SUCCESS; |
| 6994 | } |
| 6995 | |
| 6996 | /** |
Michal Vasko | 61ac2f6 | 2020-05-25 12:39:51 +0200 | [diff] [blame] | 6997 | * @brief Move context @p set to an attribute in any of the descendants. Result is LYXP_SET_NODE_SET. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6998 | * Context position aware. |
| 6999 | * |
| 7000 | * @param[in,out] set Set to use. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7001 | * @param[in] mod Matching metadata module, NULL for any. |
| 7002 | * @param[in] ncname Matching metadata name in the dictionary, NULL for any. |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 7003 | * @param[in] options XPath options. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7004 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 7005 | */ |
| 7006 | static int |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 7007 | moveto_attr_alldesc(struct lyxp_set *set, const struct lys_module *mod, const char *ncname, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7008 | { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 7009 | struct lyd_meta *sub; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7010 | struct lyxp_set *set_all_desc = NULL; |
| 7011 | LY_ERR rc; |
| 7012 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7013 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7014 | return LY_SUCCESS; |
| 7015 | } |
| 7016 | |
| 7017 | if (set->type != LYXP_SET_NODE_SET) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 7018 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7019 | return LY_EVALID; |
| 7020 | } |
| 7021 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7022 | /* can be optimized similarly to moveto_node_alldesc() and save considerable amount of memory, |
| 7023 | * but it likely won't be used much, so it's a waste of time */ |
| 7024 | /* copy the context */ |
| 7025 | set_all_desc = set_copy(set); |
| 7026 | /* get all descendant nodes (the original context nodes are removed) */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7027 | rc = moveto_node_alldesc_child(set_all_desc, NULL, NULL, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7028 | if (rc != LY_SUCCESS) { |
| 7029 | lyxp_set_free(set_all_desc); |
| 7030 | return rc; |
| 7031 | } |
| 7032 | /* prepend the original context nodes */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7033 | rc = moveto_union(set, set_all_desc); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7034 | if (rc != LY_SUCCESS) { |
| 7035 | lyxp_set_free(set_all_desc); |
| 7036 | return rc; |
| 7037 | } |
| 7038 | lyxp_set_free(set_all_desc); |
| 7039 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7040 | for (uint32_t i = 0; i < set->used; ) { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 7041 | ly_bool replaced = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7042 | |
| 7043 | /* only attributes of an elem can be in the result, skip all the rest, |
| 7044 | * we have all attributes qualified in lyd tree */ |
| 7045 | if (set->val.nodes[i].type == LYXP_NODE_ELEM) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 7046 | for (sub = set->val.nodes[i].node->meta; sub; sub = sub->next) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7047 | /* check "namespace" */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7048 | if (mod && (sub->annotation->module != mod)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7049 | continue; |
| 7050 | } |
| 7051 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7052 | if (!ncname || (sub->name == ncname)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7053 | /* match */ |
| 7054 | if (!replaced) { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 7055 | set->val.meta[i].meta = sub; |
| 7056 | set->val.meta[i].type = LYXP_NODE_META; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7057 | /* pos does not change */ |
| 7058 | replaced = 1; |
| 7059 | } else { |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 7060 | set_insert_node(set, (struct lyd_node *)sub, set->val.meta[i].pos, LYXP_NODE_META, i + 1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7061 | } |
| 7062 | ++i; |
| 7063 | } |
| 7064 | } |
| 7065 | } |
| 7066 | |
| 7067 | if (!replaced) { |
| 7068 | /* no match */ |
| 7069 | set_remove_node(set, i); |
| 7070 | } |
| 7071 | } |
| 7072 | |
| 7073 | return LY_SUCCESS; |
| 7074 | } |
| 7075 | |
| 7076 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7077 | * @brief Move context @p set to the result of a comparison. Handles '=', '!=', '<=', '<', '>=', or '>'. |
| 7078 | * Result is LYXP_SET_BOOLEAN. Indirectly context position aware. |
| 7079 | * |
| 7080 | * @param[in,out] set1 Set to use for the result. |
| 7081 | * @param[in] set2 Set acting as the second operand for @p op. |
| 7082 | * @param[in] op Comparison operator to process. |
| 7083 | * @param[in] options XPath options. |
| 7084 | * @return LY_ERR |
| 7085 | */ |
| 7086 | static LY_ERR |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7087 | moveto_op_comp(struct lyxp_set *set1, struct lyxp_set *set2, const char *op, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7088 | { |
| 7089 | /* |
| 7090 | * NODE SET + NODE SET = NODE SET + STRING /(1 NODE SET) 2 STRING |
| 7091 | * NODE SET + STRING = STRING + STRING /1 STRING (2 STRING) |
| 7092 | * NODE SET + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER) |
| 7093 | * NODE SET + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN) |
| 7094 | * STRING + NODE SET = STRING + STRING /(1 STRING) 2 STRING |
| 7095 | * NUMBER + NODE SET = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER |
| 7096 | * BOOLEAN + NODE SET = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN |
| 7097 | * |
| 7098 | * '=' or '!=' |
| 7099 | * BOOLEAN + BOOLEAN |
| 7100 | * BOOLEAN + STRING = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN |
| 7101 | * BOOLEAN + NUMBER = BOOLEAN + BOOLEAN /(1 BOOLEAN) 2 BOOLEAN |
| 7102 | * STRING + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN) |
| 7103 | * NUMBER + BOOLEAN = BOOLEAN + BOOLEAN /1 BOOLEAN (2 BOOLEAN) |
| 7104 | * NUMBER + NUMBER |
| 7105 | * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER |
| 7106 | * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER) |
| 7107 | * STRING + STRING |
| 7108 | * |
| 7109 | * '<=', '<', '>=', '>' |
| 7110 | * NUMBER + NUMBER |
| 7111 | * BOOLEAN + BOOLEAN = NUMBER + NUMBER /1 NUMBER, 2 NUMBER |
| 7112 | * BOOLEAN + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER) |
| 7113 | * BOOLEAN + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER |
| 7114 | * NUMBER + STRING = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER |
| 7115 | * STRING + STRING = NUMBER + NUMBER /1 NUMBER, 2 NUMBER |
| 7116 | * STRING + NUMBER = NUMBER + NUMBER /1 NUMBER (2 NUMBER) |
| 7117 | * NUMBER + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER |
| 7118 | * STRING + BOOLEAN = NUMBER + NUMBER /(1 NUMBER) 2 NUMBER |
| 7119 | */ |
| 7120 | struct lyxp_set iter1, iter2; |
| 7121 | int result; |
| 7122 | int64_t i; |
| 7123 | LY_ERR rc; |
| 7124 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7125 | memset(&iter1, 0, sizeof iter1); |
| 7126 | memset(&iter2, 0, sizeof iter2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7127 | |
| 7128 | /* iterative evaluation with node-sets */ |
| 7129 | if ((set1->type == LYXP_SET_NODE_SET) || (set2->type == LYXP_SET_NODE_SET)) { |
| 7130 | if (set1->type == LYXP_SET_NODE_SET) { |
| 7131 | for (i = 0; i < set1->used; ++i) { |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7132 | /* cast set1 */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7133 | switch (set2->type) { |
| 7134 | case LYXP_SET_NUMBER: |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7135 | rc = set_comp_cast(&iter1, set1, LYXP_SET_NUMBER, i); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7136 | break; |
| 7137 | case LYXP_SET_BOOLEAN: |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7138 | rc = set_comp_cast(&iter1, set1, LYXP_SET_BOOLEAN, i); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7139 | break; |
| 7140 | default: |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7141 | rc = set_comp_cast(&iter1, set1, LYXP_SET_STRING, i); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7142 | break; |
| 7143 | } |
| 7144 | LY_CHECK_RET(rc); |
| 7145 | |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7146 | /* canonize set2 */ |
| 7147 | LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter2, set2, &set1->val.nodes[i]), lyxp_set_free_content(&iter1), rc); |
| 7148 | |
| 7149 | /* compare recursively */ |
| 7150 | rc = moveto_op_comp(&iter1, &iter2, op, options); |
| 7151 | lyxp_set_free_content(&iter2); |
| 7152 | LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7153 | |
| 7154 | /* lazy evaluation until true */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7155 | if (iter1.val.bln) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7156 | set_fill_boolean(set1, 1); |
| 7157 | return LY_SUCCESS; |
| 7158 | } |
| 7159 | } |
| 7160 | } else { |
| 7161 | for (i = 0; i < set2->used; ++i) { |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7162 | /* set set2 */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7163 | switch (set1->type) { |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7164 | case LYXP_SET_NUMBER: |
| 7165 | rc = set_comp_cast(&iter2, set2, LYXP_SET_NUMBER, i); |
| 7166 | break; |
| 7167 | case LYXP_SET_BOOLEAN: |
| 7168 | rc = set_comp_cast(&iter2, set2, LYXP_SET_BOOLEAN, i); |
| 7169 | break; |
| 7170 | default: |
| 7171 | rc = set_comp_cast(&iter2, set2, LYXP_SET_STRING, i); |
| 7172 | break; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7173 | } |
| 7174 | LY_CHECK_RET(rc); |
| 7175 | |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7176 | /* canonize set1 */ |
| 7177 | LY_CHECK_ERR_RET(rc = set_comp_canonize(&iter1, set1, &set2->val.nodes[i]), lyxp_set_free_content(&iter2), rc); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7178 | |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7179 | /* compare recursively */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7180 | rc = moveto_op_comp(&iter1, &iter2, op, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7181 | lyxp_set_free_content(&iter2); |
Michal Vasko | 4c7763f | 2020-07-27 17:40:37 +0200 | [diff] [blame] | 7182 | LY_CHECK_ERR_RET(rc, lyxp_set_free_content(&iter1), rc); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7183 | |
| 7184 | /* lazy evaluation until true */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7185 | if (iter1.val.bln) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7186 | set_fill_boolean(set1, 1); |
| 7187 | return LY_SUCCESS; |
| 7188 | } |
| 7189 | } |
| 7190 | } |
| 7191 | |
| 7192 | /* false for all nodes */ |
| 7193 | set_fill_boolean(set1, 0); |
| 7194 | return LY_SUCCESS; |
| 7195 | } |
| 7196 | |
| 7197 | /* first convert properly */ |
| 7198 | if ((op[0] == '=') || (op[0] == '!')) { |
| 7199 | if ((set1->type == LYXP_SET_BOOLEAN) || (set2->type == LYXP_SET_BOOLEAN)) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7200 | lyxp_set_cast(set1, LYXP_SET_BOOLEAN); |
| 7201 | lyxp_set_cast(set2, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7202 | } else if ((set1->type == LYXP_SET_NUMBER) || (set2->type == LYXP_SET_NUMBER)) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7203 | rc = lyxp_set_cast(set1, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7204 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7205 | rc = lyxp_set_cast(set2, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7206 | LY_CHECK_RET(rc); |
| 7207 | } /* else we have 2 strings */ |
| 7208 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7209 | rc = lyxp_set_cast(set1, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7210 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7211 | rc = lyxp_set_cast(set2, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7212 | LY_CHECK_RET(rc); |
| 7213 | } |
| 7214 | |
| 7215 | assert(set1->type == set2->type); |
| 7216 | |
| 7217 | /* compute result */ |
| 7218 | if (op[0] == '=') { |
| 7219 | if (set1->type == LYXP_SET_BOOLEAN) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7220 | result = (set1->val.bln == set2->val.bln); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7221 | } else if (set1->type == LYXP_SET_NUMBER) { |
| 7222 | result = (set1->val.num == set2->val.num); |
| 7223 | } else { |
| 7224 | assert(set1->type == LYXP_SET_STRING); |
Michal Vasko | ac6c72f | 2019-11-14 16:09:34 +0100 | [diff] [blame] | 7225 | result = !strcmp(set1->val.str, set2->val.str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7226 | } |
| 7227 | } else if (op[0] == '!') { |
| 7228 | if (set1->type == LYXP_SET_BOOLEAN) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7229 | result = (set1->val.bln != set2->val.bln); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7230 | } else if (set1->type == LYXP_SET_NUMBER) { |
| 7231 | result = (set1->val.num != set2->val.num); |
| 7232 | } else { |
| 7233 | assert(set1->type == LYXP_SET_STRING); |
Michal Vasko | c205843 | 2020-11-06 17:26:21 +0100 | [diff] [blame] | 7234 | result = strcmp(set1->val.str, set2->val.str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7235 | } |
| 7236 | } else { |
| 7237 | assert(set1->type == LYXP_SET_NUMBER); |
| 7238 | if (op[0] == '<') { |
| 7239 | if (op[1] == '=') { |
| 7240 | result = (set1->val.num <= set2->val.num); |
| 7241 | } else { |
| 7242 | result = (set1->val.num < set2->val.num); |
| 7243 | } |
| 7244 | } else { |
| 7245 | if (op[1] == '=') { |
| 7246 | result = (set1->val.num >= set2->val.num); |
| 7247 | } else { |
| 7248 | result = (set1->val.num > set2->val.num); |
| 7249 | } |
| 7250 | } |
| 7251 | } |
| 7252 | |
| 7253 | /* assign result */ |
| 7254 | if (result) { |
| 7255 | set_fill_boolean(set1, 1); |
| 7256 | } else { |
| 7257 | set_fill_boolean(set1, 0); |
| 7258 | } |
| 7259 | |
| 7260 | return LY_SUCCESS; |
| 7261 | } |
| 7262 | |
| 7263 | /** |
| 7264 | * @brief Move context @p set to the result of a basic operation. Handles '+', '-', unary '-', '*', 'div', |
| 7265 | * or 'mod'. Result is LYXP_SET_NUMBER. Indirectly context position aware. |
| 7266 | * |
| 7267 | * @param[in,out] set1 Set to use for the result. |
| 7268 | * @param[in] set2 Set acting as the second operand for @p op. |
| 7269 | * @param[in] op Operator to process. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7270 | * @return LY_ERR |
| 7271 | */ |
| 7272 | static LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7273 | moveto_op_math(struct lyxp_set *set1, struct lyxp_set *set2, const char *op) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7274 | { |
| 7275 | LY_ERR rc; |
| 7276 | |
| 7277 | /* unary '-' */ |
| 7278 | if (!set2 && (op[0] == '-')) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7279 | rc = lyxp_set_cast(set1, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7280 | LY_CHECK_RET(rc); |
| 7281 | set1->val.num *= -1; |
| 7282 | lyxp_set_free(set2); |
| 7283 | return LY_SUCCESS; |
| 7284 | } |
| 7285 | |
| 7286 | assert(set1 && set2); |
| 7287 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7288 | rc = lyxp_set_cast(set1, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7289 | LY_CHECK_RET(rc); |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7290 | rc = lyxp_set_cast(set2, LYXP_SET_NUMBER); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7291 | LY_CHECK_RET(rc); |
| 7292 | |
| 7293 | switch (op[0]) { |
| 7294 | /* '+' */ |
| 7295 | case '+': |
| 7296 | set1->val.num += set2->val.num; |
| 7297 | break; |
| 7298 | |
| 7299 | /* '-' */ |
| 7300 | case '-': |
| 7301 | set1->val.num -= set2->val.num; |
| 7302 | break; |
| 7303 | |
| 7304 | /* '*' */ |
| 7305 | case '*': |
| 7306 | set1->val.num *= set2->val.num; |
| 7307 | break; |
| 7308 | |
| 7309 | /* 'div' */ |
| 7310 | case 'd': |
| 7311 | set1->val.num /= set2->val.num; |
| 7312 | break; |
| 7313 | |
| 7314 | /* 'mod' */ |
| 7315 | case 'm': |
| 7316 | set1->val.num = ((long long)set1->val.num) % ((long long)set2->val.num); |
| 7317 | break; |
| 7318 | |
| 7319 | default: |
| 7320 | LOGINT_RET(set1->ctx); |
| 7321 | } |
| 7322 | |
| 7323 | return LY_SUCCESS; |
| 7324 | } |
| 7325 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7326 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7327 | * @brief Evaluate Predicate. Logs directly on error. |
| 7328 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7329 | * [9] Predicate ::= '[' Expr ']' |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7330 | * |
| 7331 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7332 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7333 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7334 | * @param[in] options XPath options. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7335 | * @param[in] axis Axis to search on. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7336 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 7337 | */ |
| 7338 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7339 | eval_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options, enum lyxp_axis axis) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7340 | { |
| 7341 | LY_ERR rc; |
Michal Vasko | 1fdd8fa | 2021-01-08 09:21:45 +0100 | [diff] [blame] | 7342 | uint16_t orig_exp; |
| 7343 | uint32_t i, orig_pos, orig_size; |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 7344 | int32_t pred_in_ctx; |
Michal Vasko | 88a9e80 | 2022-05-24 10:50:28 +0200 | [diff] [blame^] | 7345 | ly_bool reverse_axis = 0; |
aPiecek | fff4dca | 2021-10-07 10:59:53 +0200 | [diff] [blame] | 7346 | struct lyxp_set set2 = {0}; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7347 | |
| 7348 | /* '[' */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7349 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7350 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7351 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7352 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7353 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7354 | only_parse: |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7355 | rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7356 | LY_CHECK_RET(rc); |
| 7357 | } else if (set->type == LYXP_SET_NODE_SET) { |
| 7358 | /* we (possibly) need the set sorted, it can affect the result (if the predicate result is a number) */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7359 | assert(!set_sort(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7360 | |
| 7361 | /* empty set, nothing to evaluate */ |
| 7362 | if (!set->used) { |
| 7363 | goto only_parse; |
| 7364 | } |
| 7365 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7366 | /* decide forward or reverse axis */ |
| 7367 | switch (axis) { |
| 7368 | case LYXP_AXIS_ANCESTOR: |
| 7369 | case LYXP_AXIS_ANCESTOR_OR_SELF: |
| 7370 | case LYXP_AXIS_PRECEDING: |
| 7371 | case LYXP_AXIS_PRECEDING_SIBLING: |
| 7372 | reverse_axis = 1; |
| 7373 | break; |
| 7374 | case LYXP_AXIS_DESCENDANT: |
| 7375 | case LYXP_AXIS_DESCENDANT_OR_SELF: |
| 7376 | case LYXP_AXIS_FOLLOWING: |
| 7377 | case LYXP_AXIS_FOLLOWING_SIBLING: |
| 7378 | case LYXP_AXIS_PARENT: |
| 7379 | case LYXP_AXIS_CHILD: |
| 7380 | case LYXP_AXIS_SELF: |
| 7381 | case LYXP_AXIS_ATTRIBUTE: |
| 7382 | reverse_axis = 0; |
| 7383 | break; |
| 7384 | } |
| 7385 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7386 | orig_exp = *tok_idx; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7387 | orig_pos = reverse_axis ? set->used + 1 : 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7388 | orig_size = set->used; |
Michal Vasko | 39dbf35 | 2020-05-21 10:08:59 +0200 | [diff] [blame] | 7389 | for (i = 0; i < set->used; ++i) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7390 | set_init(&set2, set); |
| 7391 | set_insert_node(&set2, set->val.nodes[i].node, set->val.nodes[i].pos, set->val.nodes[i].type, 0); |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7392 | |
| 7393 | /* remember the node context position for position() and context size for last() */ |
| 7394 | orig_pos += reverse_axis ? -1 : 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7395 | |
| 7396 | set2.ctx_pos = orig_pos; |
| 7397 | set2.ctx_size = orig_size; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7398 | *tok_idx = orig_exp; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7399 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7400 | rc = eval_expr_select(exp, tok_idx, 0, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7401 | if (rc != LY_SUCCESS) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7402 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7403 | return rc; |
| 7404 | } |
| 7405 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7406 | /* number is a proximity position */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7407 | if (set2.type == LYXP_SET_NUMBER) { |
| 7408 | if ((long long)set2.val.num == orig_pos) { |
| 7409 | set2.val.num = 1; |
| 7410 | } else { |
| 7411 | set2.val.num = 0; |
| 7412 | } |
| 7413 | } |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7414 | lyxp_set_cast(&set2, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7415 | |
| 7416 | /* predicate satisfied or not? */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7417 | if (!set2.val.bln) { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 7418 | set_remove_node_none(set, i); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7419 | } |
| 7420 | } |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 7421 | set_remove_nodes_none(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7422 | |
| 7423 | } else if (set->type == LYXP_SET_SCNODE_SET) { |
| 7424 | for (i = 0; i < set->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 7425 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7426 | /* there is a currently-valid node */ |
| 7427 | break; |
| 7428 | } |
| 7429 | } |
| 7430 | /* empty set, nothing to evaluate */ |
| 7431 | if (i == set->used) { |
| 7432 | goto only_parse; |
| 7433 | } |
| 7434 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7435 | orig_exp = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7436 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7437 | /* set special in_ctx to all the valid snodes */ |
| 7438 | pred_in_ctx = set_scnode_new_in_ctx(set); |
| 7439 | |
| 7440 | /* use the valid snodes one-by-one */ |
| 7441 | for (i = 0; i < set->used; ++i) { |
| 7442 | if (set->val.scnodes[i].in_ctx != pred_in_ctx) { |
| 7443 | continue; |
| 7444 | } |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 7445 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7446 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7447 | *tok_idx = orig_exp; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7448 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7449 | rc = eval_expr_select(exp, tok_idx, 0, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7450 | LY_CHECK_RET(rc); |
| 7451 | |
| 7452 | set->val.scnodes[i].in_ctx = pred_in_ctx; |
| 7453 | } |
| 7454 | |
| 7455 | /* restore the state as it was before the predicate */ |
| 7456 | for (i = 0; i < set->used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 7457 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 7458 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_NODE; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7459 | } else if (set->val.scnodes[i].in_ctx == pred_in_ctx) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 7460 | set->val.scnodes[i].in_ctx = LYXP_SET_SCNODE_ATOM_CTX; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7461 | } |
| 7462 | } |
| 7463 | |
| 7464 | } else { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7465 | set2.type = LYXP_SET_NODE_SET; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7466 | set_fill_set(&set2, set); |
| 7467 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7468 | rc = eval_expr_select(exp, tok_idx, 0, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7469 | if (rc != LY_SUCCESS) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7470 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7471 | return rc; |
| 7472 | } |
| 7473 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 7474 | lyxp_set_cast(&set2, LYXP_SET_BOOLEAN); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7475 | if (!set2.val.bln) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7476 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7477 | } |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7478 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7479 | } |
| 7480 | |
| 7481 | /* ']' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7482 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_BRACK2); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7483 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7484 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7485 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7486 | |
| 7487 | return LY_SUCCESS; |
| 7488 | } |
| 7489 | |
| 7490 | /** |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7491 | * @brief Evaluate Literal. Logs directly on error. |
| 7492 | * |
| 7493 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7494 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7495 | * @param[in,out] set Context and result set. On NULL the rule is only parsed. |
| 7496 | */ |
| 7497 | static void |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 7498 | eval_literal(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7499 | { |
| 7500 | if (set) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7501 | if (exp->tok_len[*tok_idx] == 2) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7502 | set_fill_string(set, "", 0); |
| 7503 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7504 | set_fill_string(set, &exp->expr[exp->tok_pos[*tok_idx] + 1], exp->tok_len[*tok_idx] - 2); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7505 | } |
| 7506 | } |
| 7507 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7508 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7509 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7510 | } |
| 7511 | |
| 7512 | /** |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7513 | * @brief Try to compile list or leaf-list predicate in the known format to be used for hash-based instance search. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7514 | * |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7515 | * @param[in] exp Full parsed XPath expression. |
| 7516 | * @param[in,out] tok_idx Index in @p exp at the beginning of the predicate, is updated on success. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7517 | * @param[in] ctx_node Found schema node as the context for the predicate. |
| 7518 | * @param[in] cur_mod Current module for the expression. |
| 7519 | * @param[in] cur_node Current (original context) node. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7520 | * @param[in] format Format of any prefixes in key names/values. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7521 | * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7522 | * @param[out] predicates Parsed predicates. |
| 7523 | * @param[out] pred_type Type of @p predicates. |
| 7524 | * @return LY_SUCCESS on success, |
| 7525 | * @return LY_ERR on any error. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7526 | */ |
| 7527 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 7528 | eval_name_test_try_compile_predicates(const struct lyxp_expr *exp, uint16_t *tok_idx, const struct lysc_node *ctx_node, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 7529 | const struct lys_module *cur_mod, const struct lysc_node *cur_node, LY_VALUE_FORMAT format, void *prefix_data, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7530 | struct ly_path_predicate **predicates, enum ly_path_pred_type *pred_type) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7531 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7532 | LY_ERR ret = LY_SUCCESS; |
| 7533 | uint16_t key_count, e_idx, pred_idx = 0; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7534 | const struct lysc_node *key; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7535 | size_t pred_len; |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7536 | uint32_t prev_lo; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7537 | struct lyxp_expr *exp2 = NULL; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7538 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7539 | assert(ctx_node->nodetype & (LYS_LIST | LYS_LEAFLIST)); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7540 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7541 | if (ctx_node->nodetype == LYS_LIST) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7542 | /* get key count */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7543 | if (ctx_node->flags & LYS_KEYLESS) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7544 | return LY_EINVAL; |
| 7545 | } |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 7546 | for (key_count = 0, key = lysc_node_child(ctx_node); key && (key->flags & LYS_KEY); key = key->next, ++key_count) {} |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7547 | assert(key_count); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7548 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7549 | /* learn where the predicates end */ |
| 7550 | e_idx = *tok_idx; |
| 7551 | while (key_count) { |
| 7552 | /* '[' */ |
| 7553 | if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) { |
| 7554 | return LY_EINVAL; |
| 7555 | } |
| 7556 | ++e_idx; |
| 7557 | |
Michal Vasko | 3354d27 | 2021-04-06 09:40:06 +0200 | [diff] [blame] | 7558 | if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_NAMETEST)) { |
| 7559 | /* definitely not a key */ |
| 7560 | return LY_EINVAL; |
| 7561 | } |
| 7562 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7563 | /* ']' */ |
| 7564 | while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) { |
| 7565 | ++e_idx; |
| 7566 | } |
| 7567 | ++e_idx; |
| 7568 | |
| 7569 | /* another presumably key predicate parsed */ |
| 7570 | --key_count; |
| 7571 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7572 | } else { |
| 7573 | /* learn just where this single predicate ends */ |
| 7574 | e_idx = *tok_idx; |
| 7575 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7576 | /* '[' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7577 | if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK1)) { |
| 7578 | return LY_EINVAL; |
| 7579 | } |
| 7580 | ++e_idx; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7581 | |
Michal Vasko | 3354d27 | 2021-04-06 09:40:06 +0200 | [diff] [blame] | 7582 | if (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_DOT)) { |
| 7583 | /* definitely not the value */ |
| 7584 | return LY_EINVAL; |
| 7585 | } |
| 7586 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7587 | /* ']' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7588 | while (lyxp_check_token(NULL, exp, e_idx, LYXP_TOKEN_BRACK2)) { |
| 7589 | ++e_idx; |
| 7590 | } |
| 7591 | ++e_idx; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7592 | } |
| 7593 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7594 | /* get the joined length of all the keys predicates/of the single leaf-list predicate */ |
| 7595 | pred_len = (exp->tok_pos[e_idx - 1] + exp->tok_len[e_idx - 1]) - exp->tok_pos[*tok_idx]; |
| 7596 | |
| 7597 | /* turn logging off */ |
| 7598 | prev_lo = ly_log_options(0); |
| 7599 | |
| 7600 | /* parse the predicate(s) */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7601 | LY_CHECK_GOTO(ret = ly_path_parse_predicate(ctx_node->module->ctx, ctx_node, exp->expr + exp->tok_pos[*tok_idx], |
| 7602 | pred_len, LY_PATH_PREFIX_OPTIONAL, LY_PATH_PRED_SIMPLE, &exp2), cleanup); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7603 | |
| 7604 | /* compile */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7605 | ret = ly_path_compile_predicate(ctx_node->module->ctx, cur_node, cur_mod, ctx_node, exp2, &pred_idx, format, |
| 7606 | prefix_data, predicates, pred_type); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7607 | LY_CHECK_GOTO(ret, cleanup); |
| 7608 | |
| 7609 | /* success, the predicate must include all the needed information for hash-based search */ |
| 7610 | *tok_idx = e_idx; |
| 7611 | |
| 7612 | cleanup: |
| 7613 | ly_log_options(prev_lo); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7614 | lyxp_expr_free(ctx_node->module->ctx, exp2); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7615 | return ret; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7616 | } |
| 7617 | |
| 7618 | /** |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7619 | * @brief Search for/check the next schema node that could be the only matching schema node meaning the |
| 7620 | * data node(s) could be found using a single hash-based search. |
| 7621 | * |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7622 | * @param[in] ctx libyang context. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7623 | * @param[in] node Next context node to check. |
| 7624 | * @param[in] name Expected node name. |
| 7625 | * @param[in] name_len Length of @p name. |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7626 | * @param[in] moveto_mod Expected node module, can be NULL for JSON format with no prefix. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7627 | * @param[in] root_type XPath root type. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7628 | * @param[in] format Prefix format. |
| 7629 | * @param[in,out] found Previously found node, is updated. |
| 7630 | * @return LY_SUCCESS on success, |
| 7631 | * @return LY_ENOT if the whole check failed and hashes cannot be used. |
| 7632 | */ |
| 7633 | static LY_ERR |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7634 | eval_name_test_with_predicate_get_scnode(const struct ly_ctx *ctx, const struct lyd_node *node, const char *name, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 7635 | uint16_t name_len, const struct lys_module *moveto_mod, enum lyxp_node_type root_type, LY_VALUE_FORMAT format, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7636 | const struct lysc_node **found) |
| 7637 | { |
| 7638 | const struct lysc_node *scnode; |
| 7639 | const struct lys_module *mod; |
| 7640 | uint32_t idx = 0; |
| 7641 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 7642 | assert((format == LY_VALUE_JSON) || moveto_mod); |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7643 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7644 | continue_search: |
Michal Vasko | 7d1d091 | 2020-10-16 08:38:30 +0200 | [diff] [blame] | 7645 | scnode = NULL; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7646 | if (!node) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 7647 | if ((format == LY_VALUE_JSON) && !moveto_mod) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7648 | /* search all modules for a single match */ |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7649 | while ((mod = ly_ctx_get_module_iter(ctx, &idx))) { |
Michal Vasko | 35a3b1d | 2021-07-14 09:34:16 +0200 | [diff] [blame] | 7650 | if (!mod->implemented) { |
| 7651 | continue; |
| 7652 | } |
| 7653 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7654 | scnode = lys_find_child(NULL, mod, name, name_len, 0, 0); |
| 7655 | if (scnode) { |
| 7656 | /* we have found a match */ |
| 7657 | break; |
| 7658 | } |
| 7659 | } |
| 7660 | |
Michal Vasko | 7d1d091 | 2020-10-16 08:38:30 +0200 | [diff] [blame] | 7661 | if (!scnode) { |
| 7662 | /* all modules searched */ |
| 7663 | idx = 0; |
| 7664 | } |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7665 | } else { |
| 7666 | /* search in top-level */ |
| 7667 | scnode = lys_find_child(NULL, moveto_mod, name, name_len, 0, 0); |
| 7668 | } |
| 7669 | } else if (!*found || (lysc_data_parent(*found) != node->schema)) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 7670 | if ((format == LY_VALUE_JSON) && !moveto_mod) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7671 | /* we must adjust the module to inherit the one from the context node */ |
| 7672 | moveto_mod = node->schema->module; |
| 7673 | } |
| 7674 | |
| 7675 | /* search in children, do not repeat the same search */ |
| 7676 | scnode = lys_find_child(node->schema, moveto_mod, name, name_len, 0, 0); |
Michal Vasko | 7d1d091 | 2020-10-16 08:38:30 +0200 | [diff] [blame] | 7677 | } /* else skip redundant search */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7678 | |
| 7679 | /* additional context check */ |
| 7680 | if (scnode && (root_type == LYXP_NODE_ROOT_CONFIG) && (scnode->flags & LYS_CONFIG_R)) { |
| 7681 | scnode = NULL; |
| 7682 | } |
| 7683 | |
| 7684 | if (scnode) { |
| 7685 | if (*found) { |
| 7686 | /* we found a schema node with the same name but at different level, give up, too complicated |
| 7687 | * (more hash-based searches would be required, not supported) */ |
| 7688 | return LY_ENOT; |
| 7689 | } else { |
| 7690 | /* remember the found schema node and continue to make sure it can be used */ |
| 7691 | *found = scnode; |
| 7692 | } |
| 7693 | } |
| 7694 | |
| 7695 | if (idx) { |
| 7696 | /* continue searching all the following models */ |
| 7697 | goto continue_search; |
| 7698 | } |
| 7699 | |
| 7700 | return LY_SUCCESS; |
| 7701 | } |
| 7702 | |
| 7703 | /** |
Michal Vasko | 4ad69e7 | 2021-10-26 16:25:55 +0200 | [diff] [blame] | 7704 | * @brief Generate message when no matching schema nodes were found for a path segment. |
| 7705 | * |
| 7706 | * @param[in] set XPath set. |
| 7707 | * @param[in] scparent Previous schema parent in the context, if only one. |
| 7708 | * @param[in] ncname XPath NCName being evaluated. |
| 7709 | * @param[in] ncname_len Length of @p ncname. |
| 7710 | * @param[in] expr Whole XPath expression. |
| 7711 | * @param[in] options XPath options. |
| 7712 | */ |
| 7713 | static void |
| 7714 | eval_name_test_scnode_no_match_msg(struct lyxp_set *set, const struct lyxp_set_scnode *scparent, const char *ncname, |
| 7715 | uint16_t ncname_len, const char *expr, uint32_t options) |
| 7716 | { |
| 7717 | const char *format; |
| 7718 | char *path = NULL, *ppath = NULL; |
| 7719 | |
| 7720 | path = lysc_path(set->cur_scnode, LYSC_PATH_LOG, NULL, 0); |
| 7721 | if (scparent) { |
| 7722 | /* generate path for the parent */ |
| 7723 | if (scparent->type == LYXP_NODE_ELEM) { |
| 7724 | ppath = lysc_path(scparent->scnode, LYSC_PATH_LOG, NULL, 0); |
| 7725 | } else if (scparent->type == LYXP_NODE_ROOT) { |
| 7726 | ppath = strdup("<root>"); |
| 7727 | } else if (scparent->type == LYXP_NODE_ROOT_CONFIG) { |
| 7728 | ppath = strdup("<config-root>"); |
| 7729 | } |
| 7730 | } |
| 7731 | if (ppath) { |
| 7732 | format = "Schema node \"%.*s\" for parent \"%s\" not found; in expr \"%.*s\" with context node \"%s\"."; |
| 7733 | if (options & LYXP_SCNODE_ERROR) { |
| 7734 | LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path); |
| 7735 | } else { |
| 7736 | LOGWRN(set->ctx, format, ncname_len, ncname, ppath, (ncname - expr) + ncname_len, expr, path); |
| 7737 | } |
| 7738 | } else { |
| 7739 | format = "Schema node \"%.*s\" not found; in expr \"%.*s\" with context node \"%s\"."; |
| 7740 | if (options & LYXP_SCNODE_ERROR) { |
| 7741 | LOGERR(set->ctx, LY_EVALID, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path); |
| 7742 | } else { |
| 7743 | LOGWRN(set->ctx, format, ncname_len, ncname, (ncname - expr) + ncname_len, expr, path); |
| 7744 | } |
| 7745 | } |
| 7746 | free(path); |
| 7747 | free(ppath); |
| 7748 | } |
| 7749 | |
| 7750 | /** |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7751 | * @brief Evaluate NameTest and any following Predicates. Logs directly on error. |
| 7752 | * |
| 7753 | * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..' |
| 7754 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
| 7755 | * [7] NameTest ::= '*' | NCName ':' '*' | QName |
| 7756 | * |
| 7757 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7758 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7759 | * @param[in] axis What axis to search on. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7760 | * @param[in] all_desc Whether to search all the descendants or children only. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7761 | * @param[in,out] set Context and result set. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7762 | * @param[in] options XPath options. |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7763 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when, LY_ENOT for not found schema node) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7764 | */ |
| 7765 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7766 | eval_name_test_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc, |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7767 | struct lyxp_set *set, uint32_t options) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7768 | { |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7769 | LY_ERR rc = LY_SUCCESS, r; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7770 | const char *ncname, *ncname_dict = NULL; |
| 7771 | uint16_t ncname_len; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7772 | const struct lys_module *moveto_mod = NULL; |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7773 | const struct lysc_node *scnode = NULL; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7774 | struct ly_path_predicate *predicates = NULL; |
| 7775 | enum ly_path_pred_type pred_type = 0; |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7776 | int scnode_skip_pred = 0; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7777 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7778 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7779 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7780 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7781 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7782 | if (options & LYXP_SKIP_EXPR) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7783 | goto moveto; |
| 7784 | } |
| 7785 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7786 | ncname = &exp->expr[exp->tok_pos[*tok_idx - 1]]; |
| 7787 | ncname_len = exp->tok_len[*tok_idx - 1]; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7788 | |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7789 | if ((ncname[0] == '*') && (ncname_len == 1)) { |
| 7790 | /* all nodes will match */ |
| 7791 | goto moveto; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7792 | } |
| 7793 | |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7794 | /* parse (and skip) module name */ |
| 7795 | rc = moveto_resolve_model(&ncname, &ncname_len, set, NULL, &moveto_mod); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7796 | LY_CHECK_GOTO(rc, cleanup); |
| 7797 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7798 | if ((ncname[0] == '*') && (ncname_len == 1)) { |
| 7799 | /* all nodes from the module will match */ |
| 7800 | goto moveto; |
| 7801 | } |
| 7802 | |
| 7803 | if (((set->format == LY_VALUE_JSON) || moveto_mod) && (axis == LYXP_AXIS_CHILD) && !all_desc && |
| 7804 | (set->type == LYXP_SET_NODE_SET)) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7805 | /* find the matching schema node in some parent in the context */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7806 | for (uint32_t i = 0; i < set->used; ++i) { |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7807 | if (eval_name_test_with_predicate_get_scnode(set->ctx, set->val.nodes[i].node, ncname, ncname_len, |
| 7808 | moveto_mod, set->root_type, set->format, &scnode)) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7809 | /* check failed */ |
| 7810 | scnode = NULL; |
| 7811 | break; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7812 | } |
| 7813 | } |
| 7814 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7815 | if (scnode && (scnode->nodetype & (LYS_LIST | LYS_LEAFLIST))) { |
| 7816 | /* try to create the predicates */ |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 7817 | if (eval_name_test_try_compile_predicates(exp, tok_idx, scnode, set->cur_mod, set->cur_node ? |
| 7818 | set->cur_node->schema : NULL, set->format, set->prefix_data, &predicates, &pred_type)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7819 | /* hashes cannot be used */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7820 | scnode = NULL; |
| 7821 | } |
| 7822 | } |
| 7823 | } |
| 7824 | |
Michal Vasko | c71c37b | 2021-01-11 13:40:02 +0100 | [diff] [blame] | 7825 | if (!scnode) { |
| 7826 | /* we are not able to match based on a schema node and not all the modules match ("*"), |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7827 | * use dictionary for efficient comparison */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 7828 | LY_CHECK_GOTO(rc = lydict_insert(set->ctx, ncname, ncname_len, &ncname_dict), cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7829 | } |
| 7830 | |
| 7831 | moveto: |
| 7832 | /* move to the attribute(s), data node(s), or schema node(s) */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7833 | if (axis == LYXP_AXIS_ATTRIBUTE) { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7834 | if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 7835 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7836 | } else { |
| 7837 | if (all_desc) { |
Michal Vasko | cdad712 | 2020-11-09 21:04:44 +0100 | [diff] [blame] | 7838 | rc = moveto_attr_alldesc(set, moveto_mod, ncname_dict, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7839 | } else { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7840 | rc = moveto_attr(set, moveto_mod, ncname_dict, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7841 | } |
| 7842 | LY_CHECK_GOTO(rc, cleanup); |
| 7843 | } |
| 7844 | } else { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7845 | if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7846 | int64_t i; |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7847 | const struct lyxp_set_scnode *scparent = NULL; |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7848 | |
| 7849 | /* remember parent if there is only one, to print in the warning */ |
| 7850 | for (i = 0; i < set->used; ++i) { |
| 7851 | if (set->val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX) { |
| 7852 | if (!scparent) { |
| 7853 | /* remember the context node */ |
| 7854 | scparent = &set->val.scnodes[i]; |
| 7855 | } else { |
| 7856 | /* several context nodes, no reasonable error possible */ |
| 7857 | scparent = NULL; |
| 7858 | break; |
| 7859 | } |
| 7860 | } |
| 7861 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7862 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7863 | if (all_desc && (axis == LYXP_AXIS_CHILD)) { |
| 7864 | /* efficient evaluation that does not add all the descendants into the set */ |
| 7865 | rc = moveto_scnode_alldesc_child(set, moveto_mod, ncname_dict, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7866 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7867 | if (all_desc) { |
| 7868 | /* "//" == "/descendant-or-self::node()/" */ |
| 7869 | rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options); |
| 7870 | LY_CHECK_GOTO(rc, cleanup); |
| 7871 | } |
| 7872 | rc = moveto_scnode(set, moveto_mod, ncname_dict, axis, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7873 | } |
| 7874 | LY_CHECK_GOTO(rc, cleanup); |
| 7875 | |
| 7876 | for (i = set->used - 1; i > -1; --i) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 7877 | if (set->val.scnodes[i].in_ctx > LYXP_SET_SCNODE_ATOM_NODE) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7878 | break; |
| 7879 | } |
| 7880 | } |
| 7881 | if (i == -1) { |
Michal Vasko | 4ad69e7 | 2021-10-26 16:25:55 +0200 | [diff] [blame] | 7882 | /* generate message */ |
| 7883 | eval_name_test_scnode_no_match_msg(set, scparent, ncname, ncname_len, exp->expr, options); |
| 7884 | |
| 7885 | if (options & LYXP_SCNODE_ERROR) { |
| 7886 | /* error */ |
| 7887 | rc = LY_EVALID; |
| 7888 | goto cleanup; |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7889 | } |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7890 | |
| 7891 | /* skip the predicates and the rest of this path to not generate invalid warnings */ |
| 7892 | rc = LY_ENOT; |
| 7893 | scnode_skip_pred = 1; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7894 | } |
| 7895 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7896 | if (all_desc && (axis == LYXP_AXIS_CHILD)) { |
| 7897 | /* efficient evaluation */ |
| 7898 | rc = moveto_node_alldesc_child(set, moveto_mod, ncname_dict, options); |
| 7899 | } else if (scnode && (axis == LYXP_AXIS_CHILD)) { |
| 7900 | /* we can find the child nodes using hashes */ |
| 7901 | rc = moveto_node_hash_child(set, scnode, predicates, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7902 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7903 | if (all_desc) { |
| 7904 | /* "//" == "/descendant-or-self::node()/" */ |
| 7905 | rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options); |
| 7906 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7907 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7908 | rc = moveto_node(set, moveto_mod, ncname_dict, axis, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7909 | } |
| 7910 | LY_CHECK_GOTO(rc, cleanup); |
| 7911 | } |
| 7912 | } |
| 7913 | |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7914 | if (scnode_skip_pred) { |
| 7915 | /* skip predicates */ |
| 7916 | options |= LYXP_SKIP_EXPR; |
| 7917 | } |
| 7918 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7919 | /* Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7920 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7921 | r = eval_predicate(exp, tok_idx, set, options, axis); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7922 | LY_CHECK_ERR_GOTO(r, rc = r, cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7923 | } |
| 7924 | |
| 7925 | cleanup: |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 7926 | if (scnode_skip_pred) { |
| 7927 | /* restore options */ |
| 7928 | options &= ~LYXP_SKIP_EXPR; |
| 7929 | } |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7930 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7931 | lydict_remove(set->ctx, ncname_dict); |
Michal Vasko | f7e16e2 | 2020-10-21 09:24:39 +0200 | [diff] [blame] | 7932 | ly_path_predicates_free(set->ctx, pred_type, predicates); |
Michal Vasko | db51a8d | 2020-05-27 15:22:29 +0200 | [diff] [blame] | 7933 | } |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7934 | return rc; |
| 7935 | } |
| 7936 | |
| 7937 | /** |
| 7938 | * @brief Evaluate NodeType and any following Predicates. Logs directly on error. |
| 7939 | * |
| 7940 | * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..' |
| 7941 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
| 7942 | * [8] NodeType ::= 'text' | 'node' |
| 7943 | * |
| 7944 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7945 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7946 | * @param[in] axis Axis to search on. |
| 7947 | * @param[in] all_desc Whether to search all the descendants or axis only. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7948 | * @param[in,out] set Context and result set. |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7949 | * @param[in] options XPath options. |
| 7950 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 7951 | */ |
| 7952 | static LY_ERR |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7953 | eval_node_type_with_predicate(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_axis axis, ly_bool all_desc, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 7954 | struct lyxp_set *set, uint32_t options) |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7955 | { |
| 7956 | LY_ERR rc; |
| 7957 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7958 | (void)all_desc; |
| 7959 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7960 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7961 | assert(exp->tok_len[*tok_idx] == 4); |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7962 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "node", 4)) { |
| 7963 | rc = xpath_pi_node(set, axis, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7964 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7965 | assert(!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "text", 4)); |
| 7966 | rc = xpath_pi_text(set, axis, options); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7967 | } |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7968 | LY_CHECK_RET(rc); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7969 | } |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7970 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7971 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7972 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7973 | |
| 7974 | /* '(' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7975 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7976 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7977 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7978 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7979 | |
| 7980 | /* ')' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7981 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 7982 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7983 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7984 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7985 | |
| 7986 | /* Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 7987 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 7988 | rc = eval_predicate(exp, tok_idx, set, options, axis); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 7989 | LY_CHECK_RET(rc); |
| 7990 | } |
| 7991 | |
| 7992 | return LY_SUCCESS; |
| 7993 | } |
| 7994 | |
| 7995 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 7996 | * @brief Evaluate RelativeLocationPath. Logs directly on error. |
| 7997 | * |
| 7998 | * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step |
| 7999 | * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..' |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8000 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8001 | * |
| 8002 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8003 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8004 | * @param[in] all_desc Whether to search all the descendants or children only. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8005 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8006 | * @param[in] options XPath options. |
| 8007 | * @return LY_ERR (YL_EINCOMPLETE on unresolved when) |
| 8008 | */ |
| 8009 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8010 | eval_relative_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, ly_bool all_desc, struct lyxp_set *set, |
| 8011 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8012 | { |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8013 | LY_ERR rc = LY_SUCCESS; |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8014 | enum lyxp_axis axis; |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8015 | int scnode_skip_path = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8016 | |
| 8017 | goto step; |
| 8018 | do { |
| 8019 | /* evaluate '/' or '//' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8020 | if (exp->tok_len[*tok_idx] == 1) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8021 | all_desc = 0; |
| 8022 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8023 | assert(exp->tok_len[*tok_idx] == 2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8024 | all_desc = 1; |
| 8025 | } |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8026 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8027 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8028 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8029 | |
| 8030 | step: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8031 | /* AxisSpecifier */ |
| 8032 | if (exp->tokens[*tok_idx] == LYXP_TOKEN_AXISNAME) { |
| 8033 | axis = str2axis(exp->expr + exp->tok_pos[*tok_idx], exp->tok_len[*tok_idx]); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8034 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8035 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8036 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
| 8037 | ++(*tok_idx); |
| 8038 | |
| 8039 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_DCOLON); |
| 8040 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
| 8041 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
| 8042 | ++(*tok_idx); |
| 8043 | } else if (exp->tokens[*tok_idx] == LYXP_TOKEN_AT) { |
| 8044 | axis = LYXP_AXIS_ATTRIBUTE; |
| 8045 | |
| 8046 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
| 8047 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8048 | ++(*tok_idx); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8049 | } else { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8050 | /* default */ |
| 8051 | axis = LYXP_AXIS_CHILD; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8052 | } |
| 8053 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8054 | /* NodeTest Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8055 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8056 | case LYXP_TOKEN_DOT: |
| 8057 | /* evaluate '.' */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8058 | if (!(options & LYXP_SKIP_EXPR)) { |
| 8059 | if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) || |
| 8060 | (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) { |
| 8061 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
| 8062 | rc = LY_EVALID; |
| 8063 | goto cleanup; |
| 8064 | } |
| 8065 | |
| 8066 | if (all_desc) { |
| 8067 | rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options); |
| 8068 | LY_CHECK_GOTO(rc, cleanup); |
| 8069 | } |
| 8070 | rc = xpath_pi_node(set, LYXP_AXIS_SELF, options); |
| 8071 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8072 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8073 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8074 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8075 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8076 | break; |
| 8077 | |
| 8078 | case LYXP_TOKEN_DDOT: |
| 8079 | /* evaluate '..' */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8080 | if (!(options & LYXP_SKIP_EXPR)) { |
| 8081 | if (((options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_SCNODE_SET)) || |
| 8082 | (!(options & LYXP_SCNODE_ALL) && (set->type != LYXP_SET_NODE_SET))) { |
| 8083 | LOGVAL(set->ctx, LY_VCODE_XP_INOP_1, "path operator", print_set_type(set)); |
| 8084 | rc = LY_EVALID; |
| 8085 | goto cleanup; |
| 8086 | } |
| 8087 | |
| 8088 | if (all_desc) { |
| 8089 | rc = xpath_pi_node(set, LYXP_AXIS_DESCENDANT_OR_SELF, options); |
| 8090 | LY_CHECK_GOTO(rc, cleanup); |
| 8091 | } |
| 8092 | rc = xpath_pi_node(set, LYXP_AXIS_PARENT, options); |
| 8093 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8094 | } |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8095 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8096 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8097 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8098 | break; |
| 8099 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8100 | case LYXP_TOKEN_NAMETEST: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8101 | /* evaluate NameTest Predicate* */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8102 | rc = eval_name_test_with_predicate(exp, tok_idx, axis, all_desc, set, options); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8103 | if (rc == LY_ENOT) { |
| 8104 | assert(options & LYXP_SCNODE_ALL); |
| 8105 | /* skip the rest of this path */ |
| 8106 | rc = LY_SUCCESS; |
| 8107 | scnode_skip_path = 1; |
| 8108 | options |= LYXP_SKIP_EXPR; |
| 8109 | } |
| 8110 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8111 | break; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8112 | |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8113 | case LYXP_TOKEN_NODETYPE: |
| 8114 | /* evaluate NodeType Predicate* */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8115 | rc = eval_node_type_with_predicate(exp, tok_idx, axis, all_desc, set, options); |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8116 | LY_CHECK_GOTO(rc, cleanup); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8117 | break; |
| 8118 | |
| 8119 | default: |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8120 | LOGINT(set->ctx); |
| 8121 | rc = LY_EINT; |
| 8122 | goto cleanup; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8123 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8124 | } while (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8125 | |
Michal Vasko | a036a6b | 2021-10-12 16:05:23 +0200 | [diff] [blame] | 8126 | cleanup: |
| 8127 | if (scnode_skip_path) { |
| 8128 | options &= ~LYXP_SKIP_EXPR; |
| 8129 | } |
| 8130 | return rc; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8131 | } |
| 8132 | |
| 8133 | /** |
| 8134 | * @brief Evaluate AbsoluteLocationPath. Logs directly on error. |
| 8135 | * |
| 8136 | * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath |
| 8137 | * |
| 8138 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8139 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8140 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8141 | * @param[in] options XPath options. |
| 8142 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8143 | */ |
| 8144 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8145 | eval_absolute_location_path(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8146 | { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 8147 | ly_bool all_desc; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8148 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8149 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8150 | /* no matter what tokens follow, we need to be at the root */ |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 8151 | LY_CHECK_RET(moveto_root(set, options)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8152 | } |
| 8153 | |
| 8154 | /* '/' RelativeLocationPath? */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8155 | if (exp->tok_len[*tok_idx] == 1) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8156 | /* evaluate '/' - deferred */ |
| 8157 | all_desc = 0; |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8158 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8159 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8160 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8161 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8162 | if (lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_NONE)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8163 | return LY_SUCCESS; |
| 8164 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8165 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8166 | case LYXP_TOKEN_DOT: |
| 8167 | case LYXP_TOKEN_DDOT: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8168 | case LYXP_TOKEN_AXISNAME: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8169 | case LYXP_TOKEN_AT: |
| 8170 | case LYXP_TOKEN_NAMETEST: |
| 8171 | case LYXP_TOKEN_NODETYPE: |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 8172 | LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8173 | break; |
| 8174 | default: |
| 8175 | break; |
| 8176 | } |
| 8177 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8178 | } else { |
Radek Krejci | f6a1100 | 2020-08-21 13:29:07 +0200 | [diff] [blame] | 8179 | /* '//' RelativeLocationPath */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8180 | /* evaluate '//' - deferred so as not to waste memory by remembering all the nodes */ |
| 8181 | all_desc = 1; |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8182 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8183 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8184 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8185 | |
Michal Vasko | b0099a9 | 2020-08-31 14:55:23 +0200 | [diff] [blame] | 8186 | LY_CHECK_RET(eval_relative_location_path(exp, tok_idx, all_desc, set, options)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8187 | } |
| 8188 | |
| 8189 | return LY_SUCCESS; |
| 8190 | } |
| 8191 | |
| 8192 | /** |
| 8193 | * @brief Evaluate FunctionCall. Logs directly on error. |
| 8194 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8195 | * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')' |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8196 | * |
| 8197 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8198 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8199 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8200 | * @param[in] options XPath options. |
| 8201 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8202 | */ |
| 8203 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8204 | eval_function_call(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8205 | { |
| 8206 | LY_ERR rc; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 8207 | |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 8208 | LY_ERR (*xpath_func)(struct lyxp_set **, uint16_t, struct lyxp_set *, uint32_t) = NULL; |
Michal Vasko | 0cbf54f | 2019-12-16 10:01:06 +0100 | [diff] [blame] | 8209 | uint16_t arg_count = 0, i; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8210 | struct lyxp_set **args = NULL, **args_aux; |
| 8211 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8212 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8213 | /* FunctionName */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8214 | switch (exp->tok_len[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8215 | case 3: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8216 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "not", 3)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8217 | xpath_func = &xpath_not; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8218 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "sum", 3)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8219 | xpath_func = &xpath_sum; |
| 8220 | } |
| 8221 | break; |
| 8222 | case 4: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8223 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "lang", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8224 | xpath_func = &xpath_lang; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8225 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "last", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8226 | xpath_func = &xpath_last; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8227 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "name", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8228 | xpath_func = &xpath_name; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8229 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "true", 4)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8230 | xpath_func = &xpath_true; |
| 8231 | } |
| 8232 | break; |
| 8233 | case 5: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8234 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "count", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8235 | xpath_func = &xpath_count; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8236 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "false", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8237 | xpath_func = &xpath_false; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8238 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "floor", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8239 | xpath_func = &xpath_floor; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8240 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "round", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8241 | xpath_func = &xpath_round; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8242 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "deref", 5)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8243 | xpath_func = &xpath_deref; |
| 8244 | } |
| 8245 | break; |
| 8246 | case 6: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8247 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "concat", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8248 | xpath_func = &xpath_concat; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8249 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "number", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8250 | xpath_func = &xpath_number; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8251 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string", 6)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8252 | xpath_func = &xpath_string; |
| 8253 | } |
| 8254 | break; |
| 8255 | case 7: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8256 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "boolean", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8257 | xpath_func = &xpath_boolean; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8258 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "ceiling", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8259 | xpath_func = &xpath_ceiling; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8260 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "current", 7)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8261 | xpath_func = &xpath_current; |
| 8262 | } |
| 8263 | break; |
| 8264 | case 8: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8265 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "contains", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8266 | xpath_func = &xpath_contains; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8267 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "position", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8268 | xpath_func = &xpath_position; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8269 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "re-match", 8)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8270 | xpath_func = &xpath_re_match; |
| 8271 | } |
| 8272 | break; |
| 8273 | case 9: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8274 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring", 9)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8275 | xpath_func = &xpath_substring; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8276 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "translate", 9)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8277 | xpath_func = &xpath_translate; |
| 8278 | } |
| 8279 | break; |
| 8280 | case 10: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8281 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "local-name", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8282 | xpath_func = &xpath_local_name; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8283 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "enum-value", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8284 | xpath_func = &xpath_enum_value; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8285 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "bit-is-set", 10)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8286 | xpath_func = &xpath_bit_is_set; |
| 8287 | } |
| 8288 | break; |
| 8289 | case 11: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8290 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "starts-with", 11)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8291 | xpath_func = &xpath_starts_with; |
| 8292 | } |
| 8293 | break; |
| 8294 | case 12: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8295 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from", 12)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8296 | xpath_func = &xpath_derived_from; |
| 8297 | } |
| 8298 | break; |
| 8299 | case 13: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8300 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "namespace-uri", 13)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8301 | xpath_func = &xpath_namespace_uri; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8302 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "string-length", 13)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8303 | xpath_func = &xpath_string_length; |
| 8304 | } |
| 8305 | break; |
| 8306 | case 15: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8307 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "normalize-space", 15)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8308 | xpath_func = &xpath_normalize_space; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8309 | } else if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-after", 15)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8310 | xpath_func = &xpath_substring_after; |
| 8311 | } |
| 8312 | break; |
| 8313 | case 16: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8314 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "substring-before", 16)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8315 | xpath_func = &xpath_substring_before; |
| 8316 | } |
| 8317 | break; |
| 8318 | case 20: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8319 | if (!strncmp(&exp->expr[exp->tok_pos[*tok_idx]], "derived-from-or-self", 20)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8320 | xpath_func = &xpath_derived_from_or_self; |
| 8321 | } |
| 8322 | break; |
| 8323 | } |
| 8324 | |
| 8325 | if (!xpath_func) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 8326 | LOGVAL(set->ctx, LY_VCODE_XP_INFUNC, exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8327 | return LY_EVALID; |
| 8328 | } |
| 8329 | } |
| 8330 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8331 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8332 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8333 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8334 | |
| 8335 | /* '(' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8336 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR1); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8337 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8338 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8339 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8340 | |
| 8341 | /* ( Expr ( ',' Expr )* )? */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8342 | if (exp->tokens[*tok_idx] != LYXP_TOKEN_PAR2) { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8343 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8344 | args = malloc(sizeof *args); |
| 8345 | LY_CHECK_ERR_GOTO(!args, LOGMEM(set->ctx); rc = LY_EMEM, cleanup); |
| 8346 | arg_count = 1; |
| 8347 | args[0] = set_copy(set); |
| 8348 | if (!args[0]) { |
| 8349 | rc = LY_EMEM; |
| 8350 | goto cleanup; |
| 8351 | } |
| 8352 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8353 | rc = eval_expr_select(exp, tok_idx, 0, args[0], options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8354 | LY_CHECK_GOTO(rc, cleanup); |
| 8355 | } else { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8356 | rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8357 | LY_CHECK_GOTO(rc, cleanup); |
| 8358 | } |
| 8359 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8360 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_COMMA)) { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8361 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8362 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8363 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8364 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8365 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8366 | ++arg_count; |
| 8367 | args_aux = realloc(args, arg_count * sizeof *args); |
| 8368 | LY_CHECK_ERR_GOTO(!args_aux, arg_count--; LOGMEM(set->ctx); rc = LY_EMEM, cleanup); |
| 8369 | args = args_aux; |
| 8370 | args[arg_count - 1] = set_copy(set); |
| 8371 | if (!args[arg_count - 1]) { |
| 8372 | rc = LY_EMEM; |
| 8373 | goto cleanup; |
| 8374 | } |
| 8375 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8376 | rc = eval_expr_select(exp, tok_idx, 0, args[arg_count - 1], options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8377 | LY_CHECK_GOTO(rc, cleanup); |
| 8378 | } else { |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8379 | rc = eval_expr_select(exp, tok_idx, 0, set, options | LYXP_SKIP_EXPR); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8380 | LY_CHECK_GOTO(rc, cleanup); |
| 8381 | } |
| 8382 | } |
| 8383 | |
| 8384 | /* ')' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8385 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8386 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8387 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8388 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8389 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8390 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8391 | /* evaluate function */ |
| 8392 | rc = xpath_func(args, arg_count, set, options); |
| 8393 | |
| 8394 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8395 | /* merge all nodes from arg evaluations */ |
| 8396 | for (i = 0; i < arg_count; ++i) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8397 | set_scnode_clear_ctx(args[i], LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 8398 | lyxp_set_scnode_merge(set, args[i]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8399 | } |
| 8400 | } |
| 8401 | } else { |
| 8402 | rc = LY_SUCCESS; |
| 8403 | } |
| 8404 | |
| 8405 | cleanup: |
| 8406 | for (i = 0; i < arg_count; ++i) { |
| 8407 | lyxp_set_free(args[i]); |
| 8408 | } |
| 8409 | free(args); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8410 | return rc; |
| 8411 | } |
| 8412 | |
| 8413 | /** |
| 8414 | * @brief Evaluate Number. Logs directly on error. |
| 8415 | * |
| 8416 | * @param[in] ctx Context for errors. |
| 8417 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8418 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8419 | * @param[in,out] set Context and result set. On NULL the rule is only parsed. |
| 8420 | * @return LY_ERR |
| 8421 | */ |
| 8422 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8423 | eval_number(struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8424 | { |
| 8425 | long double num; |
| 8426 | char *endptr; |
| 8427 | |
| 8428 | if (set) { |
| 8429 | errno = 0; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8430 | num = strtold(&exp->expr[exp->tok_pos[*tok_idx]], &endptr); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8431 | if (errno) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 8432 | LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]); |
| 8433 | LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double (%s).", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 8434 | exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]], strerror(errno)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8435 | return LY_EVALID; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8436 | } else if (endptr - &exp->expr[exp->tok_pos[*tok_idx]] != exp->tok_len[*tok_idx]) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 8437 | LOGVAL(ctx, LY_VCODE_XP_INTOK, "Unknown", &exp->expr[exp->tok_pos[*tok_idx]]); |
| 8438 | LOGVAL(ctx, LYVE_XPATH, "Failed to convert \"%.*s\" into a long double.", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 8439 | exp->tok_len[*tok_idx], &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8440 | return LY_EVALID; |
| 8441 | } |
| 8442 | |
| 8443 | set_fill_number(set, num); |
| 8444 | } |
| 8445 | |
| 8446 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8447 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8448 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8449 | return LY_SUCCESS; |
| 8450 | } |
| 8451 | |
aPiecek | df23eee | 2021-10-07 12:21:50 +0200 | [diff] [blame] | 8452 | LY_ERR |
| 8453 | lyxp_vars_find(struct lyxp_var *vars, const char *name, size_t name_len, struct lyxp_var **var) |
| 8454 | { |
| 8455 | LY_ERR ret = LY_ENOTFOUND; |
| 8456 | LY_ARRAY_COUNT_TYPE u; |
| 8457 | |
| 8458 | assert(vars && name); |
| 8459 | |
| 8460 | name_len = name_len ? name_len : strlen(name); |
| 8461 | |
| 8462 | LY_ARRAY_FOR(vars, u) { |
| 8463 | if (!strncmp(vars[u].name, name, name_len)) { |
| 8464 | ret = LY_SUCCESS; |
| 8465 | break; |
| 8466 | } |
| 8467 | } |
| 8468 | |
| 8469 | if (var && !ret) { |
| 8470 | *var = &vars[u]; |
| 8471 | } |
| 8472 | |
| 8473 | return ret; |
| 8474 | } |
| 8475 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8476 | /** |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8477 | * @brief Evaluate VariableReference. |
| 8478 | * |
| 8479 | * @param[in] exp Parsed XPath expression. |
| 8480 | * @param[in] tok_idx Position in the expression @p exp. |
| 8481 | * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables. |
| 8482 | * @param[in,out] set Context and result set. |
| 8483 | * @param[in] options XPath options. |
| 8484 | * @return LY_ERR value. |
| 8485 | */ |
| 8486 | static LY_ERR |
| 8487 | eval_variable_reference(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options) |
| 8488 | { |
| 8489 | LY_ERR ret; |
| 8490 | const char *name; |
| 8491 | struct lyxp_var *var; |
| 8492 | const struct lyxp_var *vars; |
| 8493 | struct lyxp_expr *tokens = NULL; |
| 8494 | uint16_t token_index; |
| 8495 | |
| 8496 | vars = set->vars; |
| 8497 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8498 | /* find out the name and value of the variable */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8499 | name = &exp->expr[exp->tok_pos[*tok_idx]]; |
| 8500 | ret = lyxp_vars_find((struct lyxp_var *)vars, name, exp->tok_len[*tok_idx], &var); |
| 8501 | LY_CHECK_ERR_RET(ret, LOGERR(set->ctx, ret, |
| 8502 | "XPath variable \"%s\" not defined.", name), ret); |
| 8503 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8504 | /* parse value */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8505 | ret = lyxp_expr_parse(set->ctx, var->value, 0, 1, &tokens); |
| 8506 | LY_CHECK_GOTO(ret, cleanup); |
| 8507 | |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8508 | /* evaluate value */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8509 | token_index = 0; |
| 8510 | ret = eval_expr_select(tokens, &token_index, 0, set, options); |
| 8511 | LY_CHECK_GOTO(ret, cleanup); |
| 8512 | |
| 8513 | cleanup: |
| 8514 | lyxp_expr_free(set->ctx, tokens); |
| 8515 | |
| 8516 | return ret; |
| 8517 | } |
| 8518 | |
| 8519 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8520 | * @brief Evaluate PathExpr. Logs directly on error. |
| 8521 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8522 | * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate* |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8523 | * | PrimaryExpr Predicate* '/' RelativeLocationPath |
| 8524 | * | PrimaryExpr Predicate* '//' RelativeLocationPath |
| 8525 | * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8526 | * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8527 | * |
| 8528 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8529 | * @param[in] tok_idx Position in the expression @p exp. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8530 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8531 | * @param[in] options XPath options. |
| 8532 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8533 | */ |
| 8534 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8535 | eval_path_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8536 | { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8537 | ly_bool all_desc; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8538 | LY_ERR rc; |
| 8539 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8540 | switch (exp->tokens[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8541 | case LYXP_TOKEN_PAR1: |
| 8542 | /* '(' Expr ')' */ |
| 8543 | |
| 8544 | /* '(' */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8545 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8546 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8547 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8548 | |
| 8549 | /* Expr */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8550 | rc = eval_expr_select(exp, tok_idx, 0, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8551 | LY_CHECK_RET(rc); |
| 8552 | |
| 8553 | /* ')' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8554 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_PAR2); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8555 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8556 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8557 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8558 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8559 | goto predicate; |
| 8560 | |
| 8561 | case LYXP_TOKEN_DOT: |
| 8562 | case LYXP_TOKEN_DDOT: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8563 | case LYXP_TOKEN_AXISNAME: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8564 | case LYXP_TOKEN_AT: |
| 8565 | case LYXP_TOKEN_NAMETEST: |
| 8566 | case LYXP_TOKEN_NODETYPE: |
| 8567 | /* RelativeLocationPath */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8568 | rc = eval_relative_location_path(exp, tok_idx, 0, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8569 | LY_CHECK_RET(rc); |
| 8570 | break; |
| 8571 | |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8572 | case LYXP_TOKEN_VARREF: |
| 8573 | /* VariableReference */ |
| 8574 | rc = eval_variable_reference(exp, tok_idx, set, options); |
| 8575 | LY_CHECK_RET(rc); |
| 8576 | ++(*tok_idx); |
| 8577 | |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 8578 | goto predicate; |
| 8579 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8580 | case LYXP_TOKEN_FUNCNAME: |
| 8581 | /* FunctionCall */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8582 | rc = eval_function_call(exp, tok_idx, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8583 | LY_CHECK_RET(rc); |
| 8584 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8585 | goto predicate; |
| 8586 | |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 8587 | case LYXP_TOKEN_OPER_PATH: |
| 8588 | case LYXP_TOKEN_OPER_RPATH: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8589 | /* AbsoluteLocationPath */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8590 | rc = eval_absolute_location_path(exp, tok_idx, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8591 | LY_CHECK_RET(rc); |
| 8592 | break; |
| 8593 | |
| 8594 | case LYXP_TOKEN_LITERAL: |
| 8595 | /* Literal */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8596 | if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) { |
| 8597 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8598 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8599 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8600 | eval_literal(exp, tok_idx, NULL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8601 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8602 | eval_literal(exp, tok_idx, set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8603 | } |
| 8604 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8605 | goto predicate; |
| 8606 | |
| 8607 | case LYXP_TOKEN_NUMBER: |
| 8608 | /* Number */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8609 | if ((options & LYXP_SKIP_EXPR) || (options & LYXP_SCNODE_ALL)) { |
| 8610 | if (!(options & LYXP_SKIP_EXPR)) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8611 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8612 | } |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8613 | rc = eval_number(NULL, exp, tok_idx, NULL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8614 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8615 | rc = eval_number(set->ctx, exp, tok_idx, set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8616 | } |
| 8617 | LY_CHECK_RET(rc); |
| 8618 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8619 | goto predicate; |
| 8620 | |
| 8621 | default: |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8622 | LOGVAL(set->ctx, LY_VCODE_XP_INTOK, lyxp_token2str(exp->tokens[*tok_idx]), &exp->expr[exp->tok_pos[*tok_idx]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8623 | return LY_EVALID; |
| 8624 | } |
| 8625 | |
| 8626 | return LY_SUCCESS; |
| 8627 | |
| 8628 | predicate: |
| 8629 | /* Predicate* */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8630 | while (!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_BRACK1)) { |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8631 | rc = eval_predicate(exp, tok_idx, set, options, LYXP_AXIS_CHILD); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8632 | LY_CHECK_RET(rc); |
| 8633 | } |
| 8634 | |
| 8635 | /* ('/' or '//') RelativeLocationPath */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8636 | if (!exp_check_token2(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_PATH, LYXP_TOKEN_OPER_RPATH)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8637 | |
| 8638 | /* evaluate '/' or '//' */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8639 | if (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_PATH) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8640 | all_desc = 0; |
| 8641 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8642 | all_desc = 1; |
| 8643 | } |
| 8644 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8645 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8646 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8647 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8648 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8649 | rc = eval_relative_location_path(exp, tok_idx, all_desc, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8650 | LY_CHECK_RET(rc); |
| 8651 | } |
| 8652 | |
| 8653 | return LY_SUCCESS; |
| 8654 | } |
| 8655 | |
| 8656 | /** |
| 8657 | * @brief Evaluate UnionExpr. Logs directly on error. |
| 8658 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8659 | * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8660 | * |
| 8661 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8662 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8663 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8664 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8665 | * @param[in] options XPath options. |
| 8666 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8667 | */ |
| 8668 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8669 | eval_union_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8670 | { |
| 8671 | LY_ERR rc = LY_SUCCESS; |
| 8672 | struct lyxp_set orig_set, set2; |
| 8673 | uint16_t i; |
| 8674 | |
| 8675 | assert(repeat); |
| 8676 | |
| 8677 | set_init(&orig_set, set); |
| 8678 | set_init(&set2, set); |
| 8679 | |
| 8680 | set_fill_set(&orig_set, set); |
| 8681 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8682 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8683 | LY_CHECK_GOTO(rc, cleanup); |
| 8684 | |
| 8685 | /* ('|' PathExpr)* */ |
| 8686 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8687 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_UNI); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8688 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8689 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8690 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8691 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8692 | if (options & LYXP_SKIP_EXPR) { |
| 8693 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8694 | LY_CHECK_GOTO(rc, cleanup); |
| 8695 | continue; |
| 8696 | } |
| 8697 | |
| 8698 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8699 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNION, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8700 | LY_CHECK_GOTO(rc, cleanup); |
| 8701 | |
| 8702 | /* eval */ |
| 8703 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 8704 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8705 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 8706 | rc = moveto_union(set, &set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8707 | LY_CHECK_GOTO(rc, cleanup); |
| 8708 | } |
| 8709 | } |
| 8710 | |
| 8711 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8712 | lyxp_set_free_content(&orig_set); |
| 8713 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8714 | return rc; |
| 8715 | } |
| 8716 | |
| 8717 | /** |
| 8718 | * @brief Evaluate UnaryExpr. Logs directly on error. |
| 8719 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8720 | * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8721 | * |
| 8722 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8723 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8724 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8725 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8726 | * @param[in] options XPath options. |
| 8727 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8728 | */ |
| 8729 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8730 | eval_unary_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8731 | { |
| 8732 | LY_ERR rc; |
| 8733 | uint16_t this_op, i; |
| 8734 | |
| 8735 | assert(repeat); |
| 8736 | |
| 8737 | /* ('-')+ */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8738 | this_op = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8739 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8740 | assert(!lyxp_check_token(NULL, exp, *tok_idx, LYXP_TOKEN_OPER_MATH) && (exp->expr[exp->tok_pos[*tok_idx]] == '-')); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8741 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8742 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8743 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8744 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8745 | } |
| 8746 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8747 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_UNARY, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8748 | LY_CHECK_RET(rc); |
| 8749 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8750 | if (!(options & LYXP_SKIP_EXPR) && (repeat % 2)) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8751 | if (options & LYXP_SCNODE_ALL) { |
| 8752 | warn_operands(set->ctx, set, NULL, 1, exp->expr, exp->tok_pos[this_op]); |
| 8753 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 8754 | rc = moveto_op_math(set, NULL, &exp->expr[exp->tok_pos[this_op]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8755 | LY_CHECK_RET(rc); |
| 8756 | } |
| 8757 | } |
| 8758 | |
| 8759 | return LY_SUCCESS; |
| 8760 | } |
| 8761 | |
| 8762 | /** |
| 8763 | * @brief Evaluate MultiplicativeExpr. Logs directly on error. |
| 8764 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8765 | * [18] MultiplicativeExpr ::= UnaryExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8766 | * | MultiplicativeExpr '*' UnaryExpr |
| 8767 | * | MultiplicativeExpr 'div' UnaryExpr |
| 8768 | * | MultiplicativeExpr 'mod' UnaryExpr |
| 8769 | * |
| 8770 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8771 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8772 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8773 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8774 | * @param[in] options XPath options. |
| 8775 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8776 | */ |
| 8777 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8778 | eval_multiplicative_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, |
| 8779 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8780 | { |
| 8781 | LY_ERR rc; |
| 8782 | uint16_t this_op; |
| 8783 | struct lyxp_set orig_set, set2; |
| 8784 | uint16_t i; |
| 8785 | |
| 8786 | assert(repeat); |
| 8787 | |
| 8788 | set_init(&orig_set, set); |
| 8789 | set_init(&set2, set); |
| 8790 | |
| 8791 | set_fill_set(&orig_set, set); |
| 8792 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8793 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8794 | LY_CHECK_GOTO(rc, cleanup); |
| 8795 | |
| 8796 | /* ('*' / 'div' / 'mod' UnaryExpr)* */ |
| 8797 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8798 | this_op = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8799 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8800 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8801 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8802 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8803 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8804 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8805 | if (options & LYXP_SKIP_EXPR) { |
| 8806 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8807 | LY_CHECK_GOTO(rc, cleanup); |
| 8808 | continue; |
| 8809 | } |
| 8810 | |
| 8811 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8812 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_MULTIPLICATIVE, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8813 | LY_CHECK_GOTO(rc, cleanup); |
| 8814 | |
| 8815 | /* eval */ |
| 8816 | if (options & LYXP_SCNODE_ALL) { |
| 8817 | warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 8818 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8819 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8820 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 8821 | rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8822 | LY_CHECK_GOTO(rc, cleanup); |
| 8823 | } |
| 8824 | } |
| 8825 | |
| 8826 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8827 | lyxp_set_free_content(&orig_set); |
| 8828 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8829 | return rc; |
| 8830 | } |
| 8831 | |
| 8832 | /** |
| 8833 | * @brief Evaluate AdditiveExpr. Logs directly on error. |
| 8834 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8835 | * [17] AdditiveExpr ::= MultiplicativeExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8836 | * | AdditiveExpr '+' MultiplicativeExpr |
| 8837 | * | AdditiveExpr '-' MultiplicativeExpr |
| 8838 | * |
| 8839 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8840 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8841 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8842 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8843 | * @param[in] options XPath options. |
| 8844 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8845 | */ |
| 8846 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8847 | eval_additive_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8848 | { |
| 8849 | LY_ERR rc; |
| 8850 | uint16_t this_op; |
| 8851 | struct lyxp_set orig_set, set2; |
| 8852 | uint16_t i; |
| 8853 | |
| 8854 | assert(repeat); |
| 8855 | |
| 8856 | set_init(&orig_set, set); |
| 8857 | set_init(&set2, set); |
| 8858 | |
| 8859 | set_fill_set(&orig_set, set); |
| 8860 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8861 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8862 | LY_CHECK_GOTO(rc, cleanup); |
| 8863 | |
| 8864 | /* ('+' / '-' MultiplicativeExpr)* */ |
| 8865 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8866 | this_op = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8867 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8868 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_MATH); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8869 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (set ? "parsed" : "skipped"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8870 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8871 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8872 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8873 | if (options & LYXP_SKIP_EXPR) { |
| 8874 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8875 | LY_CHECK_GOTO(rc, cleanup); |
| 8876 | continue; |
| 8877 | } |
| 8878 | |
| 8879 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8880 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_ADDITIVE, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8881 | LY_CHECK_GOTO(rc, cleanup); |
| 8882 | |
| 8883 | /* eval */ |
| 8884 | if (options & LYXP_SCNODE_ALL) { |
| 8885 | warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 8886 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8887 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8888 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 8889 | rc = moveto_op_math(set, &set2, &exp->expr[exp->tok_pos[this_op]]); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8890 | LY_CHECK_GOTO(rc, cleanup); |
| 8891 | } |
| 8892 | } |
| 8893 | |
| 8894 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8895 | lyxp_set_free_content(&orig_set); |
| 8896 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8897 | return rc; |
| 8898 | } |
| 8899 | |
| 8900 | /** |
| 8901 | * @brief Evaluate RelationalExpr. Logs directly on error. |
| 8902 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8903 | * [16] RelationalExpr ::= AdditiveExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8904 | * | RelationalExpr '<' AdditiveExpr |
| 8905 | * | RelationalExpr '>' AdditiveExpr |
| 8906 | * | RelationalExpr '<=' AdditiveExpr |
| 8907 | * | RelationalExpr '>=' AdditiveExpr |
| 8908 | * |
| 8909 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8910 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8911 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8912 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8913 | * @param[in] options XPath options. |
| 8914 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8915 | */ |
| 8916 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8917 | eval_relational_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8918 | { |
| 8919 | LY_ERR rc; |
| 8920 | uint16_t this_op; |
| 8921 | struct lyxp_set orig_set, set2; |
| 8922 | uint16_t i; |
| 8923 | |
| 8924 | assert(repeat); |
| 8925 | |
| 8926 | set_init(&orig_set, set); |
| 8927 | set_init(&set2, set); |
| 8928 | |
| 8929 | set_fill_set(&orig_set, set); |
| 8930 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8931 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8932 | LY_CHECK_GOTO(rc, cleanup); |
| 8933 | |
| 8934 | /* ('<' / '>' / '<=' / '>=' AdditiveExpr)* */ |
| 8935 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8936 | this_op = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8937 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8938 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_COMP); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8939 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 8940 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8941 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8942 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8943 | if (options & LYXP_SKIP_EXPR) { |
| 8944 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8945 | LY_CHECK_GOTO(rc, cleanup); |
| 8946 | continue; |
| 8947 | } |
| 8948 | |
| 8949 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8950 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_RELATIONAL, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8951 | LY_CHECK_GOTO(rc, cleanup); |
| 8952 | |
| 8953 | /* eval */ |
| 8954 | if (options & LYXP_SCNODE_ALL) { |
| 8955 | warn_operands(set->ctx, set, &set2, 1, exp->expr, exp->tok_pos[this_op - 1]); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 8956 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 8957 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8958 | } else { |
| 8959 | rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options); |
| 8960 | LY_CHECK_GOTO(rc, cleanup); |
| 8961 | } |
| 8962 | } |
| 8963 | |
| 8964 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8965 | lyxp_set_free_content(&orig_set); |
| 8966 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8967 | return rc; |
| 8968 | } |
| 8969 | |
| 8970 | /** |
| 8971 | * @brief Evaluate EqualityExpr. Logs directly on error. |
| 8972 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 8973 | * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8974 | * | EqualityExpr '!=' RelationalExpr |
| 8975 | * |
| 8976 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8977 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8978 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 8979 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8980 | * @param[in] options XPath options. |
| 8981 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 8982 | */ |
| 8983 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 8984 | eval_equality_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8985 | { |
| 8986 | LY_ERR rc; |
| 8987 | uint16_t this_op; |
| 8988 | struct lyxp_set orig_set, set2; |
| 8989 | uint16_t i; |
| 8990 | |
| 8991 | assert(repeat); |
| 8992 | |
| 8993 | set_init(&orig_set, set); |
| 8994 | set_init(&set2, set); |
| 8995 | |
| 8996 | set_fill_set(&orig_set, set); |
| 8997 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 8998 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 8999 | LY_CHECK_GOTO(rc, cleanup); |
| 9000 | |
| 9001 | /* ('=' / '!=' RelationalExpr)* */ |
| 9002 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9003 | this_op = *tok_idx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9004 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9005 | assert((exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_EQUAL) || (exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_NEQUAL)); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9006 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, (options & LYXP_SKIP_EXPR ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 9007 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9008 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9009 | |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9010 | if (options & LYXP_SKIP_EXPR) { |
| 9011 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9012 | LY_CHECK_GOTO(rc, cleanup); |
| 9013 | continue; |
| 9014 | } |
| 9015 | |
| 9016 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9017 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_EQUALITY, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9018 | LY_CHECK_GOTO(rc, cleanup); |
| 9019 | |
| 9020 | /* eval */ |
| 9021 | if (options & LYXP_SCNODE_ALL) { |
| 9022 | warn_operands(set->ctx, set, &set2, 0, exp->expr, exp->tok_pos[this_op - 1]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9023 | warn_equality_value(exp, set, *tok_idx - 1, this_op - 1, *tok_idx - 1); |
| 9024 | warn_equality_value(exp, &set2, this_op - 1, this_op - 1, *tok_idx - 1); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 9025 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 9026 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_VAL); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9027 | } else { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9028 | rc = moveto_op_comp(set, &set2, &exp->expr[exp->tok_pos[this_op]], options); |
| 9029 | LY_CHECK_GOTO(rc, cleanup); |
| 9030 | } |
| 9031 | } |
| 9032 | |
| 9033 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9034 | lyxp_set_free_content(&orig_set); |
| 9035 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9036 | return rc; |
| 9037 | } |
| 9038 | |
| 9039 | /** |
| 9040 | * @brief Evaluate AndExpr. Logs directly on error. |
| 9041 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9042 | * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9043 | * |
| 9044 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9045 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9046 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9047 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9048 | * @param[in] options XPath options. |
| 9049 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 9050 | */ |
| 9051 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 9052 | eval_and_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9053 | { |
| 9054 | LY_ERR rc; |
| 9055 | struct lyxp_set orig_set, set2; |
| 9056 | uint16_t i; |
| 9057 | |
| 9058 | assert(repeat); |
| 9059 | |
| 9060 | set_init(&orig_set, set); |
| 9061 | set_init(&set2, set); |
| 9062 | |
| 9063 | set_fill_set(&orig_set, set); |
| 9064 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9065 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9066 | LY_CHECK_GOTO(rc, cleanup); |
| 9067 | |
| 9068 | /* cast to boolean, we know that will be the final result */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9069 | if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 9070 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9071 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9072 | lyxp_set_cast(set, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9073 | } |
| 9074 | |
| 9075 | /* ('and' EqualityExpr)* */ |
| 9076 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9077 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9078 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || !set->val.bln ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 9079 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9080 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9081 | |
| 9082 | /* lazy evaluation */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9083 | if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && !set->val.bln)) { |
| 9084 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, set, options | LYXP_SKIP_EXPR); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9085 | LY_CHECK_GOTO(rc, cleanup); |
| 9086 | continue; |
| 9087 | } |
| 9088 | |
| 9089 | set_fill_set(&set2, &orig_set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9090 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_AND, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9091 | LY_CHECK_GOTO(rc, cleanup); |
| 9092 | |
| 9093 | /* eval - just get boolean value actually */ |
| 9094 | if (set->type == LYXP_SET_SCNODE_SET) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 9095 | set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 9096 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9097 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9098 | lyxp_set_cast(&set2, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9099 | set_fill_set(set, &set2); |
| 9100 | } |
| 9101 | } |
| 9102 | |
| 9103 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9104 | lyxp_set_free_content(&orig_set); |
| 9105 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9106 | return rc; |
| 9107 | } |
| 9108 | |
| 9109 | /** |
| 9110 | * @brief Evaluate OrExpr. Logs directly on error. |
| 9111 | * |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9112 | * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9113 | * |
| 9114 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9115 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9116 | * @param[in] repeat How many times this expression is repeated. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9117 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9118 | * @param[in] options XPath options. |
| 9119 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 9120 | */ |
| 9121 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 9122 | eval_or_expr(const struct lyxp_expr *exp, uint16_t *tok_idx, uint16_t repeat, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9123 | { |
| 9124 | LY_ERR rc; |
| 9125 | struct lyxp_set orig_set, set2; |
| 9126 | uint16_t i; |
| 9127 | |
| 9128 | assert(repeat); |
| 9129 | |
| 9130 | set_init(&orig_set, set); |
| 9131 | set_init(&set2, set); |
| 9132 | |
| 9133 | set_fill_set(&orig_set, set); |
| 9134 | |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9135 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9136 | LY_CHECK_GOTO(rc, cleanup); |
| 9137 | |
| 9138 | /* cast to boolean, we know that will be the final result */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9139 | if (!(options & LYXP_SKIP_EXPR) && (options & LYXP_SCNODE_ALL)) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 9140 | set_scnode_clear_ctx(set, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9141 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9142 | lyxp_set_cast(set, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9143 | } |
| 9144 | |
| 9145 | /* ('or' AndExpr)* */ |
| 9146 | for (i = 0; i < repeat; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9147 | assert(exp->tokens[*tok_idx] == LYXP_TOKEN_OPER_LOG); |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9148 | LOGDBG(LY_LDGXPATH, "%-27s %s %s[%u]", __func__, ((options & LYXP_SKIP_EXPR) || set->val.bln ? "skipped" : "parsed"), |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame] | 9149 | lyxp_token2str(exp->tokens[*tok_idx]), exp->tok_pos[*tok_idx]); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9150 | ++(*tok_idx); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9151 | |
| 9152 | /* lazy evaluation */ |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9153 | if ((options & LYXP_SKIP_EXPR) || ((set->type == LYXP_SET_BOOLEAN) && set->val.bln)) { |
| 9154 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, set, options | LYXP_SKIP_EXPR); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9155 | LY_CHECK_GOTO(rc, cleanup); |
| 9156 | continue; |
| 9157 | } |
| 9158 | |
| 9159 | set_fill_set(&set2, &orig_set); |
| 9160 | /* expr_type cound have been LYXP_EXPR_NONE in all these later calls (except for the first one), |
| 9161 | * but it does not matter */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9162 | rc = eval_expr_select(exp, tok_idx, LYXP_EXPR_OR, &set2, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9163 | LY_CHECK_GOTO(rc, cleanup); |
| 9164 | |
| 9165 | /* eval - just get boolean value actually */ |
| 9166 | if (set->type == LYXP_SET_SCNODE_SET) { |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 9167 | set_scnode_clear_ctx(&set2, LYXP_SET_SCNODE_ATOM_NODE); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 9168 | lyxp_set_scnode_merge(set, &set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9169 | } else { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9170 | lyxp_set_cast(&set2, LYXP_SET_BOOLEAN); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9171 | set_fill_set(set, &set2); |
| 9172 | } |
| 9173 | } |
| 9174 | |
| 9175 | cleanup: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9176 | lyxp_set_free_content(&orig_set); |
| 9177 | lyxp_set_free_content(&set2); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9178 | return rc; |
| 9179 | } |
| 9180 | |
| 9181 | /** |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9182 | * @brief Decide what expression is at the pointer @p tok_idx and evaluate it accordingly. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9183 | * |
| 9184 | * @param[in] exp Parsed XPath expression. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9185 | * @param[in] tok_idx Position in the expression @p exp. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9186 | * @param[in] etype Expression type to evaluate. |
aPiecek | 8b0cc15 | 2021-05-31 16:40:31 +0200 | [diff] [blame] | 9187 | * @param[in,out] set Context and result set. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9188 | * @param[in] options XPath options. |
| 9189 | * @return LY_ERR (LY_EINCOMPLETE on unresolved when) |
| 9190 | */ |
| 9191 | static LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 9192 | eval_expr_select(const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_expr_type etype, struct lyxp_set *set, |
| 9193 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9194 | { |
| 9195 | uint16_t i, count; |
| 9196 | enum lyxp_expr_type next_etype; |
| 9197 | LY_ERR rc; |
| 9198 | |
| 9199 | /* process operator repeats */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9200 | if (!exp->repeat[*tok_idx]) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9201 | next_etype = LYXP_EXPR_NONE; |
| 9202 | } else { |
| 9203 | /* find etype repeat */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 9204 | for (i = 0; exp->repeat[*tok_idx][i] > etype; ++i) {} |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9205 | |
| 9206 | /* select one-priority lower because etype expression called us */ |
| 9207 | if (i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9208 | next_etype = exp->repeat[*tok_idx][i - 1]; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9209 | /* count repeats for that expression */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 9210 | for (count = 0; i && exp->repeat[*tok_idx][i - 1] == next_etype; ++count, --i) {} |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9211 | } else { |
| 9212 | next_etype = LYXP_EXPR_NONE; |
| 9213 | } |
| 9214 | } |
| 9215 | |
| 9216 | /* decide what expression are we parsing based on the repeat */ |
| 9217 | switch (next_etype) { |
| 9218 | case LYXP_EXPR_OR: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9219 | rc = eval_or_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9220 | break; |
| 9221 | case LYXP_EXPR_AND: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9222 | rc = eval_and_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9223 | break; |
| 9224 | case LYXP_EXPR_EQUALITY: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9225 | rc = eval_equality_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9226 | break; |
| 9227 | case LYXP_EXPR_RELATIONAL: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9228 | rc = eval_relational_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9229 | break; |
| 9230 | case LYXP_EXPR_ADDITIVE: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9231 | rc = eval_additive_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9232 | break; |
| 9233 | case LYXP_EXPR_MULTIPLICATIVE: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9234 | rc = eval_multiplicative_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9235 | break; |
| 9236 | case LYXP_EXPR_UNARY: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9237 | rc = eval_unary_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9238 | break; |
| 9239 | case LYXP_EXPR_UNION: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9240 | rc = eval_union_expr(exp, tok_idx, count, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9241 | break; |
| 9242 | case LYXP_EXPR_NONE: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9243 | rc = eval_path_expr(exp, tok_idx, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9244 | break; |
| 9245 | default: |
| 9246 | LOGINT_RET(set->ctx); |
| 9247 | } |
| 9248 | |
| 9249 | return rc; |
| 9250 | } |
| 9251 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9252 | /** |
| 9253 | * @brief Get root type. |
| 9254 | * |
| 9255 | * @param[in] ctx_node Context node. |
| 9256 | * @param[in] ctx_scnode Schema context node. |
| 9257 | * @param[in] options XPath options. |
| 9258 | * @return Root type. |
| 9259 | */ |
| 9260 | static enum lyxp_node_type |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 9261 | lyxp_get_root_type(const struct lyd_node *ctx_node, const struct lysc_node *ctx_scnode, uint32_t options) |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9262 | { |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9263 | const struct lysc_node *op; |
| 9264 | |
Michal Vasko | a27245c | 2022-05-02 09:01:35 +0200 | [diff] [blame] | 9265 | /* explicit */ |
| 9266 | if (options & LYXP_ACCESS_TREE_ALL) { |
| 9267 | return LYXP_NODE_ROOT; |
| 9268 | } else if (options & LYXP_ACCESS_TREE_CONFIG) { |
| 9269 | return LYXP_NODE_ROOT_CONFIG; |
| 9270 | } |
| 9271 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9272 | if (options & LYXP_SCNODE_ALL) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9273 | /* schema */ |
Radek Krejci | 1e008d2 | 2020-08-17 11:37:37 +0200 | [diff] [blame] | 9274 | for (op = ctx_scnode; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {} |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9275 | |
| 9276 | if (op || (options & LYXP_SCNODE)) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9277 | /* general root that can access everything */ |
| 9278 | return LYXP_NODE_ROOT; |
| 9279 | } else if (!ctx_scnode || (ctx_scnode->flags & LYS_CONFIG_W)) { |
| 9280 | /* root context node can access only config data (because we said so, it is unspecified) */ |
| 9281 | return LYXP_NODE_ROOT_CONFIG; |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9282 | } |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9283 | return LYXP_NODE_ROOT; |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9284 | } |
| 9285 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9286 | /* data */ |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9287 | op = ctx_node ? ctx_node->schema : NULL; |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 9288 | for ( ; op && !(op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); op = op->parent) {} |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9289 | |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9290 | if (op || !(options & LYXP_SCHEMA)) { |
| 9291 | /* general root that can access everything */ |
| 9292 | return LYXP_NODE_ROOT; |
Christian Hopps | b6ecaea | 2021-02-06 09:45:38 -0500 | [diff] [blame] | 9293 | } else if (!ctx_node || !ctx_node->schema || (ctx_node->schema->flags & LYS_CONFIG_W)) { |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9294 | /* root context node can access only config data (because we said so, it is unspecified) */ |
| 9295 | return LYXP_NODE_ROOT_CONFIG; |
| 9296 | } |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9297 | return LYXP_NODE_ROOT; |
| 9298 | } |
| 9299 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9300 | LY_ERR |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9301 | lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 9302 | LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *ctx_node, const struct lyd_node *tree, |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 9303 | const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9304 | { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9305 | uint16_t tok_idx = 0; |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 9306 | const struct lysc_node *snode; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9307 | LY_ERR rc; |
| 9308 | |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9309 | LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 9310 | if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) { |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 9311 | LOGERR(ctx, LY_EINVAL, "Current module must be set if schema format is used."); |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9312 | return LY_EINVAL; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9313 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9314 | |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 9315 | if (tree) { |
| 9316 | /* adjust the pointer to be the first top-level sibling */ |
| 9317 | while (tree->parent) { |
| 9318 | tree = lyd_parent(tree); |
| 9319 | } |
| 9320 | tree = lyd_first_sibling(tree); |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 9321 | |
| 9322 | for (snode = tree->schema->parent; snode && (snode->nodetype & (LYS_CASE | LYS_CHOICE)); snode = snode->parent) {} |
| 9323 | if (snode) { |
| 9324 | /* unable to evaluate absolute paths */ |
| 9325 | LOGERR(ctx, LY_EINVAL, "Data node \"%s\" has no parent but is not instance of a top-level schema node.", |
| 9326 | LYD_NAME(tree)); |
| 9327 | return LY_EINVAL; |
| 9328 | } |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 9329 | } |
| 9330 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9331 | /* prepare set for evaluation */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9332 | memset(set, 0, sizeof *set); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9333 | set->type = LYXP_SET_NODE_SET; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9334 | set->root_type = lyxp_get_root_type(ctx_node, NULL, options); |
| 9335 | set_insert_node(set, (struct lyd_node *)ctx_node, 0, ctx_node ? LYXP_NODE_ELEM : set->root_type, 0); |
| 9336 | |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9337 | set->ctx = (struct ly_ctx *)ctx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9338 | set->cur_node = ctx_node; |
| 9339 | for (set->context_op = ctx_node ? ctx_node->schema : NULL; |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 9340 | set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); |
| 9341 | set->context_op = set->context_op->parent) {} |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 9342 | set->tree = tree; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9343 | set->cur_mod = cur_mod; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9344 | set->format = format; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9345 | set->prefix_data = prefix_data; |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 9346 | set->vars = vars; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9347 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 9348 | LOG_LOCSET(NULL, set->cur_node, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 9349 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9350 | /* evaluate */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9351 | rc = eval_expr_select(exp, &tok_idx, 0, set, options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9352 | if (rc != LY_SUCCESS) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9353 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9354 | } |
| 9355 | |
Michal Vasko | 4a7d4d6 | 2021-12-13 17:05:06 +0100 | [diff] [blame] | 9356 | if (set->cur_node) { |
| 9357 | LOG_LOCBACK(0, 1, 0, 0); |
| 9358 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9359 | return rc; |
| 9360 | } |
| 9361 | |
| 9362 | #if 0 |
| 9363 | |
| 9364 | /* full xml printing of set elements, not used currently */ |
| 9365 | |
| 9366 | void |
| 9367 | lyxp_set_print_xml(FILE *f, struct lyxp_set *set) |
| 9368 | { |
| 9369 | uint32_t i; |
| 9370 | char *str_num; |
| 9371 | struct lyout out; |
| 9372 | |
| 9373 | memset(&out, 0, sizeof out); |
| 9374 | |
| 9375 | out.type = LYOUT_STREAM; |
| 9376 | out.method.f = f; |
| 9377 | |
| 9378 | switch (set->type) { |
| 9379 | case LYXP_SET_EMPTY: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9380 | ly_print_(&out, "Empty XPath set\n\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9381 | break; |
| 9382 | case LYXP_SET_BOOLEAN: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9383 | ly_print_(&out, "Boolean XPath set:\n"); |
| 9384 | ly_print_(&out, "%s\n\n", set->value.bool ? "true" : "false"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9385 | break; |
| 9386 | case LYXP_SET_STRING: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9387 | ly_print_(&out, "String XPath set:\n"); |
| 9388 | ly_print_(&out, "\"%s\"\n\n", set->value.str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9389 | break; |
| 9390 | case LYXP_SET_NUMBER: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9391 | ly_print_(&out, "Number XPath set:\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9392 | |
| 9393 | if (isnan(set->value.num)) { |
| 9394 | str_num = strdup("NaN"); |
| 9395 | } else if ((set->value.num == 0) || (set->value.num == -0.0f)) { |
| 9396 | str_num = strdup("0"); |
| 9397 | } else if (isinf(set->value.num) && !signbit(set->value.num)) { |
| 9398 | str_num = strdup("Infinity"); |
| 9399 | } else if (isinf(set->value.num) && signbit(set->value.num)) { |
| 9400 | str_num = strdup("-Infinity"); |
| 9401 | } else if ((long long)set->value.num == set->value.num) { |
| 9402 | if (asprintf(&str_num, "%lld", (long long)set->value.num) == -1) { |
| 9403 | str_num = NULL; |
| 9404 | } |
| 9405 | } else { |
| 9406 | if (asprintf(&str_num, "%03.1Lf", set->value.num) == -1) { |
| 9407 | str_num = NULL; |
| 9408 | } |
| 9409 | } |
| 9410 | if (!str_num) { |
| 9411 | LOGMEM; |
| 9412 | return; |
| 9413 | } |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9414 | ly_print_(&out, "%s\n\n", str_num); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9415 | free(str_num); |
| 9416 | break; |
| 9417 | case LYXP_SET_NODE_SET: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9418 | ly_print_(&out, "Node XPath set:\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9419 | |
| 9420 | for (i = 0; i < set->used; ++i) { |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9421 | ly_print_(&out, "%d. ", i + 1); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9422 | switch (set->node_type[i]) { |
| 9423 | case LYXP_NODE_ROOT_ALL: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9424 | ly_print_(&out, "ROOT all\n\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9425 | break; |
| 9426 | case LYXP_NODE_ROOT_CONFIG: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9427 | ly_print_(&out, "ROOT config\n\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9428 | break; |
| 9429 | case LYXP_NODE_ROOT_STATE: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9430 | ly_print_(&out, "ROOT state\n\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9431 | break; |
| 9432 | case LYXP_NODE_ROOT_NOTIF: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9433 | ly_print_(&out, "ROOT notification \"%s\"\n\n", set->value.nodes[i]->schema->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9434 | break; |
| 9435 | case LYXP_NODE_ROOT_RPC: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9436 | ly_print_(&out, "ROOT rpc \"%s\"\n\n", set->value.nodes[i]->schema->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9437 | break; |
| 9438 | case LYXP_NODE_ROOT_OUTPUT: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9439 | ly_print_(&out, "ROOT output \"%s\"\n\n", set->value.nodes[i]->schema->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9440 | break; |
| 9441 | case LYXP_NODE_ELEM: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9442 | ly_print_(&out, "ELEM \"%s\"\n", set->value.nodes[i]->schema->name); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9443 | xml_print_node(&out, 1, set->value.nodes[i], 1, LYP_FORMAT); |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9444 | ly_print_(&out, "\n"); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9445 | break; |
| 9446 | case LYXP_NODE_TEXT: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9447 | ly_print_(&out, "TEXT \"%s\"\n\n", ((struct lyd_node_leaf_list *)set->value.nodes[i])->value_str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9448 | break; |
| 9449 | case LYXP_NODE_ATTR: |
Michal Vasko | 5233e96 | 2020-08-14 14:26:20 +0200 | [diff] [blame] | 9450 | ly_print_(&out, "ATTR \"%s\" = \"%s\"\n\n", set->value.attrs[i]->name, set->value.attrs[i]->value); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9451 | break; |
| 9452 | } |
| 9453 | } |
| 9454 | break; |
| 9455 | } |
| 9456 | } |
| 9457 | |
| 9458 | #endif |
| 9459 | |
| 9460 | LY_ERR |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9461 | lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9462 | { |
| 9463 | long double num; |
| 9464 | char *str; |
| 9465 | LY_ERR rc; |
| 9466 | |
| 9467 | if (!set || (set->type == target)) { |
| 9468 | return LY_SUCCESS; |
| 9469 | } |
| 9470 | |
| 9471 | /* it's not possible to convert anything into a node set */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9472 | assert(target != LYXP_SET_NODE_SET); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9473 | |
| 9474 | if (set->type == LYXP_SET_SCNODE_SET) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9475 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9476 | return LY_EINVAL; |
| 9477 | } |
| 9478 | |
| 9479 | /* to STRING */ |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9480 | if ((target == LYXP_SET_STRING) || ((target == LYXP_SET_NUMBER) && (set->type == LYXP_SET_NODE_SET))) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9481 | switch (set->type) { |
| 9482 | case LYXP_SET_NUMBER: |
| 9483 | if (isnan(set->val.num)) { |
| 9484 | set->val.str = strdup("NaN"); |
| 9485 | LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1); |
| 9486 | } else if ((set->val.num == 0) || (set->val.num == -0.0f)) { |
| 9487 | set->val.str = strdup("0"); |
| 9488 | LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1); |
| 9489 | } else if (isinf(set->val.num) && !signbit(set->val.num)) { |
| 9490 | set->val.str = strdup("Infinity"); |
| 9491 | LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1); |
| 9492 | } else if (isinf(set->val.num) && signbit(set->val.num)) { |
| 9493 | set->val.str = strdup("-Infinity"); |
| 9494 | LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), -1); |
| 9495 | } else if ((long long)set->val.num == set->val.num) { |
| 9496 | if (asprintf(&str, "%lld", (long long)set->val.num) == -1) { |
| 9497 | LOGMEM_RET(set->ctx); |
| 9498 | } |
| 9499 | set->val.str = str; |
| 9500 | } else { |
| 9501 | if (asprintf(&str, "%03.1Lf", set->val.num) == -1) { |
| 9502 | LOGMEM_RET(set->ctx); |
| 9503 | } |
| 9504 | set->val.str = str; |
| 9505 | } |
| 9506 | break; |
| 9507 | case LYXP_SET_BOOLEAN: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9508 | if (set->val.bln) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9509 | set->val.str = strdup("true"); |
| 9510 | } else { |
| 9511 | set->val.str = strdup("false"); |
| 9512 | } |
| 9513 | LY_CHECK_ERR_RET(!set->val.str, LOGMEM(set->ctx), LY_EMEM); |
| 9514 | break; |
| 9515 | case LYXP_SET_NODE_SET: |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9516 | /* we need the set sorted, it affects the result */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9517 | assert(!set_sort(set)); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9518 | |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 9519 | rc = cast_node_set_to_string(set, &str); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9520 | LY_CHECK_RET(rc); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9521 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9522 | set->val.str = str; |
| 9523 | break; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9524 | default: |
| 9525 | LOGINT_RET(set->ctx); |
| 9526 | } |
| 9527 | set->type = LYXP_SET_STRING; |
| 9528 | } |
| 9529 | |
| 9530 | /* to NUMBER */ |
| 9531 | if (target == LYXP_SET_NUMBER) { |
| 9532 | switch (set->type) { |
| 9533 | case LYXP_SET_STRING: |
| 9534 | num = cast_string_to_number(set->val.str); |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9535 | lyxp_set_free_content(set); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9536 | set->val.num = num; |
| 9537 | break; |
| 9538 | case LYXP_SET_BOOLEAN: |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9539 | if (set->val.bln) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9540 | set->val.num = 1; |
| 9541 | } else { |
| 9542 | set->val.num = 0; |
| 9543 | } |
| 9544 | break; |
| 9545 | default: |
| 9546 | LOGINT_RET(set->ctx); |
| 9547 | } |
| 9548 | set->type = LYXP_SET_NUMBER; |
| 9549 | } |
| 9550 | |
| 9551 | /* to BOOLEAN */ |
| 9552 | if (target == LYXP_SET_BOOLEAN) { |
| 9553 | switch (set->type) { |
| 9554 | case LYXP_SET_NUMBER: |
| 9555 | if ((set->val.num == 0) || (set->val.num == -0.0f) || isnan(set->val.num)) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9556 | set->val.bln = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9557 | } else { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9558 | set->val.bln = 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9559 | } |
| 9560 | break; |
| 9561 | case LYXP_SET_STRING: |
| 9562 | if (set->val.str[0]) { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9563 | lyxp_set_free_content(set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9564 | set->val.bln = 1; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9565 | } else { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9566 | lyxp_set_free_content(set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9567 | set->val.bln = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9568 | } |
| 9569 | break; |
| 9570 | case LYXP_SET_NODE_SET: |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9571 | if (set->used) { |
| 9572 | lyxp_set_free_content(set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9573 | set->val.bln = 1; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9574 | } else { |
| 9575 | lyxp_set_free_content(set); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9576 | set->val.bln = 0; |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 9577 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9578 | break; |
| 9579 | default: |
| 9580 | LOGINT_RET(set->ctx); |
| 9581 | } |
| 9582 | set->type = LYXP_SET_BOOLEAN; |
| 9583 | } |
| 9584 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9585 | return LY_SUCCESS; |
| 9586 | } |
| 9587 | |
| 9588 | LY_ERR |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9589 | lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 9590 | LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *ctx_scnode, struct lyxp_set *set, |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9591 | uint32_t options) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9592 | { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 9593 | LY_ERR ret; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9594 | uint16_t tok_idx = 0; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9595 | |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9596 | LY_CHECK_ARG_RET(ctx, ctx, exp, set, LY_EINVAL); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 9597 | if (!cur_mod && ((format == LY_VALUE_SCHEMA) || (format == LY_VALUE_SCHEMA_RESOLVED))) { |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9598 | LOGARG(NULL, "Current module must be set if schema format is used."); |
| 9599 | return LY_EINVAL; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 9600 | } |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9601 | |
| 9602 | /* prepare set for evaluation */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9603 | memset(set, 0, sizeof *set); |
| 9604 | set->type = LYXP_SET_SCNODE_SET; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9605 | set->root_type = lyxp_get_root_type(NULL, ctx_scnode, options); |
| 9606 | LY_CHECK_RET(lyxp_set_scnode_insert_node(set, ctx_scnode, ctx_scnode ? LYXP_NODE_ELEM : set->root_type, NULL)); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 9607 | set->val.scnodes[0].in_ctx = LYXP_SET_SCNODE_START; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9608 | |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 9609 | set->ctx = (struct ly_ctx *)ctx; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9610 | set->cur_scnode = ctx_scnode; |
Michal Vasko | 6b26e74 | 2020-07-17 15:02:10 +0200 | [diff] [blame] | 9611 | for (set->context_op = ctx_scnode; |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 9612 | set->context_op && !(set->context_op->nodetype & (LYS_RPC | LYS_ACTION | LYS_NOTIF)); |
| 9613 | set->context_op = set->context_op->parent) {} |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9614 | set->cur_mod = cur_mod; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9615 | set->format = format; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 9616 | set->prefix_data = prefix_data; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9617 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 9618 | LOG_LOCSET(set->cur_scnode, NULL, NULL, NULL); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 9619 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9620 | /* evaluate */ |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 9621 | ret = eval_expr_select(exp, &tok_idx, 0, set, options); |
| 9622 | |
Radek Krejci | ddace2c | 2021-01-08 11:30:56 +0100 | [diff] [blame] | 9623 | LOG_LOCBACK(1, 0, 0, 0); |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 9624 | return ret; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 9625 | } |
Michal Vasko | d43d71a | 2020-08-07 14:54:58 +0200 | [diff] [blame] | 9626 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 9627 | LIBYANG_API_DEF const char * |
Michal Vasko | d43d71a | 2020-08-07 14:54:58 +0200 | [diff] [blame] | 9628 | lyxp_get_expr(const struct lyxp_expr *path) |
| 9629 | { |
| 9630 | if (!path) { |
| 9631 | return NULL; |
| 9632 | } |
| 9633 | |
| 9634 | return path->expr; |
| 9635 | } |