blob: 96f741968e747eda68dc105b72dc8e0dbc9721b2 [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 Vasko306e2832022-07-25 09:15:17 +02006 * Copyright (c) 2015 - 2022 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
Radek Krejciad97c5f2020-06-30 09:19:28 +020018#include <stddef.h>
Michal Vasko69730152020-10-09 16:30:07 +020019#include <stdint.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"
Radek Krejci77114102021-03-10 15:21:57 +010023#include "tree.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 Krejci77114102021-03-10 15:21:57 +010027struct lyd_node;
Radek Krejcie7b95092019-05-15 11:03:07 +020028
Radek Krejci84d7fd72021-07-14 18:32:21 +020029/**
30 * @internal
31 * @page internals
32 * @section internalsXpath XPath Implementation
33 *
Radek Krejcib1646a92018-11-02 16:08:26 +010034 * XPath evaluator fully compliant with http://www.w3.org/TR/1999/REC-xpath-19991116/
35 * except the following restrictions in the grammar.
36 *
Radek Krejci84d7fd72021-07-14 18:32:21 +020037 * @subsection internalsXpathGrammar Parsed Grammar
Radek Krejcib1646a92018-11-02 16:08:26 +010038 *
39 * Full axes are not supported, abbreviated forms must be used,
aPiecekfba75362021-10-07 12:39:48 +020040 * "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 Krejcib1646a92018-11-02 16:08:26 +010042 *
43 * Modified full grammar:
Radek Krejci84d7fd72021-07-14 18:32:21 +020044 * @code
Radek Krejcib1646a92018-11-02 16:08:26 +010045 * [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 Vasko49fec8e2022-05-24 10:28:33 +020050 * [5] Step ::= (AxisName '::' | '@')? NodeTest Predicate* | '.' | '..'
Radek Krejcib1646a92018-11-02 16:08:26 +010051 * [6] NodeTest ::= NameTest | NodeType '(' ')'
Michal Vaskod3678892020-05-21 10:06:58 +020052 * [7] NameTest ::= '*' | NCName ':' '*' | QName
53 * [8] NodeType ::= 'text' | 'node'
54 * [9] Predicate ::= '[' Expr ']'
aPiecekfba75362021-10-07 12:39:48 +020055 * [10] PrimaryExpr ::= VariableReference | '(' Expr ')' | Literal | Number | FunctionCall
Michal Vaskod3678892020-05-21 10:06:58 +020056 * [11] FunctionCall ::= FunctionName '(' ( Expr ( ',' Expr )* )? ')'
57 * [12] PathExpr ::= LocationPath | PrimaryExpr Predicate*
Radek Krejcib1646a92018-11-02 16:08:26 +010058 * | PrimaryExpr Predicate* '/' RelativeLocationPath
59 * | PrimaryExpr Predicate* '//' RelativeLocationPath
Michal Vaskod3678892020-05-21 10:06:58 +020060 * [13] OrExpr ::= AndExpr | OrExpr 'or' AndExpr
61 * [14] AndExpr ::= EqualityExpr | AndExpr 'and' EqualityExpr
62 * [15] EqualityExpr ::= RelationalExpr | EqualityExpr '=' RelationalExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010063 * | EqualityExpr '!=' RelationalExpr
Michal Vaskod3678892020-05-21 10:06:58 +020064 * [16] RelationalExpr ::= AdditiveExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010065 * | RelationalExpr '<' AdditiveExpr
66 * | RelationalExpr '>' AdditiveExpr
67 * | RelationalExpr '<=' AdditiveExpr
68 * | RelationalExpr '>=' AdditiveExpr
Michal Vaskod3678892020-05-21 10:06:58 +020069 * [17] AdditiveExpr ::= MultiplicativeExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010070 * | AdditiveExpr '+' MultiplicativeExpr
71 * | AdditiveExpr '-' MultiplicativeExpr
Michal Vaskod3678892020-05-21 10:06:58 +020072 * [18] MultiplicativeExpr ::= UnaryExpr
Radek Krejcib1646a92018-11-02 16:08:26 +010073 * | MultiplicativeExpr '*' UnaryExpr
74 * | MultiplicativeExpr 'div' UnaryExpr
75 * | MultiplicativeExpr 'mod' UnaryExpr
Michal Vaskod3678892020-05-21 10:06:58 +020076 * [19] UnaryExpr ::= UnionExpr | '-' UnaryExpr
77 * [20] UnionExpr ::= PathExpr | UnionExpr '|' PathExpr
Radek Krejci84d7fd72021-07-14 18:32:21 +020078 * @endcode
Radek Krejcib1646a92018-11-02 16:08:26 +010079 */
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 Vasko871df522022-04-06 12:14:41 +020086#define LYXP_SET_SIZE_START 4
87#define LYXP_SET_SIZE_MUL_STEP 2
Radek Krejcib1646a92018-11-02 16:08:26 +010088
89/* building string when casting */
90#define LYXP_STRING_CAST_SIZE_START 64
91#define LYXP_STRING_CAST_SIZE_STEP 16
92
aPiecekbf968d92021-05-27 14:35:05 +020093/* Maximum number of nested expressions. */
94#define LYXP_MAX_BLOCK_DEPTH 100
95
Radek Krejcib1646a92018-11-02 16:08:26 +010096/**
97 * @brief Tokens that can be in an XPath expression.
98 */
99enum 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 Vasko49fec8e2022-05-24 10:28:33 +0200109 LYXP_TOKEN_DCOLON, /* '::' */
Radek Krejcib1646a92018-11-02 16:08:26 +0100110 LYXP_TOKEN_NAMETEST, /* NameTest */
111 LYXP_TOKEN_NODETYPE, /* NodeType */
aPiecekfba75362021-10-07 12:39:48 +0200112 LYXP_TOKEN_VARREF, /* VariableReference */
Radek Krejcib1646a92018-11-02 16:08:26 +0100113 LYXP_TOKEN_FUNCNAME, /* FunctionName */
Michal Vasko3e48bf32020-06-01 08:39:07 +0200114 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 Vasko49fec8e2022-05-24 10:28:33 +0200122 LYXP_TOKEN_AXISNAME, /* AxisName */
Radek Krejcib1646a92018-11-02 16:08:26 +0100123 LYXP_TOKEN_LITERAL, /* Literal - with either single or double quote */
124 LYXP_TOKEN_NUMBER /* Number */
125};
126
127/**
Michal Vasko49fec8e2022-05-24 10:28:33 +0200128 * @brief XPath Axes types.
129 */
130enum 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 Krejcib1646a92018-11-02 16:08:26 +0100147 * @brief XPath (sub)expressions that can be repeated.
148 */
149enum 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 Vasko69730152020-10-09 16:30:07 +0200158 LYXP_EXPR_UNION
Radek Krejcib1646a92018-11-02 16:08:26 +0100159};
160
161/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200162 * @brief Types of context nodes, #LYXP_NODE_ROOT_CONFIG used only in when or must conditions.
163 */
164enum lyxp_node_type {
Michal Vasko2caefc12019-11-14 16:07:56 +0100165 LYXP_NODE_NONE, /* invalid node type */
166
Michal Vasko03ff5a72019-09-11 13:49:33 +0200167 /* 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 Vasko9f96a052020-03-10 09:41:45 +0100172 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 Vasko03ff5a72019-09-11 13:49:33 +0200175};
176
177/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100178 * @brief Structure holding a parsed XPath expression.
179 */
180struct lyxp_expr {
aPiecek6da713d2021-10-11 12:50:28 +0200181 enum lyxp_token *tokens; /**< Array of tokens. */
Michal Vaskodd528af2022-08-08 14:35:07 +0200182 uint32_t *tok_pos; /**< Array of the token offsets in expr. */
183 uint32_t *tok_len; /**< Array of token lengths in expr. */
aPiecek6da713d2021-10-11 12:50:28 +0200184 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. */
Michal Vaskodd528af2022-08-08 14:35:07 +0200186 uint32_t used; /**< Used array items. */
187 uint32_t size; /**< Allocated array items. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100188
aPiecek6da713d2021-10-11 12:50:28 +0200189 const char *expr; /**< The original XPath expression. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100190};
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 *
aPiecekff49d762021-10-11 10:25:27 +0200205 * 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 Krejcib1646a92018-11-02 16:08:26 +0100211 *
aPiecekff49d762021-10-11 10:25:27 +0200212 * 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 Krejcib1646a92018-11-02 16:08:26 +0100218 *
219 * Operators between expressions which this concerns:
220 * 'or', 'and', '=', '!=', '<', '>', '<=', '>=', '+', '-', '*', 'div', 'mod', '|'
221 */
222
223/**
224 * @brief Supported types of (partial) XPath results.
225 */
226enum lyxp_set_type {
Michal Vaskod3678892020-05-21 10:06:58 +0200227 LYXP_SET_NODE_SET = 0,
Michal Vasko03ff5a72019-09-11 13:49:33 +0200228 LYXP_SET_SCNODE_SET,
Radek Krejcib1646a92018-11-02 16:08:26 +0100229 LYXP_SET_BOOLEAN,
230 LYXP_SET_NUMBER,
231 LYXP_SET_STRING
232};
Radek Krejcib1646a92018-11-02 16:08:26 +0100233
234/**
235 * @brief Item stored in an XPath set hash table.
236 */
237struct lyxp_set_hash_node {
238 struct lyd_node *node;
239 enum lyxp_node_type type;
240} _PACKED;
241
Radek Krejcib1646a92018-11-02 16:08:26 +0100242/**
aPiecekdf23eee2021-10-07 12:21:50 +0200243 * @brief XPath variable bindings.
244 */
245struct 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 Krejcib1646a92018-11-02 16:08:26 +0100252 * @brief XPath set - (partial) result.
253 */
254struct lyxp_set {
aPiecek6da713d2021-10-11 12:50:28 +0200255 enum lyxp_set_type type; /**< Type of the object (value). */
Michal Vasko26bbb272022-08-02 14:54:33 +0200256
Radek Krejcib1646a92018-11-02 16:08:26 +0100257 union {
258 struct lyxp_set_node {
aPiecek6da713d2021-10-11 12:50:28 +0200259 struct lyd_node *node; /**< Data node. */
260 enum lyxp_node_type type; /**< Type of the node. */
261 uint32_t pos; /**< Unique node position in the data. */
262 } *nodes; /**< Set of data nodes. */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200263 struct lyxp_set_scnode {
aPiecek6da713d2021-10-11 12:50:28 +0200264 struct lysc_node *scnode; /**< Compiled YANG node. */
265 enum lyxp_node_type type; /**< Type of the node. */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100266
Michal Vaskod97959c2020-12-10 12:18:28 +0100267/* _START and _ATOM values should have grouped values */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100268#define LYXP_SET_SCNODE_START -2 /**< scnode not traversed, currently (the only node) in context */
269#define LYXP_SET_SCNODE_START_USED -1 /**< scnode not traversed except for the eval start, not currently in the context */
Michal Vasko1a09b212021-05-06 13:00:10 +0200270#define LYXP_SET_SCNODE_ATOM_NODE 0 /**< scnode was traversed, but not currently in the context */
271#define LYXP_SET_SCNODE_ATOM_VAL 1 /**< scnode was traversed and its value used, but not currently in the context */
272#define LYXP_SET_SCNODE_ATOM_CTX 2 /**< scnode currently in context */
273#define LYXP_SET_SCNODE_ATOM_NEW_CTX 3 /**< scnode in context and just added, so skip it for the current operation */
274#define LYXP_SET_SCNODE_ATOM_PRED_CTX 4 /**< includes any higher value - scnode is not in context because we are in
Radek Krejcif13b87b2020-12-01 22:02:17 +0100275 a predicate and this scnode was used/will be used later */
aPiecek6da713d2021-10-11 12:50:28 +0200276 int32_t in_ctx; /**< Flag specifies the state of the node in context. Values are defined
277 as LYXP_SET_SCNODE_* */
Michal Vasko7333cb32022-07-29 16:30:29 +0200278 enum lyxp_axis axis; /**< Axis defines on what axis was this schema node reached. */
aPiecek6da713d2021-10-11 12:50:28 +0200279 } *scnodes; /**< Set of compiled YANG data nodes. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100280 struct lyxp_set_meta {
aPiecek6da713d2021-10-11 12:50:28 +0200281 struct lyd_meta *meta; /**< Node that provides information about metadata of a data element. */
282 enum lyxp_node_type type; /**< Type of the node. */
283 uint32_t pos; /**< Unique node position in the data. if node_type is LYXP_SET_NODE_META,
284 it is the parent node position */
285 } *meta; /**< Set of YANG metadata objects. */
286 char *str; /**< String object. */
287 long double num; /**< Object of the floating-point number. */
288 ly_bool bln; /**< Boolean object. */
289 } val; /**< Evaluated object (value). */
Radek Krejcib1646a92018-11-02 16:08:26 +0100290
Michal Vasko03ff5a72019-09-11 13:49:33 +0200291 /* this is valid only for type LYXP_SET_NODE_SET and LYXP_SET_SCNODE_SET */
Michal Vasko306e2832022-07-25 09:15:17 +0200292 uint32_t used; /**< Number of nodes in the set. */
293 uint32_t size; /**< Allocated size for the set. */
Michal Vasko8efac242023-03-30 08:24:56 +0200294 struct ly_ht *ht; /**< Hash table for quick determination of whether a node is in the set. */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200295
296 /* XPath context information, this is valid only for type LYXP_SET_NODE_SET */
Michal Vasko306e2832022-07-25 09:15:17 +0200297 uint32_t ctx_pos; /**< Position of the current examined node in the set. */
298 uint32_t ctx_size; /**< Position of the last node at the time the node was examined. */
299 ly_bool non_child_axis; /**< Whether any node change was performed on a non-child axis. */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200300
301 /* general context */
aPiecek6da713d2021-10-11 12:50:28 +0200302 struct ly_ctx *ctx; /**< General context for logging. */
Michal Vasko26bbb272022-08-02 14:54:33 +0200303
Michal Vasko03ff5a72019-09-11 13:49:33 +0200304 union {
aPiecek6da713d2021-10-11 12:50:28 +0200305 const struct lyd_node *cur_node; /**< Current (original context) node. */
306 const struct lysc_node *cur_scnode; /**< Current (original context) compiled node. */
Michal Vasko03ff5a72019-09-11 13:49:33 +0200307 };
aPiecek6da713d2021-10-11 12:50:28 +0200308 enum lyxp_node_type root_type; /**< Type of root node. */
309 const struct lysc_node *context_op; /**< Schema of the current node. */
310 const struct lyd_node *tree; /**< Data tree on which to perform the evaluation. */
311 const struct lys_module *cur_mod; /**< Current module for the expression (where it was "instantiated"). */
312 LY_VALUE_FORMAT format; /**< Format of the XPath expression. */
313 void *prefix_data; /**< Format-specific prefix data (see ::ly_resolve_prefix). */
aPiecekfba75362021-10-07 12:39:48 +0200314 const struct lyxp_var *vars; /**< XPath variables. [Sized array](@ref sizedarrays).
315 Set of variable bindings. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100316};
317
318/**
Michal Vasko49fec8e2022-05-24 10:28:33 +0200319 * @brief Get string format of an XPath token.
Michal Vasko24cddf82020-06-01 08:17:01 +0200320 *
Michal Vasko49fec8e2022-05-24 10:28:33 +0200321 * @param[in] tok Token to transform.
Michal Vasko24cddf82020-06-01 08:17:01 +0200322 * @return Token type string.
323 */
Michal Vasko49fec8e2022-05-24 10:28:33 +0200324const char *lyxp_token2str(enum lyxp_token tok);
Michal Vasko24cddf82020-06-01 08:17:01 +0200325
326/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200327 * @brief Evaluate an XPath expression on data. Be careful when using this function, the result can often
328 * be confusing without thorough understanding of XPath evaluation rules defined in RFC 7950.
Radek Krejcib1646a92018-11-02 16:08:26 +0100329 *
Michal Vasko400e9672021-01-11 13:39:17 +0100330 * @param[in] ctx libyang context to use.
Michal Vaskoecd62de2019-11-13 12:35:11 +0100331 * @param[in] exp Parsed XPath expression to be evaluated.
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200332 * @param[in] cur_mod Current module for the expression (where it was "instantiated").
aPiecekb0445f22021-06-24 11:34:07 +0200333 * @param[in] format Format of the XPath expression (more specifically, of any used prefixes).
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200334 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200335 * @param[in] cur_node Current data node, NULL in case of the root node. Equal to @p ctx_node unless a
336 * subexpression is being evaluated.
337 * @param[in] ctx_node Starting context data node, NULL in case of the root node. Equal to @p cur_node unless a
338 * subexpression is being evaluated.
Michal Vaskof03ed032020-03-04 13:31:44 +0100339 * @param[in] tree Data tree on which to perform the evaluation, it must include all the available data (including
Michal Vaskod3bb12f2020-12-04 14:33:09 +0100340 * the tree of @p ctx_node). Can be any node of the tree, it is adjusted.
aPiecekfba75362021-10-07 12:39:48 +0200341 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
Michal Vasko004d3152020-06-11 19:59:22 +0200342 * @param[out] set Result set.
Radek Krejcib1646a92018-11-02 16:08:26 +0100343 * @param[in] options Whether to apply some evaluation restrictions.
Michal Vasko004d3152020-06-11 19:59:22 +0200344 * @return LY_EVALID for invalid argument types/count,
345 * @return LY_EINCOMPLETE for unresolved when,
346 * @return LY_EINVAL, LY_EMEM, LY_EINT for other errors.
Radek Krejcib1646a92018-11-02 16:08:26 +0100347 */
Michal Vasko400e9672021-01-11 13:39:17 +0100348LY_ERR lyxp_eval(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200349 LY_VALUE_FORMAT format, void *prefix_data, const struct lyd_node *cur_node, const struct lyd_node *ctx_node,
350 const struct lyd_node *tree, const struct lyxp_var *vars, struct lyxp_set *set, uint32_t options);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200351
Radek Krejcib1646a92018-11-02 16:08:26 +0100352/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200353 * @brief Get all the partial XPath nodes (atoms) that are required for @p exp to be evaluated.
Radek Krejcib1646a92018-11-02 16:08:26 +0100354 *
Michal Vasko400e9672021-01-11 13:39:17 +0100355 * @param[in] ctx libyang context to use.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200356 * @param[in] exp Parsed XPath expression to be evaluated.
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200357 * @param[in] cur_mod Current module for the expression (where it was "instantiated").
aPiecekb0445f22021-06-24 11:34:07 +0200358 * @param[in] format Format of the XPath expression (more specifically, of any used prefixes).
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200359 * @param[in] prefix_data Format-specific prefix data (see ::ly_resolve_prefix).
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200360 * @param[in] cur_scnode Current schema node, NULL in case of the root node. Equal to @p ctx_scnode unless a
361 * subexpression is being atomized.
362 * @param[in] ctx_scnode Starting context schema node, NULL in case of the root node. Equal to @p cur_scnode unless a
363 * subexpression is being atomized.
Michal Vasko004d3152020-06-11 19:59:22 +0200364 * @param[out] set Result set.
Radek Krejcib1646a92018-11-02 16:08:26 +0100365 * @param[in] options Whether to apply some evaluation restrictions, one flag must always be used.
Radek Krejci8678fa42020-08-18 16:07:28 +0200366 * @return LY_ERR (same as ::lyxp_eval()).
Radek Krejcib1646a92018-11-02 16:08:26 +0100367 */
Michal Vasko400e9672021-01-11 13:39:17 +0100368LY_ERR lyxp_atomize(const struct ly_ctx *ctx, const struct lyxp_expr *exp, const struct lys_module *cur_mod,
Michal Vaskoa3e92bc2022-07-29 14:56:23 +0200369 LY_VALUE_FORMAT format, void *prefix_data, const struct lysc_node *cur_scnode,
370 const struct lysc_node *ctx_scnode, struct lyxp_set *set, uint32_t options);
Radek Krejcib1646a92018-11-02 16:08:26 +0100371
Michal Vasko4ad69e72021-10-26 16:25:55 +0200372/** used only internally, maps with @ref findxpathoptions */
Michal Vaskoa27245c2022-05-02 09:01:35 +0200373#define LYXP_IGNORE_WHEN 0x01 /**< Ignore unevaluated when in data nodes and do not return ::LY_EINCOMPLETE. */
374#define LYXP_SCHEMA 0x02 /**< Apply data node access restrictions defined for 'when' and 'must' evaluation. */
375#define LYXP_SCNODE 0x04 /**< No special tree access modifiers. */
376#define LYXP_SCNODE_SCHEMA LYS_FIND_XP_SCHEMA /**< Apply node access restrictions defined for 'when' and 'must' evaluation. */
377#define LYXP_SCNODE_OUTPUT LYS_FIND_XP_OUTPUT /**< Search RPC/action output nodes instead of input ones. */
378#define LYXP_SCNODE_ALL 0x1C /**< mask for all the LYXP_* values */
379#define LYXP_SKIP_EXPR 0x20 /**< The rest of the expression will not be evaluated (lazy evaluation) */
380#define LYXP_SCNODE_ERROR LYS_FIND_NO_MATCH_ERROR /**< Return error if a path segment matches no nodes, otherwise only
381 warning is printed. */
382#define LYXP_ACCESS_TREE_ALL 0x80 /**< Explicit accessible tree of all the nodes. */
383#define LYXP_ACCESS_TREE_CONFIG 0x0100 /**< Explicit accessible tree of only configuration data. */
Michal Vaskoe482bb92023-02-01 11:41:41 +0100384#define LYXP_SCNODE_SCHEMAMOUNT LYS_FIND_SCHEMAMOUNT /**< Nodes from mounted modules are also accessible. */
Radek Krejcib1646a92018-11-02 16:08:26 +0100385
386/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100387 * @brief Cast XPath set to another type.
388 * Indirectly context position aware.
389 *
390 * @param[in] set Set to cast.
391 * @param[in] target Target type to cast \p set into.
Michal Vasko03ff5a72019-09-11 13:49:33 +0200392 * @return LY_ERR
Radek Krejcib1646a92018-11-02 16:08:26 +0100393 */
Michal Vasko5e0e6eb2019-11-06 15:47:50 +0100394LY_ERR lyxp_set_cast(struct lyxp_set *set, enum lyxp_set_type target);
Michal Vasko03ff5a72019-09-11 13:49:33 +0200395
Radek Krejcib1646a92018-11-02 16:08:26 +0100396/**
Michal Vaskod3678892020-05-21 10:06:58 +0200397 * @brief Free dynamic content of a set.
398 *
399 * @param[in] set Set to modify.
400 */
401void lyxp_set_free_content(struct lyxp_set *set);
402
403/**
Michal Vaskoecd62de2019-11-13 12:35:11 +0100404 * @brief Check for duplicates in a schema node set.
405 *
406 * @param[in] set Set to check.
407 * @param[in] node Node to look for in @p set.
408 * @param[in] node_type Type of @p node.
409 * @param[in] skip_idx Index from @p set to skip.
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200410 * @param[out] index_p Optional pointer to store index if the node is found.
Radek Krejci857189e2020-09-01 13:26:36 +0200411 * @return Boolean value whether the @p node found or not.
Michal Vaskoecd62de2019-11-13 12:35:11 +0100412 */
Radek Krejci857189e2020-09-01 13:26:36 +0200413ly_bool lyxp_set_scnode_contains(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
Radek Krejciaa6b53f2020-08-27 15:19:03 +0200414 int skip_idx, uint32_t *index_p);
Michal Vaskoecd62de2019-11-13 12:35:11 +0100415
416/**
417 * @brief Merge 2 schema node sets.
418 *
419 * @param[in] set1 Set to merge into.
420 * @param[in] set2 Set to merge. Its content is freed.
421 */
422void lyxp_set_scnode_merge(struct lyxp_set *set1, struct lyxp_set *set2);
423
424/**
Michal Vaskoe4a6d012023-05-22 14:34:52 +0200425 * @brief Insert schema node into set.
426 *
427 * @param[in] set Set to insert into.
428 * @param[in] node Node to insert.
429 * @param[in] node_type Node type of @p node.
430 * @param[in] axis Axis that @p node was reached on.
431 * @param[out] index_p Optional pointer to store the index of the inserted @p node.
432 * @return LY_SUCCESS on success.
433 * @return LY_EMEM on memory allocation failure.
434 */
435LY_ERR lyxp_set_scnode_insert_node(struct lyxp_set *set, const struct lysc_node *node, enum lyxp_node_type node_type,
436 enum lyxp_axis axis, uint32_t *index_p);
437
438/**
Radek Krejcib1646a92018-11-02 16:08:26 +0100439 * @brief Parse an XPath expression into a structure of tokens.
440 * Logs directly.
441 *
Michal Vasko03ff5a72019-09-11 13:49:33 +0200442 * https://www.w3.org/TR/1999/REC-xpath-19991116/#exprlex
Radek Krejcib1646a92018-11-02 16:08:26 +0100443 *
444 * @param[in] ctx Context for errors.
Radek Krejcif03a9e22020-09-18 20:09:31 +0200445 * @param[in] expr_str XPath expression to parse. It is duplicated.
Michal Vasko004d3152020-06-11 19:59:22 +0200446 * @param[in] expr_len Length of @p expr, can be 0 if @p expr is 0-terminated.
447 * @param[in] reparse Whether to re-parse the expression to finalize full XPath parsing and fill
448 * information about expressions and their operators (fill repeat).
Radek Krejcif03a9e22020-09-18 20:09:31 +0200449 * @param[out] expr_p Pointer to return the filled expression structure.
450 * @return LY_SUCCESS in case of success.
451 * @return LY_EMEM in case of memory allocation failure.
452 * @return LY_EVALID in case of invalid XPath expression in @p expr_str.
Radek Krejcib1646a92018-11-02 16:08:26 +0100453 */
Michal Vaskoee38a5d2020-11-09 21:02:18 +0100454LY_ERR lyxp_expr_parse(const struct ly_ctx *ctx, const char *expr_str, size_t expr_len, ly_bool reparse,
455 struct lyxp_expr **expr_p);
Michal Vasko004d3152020-06-11 19:59:22 +0200456
457/**
458 * @brief Duplicate parsed XPath expression.
459 *
Michal Vaskoe33134a2022-07-29 14:54:40 +0200460 * If @p start_idx and @p end_idx are both 0, the whole expression is duplicated.
461 *
Michal Vasko004d3152020-06-11 19:59:22 +0200462 * @param[in] ctx Context with a dictionary.
463 * @param[in] exp Parsed expression.
Michal Vaskoe33134a2022-07-29 14:54:40 +0200464 * @param[in] start_idx Starting @p exp index to duplicate.
465 * @param[in] end_idx Last @p exp index to duplicate.
Michal Vasko1734be92020-09-22 08:55:10 +0200466 * @param[out] dup Duplicated structure.
467 * @return LY_ERR value.
Michal Vasko004d3152020-06-11 19:59:22 +0200468 */
Michal Vaskodd528af2022-08-08 14:35:07 +0200469LY_ERR lyxp_expr_dup(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t start_idx, uint32_t end_idx,
Michal Vaskoe33134a2022-07-29 14:54:40 +0200470 struct lyxp_expr **dup);
Michal Vasko14676352020-05-29 11:35:55 +0200471
472/**
473 * @brief Look at the next token and check its kind.
474 *
475 * @param[in] ctx Context for logging, not logged if NULL.
476 * @param[in] exp Expression to use.
Michal Vasko004d3152020-06-11 19:59:22 +0200477 * @param[in] tok_idx Token index in the expression \p exp.
Michal Vasko14676352020-05-29 11:35:55 +0200478 * @param[in] want_tok Expected token.
479 * @return LY_EINCOMPLETE on EOF,
480 * @return LY_ENOT on non-matching token,
481 * @return LY_SUCCESS on success.
482 */
Michal Vaskodd528af2022-08-08 14:35:07 +0200483LY_ERR lyxp_check_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t tok_idx, enum lyxp_token want_tok);
Michal Vasko004d3152020-06-11 19:59:22 +0200484
485/**
486 * @brief Look at the next token and skip it if it matches the expected one.
487 *
488 * @param[in] ctx Context for logging, not logged if NULL.
489 * @param[in] exp Expression to use.
490 * @param[in,out] tok_idx Token index in the expression \p exp, is updated.
491 * @param[in] want_tok Expected token.
492 * @return LY_EINCOMPLETE on EOF,
493 * @return LY_ENOT on non-matching token,
494 * @return LY_SUCCESS on success.
495 */
Michal Vaskodd528af2022-08-08 14:35:07 +0200496LY_ERR lyxp_next_token(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t *tok_idx, enum lyxp_token want_tok);
Radek Krejcib1646a92018-11-02 16:08:26 +0100497
498/**
Michal Vasko4911eeb2021-06-28 11:23:05 +0200499 * @brief Look at the next token and skip it if it matches either of the 2 expected ones.
500 *
501 * @param[in] ctx Context for logging, not logged if NULL.
502 * @param[in] exp Expression to use.
503 * @param[in,out] tok_idx Token index in the expression \p exp, is updated.
504 * @param[in] want_tok1 Expected token 1.
505 * @param[in] want_tok2 Expected token 2.
506 * @return LY_EINCOMPLETE on EOF,
507 * @return LY_ENOT on non-matching token,
508 * @return LY_SUCCESS on success.
509 */
Michal Vaskodd528af2022-08-08 14:35:07 +0200510LY_ERR lyxp_next_token2(const struct ly_ctx *ctx, const struct lyxp_expr *exp, uint32_t *tok_idx,
Michal Vasko4911eeb2021-06-28 11:23:05 +0200511 enum lyxp_token want_tok1, enum lyxp_token want_tok2);
512
513/**
Michal Vasko90189962023-02-28 12:10:34 +0100514 * @brief Find variable named @p name in @p vars.
aPiecekdf23eee2021-10-07 12:21:50 +0200515 *
Michal Vasko90189962023-02-28 12:10:34 +0100516 * @param[in] ctx Context for logging, not logged if NULL.
aPiecekdf23eee2021-10-07 12:21:50 +0200517 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
518 * @param[in] name Name of the variable being searched.
519 * @param[in] name_len Name length can be set to 0 if @p name is terminated by null byte.
520 * @param[out] var Variable that was found. The parameter is optional.
521 * @return LY_SUCCESS if the variable was found, otherwise LY_ENOTFOUND.
522 */
Michal Vasko90189962023-02-28 12:10:34 +0100523LY_ERR lyxp_vars_find(const struct ly_ctx *ctx, const struct lyxp_var *vars, const char *name, size_t name_len,
524 struct lyxp_var **var);
aPiecekdf23eee2021-10-07 12:21:50 +0200525
526/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200527 * @brief Frees a parsed XPath expression. @p expr should not be used afterwards.
Radek Krejcib1646a92018-11-02 16:08:26 +0100528 *
529 * @param[in] ctx libyang context of the expression.
530 * @param[in] expr Expression to free.
531 */
Michal Vasko14676352020-05-29 11:35:55 +0200532void lyxp_expr_free(const struct ly_ctx *ctx, struct lyxp_expr *expr);
Radek Krejcib1646a92018-11-02 16:08:26 +0100533
Michal Vasko14676352020-05-29 11:35:55 +0200534#endif /* LY_XPATH_H */