blob: 4fb601a7b3bf27b7cc59d0da1493988ff552db88 [file] [log] [blame]
Radek Krejcib1646a92018-11-02 16:08:26 +01001/**
2 * @file xpath.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief YANG XPath evaluation functions header
5 *
Michal Vasko519fd602020-05-26 12:17:39 +02006 * Copyright (c) 2015 - 2020 CESNET, z.s.p.o.
Radek Krejcib1646a92018-11-02 16:08:26 +01007 *
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 Vasko14676352020-05-29 11:35:55 +020015#ifndef LY_XPATH_H
16#define LY_XPATH_H
Radek Krejcib1646a92018-11-02 16:08:26 +010017
18#include <stdint.h>
Radek Krejciad97c5f2020-06-30 09:19:28 +020019#include <stddef.h>
Radek Krejcib1646a92018-11-02 16:08:26 +010020
Michal Vaskoc5a22832020-08-20 13:21:33 +020021#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include "log.h"
Michal Vaskoc8a230d2020-08-14 12:17:10 +020023#include "plugins_types.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020024#include "tree_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020025
26struct ly_ctx;
Radek Krejcie7b95092019-05-15 11:03:07 +020027
Radek Krejcib1646a92018-11-02 16:08:26 +010028/*
29 * XPath evaluator fully compliant with http://www.w3.org/TR/1999/REC-xpath-19991116/
30 * except the following restrictions in the grammar.
31 *
32 * PARSED GRAMMAR
33 *
34 * Full axes are not supported, abbreviated forms must be used,
35 * variables are not supported, "id()" function is not supported,
36 * and processing instruction and comment nodes are not supported,
37 * which is also reflected in the grammar. Undefined rules and
38 * constants are tokens.
39 *
40 * Modified full grammar:
41 *
42 * [1] Expr ::= OrExpr // just an alias
43 *
44 * [2] LocationPath ::= RelativeLocationPath | AbsoluteLocationPath
45 * [3] AbsoluteLocationPath ::= '/' RelativeLocationPath? | '//' RelativeLocationPath
46 * [4] RelativeLocationPath ::= Step | RelativeLocationPath '/' Step | RelativeLocationPath '//' Step
47 * [5] Step ::= '@'? NodeTest Predicate* | '.' | '..'
48 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vaskod3678892020-05-21 10:06:58 +020049 * [7] NameTest ::= '*' | NCName ':' '*' | QName
50 * [8] NodeType ::= 'text' | 'node'
51 * [9] Predicate ::= '[' Expr ']'
52 * [10] PrimaryExpr ::= '(' Expr ')' | Literal | Number | FunctionCall
53 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
54 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Radek Krejcib1646a92018-11-02 16:08:26 +010055 * | PrimaryExpr Predicate* '/' RelativeLocationPath
56 * | PrimaryExpr Predicate* '//' RelativeLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +020057 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
58 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
59 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010060 * | EqualityExpr '!=' RelationalExpr
Michal Vaskod3678892020-05-21 10:06:58 +020061 * [16] RelationalExpr ::= AdditiveExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010062 * | RelationalExpr '<' AdditiveExpr
63 * | RelationalExpr '>' AdditiveExpr
64 * | RelationalExpr '<=' AdditiveExpr
65 * | RelationalExpr '>=' AdditiveExpr
Michal Vaskod3678892020-05-21 10:06:58 +020066 * [17] AdditiveExpr ::= MultiplicativeExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010067 * | AdditiveExpr '+' MultiplicativeExpr
68 * | AdditiveExpr '-' MultiplicativeExpr
Michal Vaskod3678892020-05-21 10:06:58 +020069 * [18] MultiplicativeExpr ::= UnaryExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010070 * | MultiplicativeExpr '*' UnaryExpr
71 * | MultiplicativeExpr 'div' UnaryExpr
72 * | MultiplicativeExpr 'mod' UnaryExpr
Michal Vaskod3678892020-05-21 10:06:58 +020073 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
74 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010075 */
76
77/* expression tokens allocation */
78#define LYXP_EXPR_SIZE_START 10
79#define LYXP_EXPR_SIZE_STEP 5
80
81/* XPath matches allocation */
82#define LYXP_SET_SIZE_START 2
83#define LYXP_SET_SIZE_STEP 2
84
85/* building string when casting */
86#define LYXP_STRING_CAST_SIZE_START 64
87#define LYXP_STRING_CAST_SIZE_STEP 16
88
89/**
90 * @brief Tokens that can be in an XPath expression.
91 */
92enum lyxp_token {
93 LYXP_TOKEN_NONE = 0,
94 LYXP_TOKEN_PAR1, /* '(' */
95 LYXP_TOKEN_PAR2, /* ')' */
96 LYXP_TOKEN_BRACK1, /* '[' */
97 LYXP_TOKEN_BRACK2, /* ']' */
98 LYXP_TOKEN_DOT, /* '.' */
99 LYXP_TOKEN_DDOT, /* '..' */
100 LYXP_TOKEN_AT, /* '@' */
101 LYXP_TOKEN_COMMA, /* ',' */
102 /* LYXP_TOKEN_DCOLON, * '::' * axes not supported */
103 LYXP_TOKEN_NAMETEST, /* NameTest */
104 LYXP_TOKEN_NODETYPE, /* NodeType */
105 LYXP_TOKEN_FUNCNAME, /* FunctionName */
Michal Vasko3e48bf32020-06-01 08:39:07 +0200106 LYXP_TOKEN_OPER_LOG, /* Operator 'and', 'or' */
107 LYXP_TOKEN_OPER_EQUAL, /* Operator '=' */
108 LYXP_TOKEN_OPER_NEQUAL, /* Operator '!=' */
109 LYXP_TOKEN_OPER_COMP, /* Operator '<', '<=', '>', '>=' */
110 LYXP_TOKEN_OPER_MATH, /* Operator '+', '-', '*', 'div', 'mod', '-' (unary) */
111 LYXP_TOKEN_OPER_UNI, /* Operator '|' */
112 LYXP_TOKEN_OPER_PATH, /* Operator '/' */
113 LYXP_TOKEN_OPER_RPATH, /* Operator '//' (recursive path) */
Radek Krejcib1646a92018-11-02 16:08:26 +0100114 /* LYXP_TOKEN_AXISNAME, * AxisName * axes not supported */
115 LYXP_TOKEN_LITERAL, /* Literal - with either single or double quote */
116 LYXP_TOKEN_NUMBER /* Number */
117};
118
119/**
120 * @brief XPath (sub)expressions that can be repeated.
121 */
122enum lyxp_expr_type {
123 LYXP_EXPR_NONE = 0,
124 LYXP_EXPR_OR,
125 LYXP_EXPR_AND,
126 LYXP_EXPR_EQUALITY,
127 LYXP_EXPR_RELATIONAL,
128 LYXP_EXPR_ADDITIVE,
129 LYXP_EXPR_MULTIPLICATIVE,
130 LYXP_EXPR_UNARY,
131 LYXP_EXPR_UNION,
132};
133
134/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200135 * @brief Types of context nodes, #LYXP_NODE_ROOT_CONFIG used only in when or must conditions.
136 */
137enum lyxp_node_type {
Michal Vasko2caefc12019-11-14 16:07:56 +0100138 LYXP_NODE_NONE, /* invalid node type */
139
Michal Vasko03ff5a72019-09-11 13:49:33 +0200140 /* XML document roots */
141 LYXP_NODE_ROOT, /* access to all the data (node value first top-level node) */
142 LYXP_NODE_ROOT_CONFIG, /* <running> data context, no state data (node value first top-level node) */
143
144 /* XML elements */
Michal Vasko9f96a052020-03-10 09:41:45 +0100145 LYXP_NODE_ELEM, /* YANG data element (most common) */
146 LYXP_NODE_TEXT, /* YANG data text element (extremely specific use, unlikely to be ever needed) */
147 LYXP_NODE_META /* YANG metadata (do not use for the context node) */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200148};
149
150/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100151 * @brief Structure holding a parsed XPath expression.
152 */
153struct lyxp_expr {
154 enum lyxp_token *tokens; /* array of tokens */
155 uint16_t *tok_pos; /* array of the token offsets in expr */
156 uint16_t *tok_len; /* array of token lengths in expr */
157 enum lyxp_expr_type **repeat; /* array of expression types that this token begins and is repeated ended with 0,
158 more in the comment after this declaration */
159 uint16_t used; /* used array items */
160 uint16_t size; /* allocated array items */
161
162 const char *expr; /* the original XPath expression */
163};
164
165/*
166 * lyxp_expr repeat
167 *
168 * This value is NULL for all the tokens that do not begin an
169 * expression which can be repeated. Otherwise it is an array
170 * of expression types that this token begins. These values
171 * are used during evaluation to know whether we need to
172 * duplicate the current context or not and to decide what
173 * the current expression is (for example, if we are only
174 * starting the parsing and the first token has no repeat,
175 * we do not parse it as an OrExpr but directly as PathExpr).
176 * Examples:
177 *
178 * Expression: "/ *[key1 and key2 or key1 < key2]"
179 * Tokens: '/', '*', '[', NameTest, 'and', NameTest, 'or', NameTest, '<', NameTest, ']'
180 * Repeat: NULL, NULL, NULL, [AndExpr, NULL, NULL, NULL, [RelationalExpr, NULL, NULL, NULL
181 * OrExpr, 0],
182 * 0],
183 *
184 * Expression: "//node[key and node2]/key | /cont"
185 * Tokens: '//', 'NameTest', '[', 'NameTest', 'and', 'NameTest', ']', '/', 'NameTest', '|', '/', 'NameTest'
186 * Repeat: [UnionExpr, NULL, NULL, [AndExpr, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
187 * 0], 0],
188 *
189 * Operators between expressions which this concerns:
190 * 'or', 'and', '=', '!=', '<', '>', '<=', '>=', '+', '-', '*', 'div', 'mod', '|'
191 */
192
193/**
194 * @brief Supported types of (partial) XPath results.
195 */
196enum lyxp_set_type {
Michal Vaskod3678892020-05-21 10:06:58 +0200197 LYXP_SET_NODE_SET = 0,
Michal Vasko03ff5a72019-09-11 13:49:33 +0200198 LYXP_SET_SCNODE_SET,
Radek Krejcib1646a92018-11-02 16:08:26 +0100199 LYXP_SET_BOOLEAN,
200 LYXP_SET_NUMBER,
201 LYXP_SET_STRING
202};
Radek Krejcib1646a92018-11-02 16:08:26 +0100203
204/**
205 * @brief Item stored in an XPath set hash table.
206 */
207struct lyxp_set_hash_node {
208 struct lyd_node *node;
209 enum lyxp_node_type type;
210} _PACKED;
211
Radek Krejcib1646a92018-11-02 16:08:26 +0100212/**
213 * @brief XPath set - (partial) result.
214 */
215struct lyxp_set {
216 enum lyxp_set_type type;
217 union {
218 struct lyxp_set_node {
219 struct lyd_node *node;
220 enum lyxp_node_type type;
221 uint32_t pos;
222 } *nodes;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200223 struct lyxp_set_scnode {
224 struct lysc_node *scnode;
Radek Krejcib1646a92018-11-02 16:08:26 +0100225 enum lyxp_node_type type;
Michal Vasko5c4e5892019-11-14 12:31:38 +0100226 /* -2 - scnode not traversed, currently (the only node) in context;
227 * -1 - scnode not traversed except for the eval start, not currently in the context;
228 * 0 - scnode was traversed, but not currently in the context;
229 * 1 - scnode currently in context;
230 * 2 - scnode in context and just added, so skip it for the current operation;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200231 * >=3 - scnode is not in context because we are in a predicate and this scnode was used/will be used later */
Michal Vasko5c4e5892019-11-14 12:31:38 +0100232 int32_t in_ctx;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200233 } *scnodes;
Michal Vasko9f96a052020-03-10 09:41:45 +0100234 struct lyxp_set_meta {
235 struct lyd_meta *meta;
Radek Krejcib1646a92018-11-02 16:08:26 +0100236 enum lyxp_node_type type;
Michal Vasko9f96a052020-03-10 09:41:45 +0100237 uint32_t pos; /* if node_type is LYXP_SET_NODE_META, it is the parent node position */
238 } *meta;
Radek Krejcib1646a92018-11-02 16:08:26 +0100239 char *str;
240 long double num;
Michal Vasko004d3152020-06-11 19:59:22 +0200241 int bln;
Radek Krejcib1646a92018-11-02 16:08:26 +0100242 } val;
243
Michal Vasko03ff5a72019-09-11 13:49:33 +0200244 /* this is valid only for type LYXP_SET_NODE_SET and LYXP_SET_SCNODE_SET */
Radek Krejcib1646a92018-11-02 16:08:26 +0100245 uint32_t used;
246 uint32_t size;
Radek Krejcib1646a92018-11-02 16:08:26 +0100247 struct hash_table *ht;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200248
249 /* XPath context information, this is valid only for type LYXP_SET_NODE_SET */
Radek Krejcib1646a92018-11-02 16:08:26 +0100250 uint32_t ctx_pos;
251 uint32_t ctx_size;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200252
253 /* general context */
254 struct ly_ctx *ctx;
255 union {
256 const struct lyd_node *ctx_node;
257 const struct lysc_node *ctx_scnode;
258 };
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100259 enum lyxp_node_type root_type;
Michal Vasko6b26e742020-07-17 15:02:10 +0200260 const struct lysc_node *context_op;
Michal Vasko03ff5a72019-09-11 13:49:33 +0200261 const struct lys_module *local_mod;
Michal Vaskof03ed032020-03-04 13:31:44 +0100262 const struct lyd_node *tree;
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200263 LY_PREFIX_FORMAT format;
Radek Krejcib1646a92018-11-02 16:08:26 +0100264};
265
266/**
Michal Vasko24cddf82020-06-01 08:17:01 +0200267 * @brief Print an XPath token \p tok type.
268 *
269 * @param[in] tok Token to print.
270 * @return Token type string.
271 */
272const char *lyxp_print_token(enum lyxp_token tok);
273
274/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200275 * @brief Evaluate an XPath expression on data. Be careful when using this function, the result can often
276 * be confusing without thorough understanding of XPath evaluation rules defined in RFC 7950.
Radek Krejcib1646a92018-11-02 16:08:26 +0100277 *
Michal Vaskoecd62de2019-11-13 12:35:11 +0100278 * @param[in] exp Parsed XPath expression to be evaluated.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200279 * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes).
280 * @param[in] local_mod Local module relative to the @p expr.
Michal Vasko004d3152020-06-11 19:59:22 +0200281 * @param[in] ctx_node Current (context) data node. In case of a root node, set @p ctx_node_type correctly,
282 * but @p ctx_node must also be set to any node from the root node module - it will be used for resolving
283 * unqualified names.
284 * @param[in] ctx_node_type Current (context) data node type.
Michal Vaskof03ed032020-03-04 13:31:44 +0100285 * @param[in] tree Data tree on which to perform the evaluation, it must include all the available data (including
Michal Vaskod0aa1a82019-11-07 08:58:42 +0100286 * the tree of @p ctx_node).
Michal Vasko004d3152020-06-11 19:59:22 +0200287 * @param[out] set Result set.
Radek Krejcib1646a92018-11-02 16:08:26 +0100288 * @param[in] options Whether to apply some evaluation restrictions.
Michal Vasko004d3152020-06-11 19:59:22 +0200289 * @return LY_EVALID for invalid argument types/count,
290 * @return LY_EINCOMPLETE for unresolved when,
291 * @return LY_EINVAL, LY_EMEM, LY_EINT for other errors.
Radek Krejcib1646a92018-11-02 16:08:26 +0100292 */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200293LY_ERR lyxp_eval(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod,
294 const struct lyd_node *ctx_node, enum lyxp_node_type ctx_node_type, const struct lyd_node *tree,
295 struct lyxp_set *set, int options);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200296
Michal Vasko004d3152020-06-11 19:59:22 +0200297#define LYXP_SCHEMA 0x01 /**< Apply data node access restrictions defined for 'when' and 'must' evaluation. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100298
299/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200300 * @brief Get all the partial XPath nodes (atoms) that are required for @p exp to be evaluated.
Radek Krejcib1646a92018-11-02 16:08:26 +0100301 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200302 * @param[in] exp Parsed XPath expression to be evaluated.
303 * @param[in] format Format of the XPath expression (more specifcally, of any used prefixes).
304 * @param[in] local_mod Local module relative to the @p exp.
Michal Vasko004d3152020-06-11 19:59:22 +0200305 * @param[in] ctx_scnode Current (context) schema node. In case of a root node, set @p ctx_scnode_type correctly,
306 * but @p ctx_scnode must also be set to any node from the root node module - it will be used for resolving
307 * unqualified names.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200308 * @param[in] ctx_scnode_type Current (context) schema node type.
Michal Vasko004d3152020-06-11 19:59:22 +0200309 * @param[out] set Result set.
Radek Krejcib1646a92018-11-02 16:08:26 +0100310 * @param[in] options Whether to apply some evaluation restrictions, one flag must always be used.
Michal Vaskoecd62de2019-11-13 12:35:11 +0100311 * @return LY_ERR (same as lyxp_eval()).
Radek Krejcib1646a92018-11-02 16:08:26 +0100312 */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200313LY_ERR lyxp_atomize(struct lyxp_expr *exp, LY_PREFIX_FORMAT format, const struct lys_module *local_mod,
314 const struct lysc_node *ctx_scnode, enum lyxp_node_type ctx_scnode_type, struct lyxp_set *set,
315 int options);
Radek Krejcib1646a92018-11-02 16:08:26 +0100316
Michal Vasko519fd602020-05-26 12:17:39 +0200317/* used only internally */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200318#define LYXP_SCNODE_ALL 0x0E
Radek Krejcib1646a92018-11-02 16:08:26 +0100319
320/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100321 * @brief Cast XPath set to another type.
322 * Indirectly context position aware.
323 *
324 * @param[in] set Set to cast.
325 * @param[in] target Target type to cast \p set into.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200326 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +0100327 */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100328LY_ERR lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200329
Radek Krejcib1646a92018-11-02 16:08:26 +0100330/**
Michal Vaskod3678892020-05-21 10:06:58 +0200331 * @brief Free dynamic content of a set.
332 *
333 * @param[in] set Set to modify.
334 */
335void lyxp_set_free_content(struct lyxp_set *set);
336
337/**
Michal Vaskoecd62de2019-11-13 12:35:11 +0100338 * @brief Insert schema node into set.
339 *
340 * @param[in] set Set to insert into.
341 * @param[in] node Node to insert.
342 * @param[in] node_type Node type of @p node.
343 * @return Index of the inserted node in set.
344 */
345int lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type);
346
347/**
348 * @brief Check for duplicates in a schema node set.
349 *
350 * @param[in] set Set to check.
351 * @param[in] node Node to look for in @p set.
352 * @param[in] node_type Type of @p node.
353 * @param[in] skip_idx Index from @p set to skip.
354 * @return Index of the found node, -1 if not found.
355 */
356int lyxp_set_scnode_dup_node_check(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
357 int skip_idx);
358
359/**
360 * @brief Merge 2 schema node sets.
361 *
362 * @param[in] set1 Set to merge into.
363 * @param[in] set2 Set to merge. Its content is freed.
364 */
365void lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2);
366
367/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100368 * @brief Parse an XPath expression into a structure of tokens.
369 * Logs directly.
370 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200371 * https://www.w3.org/TR/1999/REC-xpath-19991116/#exprlex
Radek Krejcib1646a92018-11-02 16:08:26 +0100372 *
373 * @param[in] ctx Context for errors.
374 * @param[in] expr XPath expression to parse. It is duplicated.
Michal Vasko004d3152020-06-11 19:59:22 +0200375 * @param[in] expr_len Length of @p expr, can be 0 if @p expr is 0-terminated.
376 * @param[in] reparse Whether to re-parse the expression to finalize full XPath parsing and fill
377 * information about expressions and their operators (fill repeat).
Radek Krejcib1646a92018-11-02 16:08:26 +0100378 * @return Filled expression structure or NULL on error.
379 */
Michal Vasko004d3152020-06-11 19:59:22 +0200380struct lyxp_expr *lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr, size_t expr_len, int reparse);
381
382/**
383 * @brief Duplicate parsed XPath expression.
384 *
385 * @param[in] ctx Context with a dictionary.
386 * @param[in] exp Parsed expression.
387 * @return Duplicated structure, NULL on error.
388 */
389struct lyxp_expr *lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp);
Michal Vasko14676352020-05-29 11:35:55 +0200390
391/**
392 * @brief Look at the next token and check its kind.
393 *
394 * @param[in] ctx Context for logging, not logged if NULL.
395 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +0200396 * @param[in] tok_idx Token index in the expression \p exp.
Michal Vasko14676352020-05-29 11:35:55 +0200397 * @param[in] want_tok Expected token.
398 * @return LY_EINCOMPLETE on EOF,
399 * @return LY_ENOT on non-matching token,
400 * @return LY_SUCCESS on success.
401 */
Michal Vasko004d3152020-06-11 19:59:22 +0200402LY_ERR lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t tok_idx, enum lyxp_token want_tok);
403
404/**
405 * @brief Look at the next token and skip it if it matches the expected one.
406 *
407 * @param[in] ctx Context for logging, not logged if NULL.
408 * @param[in] exp Expression to use.
409 * @param[in,out] tok_idx Token index in the expression \p exp, is updated.
410 * @param[in] want_tok Expected token.
411 * @return LY_EINCOMPLETE on EOF,
412 * @return LY_ENOT on non-matching token,
413 * @return LY_SUCCESS on success.
414 */
415LY_ERR lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint16_t *tok_idx, enum lyxp_token want_tok);
Radek Krejcib1646a92018-11-02 16:08:26 +0100416
417/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200418 * @brief Frees a parsed XPath expression. @p expr should not be used afterwards.
Radek Krejcib1646a92018-11-02 16:08:26 +0100419 *
420 * @param[in] ctx libyang context of the expression.
421 * @param[in] expr Expression to free.
422 */
Michal Vasko14676352020-05-29 11:35:55 +0200423void lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr);
Radek Krejcib1646a92018-11-02 16:08:26 +0100424
Michal Vasko14676352020-05-29 11:35:55 +0200425#endif /* LY_XPATH_H */