blob: 50f909dbf31efae1618da8ae4b5676dd4164d60c [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xpath.c: interface for XML Path Language implementation
3 *
4 * Reference: W3C Working Draft 5 July 1999
5 * http://www.w3.org/Style/XSL/Group/1999/07/xpath-19990705.html
6 *
7 * See COPYRIGHT for the status of this software
8 *
9 * Author: Daniel.Veillard@w3.org
10 */
11
12#ifndef __XML_XPATH_H__
13#define __XML_XPATH_H__
14
15#include <libxml/tree.h>
16#include <libxml/hash.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22typedef struct _xmlXPathContext xmlXPathContext;
23typedef xmlXPathContext *xmlXPathContextPtr;
24typedef struct _xmlXPathParserContext xmlXPathParserContext;
25typedef xmlXPathParserContext *xmlXPathParserContextPtr;
26
27/**
28 * The set of XPath error codes
29 */
30
31typedef enum {
32 XPATH_EXPRESSION_OK = 0,
33 XPATH_NUMBER_ERROR,
34 XPATH_UNFINISHED_LITERAL_ERROR,
35 XPATH_START_LITERAL_ERROR,
36 XPATH_VARIABLE_REF_ERROR,
37 XPATH_UNDEF_VARIABLE_ERROR,
38 XPATH_INVALID_PREDICATE_ERROR,
39 XPATH_EXPR_ERROR,
40 XPATH_UNCLOSED_ERROR,
41 XPATH_UNKNOWN_FUNC_ERROR,
42 XPATH_INVALID_OPERAND,
43 XPATH_INVALID_TYPE,
44 XPATH_INVALID_ARITY,
45 XPATH_INVALID_CTXT_SIZE,
46 XPATH_INVALID_CTXT_POSITION,
47 XPATH_MEMORY_ERROR,
48 XPTR_SYNTAX_ERROR,
49 XPTR_RESOURCE_ERROR,
50 XPTR_SUB_RESOURCE_ERROR,
Daniel Veillard61d80a22001-04-27 17:13:01 +000051 XPATH_UNDEF_PREFIX_ERROR,
52 XPATH_ENCODING_ERROR,
53 XPATH_INVALID_CHAR_ERROR
Owen Taylor3473f882001-02-23 17:55:21 +000054} xmlXPathError;
55
56/*
57 * A node-set (an unordered collection of nodes without duplicates)
58 */
59typedef struct _xmlNodeSet xmlNodeSet;
60typedef xmlNodeSet *xmlNodeSetPtr;
61struct _xmlNodeSet {
62 int nodeNr; /* number of nodes in the set */
63 int nodeMax; /* size of the array as allocated */
64 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
65};
66
67/*
68 * An expression is evaluated to yield an object, which
69 * has one of the following four basic types:
70 * - node-set
71 * - boolean
72 * - number
73 * - string
74 *
75 * @@ XPointer will add more types !
76 */
77
78typedef enum {
79 XPATH_UNDEFINED = 0,
80 XPATH_NODESET = 1,
81 XPATH_BOOLEAN = 2,
82 XPATH_NUMBER = 3,
83 XPATH_STRING = 4,
84 XPATH_POINT = 5,
85 XPATH_RANGE = 6,
86 XPATH_LOCATIONSET = 7,
87 XPATH_USERS = 8,
88 XPATH_XSLT_TREE = 9 /* An XSLT value tree, non modifiable */
89} xmlXPathObjectType;
90
91typedef struct _xmlXPathObject xmlXPathObject;
92typedef xmlXPathObject *xmlXPathObjectPtr;
93struct _xmlXPathObject {
94 xmlXPathObjectType type;
95 xmlNodeSetPtr nodesetval;
96 int boolval;
97 double floatval;
98 xmlChar *stringval;
99 void *user;
100 int index;
101 void *user2;
102 int index2;
103};
104
105/*
106 * A conversion function is associated to a type and used to cast
107 * the new type to primitive values.
108 */
109typedef int (*xmlXPathConvertFunc) (xmlXPathObjectPtr obj, int type);
110
111/*
112 * Extra type: a name and a conversion function.
113 */
114
115typedef struct _xmlXPathType xmlXPathType;
116typedef xmlXPathType *xmlXPathTypePtr;
117struct _xmlXPathType {
118 const xmlChar *name; /* the type name */
119 xmlXPathConvertFunc func; /* the conversion function */
120};
121
122/*
123 * Extra variable: a name and a value.
124 */
125
126typedef struct _xmlXPathVariable xmlXPathVariable;
127typedef xmlXPathVariable *xmlXPathVariablePtr;
128struct _xmlXPathVariable {
129 const xmlChar *name; /* the variable name */
130 xmlXPathObjectPtr value; /* the value */
131};
132
133/*
134 * an evaluation function, the parameters are on the context stack
135 */
136
137typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt, int nargs);
138
139/*
140 * Extra function: a name and a evaluation function.
141 */
142
143typedef struct _xmlXPathFunct xmlXPathFunct;
144typedef xmlXPathFunct *xmlXPathFuncPtr;
145struct _xmlXPathFunct {
146 const xmlChar *name; /* the function name */
147 xmlXPathEvalFunc func; /* the evaluation function */
148};
149
150/*
151 * An axis traversal function. To traverse an axis, the engine calls
152 * the first time with cur == NULL and repeat until the function returns
153 * NULL indicating the end of the axis traversal.
154 */
155
156typedef xmlXPathObjectPtr (*xmlXPathAxisFunc) (xmlXPathParserContextPtr ctxt,
157 xmlXPathObjectPtr cur);
158
159/*
160 * Extra axis: a name and an axis function.
161 */
162
163typedef struct _xmlXPathAxis xmlXPathAxis;
164typedef xmlXPathAxis *xmlXPathAxisPtr;
165struct _xmlXPathAxis {
166 const xmlChar *name; /* the axis name */
167 xmlXPathAxisFunc func; /* the search function */
168};
169
170/*
171 * Expression evaluation occurs with respect to a context.
172 * he context consists of:
173 * - a node (the context node)
174 * - a node list (the context node list)
175 * - a set of variable bindings
176 * - a function library
177 * - the set of namespace declarations in scope for the expression
178 * Following the switch to hash tables, this need to be trimmed up at
179 * the next binary incompatible release.
180 */
181
182struct _xmlXPathContext {
183 xmlDocPtr doc; /* The current document */
184 xmlNodePtr node; /* The current node */
185
186 int nb_variables_unused; /* unused (hash table) */
187 int max_variables_unused; /* unused (hash table) */
188 xmlHashTablePtr varHash; /* Hash table of defined variables */
189
190 int nb_types; /* number of defined types */
191 int max_types; /* max number of types */
192 xmlXPathTypePtr types; /* Array of defined types */
193
194 int nb_funcs_unused; /* unused (hash table) */
195 int max_funcs_unused; /* unused (hash table) */
196 xmlHashTablePtr funcHash; /* Hash table of defined funcs */
197
198 int nb_axis; /* number of defined axis */
199 int max_axis; /* max number of axis */
200 xmlXPathAxisPtr axis; /* Array of defined axis */
201
202 /* the namespace nodes of the context node */
203 xmlNsPtr *namespaces; /* Array of namespaces */
204 int nsNr; /* number of namespace in scope */
205 void *user; /* function to free */
206
207 /* extra variables */
208 int contextSize; /* the context size */
209 int proximityPosition; /* the proximity position */
210
211 /* extra stuff for XPointer */
212 int xptr; /* it this an XPointer context */
213 xmlNodePtr here; /* for here() */
214 xmlNodePtr origin; /* for origin() */
215
216 /* the set of namespace declarations in scope for the expression */
217 xmlHashTablePtr nsHash; /* The namespaces hash table */
218 void *varLookupFunc; /* variable lookup func */
219 void *varLookupData; /* variable lookup data */
220
221 /* Possibility to link in an extra item */
222 void *extra; /* needed for XSLT */
223};
224
225/*
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000226 * The structure of a compiled expression form is not public
227 */
228
229typedef struct _xmlXPathCompExpr xmlXPathCompExpr;
230typedef xmlXPathCompExpr *xmlXPathCompExprPtr;
231
232/*
Owen Taylor3473f882001-02-23 17:55:21 +0000233 * An XPath parser context, it contains pure parsing informations,
234 * an xmlXPathContext, and the stack of objects.
235 */
236struct _xmlXPathParserContext {
237 const xmlChar *cur; /* the current char being parsed */
238 const xmlChar *base; /* the full expression */
239
240 int error; /* error code */
241
Owen Taylor3473f882001-02-23 17:55:21 +0000242 xmlXPathContextPtr context; /* the evaluation context */
243 xmlXPathObjectPtr value; /* the current value */
244 int valueNr; /* number of values stacked */
245 int valueMax; /* max number of values stacked */
246 xmlXPathObjectPtr *valueTab; /* stack of values */
Daniel Veillardd007d6c2001-03-19 00:01:07 +0000247
248 xmlXPathCompExprPtr comp; /* the precompiled expression */
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +0000249 int xptr; /* it this an XPointer expression */
Owen Taylor3473f882001-02-23 17:55:21 +0000250};
251
252/*
253 * An XPath function
254 * The arguments (if any) are popped out of the context stack
255 * and the result is pushed on the stack.
256 */
257
258typedef void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs);
259
260/************************************************************************
261 * *
262 * Public API *
263 * *
264 ************************************************************************/
265
266/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +0000267 * Objects and Nodesets handling
Owen Taylor3473f882001-02-23 17:55:21 +0000268 */
Daniel Veillard790142b2001-05-15 10:51:53 +0000269
270/* These macros may later turn into functions */
271#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0)
272#define xmlXPathNodeSetItem(ns, index) \
273 ((((ns) != NULL) && \
274 ((index) > 0) && ((index) <= (ns)->nodeNr)) ? \
275 (ns)->nodeTab[(index)] \
276 : NULL)
277
278
Owen Taylor3473f882001-02-23 17:55:21 +0000279void xmlXPathFreeObject (xmlXPathObjectPtr obj);
Owen Taylor3473f882001-02-23 17:55:21 +0000280xmlNodeSetPtr xmlXPathNodeSetCreate (xmlNodePtr val);
281void xmlXPathFreeNodeSetList (xmlXPathObjectPtr obj);
282void xmlXPathFreeNodeSet (xmlNodeSetPtr obj);
283xmlXPathObjectPtr xmlXPathObjectCopy (xmlXPathObjectPtr val);
284int xmlXPathCmpNodes (xmlNodePtr node1,
285 xmlNodePtr node2);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +0000286/**
287 * Conversion functions to basic types
288 */
Daniel Veillardba0b8c92001-05-15 09:43:47 +0000289int xmlXPathCastNumberToBoolean (double val);
290int xmlXPathCastStringToBoolean (const xmlChar * val);
291int xmlXPathCastNodeToBoolean (xmlNodeSetPtr ns);
292int xmlXPathCastToBoolean (xmlXPathObjectPtr val);
293
294double xmlXPathCastBooleanToNumber (int val);
295double xmlXPathCastStringToNumber (const xmlChar * val);
296double xmlXPathCastNodeToNumber (xmlNodePtr node);
297double xmlXPathCastNodeSetToNumber (xmlNodeSetPtr ns);
298double xmlXPathCastToNumber (xmlXPathObjectPtr val);
299
300xmlChar * xmlXPathCastBooleanToString (int val);
301xmlChar * xmlXPathCastNumberToString (double val);
302xmlChar * xmlXPathCastNodeToString (xmlNodePtr node);
303xmlChar * xmlXPathCastNodeSetToString (xmlNodeSetPtr ns);
304xmlChar * xmlXPathCastToString (xmlXPathObjectPtr val);
305
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +0000306xmlXPathObjectPtr xmlXPathConvertBoolean (xmlXPathObjectPtr val);
307xmlXPathObjectPtr xmlXPathConvertNumber (xmlXPathObjectPtr val);
308xmlXPathObjectPtr xmlXPathConvertString (xmlXPathObjectPtr val);
Owen Taylor3473f882001-02-23 17:55:21 +0000309
Daniel Veillardafcbe1c2001-03-19 10:57:13 +0000310/**
311 * Context handling
312 */
313void xmlXPathInit (void);
314xmlXPathContextPtr xmlXPathNewContext (xmlDocPtr doc);
315void xmlXPathFreeContext (xmlXPathContextPtr ctxt);
316
317/**
318 * Evaluation functions.
319 */
320xmlXPathObjectPtr xmlXPathEval (const xmlChar *str,
321 xmlXPathContextPtr ctxt);
322xmlXPathObjectPtr xmlXPathEvalXPtrExpr (const xmlChar *str,
323 xmlXPathContextPtr ctxt);
324xmlXPathObjectPtr xmlXPathEvalExpression (const xmlChar *str,
325 xmlXPathContextPtr ctxt);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +0000326int xmlXPathEvalPredicate (xmlXPathContextPtr ctxt,
327 xmlXPathObjectPtr res);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +0000328/**
329 * Separate compilation/evaluation entry points
330 */
331xmlXPathCompExprPtr xmlXPathCompile (const xmlChar *str);
332xmlXPathObjectPtr xmlXPathCompiledEval (xmlXPathCompExprPtr comp,
333 xmlXPathContextPtr ctx);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +0000334void xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
Owen Taylor3473f882001-02-23 17:55:21 +0000335#ifdef __cplusplus
336}
337#endif
338#endif /* ! __XML_XPATH_H__ */