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 | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2019 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 | |
| 15 | #ifndef _XPATH_H |
| 16 | #define _XPATH_H |
| 17 | |
| 18 | #include <stdint.h> |
| 19 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 20 | #include "log.h" |
| 21 | |
| 22 | struct ly_ctx; |
| 23 | struct lysc_node; |
| 24 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 25 | /* |
| 26 | * XPath evaluator fully compliant with http://www.w3.org/TR/1999/REC-xpath-19991116/ |
| 27 | * except the following restrictions in the grammar. |
| 28 | * |
| 29 | * PARSED GRAMMAR |
| 30 | * |
| 31 | * Full axes are not supported, abbreviated forms must be used, |
| 32 | * variables are not supported, "id()" function is not supported, |
| 33 | * and processing instruction and comment nodes are not supported, |
| 34 | * which is also reflected in the grammar. Undefined rules and |
| 35 | * constants are tokens. |
| 36 | * |
| 37 | * Modified full grammar: |
| 38 | * |
| 39 | * [1] Expr ::= OrExpr // just an alias |
| 40 | * |
| 41 | * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath |
| 42 | * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath |
| 43 | * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step |
| 44 | * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..' |
| 45 | * [6] NodeTest ::= NameTest | NodeType '(' ')' |
| 46 | * [7] Predicate ::= '[' Expr ']' |
| 47 | * [8] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall |
| 48 | * [9] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')' |
| 49 | * [10] PathExpr ::= LocationPath | PrimaryExpr Predicate* |
| 50 | * | PrimaryExpr Predicate* '/' RelativeLocationPath |
| 51 | * | PrimaryExpr Predicate* '//' RelativeLocationPath |
| 52 | * [11] OrExpr ::= AndExpr | OrExpr 'or' AndExpr |
| 53 | * [12] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr |
| 54 | * [13] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr |
| 55 | * | EqualityExpr '!=' RelationalExpr |
| 56 | * [14] RelationalExpr ::= AdditiveExpr |
| 57 | * | RelationalExpr '<' AdditiveExpr |
| 58 | * | RelationalExpr '>' AdditiveExpr |
| 59 | * | RelationalExpr '<=' AdditiveExpr |
| 60 | * | RelationalExpr '>=' AdditiveExpr |
| 61 | * [15] AdditiveExpr ::= MultiplicativeExpr |
| 62 | * | AdditiveExpr '+' MultiplicativeExpr |
| 63 | * | AdditiveExpr '-' MultiplicativeExpr |
| 64 | * [16] MultiplicativeExpr ::= UnaryExpr |
| 65 | * | MultiplicativeExpr '*' UnaryExpr |
| 66 | * | MultiplicativeExpr 'div' UnaryExpr |
| 67 | * | MultiplicativeExpr 'mod' UnaryExpr |
| 68 | * [17] UnaryExpr ::= UnionExpr | '-' UnaryExpr |
| 69 | * [18] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr |
| 70 | */ |
| 71 | |
| 72 | /* expression tokens allocation */ |
| 73 | #define LYXP_EXPR_SIZE_START 10 |
| 74 | #define LYXP_EXPR_SIZE_STEP 5 |
| 75 | |
| 76 | /* XPath matches allocation */ |
| 77 | #define LYXP_SET_SIZE_START 2 |
| 78 | #define LYXP_SET_SIZE_STEP 2 |
| 79 | |
| 80 | /* building string when casting */ |
| 81 | #define LYXP_STRING_CAST_SIZE_START 64 |
| 82 | #define LYXP_STRING_CAST_SIZE_STEP 16 |
| 83 | |
| 84 | /** |
| 85 | * @brief Tokens that can be in an XPath expression. |
| 86 | */ |
| 87 | enum lyxp_token { |
| 88 | LYXP_TOKEN_NONE = 0, |
| 89 | LYXP_TOKEN_PAR1, /* '(' */ |
| 90 | LYXP_TOKEN_PAR2, /* ')' */ |
| 91 | LYXP_TOKEN_BRACK1, /* '[' */ |
| 92 | LYXP_TOKEN_BRACK2, /* ']' */ |
| 93 | LYXP_TOKEN_DOT, /* '.' */ |
| 94 | LYXP_TOKEN_DDOT, /* '..' */ |
| 95 | LYXP_TOKEN_AT, /* '@' */ |
| 96 | LYXP_TOKEN_COMMA, /* ',' */ |
| 97 | /* LYXP_TOKEN_DCOLON, * '::' * axes not supported */ |
| 98 | LYXP_TOKEN_NAMETEST, /* NameTest */ |
| 99 | LYXP_TOKEN_NODETYPE, /* NodeType */ |
| 100 | LYXP_TOKEN_FUNCNAME, /* FunctionName */ |
| 101 | LYXP_TOKEN_OPERATOR_LOG, /* Operator 'and', 'or' */ |
| 102 | LYXP_TOKEN_OPERATOR_COMP, /* Operator '=', '!=', '<', '<=', '>', '>=' */ |
| 103 | LYXP_TOKEN_OPERATOR_MATH, /* Operator '+', '-', '*', 'div', 'mod', '-' (unary) */ |
| 104 | LYXP_TOKEN_OPERATOR_UNI, /* Operator '|' */ |
| 105 | LYXP_TOKEN_OPERATOR_PATH, /* Operator '/', '//' */ |
| 106 | /* LYXP_TOKEN_AXISNAME, * AxisName * axes not supported */ |
| 107 | LYXP_TOKEN_LITERAL, /* Literal - with either single or double quote */ |
| 108 | LYXP_TOKEN_NUMBER /* Number */ |
| 109 | }; |
| 110 | |
| 111 | /** |
| 112 | * @brief XPath (sub)expressions that can be repeated. |
| 113 | */ |
| 114 | enum lyxp_expr_type { |
| 115 | LYXP_EXPR_NONE = 0, |
| 116 | LYXP_EXPR_OR, |
| 117 | LYXP_EXPR_AND, |
| 118 | LYXP_EXPR_EQUALITY, |
| 119 | LYXP_EXPR_RELATIONAL, |
| 120 | LYXP_EXPR_ADDITIVE, |
| 121 | LYXP_EXPR_MULTIPLICATIVE, |
| 122 | LYXP_EXPR_UNARY, |
| 123 | LYXP_EXPR_UNION, |
| 124 | }; |
| 125 | |
| 126 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 127 | * @brief Types of context nodes, #LYXP_NODE_ROOT_CONFIG used only in when or must conditions. |
| 128 | */ |
| 129 | enum lyxp_node_type { |
| 130 | /* XML document roots */ |
| 131 | LYXP_NODE_ROOT, /* access to all the data (node value first top-level node) */ |
| 132 | LYXP_NODE_ROOT_CONFIG, /* <running> data context, no state data (node value first top-level node) */ |
| 133 | |
| 134 | /* XML elements */ |
| 135 | LYXP_NODE_ELEM, /* XML element (most common) */ |
| 136 | LYXP_NODE_TEXT, /* XML text element (extremely specific use, unlikely to be ever needed) */ |
| 137 | LYXP_NODE_ATTR /* XML attribute (in YANG cannot happen, do not use for the context node) */ |
| 138 | }; |
| 139 | |
| 140 | /** |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 141 | * @brief Structure holding a parsed XPath expression. |
| 142 | */ |
| 143 | struct lyxp_expr { |
| 144 | enum lyxp_token *tokens; /* array of tokens */ |
| 145 | uint16_t *tok_pos; /* array of the token offsets in expr */ |
| 146 | uint16_t *tok_len; /* array of token lengths in expr */ |
| 147 | enum lyxp_expr_type **repeat; /* array of expression types that this token begins and is repeated ended with 0, |
| 148 | more in the comment after this declaration */ |
| 149 | uint16_t used; /* used array items */ |
| 150 | uint16_t size; /* allocated array items */ |
| 151 | |
| 152 | const char *expr; /* the original XPath expression */ |
| 153 | }; |
| 154 | |
| 155 | /* |
| 156 | * lyxp_expr repeat |
| 157 | * |
| 158 | * This value is NULL for all the tokens that do not begin an |
| 159 | * expression which can be repeated. Otherwise it is an array |
| 160 | * of expression types that this token begins. These values |
| 161 | * are used during evaluation to know whether we need to |
| 162 | * duplicate the current context or not and to decide what |
| 163 | * the current expression is (for example, if we are only |
| 164 | * starting the parsing and the first token has no repeat, |
| 165 | * we do not parse it as an OrExpr but directly as PathExpr). |
| 166 | * Examples: |
| 167 | * |
| 168 | * Expression: "/ *[key1 and key2 or key1 < key2]" |
| 169 | * Tokens: '/', '*', '[', NameTest, 'and', NameTest, 'or', NameTest, '<', NameTest, ']' |
| 170 | * Repeat: NULL, NULL, NULL, [AndExpr, NULL, NULL, NULL, [RelationalExpr, NULL, NULL, NULL |
| 171 | * OrExpr, 0], |
| 172 | * 0], |
| 173 | * |
| 174 | * Expression: "//node[key and node2]/key | /cont" |
| 175 | * Tokens: '//', 'NameTest', '[', 'NameTest', 'and', 'NameTest', ']', '/', 'NameTest', '|', '/', 'NameTest' |
| 176 | * Repeat: [UnionExpr, NULL, NULL, [AndExpr, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL |
| 177 | * 0], 0], |
| 178 | * |
| 179 | * Operators between expressions which this concerns: |
| 180 | * 'or', 'and', '=', '!=', '<', '>', '<=', '>=', '+', '-', '*', 'div', 'mod', '|' |
| 181 | */ |
| 182 | |
| 183 | /** |
| 184 | * @brief Supported types of (partial) XPath results. |
| 185 | */ |
| 186 | enum lyxp_set_type { |
| 187 | LYXP_SET_EMPTY = 0, |
| 188 | LYXP_SET_NODE_SET, |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 189 | LYXP_SET_SCNODE_SET, |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 190 | LYXP_SET_BOOLEAN, |
| 191 | LYXP_SET_NUMBER, |
| 192 | LYXP_SET_STRING |
| 193 | }; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 194 | |
| 195 | /** |
| 196 | * @brief Item stored in an XPath set hash table. |
| 197 | */ |
| 198 | struct lyxp_set_hash_node { |
| 199 | struct lyd_node *node; |
| 200 | enum lyxp_node_type type; |
| 201 | } _PACKED; |
| 202 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 203 | /** |
| 204 | * @brief XPath set - (partial) result. |
| 205 | */ |
| 206 | struct lyxp_set { |
| 207 | enum lyxp_set_type type; |
| 208 | union { |
| 209 | struct lyxp_set_node { |
| 210 | struct lyd_node *node; |
| 211 | enum lyxp_node_type type; |
| 212 | uint32_t pos; |
| 213 | } *nodes; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 214 | struct lyxp_set_scnode { |
| 215 | struct lysc_node *scnode; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 216 | enum lyxp_node_type type; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 217 | /* 0 - scnode was traversed, but not currently in the context, |
| 218 | * 1 - scnode currently in context, |
| 219 | * 2 - scnode in context and just added, so skip it for the current operation, |
| 220 | * >=3 - scnode is not in context because we are in a predicate and this scnode was used/will be used later */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 221 | uint32_t in_ctx; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 222 | } *scnodes; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 223 | struct lyxp_set_attr { |
| 224 | struct lyd_attr *attr; |
| 225 | enum lyxp_node_type type; |
| 226 | uint32_t pos; /* if node_type is LYXP_SET_NODE_ATTR, it is the parent node position */ |
| 227 | } *attrs; |
| 228 | char *str; |
| 229 | long double num; |
| 230 | int bool; |
| 231 | } val; |
| 232 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 233 | /* this is valid only for type LYXP_SET_NODE_SET and LYXP_SET_SCNODE_SET */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 234 | uint32_t used; |
| 235 | uint32_t size; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 236 | struct hash_table *ht; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 237 | |
| 238 | /* XPath context information, this is valid only for type LYXP_SET_NODE_SET */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 239 | uint32_t ctx_pos; |
| 240 | uint32_t ctx_size; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 241 | |
| 242 | /* general context */ |
| 243 | struct ly_ctx *ctx; |
| 244 | union { |
| 245 | const struct lyd_node *ctx_node; |
| 246 | const struct lysc_node *ctx_scnode; |
| 247 | }; |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame^] | 248 | enum lyxp_node_type root_type; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 249 | const struct lys_module *local_mod; |
| 250 | const struct lyd_node **trees; |
| 251 | LYD_FORMAT format; |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 255 | * @brief Evaluate an XPath expression on data. Be careful when using this function, the result can often |
| 256 | * 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] | 257 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 258 | * @param[in] expr XPath expression to evaluate. |
| 259 | * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes). |
| 260 | * @param[in] local_mod Local module relative to the @p expr. |
| 261 | * @param[in] ctx_node Current (context) data node. |
| 262 | * @param[in] ctx_node_type Current (context) data node type. For every standard case use #LYXP_NODE_ELEM. But there are |
| 263 | * cases when the context node @p ctx_node is actually supposed to be the XML root, there is no such data node. So, in |
| 264 | * this case just pass the first top-level node into @p ctx_node and use an enum value for this kind of root |
| 265 | * (#LYXP_NODE_ROOT_CONFIG if @p ctx_node has config true, otherwise #LYXP_NODE_ROOT). #LYXP_NODE_TEXT and #LYXP_NODE_ATTR can also be used, |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 266 | * but there are no use-cases in YANG. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 267 | * @param[in] trees Data trees on which to perform the evaluation. |
| 268 | * @param[out] set Result set. Must be valid and in the same libyang context as @p ctx_node. |
| 269 | * To be safe, always either zero or cast the @p set to empty. After done using, either cast |
| 270 | * the @p set to empty (if allocated statically) or free it (if allocated dynamically) to |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 271 | * prevent memory leaks. |
| 272 | * @param[in] options Whether to apply some evaluation restrictions. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 273 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 274 | */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 275 | LY_ERR lyxp_eval(const char *expr, LYD_FORMAT format, const struct lys_module *local_mod, const struct lyd_node *ctx_node, |
| 276 | enum lyxp_node_type ctx_node_type, const struct lyd_node **trees, struct lyxp_set *set, int options); |
| 277 | |
| 278 | #define LYXP_SCHEMA 0x01 /**< Apply data node access restrictions defined for 'when' and 'must' evaluation. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 279 | |
| 280 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 281 | * @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] | 282 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 283 | * If any LYXP_SCNODE* options is set, only fatal errors are printed, otherwise they are downgraded |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 284 | * to warnings. |
| 285 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 286 | * @param[in] exp Parsed XPath expression to be evaluated. |
| 287 | * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes). |
| 288 | * @param[in] local_mod Local module relative to the @p exp. |
| 289 | * @param[in] ctx_scnode Current (context) schema node. |
| 290 | * @param[in] ctx_scnode_type Current (context) schema node type. |
| 291 | * @param[out] set Result set. Must be valid and in the same libyang context as @p ctx_scnode. |
| 292 | * To be safe, always either zero or cast the @p set to empty. After done using, either cast |
| 293 | * the @p set to empty (if allocated statically) or free it (if allocated dynamically) to |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 294 | * prevent memory leaks. |
| 295 | * @param[in] options Whether to apply some evaluation restrictions, one flag must always be used. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 296 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 297 | */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 298 | LY_ERR lyxp_atomize(struct lyxp_expr *exp, LYD_FORMAT format, const struct lys_module *local_mod, const struct lysc_node *ctx_scnode, |
| 299 | enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set, int options); |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 300 | |
| 301 | /* these are used only internally */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 302 | #define LYXP_SCNODE 0x02 /**< No special data tree access modifiers. */ |
| 303 | #define LYXP_SCNODE_SCHEMA 0x04 /**< Apply schema node access restrictions defined for 'when' and 'must' evaluation. */ |
| 304 | #define LYXP_SCNODE_OUTPUT 0x08 /**< Search RPC/action output instead of input. */ |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 305 | |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 306 | #define LYXP_SCNODE_ALL 0x0E |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 307 | |
| 308 | /** |
| 309 | * @brief Works like lyxp_atomize(), but it is executed on all the when and must expressions |
| 310 | * which the node has. |
| 311 | * |
| 312 | * @param[in] node Node to examine. |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame^] | 313 | * @param[in,out] set Optional resulting set of atoms merged from all the expressions. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 314 | * Will be cleared before use. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 315 | * @param[in] set_ext_dep_flags Whether to set #LYS_XPATH_DEP for conditions that require data subtree |
| 316 | * and also for the node itself, if it has any such condition. |
| 317 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 318 | */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 319 | LY_ERR lyxp_node_atomize(const struct lysc_node *node, struct lyxp_set *set, int set_ext_dep_flags); |
| 320 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 321 | /** |
| 322 | * @brief Cast XPath set to another type. |
| 323 | * Indirectly context position aware. |
| 324 | * |
| 325 | * @param[in] set Set to cast. |
| 326 | * @param[in] target Target type to cast \p set into. |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 327 | * @return LY_ERR |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 328 | */ |
Michal Vasko | 5e0e6eb | 2019-11-06 15:47:50 +0100 | [diff] [blame^] | 329 | 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] | 330 | |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 331 | /** |
| 332 | * @brief Parse an XPath expression into a structure of tokens. |
| 333 | * Logs directly. |
| 334 | * |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 335 | * https://www.w3.org/TR/1999/REC-xpath-19991116/#exprlex |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 336 | * |
| 337 | * @param[in] ctx Context for errors. |
| 338 | * @param[in] expr XPath expression to parse. It is duplicated. |
Radek Krejci | b1646a9 | 2018-11-02 16:08:26 +0100 | [diff] [blame] | 339 | * @return Filled expression structure or NULL on error. |
| 340 | */ |
| 341 | struct lyxp_expr *lyxp_expr_parse(struct ly_ctx *ctx, const char *expr); |
| 342 | |
| 343 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 344 | * @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] | 345 | * |
| 346 | * @param[in] ctx libyang context of the expression. |
| 347 | * @param[in] expr Expression to free. |
| 348 | */ |
| 349 | void lyxp_expr_free(struct ly_ctx *ctx, struct lyxp_expr *expr); |
| 350 | |
| 351 | #endif /* _XPATH_H */ |