Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file xpath.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief YANG XPath evaluation functions header |
| 5 | * |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2020 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 | */ |
| 14 | |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 15 | #ifndef LY_XPATH_H |
| 16 | #define LY_XPATH_H |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 17 | |
Radek Krejci | ad97c5f | 2020-06-30 09:19:28 +0200 | [diff] [blame] | 18 | #include <stddef.h> |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 19 | #include <stdint.h> |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 20 | |
Michal Vasko | c5a2283 | 2020-08-20 13:21:33 +0200 | [diff] [blame] | 21 | #include "compat.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | #include "log.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 23 | #include "tree.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 24 | #include "tree_schema.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 25 | |
| 26 | struct ly_ctx; |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 27 | struct lyd_node; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 28 | |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 29 | /** |
| 30 | * @internal |
| 31 | * @page internals |
| 32 | * @section internalsXpath XPath Implementation |
| 33 | * |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 34 | * XPath evaluator fully compliant with http://www.w3.org/TR/1999/REC-xpath-19991116/ |
| 35 | * except the following restrictions in the grammar. |
| 36 | * |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 37 | * @subsection internalsXpathGrammar Parsed Grammar |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 38 | * |
| 39 | * Full axes are not supported, abbreviated forms must be used, |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 40 | * "id()" function is not supported, and processing instruction and comment nodes are not supported, |
| 41 | * which is also reflected in the grammar. Undefined rules and constants are tokens. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 42 | * |
| 43 | * Modified full grammar: |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 44 | * @code |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 45 | * [1] Expr ::= OrExpr // just an alias |
| 46 | * |
| 47 | * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath |
| 48 | * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath |
| 49 | * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 50 | * [5] Step ::= (AxisName '::' | '@')? NodeTest Predicate* | '.' | '..' |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 51 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 52 | * [7] NameTest ::= '*' | NCName ':' '*' | QName |
| 53 | * [8] NodeType ::= 'text' | 'node' |
| 54 | * [9] Predicate ::= '[' Expr ']' |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 55 | * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 56 | * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')' |
| 57 | * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate* |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 58 | * | PrimaryExpr Predicate* '/' RelativeLocationPath |
| 59 | * | PrimaryExpr Predicate* '//' RelativeLocationPath |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 60 | * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr |
| 61 | * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr |
| 62 | * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 63 | * | EqualityExpr '!=' RelationalExpr |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 64 | * [16] RelationalExpr ::= AdditiveExpr |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 65 | * | RelationalExpr '<' AdditiveExpr |
| 66 | * | RelationalExpr '>' AdditiveExpr |
| 67 | * | RelationalExpr '<=' AdditiveExpr |
| 68 | * | RelationalExpr '>=' AdditiveExpr |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 69 | * [17] AdditiveExpr ::= MultiplicativeExpr |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 70 | * | AdditiveExpr '+' MultiplicativeExpr |
| 71 | * | AdditiveExpr '-' MultiplicativeExpr |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 72 | * [18] MultiplicativeExpr ::= UnaryExpr |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 73 | * | MultiplicativeExpr '*' UnaryExpr |
| 74 | * | MultiplicativeExpr 'div' UnaryExpr |
| 75 | * | MultiplicativeExpr 'mod' UnaryExpr |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 76 | * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr |
| 77 | * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr |
Radek Krejci | 84d7fd7 | 2021-07-14 18:32:21 +0200 | [diff] [blame] | 78 | * @endcode |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 79 | */ |
| 80 | |
| 81 | /* expression tokens allocation */ |
| 82 | #define LYXP_EXPR_SIZE_START 10 |
| 83 | #define LYXP_EXPR_SIZE_STEP 5 |
| 84 | |
| 85 | /* XPath matches allocation */ |
Michal Vasko | 871df52 | 2022-04-06 12:14:41 +0200 | [diff] [blame] | 86 | #define LYXP_SET_SIZE_START 4 |
| 87 | #define LYXP_SET_SIZE_MUL_STEP 2 |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 88 | |
| 89 | /* building string when casting */ |
| 90 | #define LYXP_STRING_CAST_SIZE_START 64 |
| 91 | #define LYXP_STRING_CAST_SIZE_STEP 16 |
| 92 | |
aPiecek | bf968d9 | 2021-05-27 14:35:05 +0200 | [diff] [blame] | 93 | /* Maximum number of nested expressions. */ |
| 94 | #define LYXP_MAX_BLOCK_DEPTH 100 |
| 95 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 96 | /** |
| 97 | * @brief Tokens that can be in an XPath expression. |
| 98 | */ |
| 99 | enum lyxp_token { |
| 100 | LYXP_TOKEN_NONE = 0, |
| 101 | LYXP_TOKEN_PAR1, /* '(' */ |
| 102 | LYXP_TOKEN_PAR2, /* ')' */ |
| 103 | LYXP_TOKEN_BRACK1, /* '[' */ |
| 104 | LYXP_TOKEN_BRACK2, /* ']' */ |
| 105 | LYXP_TOKEN_DOT, /* '.' */ |
| 106 | LYXP_TOKEN_DDOT, /* '..' */ |
| 107 | LYXP_TOKEN_AT, /* '@' */ |
| 108 | LYXP_TOKEN_COMMA, /* ',' */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 109 | LYXP_TOKEN_DCOLON, /* '::' */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 110 | LYXP_TOKEN_NAMETEST, /* NameTest */ |
| 111 | LYXP_TOKEN_NODETYPE, /* NodeType */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 112 | LYXP_TOKEN_VARREF, /* VariableReference */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 113 | LYXP_TOKEN_FUNCNAME, /* FunctionName */ |
Michal Vasko | 3e48bf3 | 2020-06-01 08:39:07 +0200 | [diff] [blame] | 114 | LYXP_TOKEN_OPER_LOG, /* Operator 'and', 'or' */ |
| 115 | LYXP_TOKEN_OPER_EQUAL, /* Operator '=' */ |
| 116 | LYXP_TOKEN_OPER_NEQUAL, /* Operator '!=' */ |
| 117 | LYXP_TOKEN_OPER_COMP, /* Operator '<', '<=', '>', '>=' */ |
| 118 | LYXP_TOKEN_OPER_MATH, /* Operator '+', '-', '*', 'div', 'mod', '-' (unary) */ |
| 119 | LYXP_TOKEN_OPER_UNI, /* Operator '|' */ |
| 120 | LYXP_TOKEN_OPER_PATH, /* Operator '/' */ |
| 121 | LYXP_TOKEN_OPER_RPATH, /* Operator '//' (recursive path) */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 122 | LYXP_TOKEN_AXISNAME, /* AxisName */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 123 | LYXP_TOKEN_LITERAL, /* Literal - with either single or double quote */ |
| 124 | LYXP_TOKEN_NUMBER /* Number */ |
| 125 | }; |
| 126 | |
| 127 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 128 | * @brief XPath Axes types. |
| 129 | */ |
| 130 | enum lyxp_axis { |
| 131 | LYXP_AXIS_ANCESTOR, |
| 132 | LYXP_AXIS_ANCESTOR_OR_SELF, |
| 133 | LYXP_AXIS_ATTRIBUTE, |
| 134 | LYXP_AXIS_CHILD, |
| 135 | LYXP_AXIS_DESCENDANT, |
| 136 | LYXP_AXIS_DESCENDANT_OR_SELF, |
| 137 | LYXP_AXIS_FOLLOWING, |
| 138 | LYXP_AXIS_FOLLOWING_SIBLING, |
| 139 | // LYXP_AXIS_NAMESPACE, /* not supported */ |
| 140 | LYXP_AXIS_PARENT, |
| 141 | LYXP_AXIS_PRECEDING, |
| 142 | LYXP_AXIS_PRECEDING_SIBLING, |
| 143 | LYXP_AXIS_SELF |
| 144 | }; |
| 145 | |
| 146 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 147 | * @brief XPath (sub)expressions that can be repeated. |
| 148 | */ |
| 149 | enum lyxp_expr_type { |
| 150 | LYXP_EXPR_NONE = 0, |
| 151 | LYXP_EXPR_OR, |
| 152 | LYXP_EXPR_AND, |
| 153 | LYXP_EXPR_EQUALITY, |
| 154 | LYXP_EXPR_RELATIONAL, |
| 155 | LYXP_EXPR_ADDITIVE, |
| 156 | LYXP_EXPR_MULTIPLICATIVE, |
| 157 | LYXP_EXPR_UNARY, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 158 | LYXP_EXPR_UNION |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 159 | }; |
| 160 | |
| 161 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 162 | * @brief Types of context nodes, #LYXP_NODE_ROOT_CONFIG used only in when or must conditions. |
| 163 | */ |
| 164 | enum lyxp_node_type { |
Michal Vasko | 2caefc1 | 2019-11-14 16:07:56 +0100 | [diff] [blame] | 165 | LYXP_NODE_NONE, /* invalid node type */ |
| 166 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 167 | /* XML document roots */ |
| 168 | LYXP_NODE_ROOT, /* access to all the data (node value first top-level node) */ |
| 169 | LYXP_NODE_ROOT_CONFIG, /* <running> data context, no state data (node value first top-level node) */ |
| 170 | |
| 171 | /* XML elements */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 172 | LYXP_NODE_ELEM, /* YANG data element (most common) */ |
| 173 | LYXP_NODE_TEXT, /* YANG data text element (extremely specific use, unlikely to be ever needed) */ |
| 174 | LYXP_NODE_META /* YANG metadata (do not use for the context node) */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 175 | }; |
| 176 | |
| 177 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 178 | * @brief Structure holding a parsed XPath expression. |
| 179 | */ |
| 180 | struct lyxp_expr { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 181 | enum lyxp_token *tokens; /**< Array of tokens. */ |
| 182 | uint16_t *tok_pos; /**< Array of the token offsets in expr. */ |
| 183 | uint16_t *tok_len; /**< Array of token lengths in expr. */ |
| 184 | enum lyxp_expr_type **repeat; /**< Array of expression types that this token begins and is repeated ended with 0, |
| 185 | more in the comment after this declaration. */ |
| 186 | uint16_t used; /**< Used array items. */ |
| 187 | uint16_t size; /**< Allocated array items. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 188 | |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 189 | const char *expr; /**< The original XPath expression. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 190 | }; |
| 191 | |
| 192 | /* |
| 193 | * lyxp_expr repeat |
| 194 | * |
| 195 | * This value is NULL for all the tokens that do not begin an |
| 196 | * expression which can be repeated. Otherwise it is an array |
| 197 | * of expression types that this token begins. These values |
| 198 | * are used during evaluation to know whether we need to |
| 199 | * duplicate the current context or not and to decide what |
| 200 | * the current expression is (for example, if we are only |
| 201 | * starting the parsing and the first token has no repeat, |
| 202 | * we do not parse it as an OrExpr but directly as PathExpr). |
| 203 | * Examples: |
| 204 | * |
aPiecek | ff49d76 | 2021-10-11 10:25:27 +0200 | [diff] [blame] | 205 | * Expr: "/ *[key1 and key2 or key1 < key2]" |
| 206 | * Tokens: '/' '*' '[' NameTest 'and' NameTest 'or' NameTest '<' NameTest ']' |
| 207 | * Repeat: NULL NULL NULL _ NULL NULL NULL _ NULL NULL NULL |
| 208 | * | v |
| 209 | * v RelationalExpr 0 |
| 210 | * AndExpr OrExpr 0 |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 211 | * |
aPiecek | ff49d76 | 2021-10-11 10:25:27 +0200 | [diff] [blame] | 212 | * Expr: "//node[key and node2]/key | /cont" |
| 213 | * Tokens: '//' NameTest '[' NameTest 'and' NameTest ']' '/' NameTest '|' '/' NameTest |
| 214 | * Repeat: _ NULL NULL _ NULL NULL NULL NULL NULL NULL NULL NULL |
| 215 | * | v |
| 216 | * v AndExpr 0 |
| 217 | * UnionExpr 0 |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 218 | * |
| 219 | * Operators between expressions which this concerns: |
| 220 | * 'or', 'and', '=', '!=', '<', '>', '<=', '>=', '+', '-', '*', 'div', 'mod', '|' |
| 221 | */ |
| 222 | |
| 223 | /** |
| 224 | * @brief Supported types of (partial) XPath results. |
| 225 | */ |
| 226 | enum lyxp_set_type { |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 227 | LYXP_SET_NODE_SET = 0, |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 228 | LYXP_SET_SCNODE_SET, |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 229 | LYXP_SET_BOOLEAN, |
| 230 | LYXP_SET_NUMBER, |
| 231 | LYXP_SET_STRING |
| 232 | }; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 233 | |
| 234 | /** |
| 235 | * @brief Item stored in an XPath set hash table. |
| 236 | */ |
| 237 | struct lyxp_set_hash_node { |
| 238 | struct lyd_node *node; |
| 239 | enum lyxp_node_type type; |
| 240 | } _PACKED; |
| 241 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 242 | /** |
aPiecek | df23eee | 2021-10-07 12:21:50 +0200 | [diff] [blame] | 243 | * @brief XPath variable bindings. |
| 244 | */ |
| 245 | struct lyxp_var { |
| 246 | char *name; /**< Variable name. In the XPath expression, the name is preceded by a '$' character. */ |
| 247 | char *value; /**< The value of a variable is an object, which can be of any of the type that are possible |
| 248 | for the value of an expression. */ |
| 249 | }; |
| 250 | |
| 251 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 252 | * @brief XPath set - (partial) result. |
| 253 | */ |
| 254 | struct lyxp_set { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 255 | enum lyxp_set_type type; /**< Type of the object (value). */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 256 | union { |
| 257 | struct lyxp_set_node { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 258 | struct lyd_node *node; /**< Data node. */ |
| 259 | enum lyxp_node_type type; /**< Type of the node. */ |
| 260 | uint32_t pos; /**< Unique node position in the data. */ |
| 261 | } *nodes; /**< Set of data nodes. */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 262 | struct lyxp_set_scnode { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 263 | struct lysc_node *scnode; /**< Compiled YANG node. */ |
| 264 | enum lyxp_node_type type; /**< Type of the node. */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 265 | |
Michal Vasko | d97959c | 2020-12-10 12:18:28 +0100 | [diff] [blame] | 266 | /* _START and _ATOM values should have grouped values */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 267 | #define LYXP_SET_SCNODE_START -2 /**< scnode not traversed, currently (the only node) in context */ |
| 268 | #define LYXP_SET_SCNODE_START_USED -1 /**< scnode not traversed except for the eval start, not currently in the context */ |
Michal Vasko | 1a09b21 | 2021-05-06 13:00:10 +0200 | [diff] [blame] | 269 | #define LYXP_SET_SCNODE_ATOM_NODE 0 /**< scnode was traversed, but not currently in the context */ |
| 270 | #define LYXP_SET_SCNODE_ATOM_VAL 1 /**< scnode was traversed and its value used, but not currently in the context */ |
| 271 | #define LYXP_SET_SCNODE_ATOM_CTX 2 /**< scnode currently in context */ |
| 272 | #define LYXP_SET_SCNODE_ATOM_NEW_CTX 3 /**< scnode in context and just added, so skip it for the current operation */ |
| 273 | #define LYXP_SET_SCNODE_ATOM_PRED_CTX 4 /**< includes any higher value - scnode is not in context because we are in |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 274 | a predicate and this scnode was used/will be used later */ |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 275 | int32_t in_ctx; /**< Flag specifies the state of the node in context. Values are defined |
| 276 | as LYXP_SET_SCNODE_* */ |
| 277 | } *scnodes; /**< Set of compiled YANG data nodes. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 278 | struct lyxp_set_meta { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 279 | struct lyd_meta *meta; /**< Node that provides information about metadata of a data element. */ |
| 280 | enum lyxp_node_type type; /**< Type of the node. */ |
| 281 | uint32_t pos; /**< Unique node position in the data. if node_type is LYXP_SET_NODE_META, |
| 282 | it is the parent node position */ |
| 283 | } *meta; /**< Set of YANG metadata objects. */ |
| 284 | char *str; /**< String object. */ |
| 285 | long double num; /**< Object of the floating-point number. */ |
| 286 | ly_bool bln; /**< Boolean object. */ |
| 287 | } val; /**< Evaluated object (value). */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 288 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 289 | /* this is valid only for type LYXP_SET_NODE_SET and LYXP_SET_SCNODE_SET */ |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 290 | uint32_t used; /**< Number of nodes in the set. */ |
| 291 | uint32_t size; /**< Allocated size for the set. */ |
| 292 | struct hash_table *ht; /**< Hash table for quick determination of whether a node is in the set. */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 293 | |
| 294 | /* XPath context information, this is valid only for type LYXP_SET_NODE_SET */ |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 295 | uint32_t ctx_pos; /**< Position of the current examined node in the set. */ |
| 296 | uint32_t ctx_size; /**< Position of the last node at the time the node was examined. */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 297 | |
| 298 | /* general context */ |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 299 | struct ly_ctx *ctx; /**< General context for logging. */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 300 | union { |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 301 | const struct lyd_node *cur_node; /**< Current (original context) node. */ |
| 302 | const struct lysc_node *cur_scnode; /**< Current (original context) compiled node. */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 303 | }; |
aPiecek | 6da713d | 2021-10-11 12:50:28 +0200 | [diff] [blame] | 304 | enum lyxp_node_type root_type; /**< Type of root node. */ |
| 305 | const struct lysc_node *context_op; /**< Schema of the current node. */ |
| 306 | const struct lyd_node *tree; /**< Data tree on which to perform the evaluation. */ |
| 307 | const struct lys_module *cur_mod; /**< Current module for the expression (where it was "instantiated"). */ |
| 308 | LY_VALUE_FORMAT format; /**< Format of the XPath expression. */ |
| 309 | void *prefix_data; /**< Format-specific prefix data (see ::ly_resolve_prefix). */ |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 310 | const struct lyxp_var *vars; /**< XPath variables. [Sized array](@ref sizedarrays). |
| 311 | Set of variable bindings. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | /** |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 315 | * @brief Get string format of an XPath token. |
Michal Vasko | 24cddf8 | 2020-06-01 08:17:01 +0200 | [diff] [blame] | 316 | * |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 317 | * @param[in] tok Token to transform. |
Michal Vasko | 24cddf8 | 2020-06-01 08:17:01 +0200 | [diff] [blame] | 318 | * @return Token type string. |
| 319 | */ |
Michal Vasko | 49fec8e | 2022-05-24 10:28:33 +0200 | [diff] [blame^] | 320 | const char *lyxp_token2str(enum lyxp_token tok); |
Michal Vasko | 24cddf8 | 2020-06-01 08:17:01 +0200 | [diff] [blame] | 321 | |
| 322 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 323 | * @brief Evaluate an XPath expression on data. Be careful when using this function, the result can often |
| 324 | * be confusing without thorough understanding of XPath evaluation rules defined in RFC 7950. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 325 | * |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 326 | * @param[in] ctx libyang context to use. |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 327 | * @param[in] exp Parsed XPath expression to be evaluated. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 328 | * @param[in] cur_mod Current module for the expression (where it was "instantiated"). |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 329 | * @param[in] format Format of the XPath expression (more specifically, of any used prefixes). |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 330 | * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix). |
| 331 | * @param[in] ctx_node Current (context) data node, NULL in case of the root node. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 332 | * @param[in] tree Data tree on which to perform the evaluation, it must include all the available data (including |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 333 | * the tree of @p ctx_node). Can be any node of the tree, it is adjusted. |
aPiecek | fba7536 | 2021-10-07 12:39:48 +0200 | [diff] [blame] | 334 | * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 335 | * @param[out] set Result set. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 336 | * @param[in] options Whether to apply some evaluation restrictions. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 337 | * @return LY_EVALID for invalid argument types/count, |
| 338 | * @return LY_EINCOMPLETE for unresolved when, |
| 339 | * @return LY_EINVAL, LY_EMEM, LY_EINT for other errors. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 340 | */ |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 341 | LY_ERR 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] | 342 | 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] | 343 | const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 344 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 345 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 346 | * @brief Get all the partial XPath nodes (atoms) that are required for @p exp to be evaluated. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 347 | * |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 348 | * @param[in] ctx libyang context to use. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 349 | * @param[in] exp Parsed XPath expression to be evaluated. |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 350 | * @param[in] cur_mod Current module for the expression (where it was "instantiated"). |
aPiecek | b0445f2 | 2021-06-24 11:34:07 +0200 | [diff] [blame] | 351 | * @param[in] format Format of the XPath expression (more specifically, of any used prefixes). |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 352 | * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix). |
| 353 | * @param[in] ctx_scnode Current (context) schema node, NULL in case of the root node. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 354 | * @param[out] set Result set. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 355 | * @param[in] options Whether to apply some evaluation restrictions, one flag must always be used. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 356 | * @return LY_ERR (same as ::lyxp_eval()). |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 357 | */ |
Michal Vasko | 400e967 | 2021-01-11 13:39:17 +0100 | [diff] [blame] | 358 | LY_ERR 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] | 359 | 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] | 360 | uint32_t options); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 361 | |
Michal Vasko | 4ad69e7 | 2021-10-26 16:25:55 +0200 | [diff] [blame] | 362 | /** used only internally, maps with @ref findxpathoptions */ |
Michal Vasko | a27245c | 2022-05-02 09:01:35 +0200 | [diff] [blame] | 363 | #define LYXP_IGNORE_WHEN 0x01 /**< Ignore unevaluated when in data nodes and do not return ::LY_EINCOMPLETE. */ |
| 364 | #define LYXP_SCHEMA 0x02 /**< Apply data node access restrictions defined for 'when' and 'must' evaluation. */ |
| 365 | #define LYXP_SCNODE 0x04 /**< No special tree access modifiers. */ |
| 366 | #define LYXP_SCNODE_SCHEMA LYS_FIND_XP_SCHEMA /**< Apply node access restrictions defined for 'when' and 'must' evaluation. */ |
| 367 | #define LYXP_SCNODE_OUTPUT LYS_FIND_XP_OUTPUT /**< Search RPC/action output nodes instead of input ones. */ |
| 368 | #define LYXP_SCNODE_ALL 0x1C /**< mask for all the LYXP_* values */ |
| 369 | #define LYXP_SKIP_EXPR 0x20 /**< The rest of the expression will not be evaluated (lazy evaluation) */ |
| 370 | #define LYXP_SCNODE_ERROR LYS_FIND_NO_MATCH_ERROR /**< Return error if a path segment matches no nodes, otherwise only |
| 371 | warning is printed. */ |
| 372 | #define LYXP_ACCESS_TREE_ALL 0x80 /**< Explicit accessible tree of all the nodes. */ |
| 373 | #define LYXP_ACCESS_TREE_CONFIG 0x0100 /**< Explicit accessible tree of only configuration data. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 374 | |
| 375 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 376 | * @brief Cast XPath set to another type. |
| 377 | * Indirectly context position aware. |
| 378 | * |
| 379 | * @param[in] set Set to cast. |
| 380 | * @param[in] target Target type to cast \p set into. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 381 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 382 | */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame] | 383 | LY_ERR lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target); |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 384 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 385 | /** |
Michal Vasko | d367889 | 2020-05-21 10:06:58 +0200 | [diff] [blame] | 386 | * @brief Free dynamic content of a set. |
| 387 | * |
| 388 | * @param[in] set Set to modify. |
| 389 | */ |
| 390 | void lyxp_set_free_content(struct lyxp_set *set); |
| 391 | |
| 392 | /** |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 393 | * @brief Insert schema node into set. |
| 394 | * |
| 395 | * @param[in] set Set to insert into. |
| 396 | * @param[in] node Node to insert. |
| 397 | * @param[in] node_type Node type of @p node. |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 398 | * @param[out] index_p Optional pointer to store index if the inserted @p node. |
| 399 | * @return LY_SUCCESS on success. |
| 400 | * @return LY_EMEM on memory allocation failure. |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 401 | */ |
Michal Vasko | ee38a5d | 2020-11-09 21:02:18 +0100 | [diff] [blame] | 402 | LY_ERR lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, |
| 403 | uint32_t *index_p); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 404 | |
| 405 | /** |
| 406 | * @brief Check for duplicates in a schema node set. |
| 407 | * |
| 408 | * @param[in] set Set to check. |
| 409 | * @param[in] node Node to look for in @p set. |
| 410 | * @param[in] node_type Type of @p node. |
| 411 | * @param[in] skip_idx Index from @p set to skip. |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 412 | * @param[out] index_p Optional pointer to store index if the node is found. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 413 | * @return Boolean value whether the @p node found or not. |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 414 | */ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 415 | ly_bool lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type, |
Radek Krejci | aa6b53f | 2020-08-27 15:19:03 +0200 | [diff] [blame] | 416 | int skip_idx, uint32_t *index_p); |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 417 | |
| 418 | /** |
| 419 | * @brief Merge 2 schema node sets. |
| 420 | * |
| 421 | * @param[in] set1 Set to merge into. |
| 422 | * @param[in] set2 Set to merge. Its content is freed. |
| 423 | */ |
| 424 | void lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2); |
| 425 | |
| 426 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 427 | * @brief Parse an XPath expression into a structure of tokens. |
| 428 | * Logs directly. |
| 429 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 430 | * https://www.w3.org/TR/1999/REC-xpath-19991116/#exprlex |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 431 | * |
| 432 | * @param[in] ctx Context for errors. |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 433 | * @param[in] expr_str XPath expression to parse. It is duplicated. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 434 | * @param[in] expr_len Length of @p expr, can be 0 if @p expr is 0-terminated. |
| 435 | * @param[in] reparse Whether to re-parse the expression to finalize full XPath parsing and fill |
| 436 | * information about expressions and their operators (fill repeat). |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 437 | * @param[out] expr_p Pointer to return the filled expression structure. |
| 438 | * @return LY_SUCCESS in case of success. |
| 439 | * @return LY_EMEM in case of memory allocation failure. |
| 440 | * @return LY_EVALID in case of invalid XPath expression in @p expr_str. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 441 | */ |
Michal Vasko | ee38a5d | 2020-11-09 21:02:18 +0100 | [diff] [blame] | 442 | LY_ERR lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr_str, size_t expr_len, ly_bool reparse, |
| 443 | struct lyxp_expr **expr_p); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 444 | |
| 445 | /** |
| 446 | * @brief Duplicate parsed XPath expression. |
| 447 | * |
| 448 | * @param[in] ctx Context with a dictionary. |
| 449 | * @param[in] exp Parsed expression. |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 450 | * @param[out] dup Duplicated structure. |
| 451 | * @return LY_ERR value. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 452 | */ |
Michal Vasko | 1734be9 | 2020-09-22 08:55:10 +0200 | [diff] [blame] | 453 | LY_ERR lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, struct lyxp_expr **dup); |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 454 | |
| 455 | /** |
| 456 | * @brief Look at the next token and check its kind. |
| 457 | * |
| 458 | * @param[in] ctx Context for logging, not logged if NULL. |
| 459 | * @param[in] exp Expression to use. |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 460 | * @param[in] tok_idx Token index in the expression \p exp. |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 461 | * @param[in] want_tok Expected token. |
| 462 | * @return LY_EINCOMPLETE on EOF, |
| 463 | * @return LY_ENOT on non-matching token, |
| 464 | * @return LY_SUCCESS on success. |
| 465 | */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 466 | LY_ERR lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok); |
| 467 | |
| 468 | /** |
| 469 | * @brief Look at the next token and skip it if it matches the expected one. |
| 470 | * |
| 471 | * @param[in] ctx Context for logging, not logged if NULL. |
| 472 | * @param[in] exp Expression to use. |
| 473 | * @param[in,out] tok_idx Token index in the expression \p exp, is updated. |
| 474 | * @param[in] want_tok Expected token. |
| 475 | * @return LY_EINCOMPLETE on EOF, |
| 476 | * @return LY_ENOT on non-matching token, |
| 477 | * @return LY_SUCCESS on success. |
| 478 | */ |
| 479 | LY_ERR lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 480 | |
| 481 | /** |
Michal Vasko | 4911eeb | 2021-06-28 11:23:05 +0200 | [diff] [blame] | 482 | * @brief Look at the next token and skip it if it matches either of the 2 expected ones. |
| 483 | * |
| 484 | * @param[in] ctx Context for logging, not logged if NULL. |
| 485 | * @param[in] exp Expression to use. |
| 486 | * @param[in,out] tok_idx Token index in the expression \p exp, is updated. |
| 487 | * @param[in] want_tok1 Expected token 1. |
| 488 | * @param[in] want_tok2 Expected token 2. |
| 489 | * @return LY_EINCOMPLETE on EOF, |
| 490 | * @return LY_ENOT on non-matching token, |
| 491 | * @return LY_SUCCESS on success. |
| 492 | */ |
| 493 | LY_ERR lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, |
| 494 | enum lyxp_token want_tok1, enum lyxp_token want_tok2); |
| 495 | |
| 496 | /** |
aPiecek | df23eee | 2021-10-07 12:21:50 +0200 | [diff] [blame] | 497 | * @brief Find variable named @name in @p vars. |
| 498 | * |
| 499 | * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables. |
| 500 | * @param[in] name Name of the variable being searched. |
| 501 | * @param[in] name_len Name length can be set to 0 if @p name is terminated by null byte. |
| 502 | * @param[out] var Variable that was found. The parameter is optional. |
| 503 | * @return LY_SUCCESS if the variable was found, otherwise LY_ENOTFOUND. |
| 504 | */ |
| 505 | LY_ERR lyxp_vars_find(struct lyxp_var *vars, const char *name, size_t name_len, struct lyxp_var **var); |
| 506 | |
| 507 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 508 | * @brief Frees a parsed XPath expression. @p expr should not be used afterwards. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 509 | * |
| 510 | * @param[in] ctx libyang context of the expression. |
| 511 | * @param[in] expr Expression to free. |
| 512 | */ |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 513 | void lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 514 | |
Michal Vasko | 1467635 | 2020-05-29 11:35:55 +0200 | [diff] [blame] | 515 | #endif /* LY_XPATH_H */ |