blob: 3f3e4369491cb659e75641661b47fead4277ac47 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xpath.c: XML Path Language implementation
3 * XPath is a language for addressing parts of an XML document,
4 * designed to be used by both XSLT and XPointer
5 *
6 * Reference: W3C Recommendation 16 November 1999
7 * http://www.w3.org/TR/1999/REC-xpath-19991116
8 * Public reference:
9 * http://www.w3.org/TR/xpath
10 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +000011 * See Copyright for the status of this software
Owen Taylor3473f882001-02-23 17:55:21 +000012 *
Daniel Veillardc5d64342001-06-24 12:13:24 +000013 * Author: daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +000014 *
Owen Taylor3473f882001-02-23 17:55:21 +000015 */
16
Daniel Veillard34ce8be2002-03-18 19:37:11 +000017#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000018#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000019
Owen Taylor3473f882001-02-23 17:55:21 +000020#include <string.h>
21
22#ifdef HAVE_SYS_TYPES_H
23#include <sys/types.h>
24#endif
25#ifdef HAVE_MATH_H
26#include <math.h>
27#endif
28#ifdef HAVE_FLOAT_H
29#include <float.h>
30#endif
Owen Taylor3473f882001-02-23 17:55:21 +000031#ifdef HAVE_CTYPE_H
32#include <ctype.h>
33#endif
Daniel Veillard5792e162001-04-30 17:44:45 +000034#ifdef HAVE_SIGNAL_H
Daniel Veillardb45c43b2001-04-28 17:02:11 +000035#include <signal.h>
Daniel Veillardb45c43b2001-04-28 17:02:11 +000036#endif
Owen Taylor3473f882001-02-23 17:55:21 +000037
38#include <libxml/xmlmemory.h>
39#include <libxml/tree.h>
40#include <libxml/valid.h>
41#include <libxml/xpath.h>
42#include <libxml/xpathInternals.h>
43#include <libxml/parserInternals.h>
44#include <libxml/hash.h>
45#ifdef LIBXML_XPTR_ENABLED
46#include <libxml/xpointer.h>
47#endif
48#ifdef LIBXML_DEBUG_ENABLED
49#include <libxml/debugXML.h>
50#endif
51#include <libxml/xmlerror.h>
Daniel Veillard81463942001-10-16 12:34:39 +000052#include <libxml/threads.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000053#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000054
Daniel Veillardd96f6d32003-10-07 21:25:12 +000055#define TODO \
56 xmlGenericError(xmlGenericErrorContext, \
57 "Unimplemented block at %s:%d\n", \
58 __FILE__, __LINE__);
59
Daniel Veillard4432df22003-09-28 18:58:27 +000060#if defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_XPATH_ENABLED)
Daniel Veillard9e7160d2001-03-18 23:17:47 +000061/************************************************************************
62 * *
63 * Floating point stuff *
64 * *
65 ************************************************************************/
66
Daniel Veillardc0631a62001-09-20 13:56:06 +000067#ifndef TRIO_REPLACE_STDIO
Daniel Veillardcda96922001-08-21 10:56:31 +000068#define TRIO_PUBLIC static
Daniel Veillardc0631a62001-09-20 13:56:06 +000069#endif
Daniel Veillardcda96922001-08-21 10:56:31 +000070#include "trionan.c"
71
Owen Taylor3473f882001-02-23 17:55:21 +000072/*
Owen Taylor3473f882001-02-23 17:55:21 +000073 * The lack of portability of this section of the libc is annoying !
74 */
75double xmlXPathNAN = 0;
76double xmlXPathPINF = 1;
77double xmlXPathNINF = -1;
Daniel Veillard5fc1f082002-03-27 09:05:40 +000078double xmlXPathNZERO = 0;
Daniel Veillard20ee8c02001-10-05 09:18:14 +000079static int xmlXPathInitialized = 0;
Owen Taylor3473f882001-02-23 17:55:21 +000080
Owen Taylor3473f882001-02-23 17:55:21 +000081/**
82 * xmlXPathInit:
83 *
84 * Initialize the XPath environment
85 */
86void
87xmlXPathInit(void) {
Daniel Veillard20ee8c02001-10-05 09:18:14 +000088 if (xmlXPathInitialized) return;
Owen Taylor3473f882001-02-23 17:55:21 +000089
Bjorn Reese45029602001-08-21 09:23:53 +000090 xmlXPathPINF = trio_pinf();
91 xmlXPathNINF = trio_ninf();
92 xmlXPathNAN = trio_nan();
Daniel Veillard5fc1f082002-03-27 09:05:40 +000093 xmlXPathNZERO = trio_nzero();
Owen Taylor3473f882001-02-23 17:55:21 +000094
Daniel Veillard20ee8c02001-10-05 09:18:14 +000095 xmlXPathInitialized = 1;
Owen Taylor3473f882001-02-23 17:55:21 +000096}
97
Daniel Veillardcda96922001-08-21 10:56:31 +000098/**
99 * xmlXPathIsNaN:
100 * @val: a double value
101 *
102 * Provides a portable isnan() function to detect whether a double
103 * is a NotaNumber. Based on trio code
104 * http://sourceforge.net/projects/ctrio/
105 *
106 * Returns 1 if the value is a NaN, 0 otherwise
107 */
108int
109xmlXPathIsNaN(double val) {
110 return(trio_isnan(val));
111}
112
113/**
114 * xmlXPathIsInf:
115 * @val: a double value
116 *
117 * Provides a portable isinf() function to detect whether a double
118 * is a +Infinite or -Infinite. Based on trio code
119 * http://sourceforge.net/projects/ctrio/
120 *
121 * Returns 1 vi the value is +Infinite, -1 if -Infinite, 0 otherwise
122 */
123int
124xmlXPathIsInf(double val) {
125 return(trio_isinf(val));
126}
127
Daniel Veillard4432df22003-09-28 18:58:27 +0000128#endif /* SCHEMAS or XPATH */
129#ifdef LIBXML_XPATH_ENABLED
Daniel Veillard5fc1f082002-03-27 09:05:40 +0000130/**
131 * xmlXPathGetSign:
132 * @val: a double value
133 *
134 * Provides a portable function to detect the sign of a double
135 * Modified from trio code
136 * http://sourceforge.net/projects/ctrio/
137 *
138 * Returns 1 if the value is Negative, 0 if positive
139 */
Daniel Veillard21458c82002-03-27 16:12:22 +0000140static int
Daniel Veillard5fc1f082002-03-27 09:05:40 +0000141xmlXPathGetSign(double val) {
Daniel Veillard21458c82002-03-27 16:12:22 +0000142 return(trio_signbit(val));
Daniel Veillard5fc1f082002-03-27 09:05:40 +0000143}
144
145
Daniel Veillardd9d32ae2003-07-05 20:32:43 +0000146/*
147 * TODO: when compatibility allows remove all "fake node libxslt" strings
148 * the test should just be name[0] = ' '
149 */
150/* #define DEBUG */
151/* #define DEBUG_STEP */
152/* #define DEBUG_STEP_NTH */
153/* #define DEBUG_EXPR */
154/* #define DEBUG_EVAL_COUNTS */
155
156static xmlNs xmlXPathXMLNamespaceStruct = {
157 NULL,
158 XML_NAMESPACE_DECL,
159 XML_XML_NAMESPACE,
160 BAD_CAST "xml",
161 NULL
162};
163static xmlNsPtr xmlXPathXMLNamespace = &xmlXPathXMLNamespaceStruct;
164#ifndef LIBXML_THREAD_ENABLED
165/*
166 * Optimizer is disabled only when threaded apps are detected while
167 * the library ain't compiled for thread safety.
168 */
169static int xmlXPathDisableOptimizer = 0;
170#endif
171
Owen Taylor3473f882001-02-23 17:55:21 +0000172/************************************************************************
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000173 * *
174 * Error handling routines *
175 * *
176 ************************************************************************/
177
William M. Brack08171912003-12-29 02:52:11 +0000178/*
179 * The array xmlXPathErrorMessages corresponds to the enum xmlXPathError
180 */
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000181static const char *xmlXPathErrorMessages[] = {
182 "Ok\n",
183 "Number encoding\n",
184 "Unfinished literal\n",
185 "Start of literal\n",
186 "Expected $ for variable reference\n",
187 "Undefined variable\n",
188 "Invalid predicate\n",
189 "Invalid expression\n",
190 "Missing closing curly brace\n",
191 "Unregistered function\n",
192 "Invalid operand\n",
193 "Invalid type\n",
194 "Invalid number of arguments\n",
195 "Invalid context size\n",
196 "Invalid context position\n",
197 "Memory allocation error\n",
198 "Syntax error\n",
199 "Resource error\n",
200 "Sub resource error\n",
201 "Undefined namespace prefix\n",
202 "Encoding error\n",
203 "Char out of XML range\n"
204};
205
206
207/**
208 * xmlXPathErrMemory:
209 * @ctxt: an XPath context
210 * @extra: extra informations
211 *
212 * Handle a redefinition of attribute error
213 */
214static void
215xmlXPathErrMemory(xmlXPathContextPtr ctxt, const char *extra)
216{
217 if (ctxt != NULL) {
218 if (extra) {
219 xmlChar buf[200];
220
221 xmlStrPrintf(buf, 200,
222 BAD_CAST "Memory allocation failed : %s\n",
223 extra);
224 ctxt->lastError.message = (char *) xmlStrdup(buf);
225 } else {
226 ctxt->lastError.message = (char *)
227 xmlStrdup(BAD_CAST "Memory allocation failed\n");
228 }
229 ctxt->lastError.domain = XML_FROM_XPATH;
230 ctxt->lastError.code = XML_ERR_NO_MEMORY;
231 if (ctxt->error != NULL)
232 ctxt->error(ctxt->userData, &ctxt->lastError);
233 } else {
234 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000235 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000236 NULL, NULL, XML_FROM_XPATH,
237 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0,
238 extra, NULL, NULL, 0, 0,
239 "Memory allocation failed : %s\n", extra);
240 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000241 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000242 NULL, NULL, XML_FROM_XPATH,
243 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0,
244 NULL, NULL, NULL, 0, 0,
245 "Memory allocation failed\n");
246 }
247}
248
249/**
250 * xmlXPathErrMemory:
251 * @ctxt: an XPath parser context
252 * @extra: extra informations
253 *
254 * Handle a redefinition of attribute error
255 */
256static void
257xmlXPathPErrMemory(xmlXPathParserContextPtr ctxt, const char *extra)
258{
259 ctxt->error = XPATH_MEMORY_ERROR;
260 if (ctxt == NULL)
261 xmlXPathErrMemory(NULL, extra);
262 else
263 xmlXPathErrMemory(ctxt->context, extra);
264}
265
266/**
267 * xmlXPathErr:
268 * @ctxt: a XPath parser context
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000269 * @error: the error code
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000270 *
271 * Handle a Relax NG Parsing error
272 */
273void
274xmlXPathErr(xmlXPathParserContextPtr ctxt, int error)
275{
Daniel Veillardf88d8cf2003-12-08 10:25:02 +0000276 if (ctxt == NULL) {
Daniel Veillard659e71e2003-10-10 14:10:40 +0000277 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000278 NULL, NULL, XML_FROM_XPATH,
279 error + XML_XPATH_EXPRESSION_OK - XPATH_EXPRESSION_OK,
280 XML_ERR_ERROR, NULL, 0,
281 NULL, NULL, NULL, 0, 0,
282 xmlXPathErrorMessages[error]);
283 return;
284 }
Daniel Veillardf88d8cf2003-12-08 10:25:02 +0000285 ctxt->error = error;
286 if (ctxt->context == NULL) {
287 __xmlRaiseError(NULL, NULL, NULL,
288 NULL, NULL, XML_FROM_XPATH,
289 error + XML_XPATH_EXPRESSION_OK - XPATH_EXPRESSION_OK,
290 XML_ERR_ERROR, NULL, 0,
291 (const char *) ctxt->base, NULL, NULL,
292 ctxt->cur - ctxt->base, 0,
293 xmlXPathErrorMessages[error]);
294 return;
295 }
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000296 ctxt->context->lastError.domain = XML_FROM_XPATH;
297 ctxt->context->lastError.code = error + XML_XPATH_EXPRESSION_OK -
298 XPATH_EXPRESSION_OK;
Daniel Veillardfcf719c2003-10-10 11:42:17 +0000299 ctxt->context->lastError.level = XML_ERR_ERROR;
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000300 ctxt->context->lastError.str1 = (char *) xmlStrdup(ctxt->base);
301 ctxt->context->lastError.int1 = ctxt->cur - ctxt->base;
302 ctxt->context->lastError.node = ctxt->context->debugNode;
303 if (ctxt->context->error != NULL) {
304 ctxt->context->error(ctxt->context->userData,
305 &ctxt->context->lastError);
306 } else {
Daniel Veillard659e71e2003-10-10 14:10:40 +0000307 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000308 NULL, ctxt->context->debugNode, XML_FROM_XPATH,
309 error + XML_XPATH_EXPRESSION_OK - XPATH_EXPRESSION_OK,
310 XML_ERR_ERROR, NULL, 0,
311 (const char *) ctxt->base, NULL, NULL,
312 ctxt->cur - ctxt->base, 0,
313 xmlXPathErrorMessages[error]);
314 }
315
316}
317
318/**
319 * xmlXPatherror:
320 * @ctxt: the XPath Parser context
321 * @file: the file name
322 * @line: the line number
323 * @no: the error number
324 *
325 * Formats an error message.
326 */
327void
328xmlXPatherror(xmlXPathParserContextPtr ctxt, const char *file ATTRIBUTE_UNUSED,
329 int line ATTRIBUTE_UNUSED, int no) {
330 xmlXPathErr(ctxt, no);
331}
332
333
334/************************************************************************
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000335 * *
336 * Parser Types *
337 * *
338 ************************************************************************/
339
340/*
341 * Types are private:
342 */
343
344typedef enum {
345 XPATH_OP_END=0,
346 XPATH_OP_AND,
347 XPATH_OP_OR,
348 XPATH_OP_EQUAL,
349 XPATH_OP_CMP,
350 XPATH_OP_PLUS,
351 XPATH_OP_MULT,
352 XPATH_OP_UNION,
353 XPATH_OP_ROOT,
354 XPATH_OP_NODE,
355 XPATH_OP_RESET,
356 XPATH_OP_COLLECT,
357 XPATH_OP_VALUE,
358 XPATH_OP_VARIABLE,
359 XPATH_OP_FUNCTION,
360 XPATH_OP_ARG,
361 XPATH_OP_PREDICATE,
Daniel Veillardd8df6c02001-04-05 16:54:14 +0000362 XPATH_OP_FILTER,
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000363 XPATH_OP_SORT
364#ifdef LIBXML_XPTR_ENABLED
365 ,XPATH_OP_RANGETO
366#endif
367} xmlXPathOp;
368
369typedef enum {
370 AXIS_ANCESTOR = 1,
371 AXIS_ANCESTOR_OR_SELF,
372 AXIS_ATTRIBUTE,
373 AXIS_CHILD,
374 AXIS_DESCENDANT,
375 AXIS_DESCENDANT_OR_SELF,
376 AXIS_FOLLOWING,
377 AXIS_FOLLOWING_SIBLING,
378 AXIS_NAMESPACE,
379 AXIS_PARENT,
380 AXIS_PRECEDING,
381 AXIS_PRECEDING_SIBLING,
382 AXIS_SELF
383} xmlXPathAxisVal;
384
385typedef enum {
386 NODE_TEST_NONE = 0,
387 NODE_TEST_TYPE = 1,
388 NODE_TEST_PI = 2,
389 NODE_TEST_ALL = 3,
390 NODE_TEST_NS = 4,
391 NODE_TEST_NAME = 5
392} xmlXPathTestVal;
393
394typedef enum {
395 NODE_TYPE_NODE = 0,
396 NODE_TYPE_COMMENT = XML_COMMENT_NODE,
397 NODE_TYPE_TEXT = XML_TEXT_NODE,
398 NODE_TYPE_PI = XML_PI_NODE
399} xmlXPathTypeVal;
400
401
402typedef struct _xmlXPathStepOp xmlXPathStepOp;
403typedef xmlXPathStepOp *xmlXPathStepOpPtr;
404struct _xmlXPathStepOp {
William M. Brack08171912003-12-29 02:52:11 +0000405 xmlXPathOp op; /* The identifier of the operation */
406 int ch1; /* First child */
407 int ch2; /* Second child */
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000408 int value;
409 int value2;
410 int value3;
411 void *value4;
412 void *value5;
Daniel Veillarde39a93d2001-04-28 14:35:02 +0000413 void *cache;
Daniel Veillard42596ad2001-05-22 16:57:14 +0000414 void *cacheURI;
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000415};
416
417struct _xmlXPathCompExpr {
William M. Brack08171912003-12-29 02:52:11 +0000418 int nbStep; /* Number of steps in this expression */
419 int maxStep; /* Maximum number of steps allocated */
420 xmlXPathStepOp *steps; /* ops for computation of this expression */
421 int last; /* index of last step in expression */
422 xmlChar *expr; /* the expression being computed */
Daniel Veillard4773df22004-01-23 13:15:13 +0000423 xmlDictPtr dict; /* the dictionnary to use if any */
Daniel Veillardf06307e2001-07-03 10:35:50 +0000424#ifdef DEBUG_EVAL_COUNTS
425 int nb;
426 xmlChar *string;
427#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000428};
429
430/************************************************************************
431 * *
432 * Parser Type functions *
433 * *
434 ************************************************************************/
435
436/**
437 * xmlXPathNewCompExpr:
438 *
439 * Create a new Xpath component
440 *
441 * Returns the newly allocated xmlXPathCompExprPtr or NULL in case of error
442 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000443static xmlXPathCompExprPtr
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000444xmlXPathNewCompExpr(void) {
445 xmlXPathCompExprPtr cur;
446
447 cur = (xmlXPathCompExprPtr) xmlMalloc(sizeof(xmlXPathCompExpr));
448 if (cur == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000449 xmlXPathErrMemory(NULL, "allocating component\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000450 return(NULL);
451 }
452 memset(cur, 0, sizeof(xmlXPathCompExpr));
453 cur->maxStep = 10;
454 cur->nbStep = 0;
455 cur->steps = (xmlXPathStepOp *) xmlMalloc(cur->maxStep *
456 sizeof(xmlXPathStepOp));
457 if (cur->steps == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000458 xmlXPathErrMemory(NULL, "allocating steps\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000459 xmlFree(cur);
460 return(NULL);
461 }
462 memset(cur->steps, 0, cur->maxStep * sizeof(xmlXPathStepOp));
463 cur->last = -1;
Daniel Veillardf06307e2001-07-03 10:35:50 +0000464#ifdef DEBUG_EVAL_COUNTS
465 cur->nb = 0;
466#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000467 return(cur);
468}
469
470/**
471 * xmlXPathFreeCompExpr:
472 * @comp: an XPATH comp
473 *
474 * Free up the memory allocated by @comp
475 */
476void
Daniel Veillardf06307e2001-07-03 10:35:50 +0000477xmlXPathFreeCompExpr(xmlXPathCompExprPtr comp)
478{
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000479 xmlXPathStepOpPtr op;
480 int i;
481
482 if (comp == NULL)
Daniel Veillardf06307e2001-07-03 10:35:50 +0000483 return;
Daniel Veillard4773df22004-01-23 13:15:13 +0000484 if (comp->dict == NULL) {
485 for (i = 0; i < comp->nbStep; i++) {
486 op = &comp->steps[i];
487 if (op->value4 != NULL) {
488 if (op->op == XPATH_OP_VALUE)
489 xmlXPathFreeObject(op->value4);
490 else
491 xmlFree(op->value4);
492 }
493 if (op->value5 != NULL)
494 xmlFree(op->value5);
495 }
496 } else {
497 for (i = 0; i < comp->nbStep; i++) {
498 op = &comp->steps[i];
499 if (op->value4 != NULL) {
500 if (op->op == XPATH_OP_VALUE)
501 xmlXPathFreeObject(op->value4);
502 }
503 }
504 xmlDictFree(comp->dict);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000505 }
506 if (comp->steps != NULL) {
Daniel Veillardf06307e2001-07-03 10:35:50 +0000507 xmlFree(comp->steps);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000508 }
Daniel Veillardf06307e2001-07-03 10:35:50 +0000509#ifdef DEBUG_EVAL_COUNTS
510 if (comp->string != NULL) {
511 xmlFree(comp->string);
512 }
513#endif
Daniel Veillard118aed72002-09-24 14:13:13 +0000514 if (comp->expr != NULL) {
515 xmlFree(comp->expr);
516 }
Daniel Veillardf06307e2001-07-03 10:35:50 +0000517
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000518 xmlFree(comp);
519}
520
521/**
522 * xmlXPathCompExprAdd:
523 * @comp: the compiled expression
524 * @ch1: first child index
525 * @ch2: second child index
526 * @op: an op
527 * @value: the first int value
528 * @value2: the second int value
529 * @value3: the third int value
530 * @value4: the first string value
531 * @value5: the second string value
532 *
William M. Brack08171912003-12-29 02:52:11 +0000533 * Add a step to an XPath Compiled Expression
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000534 *
535 * Returns -1 in case of failure, the index otherwise
536 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000537static int
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000538xmlXPathCompExprAdd(xmlXPathCompExprPtr comp, int ch1, int ch2,
539 xmlXPathOp op, int value,
540 int value2, int value3, void *value4, void *value5) {
541 if (comp->nbStep >= comp->maxStep) {
542 xmlXPathStepOp *real;
543
544 comp->maxStep *= 2;
545 real = (xmlXPathStepOp *) xmlRealloc(comp->steps,
546 comp->maxStep * sizeof(xmlXPathStepOp));
547 if (real == NULL) {
548 comp->maxStep /= 2;
Daniel Veillardd96f6d32003-10-07 21:25:12 +0000549 xmlXPathErrMemory(NULL, "adding step\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000550 return(-1);
551 }
552 comp->steps = real;
553 }
554 comp->last = comp->nbStep;
555 comp->steps[comp->nbStep].ch1 = ch1;
556 comp->steps[comp->nbStep].ch2 = ch2;
557 comp->steps[comp->nbStep].op = op;
558 comp->steps[comp->nbStep].value = value;
559 comp->steps[comp->nbStep].value2 = value2;
560 comp->steps[comp->nbStep].value3 = value3;
Daniel Veillard4773df22004-01-23 13:15:13 +0000561 if ((comp->dict != NULL) &&
562 ((op == XPATH_OP_FUNCTION) || (op == XPATH_OP_VARIABLE) ||
563 (op == XPATH_OP_COLLECT))) {
564 if (value4 != NULL) {
Daniel Veillardb3377952004-02-09 12:48:55 +0000565 comp->steps[comp->nbStep].value4 = (xmlChar *)
William M. Brackc07ed5e2004-01-30 07:52:48 +0000566 (void *)xmlDictLookup(comp->dict, value4, -1);
Daniel Veillard4773df22004-01-23 13:15:13 +0000567 xmlFree(value4);
568 } else
569 comp->steps[comp->nbStep].value4 = NULL;
570 if (value5 != NULL) {
Daniel Veillardb3377952004-02-09 12:48:55 +0000571 comp->steps[comp->nbStep].value5 = (xmlChar *)
William M. Brackc07ed5e2004-01-30 07:52:48 +0000572 (void *)xmlDictLookup(comp->dict, value5, -1);
Daniel Veillard4773df22004-01-23 13:15:13 +0000573 xmlFree(value5);
574 } else
575 comp->steps[comp->nbStep].value5 = NULL;
576 } else {
577 comp->steps[comp->nbStep].value4 = value4;
578 comp->steps[comp->nbStep].value5 = value5;
579 }
Daniel Veillarde39a93d2001-04-28 14:35:02 +0000580 comp->steps[comp->nbStep].cache = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000581 return(comp->nbStep++);
582}
583
Daniel Veillardf06307e2001-07-03 10:35:50 +0000584/**
585 * xmlXPathCompSwap:
586 * @comp: the compiled expression
587 * @op: operation index
588 *
589 * Swaps 2 operations in the compiled expression
Daniel Veillardf06307e2001-07-03 10:35:50 +0000590 */
591static void
592xmlXPathCompSwap(xmlXPathStepOpPtr op) {
593 int tmp;
594
Daniel Veillardbc6f7592002-04-16 07:49:59 +0000595#ifndef LIBXML_THREAD_ENABLED
Daniel Veillard81463942001-10-16 12:34:39 +0000596 /*
597 * Since this manipulates possibly shared variables, this is
William M. Brack08171912003-12-29 02:52:11 +0000598 * disabled if one detects that the library is used in a multithreaded
Daniel Veillard81463942001-10-16 12:34:39 +0000599 * application
600 */
601 if (xmlXPathDisableOptimizer)
602 return;
603#endif
604
Daniel Veillardf06307e2001-07-03 10:35:50 +0000605 tmp = op->ch1;
606 op->ch1 = op->ch2;
607 op->ch2 = tmp;
608}
609
Daniel Veillardd8df6c02001-04-05 16:54:14 +0000610#define PUSH_FULL_EXPR(op, op1, op2, val, val2, val3, val4, val5) \
611 xmlXPathCompExprAdd(ctxt->comp, (op1), (op2), \
612 (op), (val), (val2), (val3), (val4), (val5))
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000613#define PUSH_LONG_EXPR(op, val, val2, val3, val4, val5) \
614 xmlXPathCompExprAdd(ctxt->comp, ctxt->comp->last, -1, \
615 (op), (val), (val2), (val3), (val4), (val5))
616
617#define PUSH_LEAVE_EXPR(op, val, val2) \
618xmlXPathCompExprAdd(ctxt->comp, -1, -1, (op), (val), (val2), 0 ,NULL ,NULL)
619
620#define PUSH_UNARY_EXPR(op, ch, val, val2) \
621xmlXPathCompExprAdd(ctxt->comp, (ch), -1, (op), (val), (val2), 0 ,NULL ,NULL)
622
623#define PUSH_BINARY_EXPR(op, ch1, ch2, val, val2) \
William M. Brack08171912003-12-29 02:52:11 +0000624xmlXPathCompExprAdd(ctxt->comp, (ch1), (ch2), (op), \
625 (val), (val2), 0 ,NULL ,NULL)
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000626
627/************************************************************************
Owen Taylor3473f882001-02-23 17:55:21 +0000628 * *
629 * Debugging related functions *
630 * *
631 ************************************************************************/
632
Owen Taylor3473f882001-02-23 17:55:21 +0000633#define STRANGE \
634 xmlGenericError(xmlGenericErrorContext, \
635 "Internal error at %s:%d\n", \
636 __FILE__, __LINE__);
637
638#ifdef LIBXML_DEBUG_ENABLED
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000639static void
640xmlXPathDebugDumpNode(FILE *output, xmlNodePtr cur, int depth) {
Owen Taylor3473f882001-02-23 17:55:21 +0000641 int i;
642 char shift[100];
643
644 for (i = 0;((i < depth) && (i < 25));i++)
645 shift[2 * i] = shift[2 * i + 1] = ' ';
646 shift[2 * i] = shift[2 * i + 1] = 0;
647 if (cur == NULL) {
648 fprintf(output, shift);
649 fprintf(output, "Node is NULL !\n");
650 return;
651
652 }
653
654 if ((cur->type == XML_DOCUMENT_NODE) ||
655 (cur->type == XML_HTML_DOCUMENT_NODE)) {
656 fprintf(output, shift);
657 fprintf(output, " /\n");
658 } else if (cur->type == XML_ATTRIBUTE_NODE)
659 xmlDebugDumpAttr(output, (xmlAttrPtr)cur, depth);
660 else
661 xmlDebugDumpOneNode(output, cur, depth);
662}
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000663static void
664xmlXPathDebugDumpNodeList(FILE *output, xmlNodePtr cur, int depth) {
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000665 xmlNodePtr tmp;
666 int i;
667 char shift[100];
668
669 for (i = 0;((i < depth) && (i < 25));i++)
670 shift[2 * i] = shift[2 * i + 1] = ' ';
671 shift[2 * i] = shift[2 * i + 1] = 0;
672 if (cur == NULL) {
673 fprintf(output, shift);
674 fprintf(output, "Node is NULL !\n");
675 return;
676
677 }
678
679 while (cur != NULL) {
680 tmp = cur;
681 cur = cur->next;
682 xmlDebugDumpOneNode(output, tmp, depth);
683 }
684}
Owen Taylor3473f882001-02-23 17:55:21 +0000685
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000686static void
687xmlXPathDebugDumpNodeSet(FILE *output, xmlNodeSetPtr cur, int depth) {
Owen Taylor3473f882001-02-23 17:55:21 +0000688 int i;
689 char shift[100];
690
691 for (i = 0;((i < depth) && (i < 25));i++)
692 shift[2 * i] = shift[2 * i + 1] = ' ';
693 shift[2 * i] = shift[2 * i + 1] = 0;
694
695 if (cur == NULL) {
696 fprintf(output, shift);
697 fprintf(output, "NodeSet is NULL !\n");
698 return;
699
700 }
701
Daniel Veillard911f49a2001-04-07 15:39:35 +0000702 if (cur != NULL) {
703 fprintf(output, "Set contains %d nodes:\n", cur->nodeNr);
704 for (i = 0;i < cur->nodeNr;i++) {
705 fprintf(output, shift);
706 fprintf(output, "%d", i + 1);
707 xmlXPathDebugDumpNode(output, cur->nodeTab[i], depth + 1);
708 }
Owen Taylor3473f882001-02-23 17:55:21 +0000709 }
710}
711
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000712static void
713xmlXPathDebugDumpValueTree(FILE *output, xmlNodeSetPtr cur, int depth) {
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000714 int i;
715 char shift[100];
716
717 for (i = 0;((i < depth) && (i < 25));i++)
718 shift[2 * i] = shift[2 * i + 1] = ' ';
719 shift[2 * i] = shift[2 * i + 1] = 0;
720
721 if ((cur == NULL) || (cur->nodeNr == 0) || (cur->nodeTab[0] == NULL)) {
722 fprintf(output, shift);
723 fprintf(output, "Value Tree is NULL !\n");
724 return;
725
726 }
727
728 fprintf(output, shift);
729 fprintf(output, "%d", i + 1);
730 xmlXPathDebugDumpNodeList(output, cur->nodeTab[0]->children, depth + 1);
731}
Owen Taylor3473f882001-02-23 17:55:21 +0000732#if defined(LIBXML_XPTR_ENABLED)
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000733static void
734xmlXPathDebugDumpLocationSet(FILE *output, xmlLocationSetPtr cur, int depth) {
Owen Taylor3473f882001-02-23 17:55:21 +0000735 int i;
736 char shift[100];
737
738 for (i = 0;((i < depth) && (i < 25));i++)
739 shift[2 * i] = shift[2 * i + 1] = ' ';
740 shift[2 * i] = shift[2 * i + 1] = 0;
741
742 if (cur == NULL) {
743 fprintf(output, shift);
744 fprintf(output, "LocationSet is NULL !\n");
745 return;
746
747 }
748
749 for (i = 0;i < cur->locNr;i++) {
750 fprintf(output, shift);
751 fprintf(output, "%d : ", i + 1);
752 xmlXPathDebugDumpObject(output, cur->locTab[i], depth + 1);
753 }
754}
Daniel Veillard017b1082001-06-21 11:20:21 +0000755#endif /* LIBXML_XPTR_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +0000756
Daniel Veillardafcbe1c2001-03-19 10:57:13 +0000757/**
758 * xmlXPathDebugDumpObject:
759 * @output: the FILE * to dump the output
760 * @cur: the object to inspect
761 * @depth: indentation level
762 *
763 * Dump the content of the object for debugging purposes
764 */
765void
766xmlXPathDebugDumpObject(FILE *output, xmlXPathObjectPtr cur, int depth) {
Owen Taylor3473f882001-02-23 17:55:21 +0000767 int i;
768 char shift[100];
769
770 for (i = 0;((i < depth) && (i < 25));i++)
771 shift[2 * i] = shift[2 * i + 1] = ' ';
772 shift[2 * i] = shift[2 * i + 1] = 0;
773
774 fprintf(output, shift);
775
776 if (cur == NULL) {
777 fprintf(output, "Object is empty (NULL)\n");
778 return;
779 }
780 switch(cur->type) {
781 case XPATH_UNDEFINED:
782 fprintf(output, "Object is uninitialized\n");
783 break;
784 case XPATH_NODESET:
785 fprintf(output, "Object is a Node Set :\n");
786 xmlXPathDebugDumpNodeSet(output, cur->nodesetval, depth);
787 break;
788 case XPATH_XSLT_TREE:
789 fprintf(output, "Object is an XSLT value tree :\n");
Daniel Veillardf7cd4812001-02-23 18:44:52 +0000790 xmlXPathDebugDumpValueTree(output, cur->nodesetval, depth);
Owen Taylor3473f882001-02-23 17:55:21 +0000791 break;
792 case XPATH_BOOLEAN:
793 fprintf(output, "Object is a Boolean : ");
794 if (cur->boolval) fprintf(output, "true\n");
795 else fprintf(output, "false\n");
796 break;
797 case XPATH_NUMBER:
Daniel Veillardcda96922001-08-21 10:56:31 +0000798 switch (xmlXPathIsInf(cur->floatval)) {
Daniel Veillard357c9602001-05-03 10:49:20 +0000799 case 1:
Daniel Veillard5fc1f082002-03-27 09:05:40 +0000800 fprintf(output, "Object is a number : Infinity\n");
Daniel Veillard357c9602001-05-03 10:49:20 +0000801 break;
802 case -1:
803 fprintf(output, "Object is a number : -Infinity\n");
804 break;
805 default:
Daniel Veillardcda96922001-08-21 10:56:31 +0000806 if (xmlXPathIsNaN(cur->floatval)) {
Daniel Veillard357c9602001-05-03 10:49:20 +0000807 fprintf(output, "Object is a number : NaN\n");
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000808 } else if (cur->floatval == 0 && xmlXPathGetSign(cur->floatval) != 0) {
809 fprintf(output, "Object is a number : 0\n");
Daniel Veillard357c9602001-05-03 10:49:20 +0000810 } else {
811 fprintf(output, "Object is a number : %0g\n", cur->floatval);
812 }
813 }
Owen Taylor3473f882001-02-23 17:55:21 +0000814 break;
815 case XPATH_STRING:
816 fprintf(output, "Object is a string : ");
817 xmlDebugDumpString(output, cur->stringval);
818 fprintf(output, "\n");
819 break;
820 case XPATH_POINT:
821 fprintf(output, "Object is a point : index %d in node", cur->index);
822 xmlXPathDebugDumpNode(output, (xmlNodePtr) cur->user, depth + 1);
823 fprintf(output, "\n");
824 break;
825 case XPATH_RANGE:
826 if ((cur->user2 == NULL) ||
827 ((cur->user2 == cur->user) && (cur->index == cur->index2))) {
828 fprintf(output, "Object is a collapsed range :\n");
829 fprintf(output, shift);
830 if (cur->index >= 0)
831 fprintf(output, "index %d in ", cur->index);
832 fprintf(output, "node\n");
833 xmlXPathDebugDumpNode(output, (xmlNodePtr) cur->user,
834 depth + 1);
835 } else {
836 fprintf(output, "Object is a range :\n");
837 fprintf(output, shift);
838 fprintf(output, "From ");
839 if (cur->index >= 0)
840 fprintf(output, "index %d in ", cur->index);
841 fprintf(output, "node\n");
842 xmlXPathDebugDumpNode(output, (xmlNodePtr) cur->user,
843 depth + 1);
844 fprintf(output, shift);
845 fprintf(output, "To ");
846 if (cur->index2 >= 0)
847 fprintf(output, "index %d in ", cur->index2);
848 fprintf(output, "node\n");
849 xmlXPathDebugDumpNode(output, (xmlNodePtr) cur->user2,
850 depth + 1);
851 fprintf(output, "\n");
852 }
853 break;
854 case XPATH_LOCATIONSET:
855#if defined(LIBXML_XPTR_ENABLED)
856 fprintf(output, "Object is a Location Set:\n");
857 xmlXPathDebugDumpLocationSet(output,
858 (xmlLocationSetPtr) cur->user, depth);
859#endif
860 break;
861 case XPATH_USERS:
862 fprintf(output, "Object is user defined\n");
863 break;
864 }
865}
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000866
Daniel Veillard56a4cb82001-03-24 17:00:36 +0000867static void
868xmlXPathDebugDumpStepOp(FILE *output, xmlXPathCompExprPtr comp,
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000869 xmlXPathStepOpPtr op, int depth) {
870 int i;
871 char shift[100];
872
873 for (i = 0;((i < depth) && (i < 25));i++)
874 shift[2 * i] = shift[2 * i + 1] = ' ';
875 shift[2 * i] = shift[2 * i + 1] = 0;
876
877 fprintf(output, shift);
878 if (op == NULL) {
879 fprintf(output, "Step is NULL\n");
880 return;
881 }
882 switch (op->op) {
883 case XPATH_OP_END:
884 fprintf(output, "END"); break;
885 case XPATH_OP_AND:
886 fprintf(output, "AND"); break;
887 case XPATH_OP_OR:
888 fprintf(output, "OR"); break;
889 case XPATH_OP_EQUAL:
890 if (op->value)
891 fprintf(output, "EQUAL =");
892 else
893 fprintf(output, "EQUAL !=");
894 break;
895 case XPATH_OP_CMP:
896 if (op->value)
897 fprintf(output, "CMP <");
898 else
899 fprintf(output, "CMP >");
900 if (!op->value2)
901 fprintf(output, "=");
902 break;
903 case XPATH_OP_PLUS:
904 if (op->value == 0)
905 fprintf(output, "PLUS -");
906 else if (op->value == 1)
907 fprintf(output, "PLUS +");
908 else if (op->value == 2)
909 fprintf(output, "PLUS unary -");
910 else if (op->value == 3)
911 fprintf(output, "PLUS unary - -");
912 break;
913 case XPATH_OP_MULT:
914 if (op->value == 0)
915 fprintf(output, "MULT *");
916 else if (op->value == 1)
917 fprintf(output, "MULT div");
918 else
919 fprintf(output, "MULT mod");
920 break;
921 case XPATH_OP_UNION:
922 fprintf(output, "UNION"); break;
923 case XPATH_OP_ROOT:
924 fprintf(output, "ROOT"); break;
925 case XPATH_OP_NODE:
926 fprintf(output, "NODE"); break;
927 case XPATH_OP_RESET:
928 fprintf(output, "RESET"); break;
929 case XPATH_OP_SORT:
930 fprintf(output, "SORT"); break;
931 case XPATH_OP_COLLECT: {
William M. Brack78637da2003-07-31 14:47:38 +0000932 xmlXPathAxisVal axis = (xmlXPathAxisVal)op->value;
933 xmlXPathTestVal test = (xmlXPathTestVal)op->value2;
934 xmlXPathTypeVal type = (xmlXPathTypeVal)op->value3;
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000935 const xmlChar *prefix = op->value4;
936 const xmlChar *name = op->value5;
937
938 fprintf(output, "COLLECT ");
939 switch (axis) {
940 case AXIS_ANCESTOR:
941 fprintf(output, " 'ancestors' "); break;
942 case AXIS_ANCESTOR_OR_SELF:
943 fprintf(output, " 'ancestors-or-self' "); break;
944 case AXIS_ATTRIBUTE:
945 fprintf(output, " 'attributes' "); break;
946 case AXIS_CHILD:
947 fprintf(output, " 'child' "); break;
948 case AXIS_DESCENDANT:
949 fprintf(output, " 'descendant' "); break;
950 case AXIS_DESCENDANT_OR_SELF:
951 fprintf(output, " 'descendant-or-self' "); break;
952 case AXIS_FOLLOWING:
953 fprintf(output, " 'following' "); break;
954 case AXIS_FOLLOWING_SIBLING:
955 fprintf(output, " 'following-siblings' "); break;
956 case AXIS_NAMESPACE:
957 fprintf(output, " 'namespace' "); break;
958 case AXIS_PARENT:
959 fprintf(output, " 'parent' "); break;
960 case AXIS_PRECEDING:
961 fprintf(output, " 'preceding' "); break;
962 case AXIS_PRECEDING_SIBLING:
963 fprintf(output, " 'preceding-sibling' "); break;
964 case AXIS_SELF:
965 fprintf(output, " 'self' "); break;
966 }
967 switch (test) {
968 case NODE_TEST_NONE:
969 fprintf(output, "'none' "); break;
970 case NODE_TEST_TYPE:
971 fprintf(output, "'type' "); break;
972 case NODE_TEST_PI:
973 fprintf(output, "'PI' "); break;
974 case NODE_TEST_ALL:
975 fprintf(output, "'all' "); break;
976 case NODE_TEST_NS:
977 fprintf(output, "'namespace' "); break;
978 case NODE_TEST_NAME:
979 fprintf(output, "'name' "); break;
980 }
981 switch (type) {
982 case NODE_TYPE_NODE:
983 fprintf(output, "'node' "); break;
984 case NODE_TYPE_COMMENT:
985 fprintf(output, "'comment' "); break;
986 case NODE_TYPE_TEXT:
987 fprintf(output, "'text' "); break;
988 case NODE_TYPE_PI:
989 fprintf(output, "'PI' "); break;
990 }
991 if (prefix != NULL)
992 fprintf(output, "%s:", prefix);
993 if (name != NULL)
Daniel Veillard580ced82003-03-21 21:22:48 +0000994 fprintf(output, "%s", (const char *) name);
Daniel Veillard9e7160d2001-03-18 23:17:47 +0000995 break;
996
997 }
998 case XPATH_OP_VALUE: {
999 xmlXPathObjectPtr object = (xmlXPathObjectPtr) op->value4;
1000
1001 fprintf(output, "ELEM ");
1002 xmlXPathDebugDumpObject(output, object, 0);
1003 goto finish;
1004 }
1005 case XPATH_OP_VARIABLE: {
1006 const xmlChar *prefix = op->value5;
1007 const xmlChar *name = op->value4;
1008
1009 if (prefix != NULL)
1010 fprintf(output, "VARIABLE %s:%s", prefix, name);
1011 else
1012 fprintf(output, "VARIABLE %s", name);
1013 break;
1014 }
1015 case XPATH_OP_FUNCTION: {
1016 int nbargs = op->value;
1017 const xmlChar *prefix = op->value5;
1018 const xmlChar *name = op->value4;
1019
1020 if (prefix != NULL)
1021 fprintf(output, "FUNCTION %s:%s(%d args)",
1022 prefix, name, nbargs);
1023 else
1024 fprintf(output, "FUNCTION %s(%d args)", name, nbargs);
1025 break;
1026 }
1027 case XPATH_OP_ARG: fprintf(output, "ARG"); break;
1028 case XPATH_OP_PREDICATE: fprintf(output, "PREDICATE"); break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00001029 case XPATH_OP_FILTER: fprintf(output, "FILTER"); break;
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00001030#ifdef LIBXML_XPTR_ENABLED
1031 case XPATH_OP_RANGETO: fprintf(output, "RANGETO"); break;
1032#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +00001033 default:
1034 fprintf(output, "UNKNOWN %d\n", op->op); return;
1035 }
1036 fprintf(output, "\n");
1037finish:
1038 if (op->ch1 >= 0)
1039 xmlXPathDebugDumpStepOp(output, comp, &comp->steps[op->ch1], depth + 1);
1040 if (op->ch2 >= 0)
1041 xmlXPathDebugDumpStepOp(output, comp, &comp->steps[op->ch2], depth + 1);
1042}
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001043
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001044/**
1045 * xmlXPathDebugDumpCompExpr:
1046 * @output: the FILE * for the output
1047 * @comp: the precompiled XPath expression
1048 * @depth: the indentation level.
1049 *
1050 * Dumps the tree of the compiled XPath expression.
1051 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001052void
1053xmlXPathDebugDumpCompExpr(FILE *output, xmlXPathCompExprPtr comp,
1054 int depth) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00001055 int i;
1056 char shift[100];
1057
1058 for (i = 0;((i < depth) && (i < 25));i++)
1059 shift[2 * i] = shift[2 * i + 1] = ' ';
1060 shift[2 * i] = shift[2 * i + 1] = 0;
1061
1062 fprintf(output, shift);
1063
1064 if (comp == NULL) {
1065 fprintf(output, "Compiled Expression is NULL\n");
1066 return;
1067 }
1068 fprintf(output, "Compiled Expression : %d elements\n",
1069 comp->nbStep);
1070 i = comp->last;
1071 xmlXPathDebugDumpStepOp(output, comp, &comp->steps[i], depth + 1);
1072}
Daniel Veillard017b1082001-06-21 11:20:21 +00001073#endif /* LIBXML_DEBUG_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001074
1075/************************************************************************
1076 * *
1077 * Parser stacks related functions and macros *
1078 * *
1079 ************************************************************************/
1080
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001081/**
1082 * valuePop:
1083 * @ctxt: an XPath evaluation context
1084 *
1085 * Pops the top XPath object from the value stack
1086 *
1087 * Returns the XPath object just removed
1088 */
Daniel Veillard1c732d22002-11-30 11:22:59 +00001089extern xmlXPathObjectPtr
1090valuePop(xmlXPathParserContextPtr ctxt)
1091{
1092 xmlXPathObjectPtr ret;
1093
1094 if (ctxt->valueNr <= 0)
1095 return (0);
1096 ctxt->valueNr--;
1097 if (ctxt->valueNr > 0)
1098 ctxt->value = ctxt->valueTab[ctxt->valueNr - 1];
1099 else
1100 ctxt->value = NULL;
1101 ret = ctxt->valueTab[ctxt->valueNr];
1102 ctxt->valueTab[ctxt->valueNr] = 0;
1103 return (ret);
1104}
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001105/**
1106 * valuePush:
1107 * @ctxt: an XPath evaluation context
1108 * @value: the XPath object
1109 *
1110 * Pushes a new XPath object on top of the value stack
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001111 *
1112 * returns the number of items on the value stack
Daniel Veillard5e2dace2001-07-18 19:30:27 +00001113 */
Daniel Veillard1c732d22002-11-30 11:22:59 +00001114extern int
1115valuePush(xmlXPathParserContextPtr ctxt, xmlXPathObjectPtr value)
1116{
1117 if (ctxt->valueNr >= ctxt->valueMax) {
1118 ctxt->valueMax *= 2;
1119 ctxt->valueTab =
1120 (xmlXPathObjectPtr *) xmlRealloc(ctxt->valueTab,
1121 ctxt->valueMax *
1122 sizeof(ctxt->valueTab[0]));
1123 if (ctxt->valueTab == NULL) {
1124 xmlGenericError(xmlGenericErrorContext, "realloc failed !\n");
1125 return (0);
1126 }
1127 }
1128 ctxt->valueTab[ctxt->valueNr] = value;
1129 ctxt->value = value;
1130 return (ctxt->valueNr++);
1131}
Owen Taylor3473f882001-02-23 17:55:21 +00001132
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001133/**
1134 * xmlXPathPopBoolean:
1135 * @ctxt: an XPath parser context
1136 *
1137 * Pops a boolean from the stack, handling conversion if needed.
1138 * Check error with #xmlXPathCheckError.
1139 *
1140 * Returns the boolean
1141 */
1142int
1143xmlXPathPopBoolean (xmlXPathParserContextPtr ctxt) {
1144 xmlXPathObjectPtr obj;
1145 int ret;
1146
1147 obj = valuePop(ctxt);
1148 if (obj == NULL) {
1149 xmlXPathSetError(ctxt, XPATH_INVALID_OPERAND);
1150 return(0);
1151 }
William M. Brack08171912003-12-29 02:52:11 +00001152 if (obj->type != XPATH_BOOLEAN)
1153 ret = xmlXPathCastToBoolean(obj);
1154 else
1155 ret = obj->boolval;
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001156 xmlXPathFreeObject(obj);
1157 return(ret);
1158}
1159
1160/**
1161 * xmlXPathPopNumber:
1162 * @ctxt: an XPath parser context
1163 *
1164 * Pops a number from the stack, handling conversion if needed.
1165 * Check error with #xmlXPathCheckError.
1166 *
1167 * Returns the number
1168 */
1169double
1170xmlXPathPopNumber (xmlXPathParserContextPtr ctxt) {
1171 xmlXPathObjectPtr obj;
1172 double ret;
1173
1174 obj = valuePop(ctxt);
1175 if (obj == NULL) {
1176 xmlXPathSetError(ctxt, XPATH_INVALID_OPERAND);
1177 return(0);
1178 }
William M. Brack08171912003-12-29 02:52:11 +00001179 if (obj->type != XPATH_NUMBER)
1180 ret = xmlXPathCastToNumber(obj);
1181 else
1182 ret = obj->floatval;
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001183 xmlXPathFreeObject(obj);
1184 return(ret);
1185}
1186
1187/**
1188 * xmlXPathPopString:
1189 * @ctxt: an XPath parser context
1190 *
1191 * Pops a string from the stack, handling conversion if needed.
1192 * Check error with #xmlXPathCheckError.
1193 *
1194 * Returns the string
1195 */
1196xmlChar *
1197xmlXPathPopString (xmlXPathParserContextPtr ctxt) {
1198 xmlXPathObjectPtr obj;
1199 xmlChar * ret;
1200
1201 obj = valuePop(ctxt);
1202 if (obj == NULL) {
1203 xmlXPathSetError(ctxt, XPATH_INVALID_OPERAND);
1204 return(NULL);
1205 }
William M. Brack08171912003-12-29 02:52:11 +00001206 ret = xmlXPathCastToString(obj); /* this does required strdup */
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001207 /* TODO: needs refactoring somewhere else */
1208 if (obj->stringval == ret)
1209 obj->stringval = NULL;
1210 xmlXPathFreeObject(obj);
1211 return(ret);
1212}
1213
1214/**
1215 * xmlXPathPopNodeSet:
1216 * @ctxt: an XPath parser context
1217 *
1218 * Pops a node-set from the stack, handling conversion if needed.
1219 * Check error with #xmlXPathCheckError.
1220 *
1221 * Returns the node-set
1222 */
1223xmlNodeSetPtr
1224xmlXPathPopNodeSet (xmlXPathParserContextPtr ctxt) {
1225 xmlXPathObjectPtr obj;
1226 xmlNodeSetPtr ret;
1227
1228 if (ctxt->value == NULL) {
1229 xmlXPathSetError(ctxt, XPATH_INVALID_OPERAND);
1230 return(NULL);
1231 }
1232 if (!xmlXPathStackIsNodeSet(ctxt)) {
1233 xmlXPathSetTypeError(ctxt);
1234 return(NULL);
1235 }
1236 obj = valuePop(ctxt);
1237 ret = obj->nodesetval;
Daniel Veillard9deb2422003-07-28 20:40:59 +00001238 /* to fix memory leak of not clearing obj->user */
1239 if (obj->boolval && obj->user != NULL)
1240 xmlFreeNodeList((xmlNodePtr) obj->user);
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001241 xmlXPathFreeNodeSetList(obj);
1242 return(ret);
1243}
1244
1245/**
1246 * xmlXPathPopExternal:
1247 * @ctxt: an XPath parser context
1248 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001249 * Pops an external object from the stack, handling conversion if needed.
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001250 * Check error with #xmlXPathCheckError.
1251 *
1252 * Returns the object
1253 */
1254void *
1255xmlXPathPopExternal (xmlXPathParserContextPtr ctxt) {
1256 xmlXPathObjectPtr obj;
1257 void * ret;
1258
1259 if (ctxt->value == NULL) {
1260 xmlXPathSetError(ctxt, XPATH_INVALID_OPERAND);
1261 return(NULL);
1262 }
1263 if (ctxt->value->type != XPATH_USERS) {
1264 xmlXPathSetTypeError(ctxt);
1265 return(NULL);
1266 }
1267 obj = valuePop(ctxt);
1268 ret = obj->user;
1269 xmlXPathFreeObject(obj);
1270 return(ret);
1271}
1272
Owen Taylor3473f882001-02-23 17:55:21 +00001273/*
1274 * Macros for accessing the content. Those should be used only by the parser,
1275 * and not exported.
1276 *
1277 * Dirty macros, i.e. one need to make assumption on the context to use them
1278 *
1279 * CUR_PTR return the current pointer to the xmlChar to be parsed.
1280 * CUR returns the current xmlChar value, i.e. a 8 bit value
1281 * in ISO-Latin or UTF-8.
1282 * This should be used internally by the parser
1283 * only to compare to ASCII values otherwise it would break when
1284 * running with UTF-8 encoding.
1285 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
1286 * to compare on ASCII based substring.
1287 * SKIP(n) Skip n xmlChar, and must also be used only to skip ASCII defined
1288 * strings within the parser.
1289 * CURRENT Returns the current char value, with the full decoding of
1290 * UTF-8 if we are using this mode. It returns an int.
1291 * NEXT Skip to the next character, this does the proper decoding
1292 * in UTF-8 mode. It also pop-up unfinished entities on the fly.
1293 * It returns the pointer to the current xmlChar.
1294 */
1295
1296#define CUR (*ctxt->cur)
1297#define SKIP(val) ctxt->cur += (val)
1298#define NXT(val) ctxt->cur[(val)]
1299#define CUR_PTR ctxt->cur
Daniel Veillard61d80a22001-04-27 17:13:01 +00001300#define CUR_CHAR(l) xmlXPathCurrentChar(ctxt, &l)
1301
1302#define COPY_BUF(l,b,i,v) \
1303 if (l == 1) b[i++] = (xmlChar) v; \
1304 else i += xmlCopyChar(l,&b[i],v)
1305
1306#define NEXTL(l) ctxt->cur += l
Owen Taylor3473f882001-02-23 17:55:21 +00001307
1308#define SKIP_BLANKS \
William M. Brack76e95df2003-10-18 16:20:14 +00001309 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
Owen Taylor3473f882001-02-23 17:55:21 +00001310
1311#define CURRENT (*ctxt->cur)
1312#define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
1313
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001314
1315#ifndef DBL_DIG
1316#define DBL_DIG 16
1317#endif
1318#ifndef DBL_EPSILON
1319#define DBL_EPSILON 1E-9
1320#endif
1321
1322#define UPPER_DOUBLE 1E9
1323#define LOWER_DOUBLE 1E-5
1324
1325#define INTEGER_DIGITS DBL_DIG
1326#define FRACTION_DIGITS (DBL_DIG + 1)
1327#define EXPONENT_DIGITS (3 + 2)
1328
1329/**
1330 * xmlXPathFormatNumber:
1331 * @number: number to format
1332 * @buffer: output buffer
1333 * @buffersize: size of output buffer
1334 *
1335 * Convert the number into a string representation.
1336 */
1337static void
1338xmlXPathFormatNumber(double number, char buffer[], int buffersize)
1339{
Daniel Veillardcda96922001-08-21 10:56:31 +00001340 switch (xmlXPathIsInf(number)) {
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001341 case 1:
Daniel Veillard5fc1f082002-03-27 09:05:40 +00001342 if (buffersize > (int)sizeof("Infinity"))
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001343 snprintf(buffer, buffersize, "Infinity");
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001344 break;
1345 case -1:
1346 if (buffersize > (int)sizeof("-Infinity"))
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001347 snprintf(buffer, buffersize, "-Infinity");
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001348 break;
1349 default:
Daniel Veillardcda96922001-08-21 10:56:31 +00001350 if (xmlXPathIsNaN(number)) {
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001351 if (buffersize > (int)sizeof("NaN"))
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001352 snprintf(buffer, buffersize, "NaN");
Daniel Veillardd30be4a2002-03-28 18:25:31 +00001353 } else if (number == 0 && xmlXPathGetSign(number) != 0) {
Aleksey Sanin49cc9752002-06-14 17:07:10 +00001354 snprintf(buffer, buffersize, "0");
Daniel Veillard28cac6b2002-03-19 11:25:30 +00001355 } else if (number == ((int) number)) {
1356 char work[30];
1357 char *ptr, *cur;
1358 int res, value = (int) number;
1359
1360 ptr = &buffer[0];
1361 if (value < 0) {
1362 *ptr++ = '-';
1363 value = -value;
1364 }
1365 if (value == 0) {
1366 *ptr++ = '0';
1367 } else {
1368 cur = &work[0];
1369 while (value != 0) {
1370 res = value % 10;
1371 value = value / 10;
1372 *cur++ = '0' + res;
1373 }
1374 cur--;
1375 while ((cur >= &work[0]) && (ptr - buffer < buffersize)) {
1376 *ptr++ = *cur--;
1377 }
1378 }
1379 if (ptr - buffer < buffersize) {
1380 *ptr = 0;
1381 } else if (buffersize > 0) {
1382 ptr--;
1383 *ptr = 0;
1384 }
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001385 } else {
Bjorn Reese70a9da52001-04-21 16:57:29 +00001386 /* 3 is sign, decimal point, and terminating zero */
1387 char work[DBL_DIG + EXPONENT_DIGITS + 3];
1388 int integer_place, fraction_place;
1389 char *ptr;
1390 char *after_fraction;
1391 double absolute_value;
1392 int size;
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001393
Bjorn Reese70a9da52001-04-21 16:57:29 +00001394 absolute_value = fabs(number);
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001395
Bjorn Reese70a9da52001-04-21 16:57:29 +00001396 /*
1397 * First choose format - scientific or regular floating point.
1398 * In either case, result is in work, and after_fraction points
1399 * just past the fractional part.
1400 */
1401 if ( ((absolute_value > UPPER_DOUBLE) ||
1402 (absolute_value < LOWER_DOUBLE)) &&
1403 (absolute_value != 0.0) ) {
1404 /* Use scientific notation */
1405 integer_place = DBL_DIG + EXPONENT_DIGITS + 1;
1406 fraction_place = DBL_DIG - 1;
1407 snprintf(work, sizeof(work),"%*.*e",
1408 integer_place, fraction_place, number);
1409 after_fraction = strchr(work + DBL_DIG, 'e');
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001410 }
Bjorn Reese70a9da52001-04-21 16:57:29 +00001411 else {
1412 /* Use regular notation */
Daniel Veillard56f06462001-06-24 21:34:03 +00001413 if (absolute_value > 0.0)
1414 integer_place = 1 + (int)log10(absolute_value);
1415 else
Daniel Veillarda3067d12001-06-24 21:39:39 +00001416 integer_place = 0;
Bjorn Reese70a9da52001-04-21 16:57:29 +00001417 fraction_place = (integer_place > 0)
1418 ? DBL_DIG - integer_place
1419 : DBL_DIG;
1420 size = snprintf(work, sizeof(work), "%0.*f",
1421 fraction_place, number);
1422 after_fraction = work + size;
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001423 }
1424
Bjorn Reese70a9da52001-04-21 16:57:29 +00001425 /* Remove fractional trailing zeroes */
1426 ptr = after_fraction;
1427 while (*(--ptr) == '0')
1428 ;
1429 if (*ptr != '.')
1430 ptr++;
Daniel Veillard5dd3c962003-09-12 15:32:16 +00001431 while ((*ptr++ = *after_fraction++) != 0);
Bjorn Reese70a9da52001-04-21 16:57:29 +00001432
1433 /* Finally copy result back to caller */
1434 size = strlen(work) + 1;
1435 if (size > buffersize) {
1436 work[buffersize - 1] = 0;
1437 size = buffersize;
1438 }
Daniel Veillard5dd3c962003-09-12 15:32:16 +00001439 memmove(buffer, work, size);
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001440 }
1441 break;
1442 }
1443}
1444
Owen Taylor3473f882001-02-23 17:55:21 +00001445
1446/************************************************************************
1447 * *
1448 * Routines to handle NodeSets *
1449 * *
1450 ************************************************************************/
1451
1452/**
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001453 * xmlXPathOrderDocElems:
1454 * @doc: an input document
1455 *
1456 * Call this routine to speed up XPath computation on static documents.
1457 * This stamps all the element nodes with the document order
1458 * Like for line information, the order is kept in the element->content
William M. Brack08171912003-12-29 02:52:11 +00001459 * field, the value stored is actually - the node number (starting at -1)
1460 * to be able to differentiate from line numbers.
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001461 *
William M. Brack08171912003-12-29 02:52:11 +00001462 * Returns the number of elements found in the document or -1 in case
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001463 * of error.
1464 */
1465long
1466xmlXPathOrderDocElems(xmlDocPtr doc) {
1467 long count = 0;
1468 xmlNodePtr cur;
1469
1470 if (doc == NULL)
1471 return(-1);
1472 cur = doc->children;
1473 while (cur != NULL) {
1474 if (cur->type == XML_ELEMENT_NODE) {
1475 cur->content = (void *) (-(++count));
1476 if (cur->children != NULL) {
1477 cur = cur->children;
1478 continue;
1479 }
1480 }
1481 if (cur->next != NULL) {
1482 cur = cur->next;
1483 continue;
1484 }
1485 do {
1486 cur = cur->parent;
1487 if (cur == NULL)
1488 break;
1489 if (cur == (xmlNodePtr) doc) {
1490 cur = NULL;
1491 break;
1492 }
1493 if (cur->next != NULL) {
1494 cur = cur->next;
1495 break;
1496 }
1497 } while (cur != NULL);
1498 }
1499 return(count);
1500}
1501
1502/**
Owen Taylor3473f882001-02-23 17:55:21 +00001503 * xmlXPathCmpNodes:
1504 * @node1: the first node
1505 * @node2: the second node
1506 *
1507 * Compare two nodes w.r.t document order
1508 *
1509 * Returns -2 in case of error 1 if first point < second point, 0 if
William M. Brack08171912003-12-29 02:52:11 +00001510 * it's the same node, -1 otherwise
Owen Taylor3473f882001-02-23 17:55:21 +00001511 */
1512int
1513xmlXPathCmpNodes(xmlNodePtr node1, xmlNodePtr node2) {
1514 int depth1, depth2;
Daniel Veillardedfd5882003-03-07 14:20:40 +00001515 int attr1 = 0, attr2 = 0;
William M. Bracke8d1bd92003-12-23 01:28:58 +00001516 xmlNodePtr attrNode1 = NULL, attrNode2 = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001517 xmlNodePtr cur, root;
1518
1519 if ((node1 == NULL) || (node2 == NULL))
1520 return(-2);
1521 /*
1522 * a couple of optimizations which will avoid computations in most cases
1523 */
Daniel Veillardedfd5882003-03-07 14:20:40 +00001524 if (node1->type == XML_ATTRIBUTE_NODE) {
1525 attr1 = 1;
William M. Bracke8d1bd92003-12-23 01:28:58 +00001526 attrNode1 = node1;
Daniel Veillardedfd5882003-03-07 14:20:40 +00001527 node1 = node1->parent;
1528 }
1529 if (node2->type == XML_ATTRIBUTE_NODE) {
1530 attr2 = 1;
William M. Bracke8d1bd92003-12-23 01:28:58 +00001531 attrNode2 = node2;
Daniel Veillardedfd5882003-03-07 14:20:40 +00001532 node2 = node2->parent;
1533 }
1534 if (node1 == node2) {
William M. Bracke8d1bd92003-12-23 01:28:58 +00001535 if (attr1 == attr2) {
1536 /* not required, but we keep attributes in order */
1537 if (attr1 != 0) {
1538 cur = attrNode2->prev;
1539 while (cur != NULL) {
1540 if (cur == attrNode1)
1541 return (1);
1542 cur = cur->prev;
1543 }
1544 return (-1);
1545 }
Daniel Veillardedfd5882003-03-07 14:20:40 +00001546 return(0);
William M. Bracke8d1bd92003-12-23 01:28:58 +00001547 }
Daniel Veillardedfd5882003-03-07 14:20:40 +00001548 if (attr2 == 1)
1549 return(1);
1550 return(-1);
1551 }
Daniel Veillardb33c2012001-04-25 12:59:04 +00001552 if ((node1->type == XML_NAMESPACE_DECL) ||
1553 (node2->type == XML_NAMESPACE_DECL))
1554 return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00001555 if (node1 == node2->prev)
1556 return(1);
1557 if (node1 == node2->next)
1558 return(-1);
1559
1560 /*
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001561 * Speedup using document order if availble.
Daniel Veillard7216cfd2002-11-08 15:10:00 +00001562 */
1563 if ((node1->type == XML_ELEMENT_NODE) &&
1564 (node2->type == XML_ELEMENT_NODE) &&
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001565 (0 > (long) node1->content) &&
1566 (0 > (long) node2->content) &&
1567 (node1->doc == node2->doc)) {
1568 long l1, l2;
1569
1570 l1 = -((long) node1->content);
1571 l2 = -((long) node2->content);
Daniel Veillard7216cfd2002-11-08 15:10:00 +00001572 if (l1 < l2)
1573 return(1);
1574 if (l1 > l2)
1575 return(-1);
1576 }
Daniel Veillarde4fa2932003-03-26 00:38:10 +00001577
Daniel Veillard7216cfd2002-11-08 15:10:00 +00001578 /*
Owen Taylor3473f882001-02-23 17:55:21 +00001579 * compute depth to root
1580 */
1581 for (depth2 = 0, cur = node2;cur->parent != NULL;cur = cur->parent) {
1582 if (cur == node1)
1583 return(1);
1584 depth2++;
1585 }
1586 root = cur;
1587 for (depth1 = 0, cur = node1;cur->parent != NULL;cur = cur->parent) {
1588 if (cur == node2)
1589 return(-1);
1590 depth1++;
1591 }
1592 /*
1593 * Distinct document (or distinct entities :-( ) case.
1594 */
1595 if (root != cur) {
1596 return(-2);
1597 }
1598 /*
1599 * get the nearest common ancestor.
1600 */
1601 while (depth1 > depth2) {
1602 depth1--;
1603 node1 = node1->parent;
1604 }
1605 while (depth2 > depth1) {
1606 depth2--;
1607 node2 = node2->parent;
1608 }
1609 while (node1->parent != node2->parent) {
1610 node1 = node1->parent;
1611 node2 = node2->parent;
1612 /* should not happen but just in case ... */
1613 if ((node1 == NULL) || (node2 == NULL))
1614 return(-2);
1615 }
1616 /*
1617 * Find who's first.
1618 */
Daniel Veillardf49be472004-02-17 11:48:18 +00001619 if (node1 == node2->prev)
1620 return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00001621 if (node1 == node2->next)
1622 return(-1);
Daniel Veillardf49be472004-02-17 11:48:18 +00001623 /*
1624 * Speedup using document order if availble.
1625 */
1626 if ((node1->type == XML_ELEMENT_NODE) &&
1627 (node2->type == XML_ELEMENT_NODE) &&
1628 (0 > (long) node1->content) &&
1629 (0 > (long) node2->content) &&
1630 (node1->doc == node2->doc)) {
1631 long l1, l2;
1632
1633 l1 = -((long) node1->content);
1634 l2 = -((long) node2->content);
1635 if (l1 < l2)
1636 return(1);
1637 if (l1 > l2)
1638 return(-1);
1639 }
1640
Owen Taylor3473f882001-02-23 17:55:21 +00001641 for (cur = node1->next;cur != NULL;cur = cur->next)
1642 if (cur == node2)
1643 return(1);
1644 return(-1); /* assume there is no sibling list corruption */
1645}
1646
1647/**
1648 * xmlXPathNodeSetSort:
1649 * @set: the node set
1650 *
1651 * Sort the node set in document order
1652 */
1653void
1654xmlXPathNodeSetSort(xmlNodeSetPtr set) {
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001655 int i, j, incr, len;
Owen Taylor3473f882001-02-23 17:55:21 +00001656 xmlNodePtr tmp;
1657
1658 if (set == NULL)
1659 return;
1660
1661 /* Use Shell's sort to sort the node-set */
1662 len = set->nodeNr;
1663 for (incr = len / 2; incr > 0; incr /= 2) {
1664 for (i = incr; i < len; i++) {
1665 j = i - incr;
1666 while (j >= 0) {
Bjorn Reesee1dc0112001-03-03 12:09:03 +00001667 if (xmlXPathCmpNodes(set->nodeTab[j],
1668 set->nodeTab[j + incr]) == -1) {
Owen Taylor3473f882001-02-23 17:55:21 +00001669 tmp = set->nodeTab[j];
1670 set->nodeTab[j] = set->nodeTab[j + incr];
1671 set->nodeTab[j + incr] = tmp;
1672 j -= incr;
1673 } else
1674 break;
1675 }
1676 }
1677 }
1678}
1679
1680#define XML_NODESET_DEFAULT 10
1681/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001682 * xmlXPathNodeSetDupNs:
1683 * @node: the parent node of the namespace XPath node
1684 * @ns: the libxml namespace declaration node.
1685 *
1686 * Namespace node in libxml don't match the XPath semantic. In a node set
1687 * the namespace nodes are duplicated and the next pointer is set to the
1688 * parent node in the XPath semantic.
1689 *
1690 * Returns the newly created object.
1691 */
1692static xmlNodePtr
1693xmlXPathNodeSetDupNs(xmlNodePtr node, xmlNsPtr ns) {
1694 xmlNsPtr cur;
1695
1696 if ((ns == NULL) || (ns->type != XML_NAMESPACE_DECL))
1697 return(NULL);
1698 if ((node == NULL) || (node->type == XML_NAMESPACE_DECL))
1699 return((xmlNodePtr) ns);
1700
1701 /*
1702 * Allocate a new Namespace and fill the fields.
1703 */
1704 cur = (xmlNsPtr) xmlMalloc(sizeof(xmlNs));
1705 if (cur == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001706 xmlXPathErrMemory(NULL, "duplicating namespace\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001707 return(NULL);
1708 }
1709 memset(cur, 0, sizeof(xmlNs));
1710 cur->type = XML_NAMESPACE_DECL;
1711 if (ns->href != NULL)
1712 cur->href = xmlStrdup(ns->href);
1713 if (ns->prefix != NULL)
1714 cur->prefix = xmlStrdup(ns->prefix);
1715 cur->next = (xmlNsPtr) node;
1716 return((xmlNodePtr) cur);
1717}
1718
1719/**
1720 * xmlXPathNodeSetFreeNs:
1721 * @ns: the XPath namespace node found in a nodeset.
1722 *
William M. Brack08171912003-12-29 02:52:11 +00001723 * Namespace nodes in libxml don't match the XPath semantic. In a node set
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001724 * the namespace nodes are duplicated and the next pointer is set to the
William M. Brack08171912003-12-29 02:52:11 +00001725 * parent node in the XPath semantic. Check if such a node needs to be freed
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001726 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001727void
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001728xmlXPathNodeSetFreeNs(xmlNsPtr ns) {
1729 if ((ns == NULL) || (ns->type != XML_NAMESPACE_DECL))
1730 return;
1731
1732 if ((ns->next != NULL) && (ns->next->type != XML_NAMESPACE_DECL)) {
1733 if (ns->href != NULL)
1734 xmlFree((xmlChar *)ns->href);
1735 if (ns->prefix != NULL)
1736 xmlFree((xmlChar *)ns->prefix);
1737 xmlFree(ns);
1738 }
1739}
1740
1741/**
Owen Taylor3473f882001-02-23 17:55:21 +00001742 * xmlXPathNodeSetCreate:
1743 * @val: an initial xmlNodePtr, or NULL
1744 *
1745 * Create a new xmlNodeSetPtr of type double and of value @val
1746 *
1747 * Returns the newly created object.
1748 */
1749xmlNodeSetPtr
1750xmlXPathNodeSetCreate(xmlNodePtr val) {
1751 xmlNodeSetPtr ret;
1752
1753 ret = (xmlNodeSetPtr) xmlMalloc(sizeof(xmlNodeSet));
1754 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001755 xmlXPathErrMemory(NULL, "creating nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001756 return(NULL);
1757 }
1758 memset(ret, 0 , (size_t) sizeof(xmlNodeSet));
1759 if (val != NULL) {
1760 ret->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
1761 sizeof(xmlNodePtr));
1762 if (ret->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001763 xmlXPathErrMemory(NULL, "creating nodeset\n");
1764 xmlFree(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00001765 return(NULL);
1766 }
1767 memset(ret->nodeTab, 0 ,
1768 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
1769 ret->nodeMax = XML_NODESET_DEFAULT;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001770 if (val->type == XML_NAMESPACE_DECL) {
1771 xmlNsPtr ns = (xmlNsPtr) val;
1772
1773 ret->nodeTab[ret->nodeNr++] =
1774 xmlXPathNodeSetDupNs((xmlNodePtr) ns->next, ns);
1775 } else
1776 ret->nodeTab[ret->nodeNr++] = val;
Owen Taylor3473f882001-02-23 17:55:21 +00001777 }
1778 return(ret);
1779}
1780
1781/**
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001782 * xmlXPathNodeSetContains:
1783 * @cur: the node-set
1784 * @val: the node
1785 *
1786 * checks whether @cur contains @val
1787 *
1788 * Returns true (1) if @cur contains @val, false (0) otherwise
1789 */
1790int
1791xmlXPathNodeSetContains (xmlNodeSetPtr cur, xmlNodePtr val) {
1792 int i;
1793
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001794 if (val->type == XML_NAMESPACE_DECL) {
1795 for (i = 0; i < cur->nodeNr; i++) {
1796 if (cur->nodeTab[i]->type == XML_NAMESPACE_DECL) {
1797 xmlNsPtr ns1, ns2;
1798
1799 ns1 = (xmlNsPtr) val;
1800 ns2 = (xmlNsPtr) cur->nodeTab[i];
1801 if (ns1 == ns2)
1802 return(1);
1803 if ((ns1->next != NULL) && (ns2->next == ns1->next) &&
1804 (xmlStrEqual(ns1->prefix, ns2->prefix)))
1805 return(1);
1806 }
1807 }
1808 } else {
1809 for (i = 0; i < cur->nodeNr; i++) {
1810 if (cur->nodeTab[i] == val)
1811 return(1);
1812 }
Thomas Broyerf06a3d82001-07-16 04:52:57 +00001813 }
1814 return(0);
1815}
1816
1817/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001818 * xmlXPathNodeSetAddNs:
1819 * @cur: the initial node set
1820 * @node: the hosting node
1821 * @ns: a the namespace node
1822 *
1823 * add a new namespace node to an existing NodeSet
1824 */
Aleksey Sanin79376ba2002-05-14 06:41:32 +00001825void
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001826xmlXPathNodeSetAddNs(xmlNodeSetPtr cur, xmlNodePtr node, xmlNsPtr ns) {
1827 int i;
1828
1829 if ((ns == NULL) || (node == NULL) || (ns->type != XML_NAMESPACE_DECL) ||
1830 (node->type != XML_ELEMENT_NODE))
1831 return;
1832
William M. Brack08171912003-12-29 02:52:11 +00001833 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001834 /*
William M. Brack08171912003-12-29 02:52:11 +00001835 * prevent duplicates
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001836 */
1837 for (i = 0;i < cur->nodeNr;i++) {
1838 if ((cur->nodeTab[i] != NULL) &&
1839 (cur->nodeTab[i]->type == XML_NAMESPACE_DECL) &&
Daniel Veillardc62a1472002-03-19 18:35:12 +00001840 (((xmlNsPtr)cur->nodeTab[i])->next == (xmlNsPtr) node) &&
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001841 (xmlStrEqual(ns->prefix, ((xmlNsPtr)cur->nodeTab[i])->prefix)))
1842 return;
1843 }
1844
1845 /*
1846 * grow the nodeTab if needed
1847 */
1848 if (cur->nodeMax == 0) {
1849 cur->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
1850 sizeof(xmlNodePtr));
1851 if (cur->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001852 xmlXPathErrMemory(NULL, "growing nodeset\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001853 return;
1854 }
1855 memset(cur->nodeTab, 0 ,
1856 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
1857 cur->nodeMax = XML_NODESET_DEFAULT;
1858 } else if (cur->nodeNr == cur->nodeMax) {
1859 xmlNodePtr *temp;
1860
1861 cur->nodeMax *= 2;
1862 temp = (xmlNodePtr *) xmlRealloc(cur->nodeTab, cur->nodeMax *
1863 sizeof(xmlNodePtr));
1864 if (temp == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001865 xmlXPathErrMemory(NULL, "growing nodeset\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001866 return;
1867 }
1868 cur->nodeTab = temp;
1869 }
1870 cur->nodeTab[cur->nodeNr++] = xmlXPathNodeSetDupNs(node, ns);
1871}
1872
1873/**
Owen Taylor3473f882001-02-23 17:55:21 +00001874 * xmlXPathNodeSetAdd:
1875 * @cur: the initial node set
1876 * @val: a new xmlNodePtr
1877 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001878 * add a new xmlNodePtr to an existing NodeSet
Owen Taylor3473f882001-02-23 17:55:21 +00001879 */
1880void
1881xmlXPathNodeSetAdd(xmlNodeSetPtr cur, xmlNodePtr val) {
1882 int i;
1883
1884 if (val == NULL) return;
1885
Daniel Veillardef0b4502003-03-24 13:57:34 +00001886#if 0
Daniel Veillard652d8a92003-02-04 19:28:49 +00001887 if ((val->type == XML_ELEMENT_NODE) && (val->name[0] == ' '))
1888 return; /* an XSLT fake node */
Daniel Veillardef0b4502003-03-24 13:57:34 +00001889#endif
Daniel Veillard652d8a92003-02-04 19:28:49 +00001890
William M. Brack08171912003-12-29 02:52:11 +00001891 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Owen Taylor3473f882001-02-23 17:55:21 +00001892 /*
William M. Brack08171912003-12-29 02:52:11 +00001893 * prevent duplcates
Owen Taylor3473f882001-02-23 17:55:21 +00001894 */
1895 for (i = 0;i < cur->nodeNr;i++)
1896 if (cur->nodeTab[i] == val) return;
1897
1898 /*
1899 * grow the nodeTab if needed
1900 */
1901 if (cur->nodeMax == 0) {
1902 cur->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
1903 sizeof(xmlNodePtr));
1904 if (cur->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001905 xmlXPathErrMemory(NULL, "growing nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001906 return;
1907 }
1908 memset(cur->nodeTab, 0 ,
1909 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
1910 cur->nodeMax = XML_NODESET_DEFAULT;
1911 } else if (cur->nodeNr == cur->nodeMax) {
1912 xmlNodePtr *temp;
1913
1914 cur->nodeMax *= 2;
1915 temp = (xmlNodePtr *) xmlRealloc(cur->nodeTab, cur->nodeMax *
1916 sizeof(xmlNodePtr));
1917 if (temp == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001918 xmlXPathErrMemory(NULL, "growing nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001919 return;
1920 }
1921 cur->nodeTab = temp;
1922 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001923 if (val->type == XML_NAMESPACE_DECL) {
1924 xmlNsPtr ns = (xmlNsPtr) val;
1925
1926 cur->nodeTab[cur->nodeNr++] =
1927 xmlXPathNodeSetDupNs((xmlNodePtr) ns->next, ns);
1928 } else
1929 cur->nodeTab[cur->nodeNr++] = val;
Owen Taylor3473f882001-02-23 17:55:21 +00001930}
1931
1932/**
1933 * xmlXPathNodeSetAddUnique:
1934 * @cur: the initial node set
1935 * @val: a new xmlNodePtr
1936 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001937 * add a new xmlNodePtr to an existing NodeSet, optimized version
Owen Taylor3473f882001-02-23 17:55:21 +00001938 * when we are sure the node is not already in the set.
1939 */
1940void
1941xmlXPathNodeSetAddUnique(xmlNodeSetPtr cur, xmlNodePtr val) {
1942 if (val == NULL) return;
1943
Daniel Veillardef0b4502003-03-24 13:57:34 +00001944#if 0
Daniel Veillard652d8a92003-02-04 19:28:49 +00001945 if ((val->type == XML_ELEMENT_NODE) && (val->name[0] == ' '))
1946 return; /* an XSLT fake node */
Daniel Veillardef0b4502003-03-24 13:57:34 +00001947#endif
Daniel Veillard652d8a92003-02-04 19:28:49 +00001948
William M. Brack08171912003-12-29 02:52:11 +00001949 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Owen Taylor3473f882001-02-23 17:55:21 +00001950 /*
1951 * grow the nodeTab if needed
1952 */
1953 if (cur->nodeMax == 0) {
1954 cur->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
1955 sizeof(xmlNodePtr));
1956 if (cur->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001957 xmlXPathErrMemory(NULL, "growing nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001958 return;
1959 }
1960 memset(cur->nodeTab, 0 ,
1961 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
1962 cur->nodeMax = XML_NODESET_DEFAULT;
1963 } else if (cur->nodeNr == cur->nodeMax) {
1964 xmlNodePtr *temp;
1965
1966 cur->nodeMax *= 2;
1967 temp = (xmlNodePtr *) xmlRealloc(cur->nodeTab, cur->nodeMax *
1968 sizeof(xmlNodePtr));
1969 if (temp == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00001970 xmlXPathErrMemory(NULL, "growing nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00001971 return;
1972 }
1973 cur->nodeTab = temp;
1974 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001975 if (val->type == XML_NAMESPACE_DECL) {
1976 xmlNsPtr ns = (xmlNsPtr) val;
1977
1978 cur->nodeTab[cur->nodeNr++] =
1979 xmlXPathNodeSetDupNs((xmlNodePtr) ns->next, ns);
1980 } else
1981 cur->nodeTab[cur->nodeNr++] = val;
Owen Taylor3473f882001-02-23 17:55:21 +00001982}
1983
1984/**
1985 * xmlXPathNodeSetMerge:
1986 * @val1: the first NodeSet or NULL
1987 * @val2: the second NodeSet
1988 *
1989 * Merges two nodesets, all nodes from @val2 are added to @val1
1990 * if @val1 is NULL, a new set is created and copied from @val2
1991 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001992 * Returns @val1 once extended or NULL in case of error.
Owen Taylor3473f882001-02-23 17:55:21 +00001993 */
1994xmlNodeSetPtr
1995xmlXPathNodeSetMerge(xmlNodeSetPtr val1, xmlNodeSetPtr val2) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00001996 int i, j, initNr, skip;
Owen Taylor3473f882001-02-23 17:55:21 +00001997
1998 if (val2 == NULL) return(val1);
1999 if (val1 == NULL) {
2000 val1 = xmlXPathNodeSetCreate(NULL);
2001 }
2002
William M. Brack08171912003-12-29 02:52:11 +00002003 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Owen Taylor3473f882001-02-23 17:55:21 +00002004 initNr = val1->nodeNr;
2005
2006 for (i = 0;i < val2->nodeNr;i++) {
2007 /*
William M. Brack08171912003-12-29 02:52:11 +00002008 * check against duplicates
Owen Taylor3473f882001-02-23 17:55:21 +00002009 */
Daniel Veillardd8df6c02001-04-05 16:54:14 +00002010 skip = 0;
2011 for (j = 0; j < initNr; j++) {
2012 if (val1->nodeTab[j] == val2->nodeTab[i]) {
2013 skip = 1;
2014 break;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002015 } else if ((val1->nodeTab[j]->type == XML_NAMESPACE_DECL) &&
2016 (val2->nodeTab[i]->type == XML_NAMESPACE_DECL)) {
2017 xmlNsPtr ns1, ns2;
2018 ns1 = (xmlNsPtr) val1->nodeTab[j];
2019 ns2 = (xmlNsPtr) val2->nodeTab[i];
2020 if ((ns1->next == ns2->next) &&
2021 (xmlStrEqual(ns1->prefix, ns2->prefix))) {
2022 skip = 1;
2023 break;
2024 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00002025 }
2026 }
2027 if (skip)
2028 continue;
Owen Taylor3473f882001-02-23 17:55:21 +00002029
2030 /*
2031 * grow the nodeTab if needed
2032 */
2033 if (val1->nodeMax == 0) {
2034 val1->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
2035 sizeof(xmlNodePtr));
2036 if (val1->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002037 xmlXPathErrMemory(NULL, "merging nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00002038 return(NULL);
2039 }
2040 memset(val1->nodeTab, 0 ,
2041 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
2042 val1->nodeMax = XML_NODESET_DEFAULT;
2043 } else if (val1->nodeNr == val1->nodeMax) {
2044 xmlNodePtr *temp;
2045
2046 val1->nodeMax *= 2;
2047 temp = (xmlNodePtr *) xmlRealloc(val1->nodeTab, val1->nodeMax *
2048 sizeof(xmlNodePtr));
2049 if (temp == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002050 xmlXPathErrMemory(NULL, "merging nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00002051 return(NULL);
2052 }
2053 val1->nodeTab = temp;
2054 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002055 if (val2->nodeTab[i]->type == XML_NAMESPACE_DECL) {
2056 xmlNsPtr ns = (xmlNsPtr) val2->nodeTab[i];
2057
2058 val1->nodeTab[val1->nodeNr++] =
2059 xmlXPathNodeSetDupNs((xmlNodePtr) ns->next, ns);
2060 } else
2061 val1->nodeTab[val1->nodeNr++] = val2->nodeTab[i];
Owen Taylor3473f882001-02-23 17:55:21 +00002062 }
2063
2064 return(val1);
2065}
2066
2067/**
Daniel Veillard75be0132002-03-13 10:03:35 +00002068 * xmlXPathNodeSetMergeUnique:
2069 * @val1: the first NodeSet or NULL
2070 * @val2: the second NodeSet
2071 *
2072 * Merges two nodesets, all nodes from @val2 are added to @val1
2073 * if @val1 is NULL, a new set is created and copied from @val2
2074 *
2075 * Returns @val1 once extended or NULL in case of error.
2076 */
2077static xmlNodeSetPtr
2078xmlXPathNodeSetMergeUnique(xmlNodeSetPtr val1, xmlNodeSetPtr val2) {
William M. Brack78637da2003-07-31 14:47:38 +00002079 int i;
Daniel Veillard75be0132002-03-13 10:03:35 +00002080
2081 if (val2 == NULL) return(val1);
2082 if (val1 == NULL) {
2083 val1 = xmlXPathNodeSetCreate(NULL);
2084 }
2085
William M. Brack08171912003-12-29 02:52:11 +00002086 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Daniel Veillard75be0132002-03-13 10:03:35 +00002087
2088 for (i = 0;i < val2->nodeNr;i++) {
2089 /*
2090 * grow the nodeTab if needed
2091 */
2092 if (val1->nodeMax == 0) {
2093 val1->nodeTab = (xmlNodePtr *) xmlMalloc(XML_NODESET_DEFAULT *
2094 sizeof(xmlNodePtr));
2095 if (val1->nodeTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002096 xmlXPathErrMemory(NULL, "merging nodeset\n");
Daniel Veillard75be0132002-03-13 10:03:35 +00002097 return(NULL);
2098 }
2099 memset(val1->nodeTab, 0 ,
2100 XML_NODESET_DEFAULT * (size_t) sizeof(xmlNodePtr));
2101 val1->nodeMax = XML_NODESET_DEFAULT;
2102 } else if (val1->nodeNr == val1->nodeMax) {
2103 xmlNodePtr *temp;
2104
2105 val1->nodeMax *= 2;
2106 temp = (xmlNodePtr *) xmlRealloc(val1->nodeTab, val1->nodeMax *
2107 sizeof(xmlNodePtr));
2108 if (temp == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002109 xmlXPathErrMemory(NULL, "merging nodeset\n");
Daniel Veillard75be0132002-03-13 10:03:35 +00002110 return(NULL);
2111 }
2112 val1->nodeTab = temp;
2113 }
2114 if (val2->nodeTab[i]->type == XML_NAMESPACE_DECL) {
2115 xmlNsPtr ns = (xmlNsPtr) val2->nodeTab[i];
2116
2117 val1->nodeTab[val1->nodeNr++] =
2118 xmlXPathNodeSetDupNs((xmlNodePtr) ns->next, ns);
2119 } else
2120 val1->nodeTab[val1->nodeNr++] = val2->nodeTab[i];
2121 }
2122
2123 return(val1);
2124}
2125
2126/**
Owen Taylor3473f882001-02-23 17:55:21 +00002127 * xmlXPathNodeSetDel:
2128 * @cur: the initial node set
2129 * @val: an xmlNodePtr
2130 *
2131 * Removes an xmlNodePtr from an existing NodeSet
2132 */
2133void
2134xmlXPathNodeSetDel(xmlNodeSetPtr cur, xmlNodePtr val) {
2135 int i;
2136
2137 if (cur == NULL) return;
2138 if (val == NULL) return;
2139
2140 /*
William M. Brack08171912003-12-29 02:52:11 +00002141 * find node in nodeTab
Owen Taylor3473f882001-02-23 17:55:21 +00002142 */
2143 for (i = 0;i < cur->nodeNr;i++)
2144 if (cur->nodeTab[i] == val) break;
2145
William M. Brack08171912003-12-29 02:52:11 +00002146 if (i >= cur->nodeNr) { /* not found */
Owen Taylor3473f882001-02-23 17:55:21 +00002147#ifdef DEBUG
2148 xmlGenericError(xmlGenericErrorContext,
2149 "xmlXPathNodeSetDel: Node %s wasn't found in NodeList\n",
2150 val->name);
2151#endif
2152 return;
2153 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002154 if ((cur->nodeTab[i] != NULL) &&
2155 (cur->nodeTab[i]->type == XML_NAMESPACE_DECL))
2156 xmlXPathNodeSetFreeNs((xmlNsPtr) cur->nodeTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +00002157 cur->nodeNr--;
2158 for (;i < cur->nodeNr;i++)
2159 cur->nodeTab[i] = cur->nodeTab[i + 1];
2160 cur->nodeTab[cur->nodeNr] = NULL;
2161}
2162
2163/**
2164 * xmlXPathNodeSetRemove:
2165 * @cur: the initial node set
2166 * @val: the index to remove
2167 *
2168 * Removes an entry from an existing NodeSet list.
2169 */
2170void
2171xmlXPathNodeSetRemove(xmlNodeSetPtr cur, int val) {
2172 if (cur == NULL) return;
2173 if (val >= cur->nodeNr) return;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002174 if ((cur->nodeTab[val] != NULL) &&
2175 (cur->nodeTab[val]->type == XML_NAMESPACE_DECL))
2176 xmlXPathNodeSetFreeNs((xmlNsPtr) cur->nodeTab[val]);
Owen Taylor3473f882001-02-23 17:55:21 +00002177 cur->nodeNr--;
2178 for (;val < cur->nodeNr;val++)
2179 cur->nodeTab[val] = cur->nodeTab[val + 1];
2180 cur->nodeTab[cur->nodeNr] = NULL;
2181}
2182
2183/**
2184 * xmlXPathFreeNodeSet:
2185 * @obj: the xmlNodeSetPtr to free
2186 *
2187 * Free the NodeSet compound (not the actual nodes !).
2188 */
2189void
2190xmlXPathFreeNodeSet(xmlNodeSetPtr obj) {
2191 if (obj == NULL) return;
2192 if (obj->nodeTab != NULL) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002193 int i;
2194
William M. Brack08171912003-12-29 02:52:11 +00002195 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002196 for (i = 0;i < obj->nodeNr;i++)
2197 if ((obj->nodeTab[i] != NULL) &&
2198 (obj->nodeTab[i]->type == XML_NAMESPACE_DECL))
2199 xmlXPathNodeSetFreeNs((xmlNsPtr) obj->nodeTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +00002200 xmlFree(obj->nodeTab);
2201 }
Owen Taylor3473f882001-02-23 17:55:21 +00002202 xmlFree(obj);
2203}
2204
2205/**
2206 * xmlXPathFreeValueTree:
2207 * @obj: the xmlNodeSetPtr to free
2208 *
2209 * Free the NodeSet compound and the actual tree, this is different
2210 * from xmlXPathFreeNodeSet()
2211 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002212static void
Owen Taylor3473f882001-02-23 17:55:21 +00002213xmlXPathFreeValueTree(xmlNodeSetPtr obj) {
2214 int i;
2215
2216 if (obj == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00002217
2218 if (obj->nodeTab != NULL) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002219 for (i = 0;i < obj->nodeNr;i++) {
2220 if (obj->nodeTab[i] != NULL) {
2221 if (obj->nodeTab[i]->type == XML_NAMESPACE_DECL) {
2222 xmlXPathNodeSetFreeNs((xmlNsPtr) obj->nodeTab[i]);
2223 } else {
2224 xmlFreeNodeList(obj->nodeTab[i]);
2225 }
2226 }
2227 }
Owen Taylor3473f882001-02-23 17:55:21 +00002228 xmlFree(obj->nodeTab);
2229 }
Owen Taylor3473f882001-02-23 17:55:21 +00002230 xmlFree(obj);
2231}
2232
2233#if defined(DEBUG) || defined(DEBUG_STEP)
2234/**
2235 * xmlGenericErrorContextNodeSet:
2236 * @output: a FILE * for the output
William M. Brack08171912003-12-29 02:52:11 +00002237 * @obj: the xmlNodeSetPtr to display
Owen Taylor3473f882001-02-23 17:55:21 +00002238 *
2239 * Quick display of a NodeSet
2240 */
2241void
2242xmlGenericErrorContextNodeSet(FILE *output, xmlNodeSetPtr obj) {
2243 int i;
2244
2245 if (output == NULL) output = xmlGenericErrorContext;
2246 if (obj == NULL) {
2247 fprintf(output, "NodeSet == NULL !\n");
2248 return;
2249 }
2250 if (obj->nodeNr == 0) {
2251 fprintf(output, "NodeSet is empty\n");
2252 return;
2253 }
2254 if (obj->nodeTab == NULL) {
2255 fprintf(output, " nodeTab == NULL !\n");
2256 return;
2257 }
2258 for (i = 0; i < obj->nodeNr; i++) {
2259 if (obj->nodeTab[i] == NULL) {
2260 fprintf(output, " NULL !\n");
2261 return;
2262 }
2263 if ((obj->nodeTab[i]->type == XML_DOCUMENT_NODE) ||
2264 (obj->nodeTab[i]->type == XML_HTML_DOCUMENT_NODE))
2265 fprintf(output, " /");
2266 else if (obj->nodeTab[i]->name == NULL)
2267 fprintf(output, " noname!");
2268 else fprintf(output, " %s", obj->nodeTab[i]->name);
2269 }
2270 fprintf(output, "\n");
2271}
2272#endif
2273
2274/**
2275 * xmlXPathNewNodeSet:
2276 * @val: the NodePtr value
2277 *
2278 * Create a new xmlXPathObjectPtr of type NodeSet and initialize
2279 * it with the single Node @val
2280 *
2281 * Returns the newly created object.
2282 */
2283xmlXPathObjectPtr
2284xmlXPathNewNodeSet(xmlNodePtr val) {
2285 xmlXPathObjectPtr ret;
2286
2287 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
2288 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002289 xmlXPathErrMemory(NULL, "creating nodeset\n");
Owen Taylor3473f882001-02-23 17:55:21 +00002290 return(NULL);
2291 }
2292 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
2293 ret->type = XPATH_NODESET;
Daniel Veillard77851712001-02-27 21:54:07 +00002294 ret->boolval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002295 ret->nodesetval = xmlXPathNodeSetCreate(val);
William M. Brack08171912003-12-29 02:52:11 +00002296 /* @@ with_ns to check whether namespace nodes should be looked at @@ */
Owen Taylor3473f882001-02-23 17:55:21 +00002297 return(ret);
2298}
2299
2300/**
2301 * xmlXPathNewValueTree:
2302 * @val: the NodePtr value
2303 *
2304 * Create a new xmlXPathObjectPtr of type Value Tree (XSLT) and initialize
2305 * it with the tree root @val
2306 *
2307 * Returns the newly created object.
2308 */
2309xmlXPathObjectPtr
2310xmlXPathNewValueTree(xmlNodePtr val) {
2311 xmlXPathObjectPtr ret;
2312
2313 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
2314 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002315 xmlXPathErrMemory(NULL, "creating result value tree\n");
Owen Taylor3473f882001-02-23 17:55:21 +00002316 return(NULL);
2317 }
2318 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
2319 ret->type = XPATH_XSLT_TREE;
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00002320 ret->boolval = 1;
2321 ret->user = (void *) val;
Owen Taylor3473f882001-02-23 17:55:21 +00002322 ret->nodesetval = xmlXPathNodeSetCreate(val);
2323 return(ret);
2324}
2325
2326/**
2327 * xmlXPathNewNodeSetList:
2328 * @val: an existing NodeSet
2329 *
2330 * Create a new xmlXPathObjectPtr of type NodeSet and initialize
2331 * it with the Nodeset @val
2332 *
2333 * Returns the newly created object.
2334 */
2335xmlXPathObjectPtr
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002336xmlXPathNewNodeSetList(xmlNodeSetPtr val)
2337{
Owen Taylor3473f882001-02-23 17:55:21 +00002338 xmlXPathObjectPtr ret;
2339 int i;
2340
2341 if (val == NULL)
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002342 ret = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002343 else if (val->nodeTab == NULL)
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002344 ret = xmlXPathNewNodeSet(NULL);
2345 else {
2346 ret = xmlXPathNewNodeSet(val->nodeTab[0]);
2347 for (i = 1; i < val->nodeNr; ++i)
2348 xmlXPathNodeSetAddUnique(ret->nodesetval, val->nodeTab[i]);
2349 }
Owen Taylor3473f882001-02-23 17:55:21 +00002350
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002351 return (ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002352}
2353
2354/**
2355 * xmlXPathWrapNodeSet:
2356 * @val: the NodePtr value
2357 *
2358 * Wrap the Nodeset @val in a new xmlXPathObjectPtr
2359 *
2360 * Returns the newly created object.
2361 */
2362xmlXPathObjectPtr
2363xmlXPathWrapNodeSet(xmlNodeSetPtr val) {
2364 xmlXPathObjectPtr ret;
2365
2366 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
2367 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00002368 xmlXPathErrMemory(NULL, "creating node set object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00002369 return(NULL);
2370 }
2371 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
2372 ret->type = XPATH_NODESET;
2373 ret->nodesetval = val;
2374 return(ret);
2375}
2376
2377/**
2378 * xmlXPathFreeNodeSetList:
2379 * @obj: an existing NodeSetList object
2380 *
2381 * Free up the xmlXPathObjectPtr @obj but don't deallocate the objects in
2382 * the list contrary to xmlXPathFreeObject().
2383 */
2384void
2385xmlXPathFreeNodeSetList(xmlXPathObjectPtr obj) {
2386 if (obj == NULL) return;
Owen Taylor3473f882001-02-23 17:55:21 +00002387 xmlFree(obj);
2388}
2389
Thomas Broyerf06a3d82001-07-16 04:52:57 +00002390/**
2391 * xmlXPathDifference:
2392 * @nodes1: a node-set
2393 * @nodes2: a node-set
2394 *
2395 * Implements the EXSLT - Sets difference() function:
2396 * node-set set:difference (node-set, node-set)
2397 *
2398 * Returns the difference between the two node sets, or nodes1 if
2399 * nodes2 is empty
2400 */
2401xmlNodeSetPtr
2402xmlXPathDifference (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2403 xmlNodeSetPtr ret;
2404 int i, l1;
2405 xmlNodePtr cur;
2406
2407 if (xmlXPathNodeSetIsEmpty(nodes2))
2408 return(nodes1);
2409
2410 ret = xmlXPathNodeSetCreate(NULL);
2411 if (xmlXPathNodeSetIsEmpty(nodes1))
2412 return(ret);
2413
2414 l1 = xmlXPathNodeSetGetLength(nodes1);
2415
2416 for (i = 0; i < l1; i++) {
2417 cur = xmlXPathNodeSetItem(nodes1, i);
2418 if (!xmlXPathNodeSetContains(nodes2, cur))
2419 xmlXPathNodeSetAddUnique(ret, cur);
2420 }
2421 return(ret);
2422}
2423
2424/**
2425 * xmlXPathIntersection:
2426 * @nodes1: a node-set
2427 * @nodes2: a node-set
2428 *
2429 * Implements the EXSLT - Sets intersection() function:
2430 * node-set set:intersection (node-set, node-set)
2431 *
2432 * Returns a node set comprising the nodes that are within both the
2433 * node sets passed as arguments
2434 */
2435xmlNodeSetPtr
2436xmlXPathIntersection (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2437 xmlNodeSetPtr ret = xmlXPathNodeSetCreate(NULL);
2438 int i, l1;
2439 xmlNodePtr cur;
2440
2441 if (xmlXPathNodeSetIsEmpty(nodes1))
2442 return(ret);
2443 if (xmlXPathNodeSetIsEmpty(nodes2))
2444 return(ret);
2445
2446 l1 = xmlXPathNodeSetGetLength(nodes1);
2447
2448 for (i = 0; i < l1; i++) {
2449 cur = xmlXPathNodeSetItem(nodes1, i);
2450 if (xmlXPathNodeSetContains(nodes2, cur))
2451 xmlXPathNodeSetAddUnique(ret, cur);
2452 }
2453 return(ret);
2454}
2455
2456/**
2457 * xmlXPathDistinctSorted:
2458 * @nodes: a node-set, sorted by document order
2459 *
2460 * Implements the EXSLT - Sets distinct() function:
2461 * node-set set:distinct (node-set)
2462 *
2463 * Returns a subset of the nodes contained in @nodes, or @nodes if
2464 * it is empty
2465 */
2466xmlNodeSetPtr
2467xmlXPathDistinctSorted (xmlNodeSetPtr nodes) {
2468 xmlNodeSetPtr ret;
2469 xmlHashTablePtr hash;
2470 int i, l;
2471 xmlChar * strval;
2472 xmlNodePtr cur;
2473
2474 if (xmlXPathNodeSetIsEmpty(nodes))
2475 return(nodes);
2476
2477 ret = xmlXPathNodeSetCreate(NULL);
2478 l = xmlXPathNodeSetGetLength(nodes);
2479 hash = xmlHashCreate (l);
2480 for (i = 0; i < l; i++) {
2481 cur = xmlXPathNodeSetItem(nodes, i);
2482 strval = xmlXPathCastNodeToString(cur);
2483 if (xmlHashLookup(hash, strval) == NULL) {
2484 xmlHashAddEntry(hash, strval, strval);
2485 xmlXPathNodeSetAddUnique(ret, cur);
2486 } else {
2487 xmlFree(strval);
2488 }
2489 }
2490 xmlHashFree(hash, (xmlHashDeallocator) xmlFree);
2491 return(ret);
2492}
2493
2494/**
2495 * xmlXPathDistinct:
2496 * @nodes: a node-set
2497 *
2498 * Implements the EXSLT - Sets distinct() function:
2499 * node-set set:distinct (node-set)
2500 * @nodes is sorted by document order, then #exslSetsDistinctSorted
2501 * is called with the sorted node-set
2502 *
2503 * Returns a subset of the nodes contained in @nodes, or @nodes if
2504 * it is empty
2505 */
2506xmlNodeSetPtr
2507xmlXPathDistinct (xmlNodeSetPtr nodes) {
2508 if (xmlXPathNodeSetIsEmpty(nodes))
2509 return(nodes);
2510
2511 xmlXPathNodeSetSort(nodes);
2512 return(xmlXPathDistinctSorted(nodes));
2513}
2514
2515/**
2516 * xmlXPathHasSameNodes:
2517 * @nodes1: a node-set
2518 * @nodes2: a node-set
2519 *
2520 * Implements the EXSLT - Sets has-same-nodes function:
2521 * boolean set:has-same-node(node-set, node-set)
2522 *
2523 * Returns true (1) if @nodes1 shares any node with @nodes2, false (0)
2524 * otherwise
2525 */
2526int
2527xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2528 int i, l;
2529 xmlNodePtr cur;
2530
2531 if (xmlXPathNodeSetIsEmpty(nodes1) ||
2532 xmlXPathNodeSetIsEmpty(nodes2))
2533 return(0);
2534
2535 l = xmlXPathNodeSetGetLength(nodes1);
2536 for (i = 0; i < l; i++) {
2537 cur = xmlXPathNodeSetItem(nodes1, i);
2538 if (xmlXPathNodeSetContains(nodes2, cur))
2539 return(1);
2540 }
2541 return(0);
2542}
2543
2544/**
2545 * xmlXPathNodeLeadingSorted:
2546 * @nodes: a node-set, sorted by document order
2547 * @node: a node
2548 *
2549 * Implements the EXSLT - Sets leading() function:
2550 * node-set set:leading (node-set, node-set)
2551 *
2552 * Returns the nodes in @nodes that precede @node in document order,
2553 * @nodes if @node is NULL or an empty node-set if @nodes
2554 * doesn't contain @node
2555 */
2556xmlNodeSetPtr
2557xmlXPathNodeLeadingSorted (xmlNodeSetPtr nodes, xmlNodePtr node) {
2558 int i, l;
2559 xmlNodePtr cur;
2560 xmlNodeSetPtr ret;
2561
2562 if (node == NULL)
2563 return(nodes);
2564
2565 ret = xmlXPathNodeSetCreate(NULL);
2566 if (xmlXPathNodeSetIsEmpty(nodes) ||
2567 (!xmlXPathNodeSetContains(nodes, node)))
2568 return(ret);
2569
2570 l = xmlXPathNodeSetGetLength(nodes);
2571 for (i = 0; i < l; i++) {
2572 cur = xmlXPathNodeSetItem(nodes, i);
2573 if (cur == node)
2574 break;
2575 xmlXPathNodeSetAddUnique(ret, cur);
2576 }
2577 return(ret);
2578}
2579
2580/**
2581 * xmlXPathNodeLeading:
2582 * @nodes: a node-set
2583 * @node: a node
2584 *
2585 * Implements the EXSLT - Sets leading() function:
2586 * node-set set:leading (node-set, node-set)
2587 * @nodes is sorted by document order, then #exslSetsNodeLeadingSorted
2588 * is called.
2589 *
2590 * Returns the nodes in @nodes that precede @node in document order,
2591 * @nodes if @node is NULL or an empty node-set if @nodes
2592 * doesn't contain @node
2593 */
2594xmlNodeSetPtr
2595xmlXPathNodeLeading (xmlNodeSetPtr nodes, xmlNodePtr node) {
2596 xmlXPathNodeSetSort(nodes);
2597 return(xmlXPathNodeLeadingSorted(nodes, node));
2598}
2599
2600/**
2601 * xmlXPathLeadingSorted:
2602 * @nodes1: a node-set, sorted by document order
2603 * @nodes2: a node-set, sorted by document order
2604 *
2605 * Implements the EXSLT - Sets leading() function:
2606 * node-set set:leading (node-set, node-set)
2607 *
2608 * Returns the nodes in @nodes1 that precede the first node in @nodes2
2609 * in document order, @nodes1 if @nodes2 is NULL or empty or
2610 * an empty node-set if @nodes1 doesn't contain @nodes2
2611 */
2612xmlNodeSetPtr
2613xmlXPathLeadingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2614 if (xmlXPathNodeSetIsEmpty(nodes2))
2615 return(nodes1);
2616 return(xmlXPathNodeLeadingSorted(nodes1,
2617 xmlXPathNodeSetItem(nodes2, 1)));
2618}
2619
2620/**
2621 * xmlXPathLeading:
2622 * @nodes1: a node-set
2623 * @nodes2: a node-set
2624 *
2625 * Implements the EXSLT - Sets leading() function:
2626 * node-set set:leading (node-set, node-set)
2627 * @nodes1 and @nodes2 are sorted by document order, then
2628 * #exslSetsLeadingSorted is called.
2629 *
2630 * Returns the nodes in @nodes1 that precede the first node in @nodes2
2631 * in document order, @nodes1 if @nodes2 is NULL or empty or
2632 * an empty node-set if @nodes1 doesn't contain @nodes2
2633 */
2634xmlNodeSetPtr
2635xmlXPathLeading (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2636 if (xmlXPathNodeSetIsEmpty(nodes2))
2637 return(nodes1);
2638 if (xmlXPathNodeSetIsEmpty(nodes1))
2639 return(xmlXPathNodeSetCreate(NULL));
2640 xmlXPathNodeSetSort(nodes1);
2641 xmlXPathNodeSetSort(nodes2);
2642 return(xmlXPathNodeLeadingSorted(nodes1,
2643 xmlXPathNodeSetItem(nodes2, 1)));
2644}
2645
2646/**
2647 * xmlXPathNodeTrailingSorted:
2648 * @nodes: a node-set, sorted by document order
2649 * @node: a node
2650 *
2651 * Implements the EXSLT - Sets trailing() function:
2652 * node-set set:trailing (node-set, node-set)
2653 *
2654 * Returns the nodes in @nodes that follow @node in document order,
2655 * @nodes if @node is NULL or an empty node-set if @nodes
2656 * doesn't contain @node
2657 */
2658xmlNodeSetPtr
2659xmlXPathNodeTrailingSorted (xmlNodeSetPtr nodes, xmlNodePtr node) {
2660 int i, l;
2661 xmlNodePtr cur;
2662 xmlNodeSetPtr ret;
2663
2664 if (node == NULL)
2665 return(nodes);
2666
2667 ret = xmlXPathNodeSetCreate(NULL);
2668 if (xmlXPathNodeSetIsEmpty(nodes) ||
2669 (!xmlXPathNodeSetContains(nodes, node)))
2670 return(ret);
2671
2672 l = xmlXPathNodeSetGetLength(nodes);
Thomas Broyerf186c822001-07-31 23:30:37 +00002673 for (i = l; i > 0; i--) {
Thomas Broyerf06a3d82001-07-16 04:52:57 +00002674 cur = xmlXPathNodeSetItem(nodes, i);
2675 if (cur == node)
2676 break;
2677 xmlXPathNodeSetAddUnique(ret, cur);
2678 }
2679 return(ret);
2680}
2681
2682/**
2683 * xmlXPathNodeTrailing:
2684 * @nodes: a node-set
2685 * @node: a node
2686 *
2687 * Implements the EXSLT - Sets trailing() function:
2688 * node-set set:trailing (node-set, node-set)
2689 * @nodes is sorted by document order, then #xmlXPathNodeTrailingSorted
2690 * is called.
2691 *
2692 * Returns the nodes in @nodes that follow @node in document order,
2693 * @nodes if @node is NULL or an empty node-set if @nodes
2694 * doesn't contain @node
2695 */
2696xmlNodeSetPtr
2697xmlXPathNodeTrailing (xmlNodeSetPtr nodes, xmlNodePtr node) {
2698 xmlXPathNodeSetSort(nodes);
2699 return(xmlXPathNodeTrailingSorted(nodes, node));
2700}
2701
2702/**
2703 * xmlXPathTrailingSorted:
2704 * @nodes1: a node-set, sorted by document order
2705 * @nodes2: a node-set, sorted by document order
2706 *
2707 * Implements the EXSLT - Sets trailing() function:
2708 * node-set set:trailing (node-set, node-set)
2709 *
2710 * Returns the nodes in @nodes1 that follow the first node in @nodes2
2711 * in document order, @nodes1 if @nodes2 is NULL or empty or
2712 * an empty node-set if @nodes1 doesn't contain @nodes2
2713 */
2714xmlNodeSetPtr
2715xmlXPathTrailingSorted (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2716 if (xmlXPathNodeSetIsEmpty(nodes2))
2717 return(nodes1);
2718 return(xmlXPathNodeTrailingSorted(nodes1,
2719 xmlXPathNodeSetItem(nodes2, 0)));
2720}
2721
2722/**
2723 * xmlXPathTrailing:
2724 * @nodes1: a node-set
2725 * @nodes2: a node-set
2726 *
2727 * Implements the EXSLT - Sets trailing() function:
2728 * node-set set:trailing (node-set, node-set)
2729 * @nodes1 and @nodes2 are sorted by document order, then
2730 * #xmlXPathTrailingSorted is called.
2731 *
2732 * Returns the nodes in @nodes1 that follow the first node in @nodes2
2733 * in document order, @nodes1 if @nodes2 is NULL or empty or
2734 * an empty node-set if @nodes1 doesn't contain @nodes2
2735 */
2736xmlNodeSetPtr
2737xmlXPathTrailing (xmlNodeSetPtr nodes1, xmlNodeSetPtr nodes2) {
2738 if (xmlXPathNodeSetIsEmpty(nodes2))
2739 return(nodes1);
2740 if (xmlXPathNodeSetIsEmpty(nodes1))
2741 return(xmlXPathNodeSetCreate(NULL));
2742 xmlXPathNodeSetSort(nodes1);
2743 xmlXPathNodeSetSort(nodes2);
2744 return(xmlXPathNodeTrailingSorted(nodes1,
2745 xmlXPathNodeSetItem(nodes2, 0)));
2746}
2747
Owen Taylor3473f882001-02-23 17:55:21 +00002748/************************************************************************
2749 * *
2750 * Routines to handle extra functions *
2751 * *
2752 ************************************************************************/
2753
2754/**
2755 * xmlXPathRegisterFunc:
2756 * @ctxt: the XPath context
2757 * @name: the function name
2758 * @f: the function implementation or NULL
2759 *
2760 * Register a new function. If @f is NULL it unregisters the function
2761 *
2762 * Returns 0 in case of success, -1 in case of error
2763 */
2764int
2765xmlXPathRegisterFunc(xmlXPathContextPtr ctxt, const xmlChar *name,
2766 xmlXPathFunction f) {
2767 return(xmlXPathRegisterFuncNS(ctxt, name, NULL, f));
2768}
2769
2770/**
2771 * xmlXPathRegisterFuncNS:
2772 * @ctxt: the XPath context
2773 * @name: the function name
2774 * @ns_uri: the function namespace URI
2775 * @f: the function implementation or NULL
2776 *
2777 * Register a new function. If @f is NULL it unregisters the function
2778 *
2779 * Returns 0 in case of success, -1 in case of error
2780 */
2781int
2782xmlXPathRegisterFuncNS(xmlXPathContextPtr ctxt, const xmlChar *name,
2783 const xmlChar *ns_uri, xmlXPathFunction f) {
2784 if (ctxt == NULL)
2785 return(-1);
2786 if (name == NULL)
2787 return(-1);
2788
2789 if (ctxt->funcHash == NULL)
2790 ctxt->funcHash = xmlHashCreate(0);
2791 if (ctxt->funcHash == NULL)
2792 return(-1);
Daniel Veillard94394cd2003-10-29 17:07:51 +00002793 if (f == NULL)
2794 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL));
Owen Taylor3473f882001-02-23 17:55:21 +00002795 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, (void *) f));
2796}
2797
2798/**
Thomas Broyerba4ad322001-07-26 16:55:21 +00002799 * xmlXPathRegisterFuncLookup:
2800 * @ctxt: the XPath context
2801 * @f: the lookup function
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002802 * @funcCtxt: the lookup data
Thomas Broyerba4ad322001-07-26 16:55:21 +00002803 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002804 * Registers an external mechanism to do function lookup.
Thomas Broyerba4ad322001-07-26 16:55:21 +00002805 */
2806void
2807xmlXPathRegisterFuncLookup (xmlXPathContextPtr ctxt,
2808 xmlXPathFuncLookupFunc f,
2809 void *funcCtxt) {
2810 if (ctxt == NULL)
2811 return;
2812 ctxt->funcLookupFunc = (void *) f;
2813 ctxt->funcLookupData = funcCtxt;
2814}
2815
2816/**
Owen Taylor3473f882001-02-23 17:55:21 +00002817 * xmlXPathFunctionLookup:
2818 * @ctxt: the XPath context
2819 * @name: the function name
2820 *
2821 * Search in the Function array of the context for the given
2822 * function.
2823 *
2824 * Returns the xmlXPathFunction or NULL if not found
2825 */
2826xmlXPathFunction
2827xmlXPathFunctionLookup(xmlXPathContextPtr ctxt, const xmlChar *name) {
Thomas Broyerba4ad322001-07-26 16:55:21 +00002828 if (ctxt == NULL)
2829 return (NULL);
2830
2831 if (ctxt->funcLookupFunc != NULL) {
2832 xmlXPathFunction ret;
Daniel Veillard99e55eb2002-01-21 08:56:29 +00002833 xmlXPathFuncLookupFunc f;
Thomas Broyerba4ad322001-07-26 16:55:21 +00002834
Daniel Veillard99e55eb2002-01-21 08:56:29 +00002835 f = (xmlXPathFuncLookupFunc) ctxt->funcLookupFunc;
Daniel Veillard963d2ae2002-01-20 22:08:18 +00002836 ret = f(ctxt->funcLookupData, name, NULL);
Thomas Broyerba4ad322001-07-26 16:55:21 +00002837 if (ret != NULL)
2838 return(ret);
2839 }
Owen Taylor3473f882001-02-23 17:55:21 +00002840 return(xmlXPathFunctionLookupNS(ctxt, name, NULL));
2841}
2842
2843/**
2844 * xmlXPathFunctionLookupNS:
2845 * @ctxt: the XPath context
2846 * @name: the function name
2847 * @ns_uri: the function namespace URI
2848 *
2849 * Search in the Function array of the context for the given
2850 * function.
2851 *
2852 * Returns the xmlXPathFunction or NULL if not found
2853 */
2854xmlXPathFunction
2855xmlXPathFunctionLookupNS(xmlXPathContextPtr ctxt, const xmlChar *name,
2856 const xmlChar *ns_uri) {
2857 if (ctxt == NULL)
2858 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002859 if (name == NULL)
2860 return(NULL);
2861
Thomas Broyerba4ad322001-07-26 16:55:21 +00002862 if (ctxt->funcLookupFunc != NULL) {
2863 xmlXPathFunction ret;
Daniel Veillard99e55eb2002-01-21 08:56:29 +00002864 xmlXPathFuncLookupFunc f;
Thomas Broyerba4ad322001-07-26 16:55:21 +00002865
Daniel Veillard99e55eb2002-01-21 08:56:29 +00002866 f = (xmlXPathFuncLookupFunc) ctxt->funcLookupFunc;
Daniel Veillard963d2ae2002-01-20 22:08:18 +00002867 ret = f(ctxt->funcLookupData, name, ns_uri);
Thomas Broyerba4ad322001-07-26 16:55:21 +00002868 if (ret != NULL)
2869 return(ret);
2870 }
2871
2872 if (ctxt->funcHash == NULL)
2873 return(NULL);
2874
Owen Taylor3473f882001-02-23 17:55:21 +00002875 return((xmlXPathFunction) xmlHashLookup2(ctxt->funcHash, name, ns_uri));
2876}
2877
2878/**
2879 * xmlXPathRegisteredFuncsCleanup:
2880 * @ctxt: the XPath context
2881 *
2882 * Cleanup the XPath context data associated to registered functions
2883 */
2884void
2885xmlXPathRegisteredFuncsCleanup(xmlXPathContextPtr ctxt) {
2886 if (ctxt == NULL)
2887 return;
2888
2889 xmlHashFree(ctxt->funcHash, NULL);
2890 ctxt->funcHash = NULL;
2891}
2892
2893/************************************************************************
2894 * *
William M. Brack08171912003-12-29 02:52:11 +00002895 * Routines to handle Variables *
Owen Taylor3473f882001-02-23 17:55:21 +00002896 * *
2897 ************************************************************************/
2898
2899/**
2900 * xmlXPathRegisterVariable:
2901 * @ctxt: the XPath context
2902 * @name: the variable name
2903 * @value: the variable value or NULL
2904 *
2905 * Register a new variable value. If @value is NULL it unregisters
2906 * the variable
2907 *
2908 * Returns 0 in case of success, -1 in case of error
2909 */
2910int
2911xmlXPathRegisterVariable(xmlXPathContextPtr ctxt, const xmlChar *name,
2912 xmlXPathObjectPtr value) {
2913 return(xmlXPathRegisterVariableNS(ctxt, name, NULL, value));
2914}
2915
2916/**
2917 * xmlXPathRegisterVariableNS:
2918 * @ctxt: the XPath context
2919 * @name: the variable name
2920 * @ns_uri: the variable namespace URI
2921 * @value: the variable value or NULL
2922 *
2923 * Register a new variable value. If @value is NULL it unregisters
2924 * the variable
2925 *
2926 * Returns 0 in case of success, -1 in case of error
2927 */
2928int
2929xmlXPathRegisterVariableNS(xmlXPathContextPtr ctxt, const xmlChar *name,
2930 const xmlChar *ns_uri,
2931 xmlXPathObjectPtr value) {
2932 if (ctxt == NULL)
2933 return(-1);
2934 if (name == NULL)
2935 return(-1);
2936
2937 if (ctxt->varHash == NULL)
2938 ctxt->varHash = xmlHashCreate(0);
2939 if (ctxt->varHash == NULL)
2940 return(-1);
Daniel Veillard94394cd2003-10-29 17:07:51 +00002941 if (value == NULL)
2942 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri,
2943 (xmlHashDeallocator)xmlXPathFreeObject));
Owen Taylor3473f882001-02-23 17:55:21 +00002944 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri,
2945 (void *) value,
2946 (xmlHashDeallocator)xmlXPathFreeObject));
2947}
2948
2949/**
2950 * xmlXPathRegisterVariableLookup:
2951 * @ctxt: the XPath context
2952 * @f: the lookup function
2953 * @data: the lookup data
2954 *
2955 * register an external mechanism to do variable lookup
2956 */
2957void
2958xmlXPathRegisterVariableLookup(xmlXPathContextPtr ctxt,
2959 xmlXPathVariableLookupFunc f, void *data) {
2960 if (ctxt == NULL)
2961 return;
2962 ctxt->varLookupFunc = (void *) f;
2963 ctxt->varLookupData = data;
2964}
2965
2966/**
2967 * xmlXPathVariableLookup:
2968 * @ctxt: the XPath context
2969 * @name: the variable name
2970 *
2971 * Search in the Variable array of the context for the given
2972 * variable value.
2973 *
Daniel Veillard73c9c042001-07-05 20:02:54 +00002974 * Returns a copy of the value or NULL if not found
Owen Taylor3473f882001-02-23 17:55:21 +00002975 */
2976xmlXPathObjectPtr
2977xmlXPathVariableLookup(xmlXPathContextPtr ctxt, const xmlChar *name) {
2978 if (ctxt == NULL)
2979 return(NULL);
2980
2981 if (ctxt->varLookupFunc != NULL) {
2982 xmlXPathObjectPtr ret;
2983
2984 ret = ((xmlXPathVariableLookupFunc)ctxt->varLookupFunc)
2985 (ctxt->varLookupData, name, NULL);
Daniel Veillard556c6682001-10-06 09:59:51 +00002986 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002987 }
2988 return(xmlXPathVariableLookupNS(ctxt, name, NULL));
2989}
2990
2991/**
2992 * xmlXPathVariableLookupNS:
2993 * @ctxt: the XPath context
2994 * @name: the variable name
2995 * @ns_uri: the variable namespace URI
2996 *
2997 * Search in the Variable array of the context for the given
Daniel Veillard73c9c042001-07-05 20:02:54 +00002998 * variable value.
Owen Taylor3473f882001-02-23 17:55:21 +00002999 *
Daniel Veillard73c9c042001-07-05 20:02:54 +00003000 * Returns the a copy of the value or NULL if not found
Owen Taylor3473f882001-02-23 17:55:21 +00003001 */
3002xmlXPathObjectPtr
3003xmlXPathVariableLookupNS(xmlXPathContextPtr ctxt, const xmlChar *name,
3004 const xmlChar *ns_uri) {
3005 if (ctxt == NULL)
3006 return(NULL);
3007
3008 if (ctxt->varLookupFunc != NULL) {
3009 xmlXPathObjectPtr ret;
3010
3011 ret = ((xmlXPathVariableLookupFunc)ctxt->varLookupFunc)
3012 (ctxt->varLookupData, name, ns_uri);
3013 if (ret != NULL) return(ret);
3014 }
3015
3016 if (ctxt->varHash == NULL)
3017 return(NULL);
3018 if (name == NULL)
3019 return(NULL);
3020
Daniel Veillard8c357d52001-07-03 23:43:33 +00003021 return(xmlXPathObjectCopy((xmlXPathObjectPtr)
3022 xmlHashLookup2(ctxt->varHash, name, ns_uri)));
Owen Taylor3473f882001-02-23 17:55:21 +00003023}
3024
3025/**
3026 * xmlXPathRegisteredVariablesCleanup:
3027 * @ctxt: the XPath context
3028 *
3029 * Cleanup the XPath context data associated to registered variables
3030 */
3031void
3032xmlXPathRegisteredVariablesCleanup(xmlXPathContextPtr ctxt) {
3033 if (ctxt == NULL)
3034 return;
3035
Daniel Veillard76d66f42001-05-16 21:05:17 +00003036 xmlHashFree(ctxt->varHash, (xmlHashDeallocator)xmlXPathFreeObject);
Owen Taylor3473f882001-02-23 17:55:21 +00003037 ctxt->varHash = NULL;
3038}
3039
3040/**
3041 * xmlXPathRegisterNs:
3042 * @ctxt: the XPath context
3043 * @prefix: the namespace prefix
3044 * @ns_uri: the namespace name
3045 *
3046 * Register a new namespace. If @ns_uri is NULL it unregisters
3047 * the namespace
3048 *
3049 * Returns 0 in case of success, -1 in case of error
3050 */
3051int
3052xmlXPathRegisterNs(xmlXPathContextPtr ctxt, const xmlChar *prefix,
3053 const xmlChar *ns_uri) {
3054 if (ctxt == NULL)
3055 return(-1);
3056 if (prefix == NULL)
3057 return(-1);
3058
3059 if (ctxt->nsHash == NULL)
3060 ctxt->nsHash = xmlHashCreate(10);
3061 if (ctxt->nsHash == NULL)
3062 return(-1);
Daniel Veillarde991fe92003-10-29 11:18:37 +00003063 if (ns_uri == NULL)
Daniel Veillard94394cd2003-10-29 17:07:51 +00003064 return(xmlHashRemoveEntry(ctxt->nsHash, prefix,
Daniel Veillarde991fe92003-10-29 11:18:37 +00003065 (xmlHashDeallocator)xmlFree));
Daniel Veillard42766c02002-08-22 20:52:17 +00003066 return(xmlHashUpdateEntry(ctxt->nsHash, prefix, (void *) xmlStrdup(ns_uri),
Owen Taylor3473f882001-02-23 17:55:21 +00003067 (xmlHashDeallocator)xmlFree));
3068}
3069
3070/**
3071 * xmlXPathNsLookup:
3072 * @ctxt: the XPath context
3073 * @prefix: the namespace prefix value
3074 *
3075 * Search in the namespace declaration array of the context for the given
3076 * namespace name associated to the given prefix
3077 *
3078 * Returns the value or NULL if not found
3079 */
3080const xmlChar *
3081xmlXPathNsLookup(xmlXPathContextPtr ctxt, const xmlChar *prefix) {
3082 if (ctxt == NULL)
3083 return(NULL);
3084 if (prefix == NULL)
3085 return(NULL);
3086
3087#ifdef XML_XML_NAMESPACE
3088 if (xmlStrEqual(prefix, (const xmlChar *) "xml"))
3089 return(XML_XML_NAMESPACE);
3090#endif
3091
Daniel Veillardc8f620b2001-04-30 20:31:33 +00003092 if (ctxt->namespaces != NULL) {
3093 int i;
3094
3095 for (i = 0;i < ctxt->nsNr;i++) {
3096 if ((ctxt->namespaces[i] != NULL) &&
3097 (xmlStrEqual(ctxt->namespaces[i]->prefix, prefix)))
3098 return(ctxt->namespaces[i]->href);
3099 }
3100 }
Owen Taylor3473f882001-02-23 17:55:21 +00003101
3102 return((const xmlChar *) xmlHashLookup(ctxt->nsHash, prefix));
3103}
3104
3105/**
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003106 * xmlXPathRegisteredNsCleanup:
Owen Taylor3473f882001-02-23 17:55:21 +00003107 * @ctxt: the XPath context
3108 *
3109 * Cleanup the XPath context data associated to registered variables
3110 */
3111void
3112xmlXPathRegisteredNsCleanup(xmlXPathContextPtr ctxt) {
3113 if (ctxt == NULL)
3114 return;
3115
Daniel Veillard42766c02002-08-22 20:52:17 +00003116 xmlHashFree(ctxt->nsHash, (xmlHashDeallocator)xmlFree);
Owen Taylor3473f882001-02-23 17:55:21 +00003117 ctxt->nsHash = NULL;
3118}
3119
3120/************************************************************************
3121 * *
3122 * Routines to handle Values *
3123 * *
3124 ************************************************************************/
3125
William M. Brack08171912003-12-29 02:52:11 +00003126/* Allocations are terrible, one needs to optimize all this !!! */
Owen Taylor3473f882001-02-23 17:55:21 +00003127
3128/**
3129 * xmlXPathNewFloat:
3130 * @val: the double value
3131 *
3132 * Create a new xmlXPathObjectPtr of type double and of value @val
3133 *
3134 * Returns the newly created object.
3135 */
3136xmlXPathObjectPtr
3137xmlXPathNewFloat(double val) {
3138 xmlXPathObjectPtr ret;
3139
3140 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3141 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003142 xmlXPathErrMemory(NULL, "creating float object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003143 return(NULL);
3144 }
3145 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3146 ret->type = XPATH_NUMBER;
3147 ret->floatval = val;
3148 return(ret);
3149}
3150
3151/**
3152 * xmlXPathNewBoolean:
3153 * @val: the boolean value
3154 *
3155 * Create a new xmlXPathObjectPtr of type boolean and of value @val
3156 *
3157 * Returns the newly created object.
3158 */
3159xmlXPathObjectPtr
3160xmlXPathNewBoolean(int val) {
3161 xmlXPathObjectPtr ret;
3162
3163 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3164 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003165 xmlXPathErrMemory(NULL, "creating boolean object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003166 return(NULL);
3167 }
3168 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3169 ret->type = XPATH_BOOLEAN;
3170 ret->boolval = (val != 0);
3171 return(ret);
3172}
3173
3174/**
3175 * xmlXPathNewString:
3176 * @val: the xmlChar * value
3177 *
3178 * Create a new xmlXPathObjectPtr of type string and of value @val
3179 *
3180 * Returns the newly created object.
3181 */
3182xmlXPathObjectPtr
3183xmlXPathNewString(const xmlChar *val) {
3184 xmlXPathObjectPtr ret;
3185
3186 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3187 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003188 xmlXPathErrMemory(NULL, "creating string object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003189 return(NULL);
3190 }
3191 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3192 ret->type = XPATH_STRING;
3193 if (val != NULL)
3194 ret->stringval = xmlStrdup(val);
3195 else
3196 ret->stringval = xmlStrdup((const xmlChar *)"");
3197 return(ret);
3198}
3199
3200/**
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003201 * xmlXPathWrapString:
3202 * @val: the xmlChar * value
3203 *
3204 * Wraps the @val string into an XPath object.
3205 *
3206 * Returns the newly created object.
3207 */
3208xmlXPathObjectPtr
3209xmlXPathWrapString (xmlChar *val) {
3210 xmlXPathObjectPtr ret;
3211
3212 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3213 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003214 xmlXPathErrMemory(NULL, "creating string object\n");
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003215 return(NULL);
3216 }
3217 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3218 ret->type = XPATH_STRING;
3219 ret->stringval = val;
3220 return(ret);
3221}
3222
3223/**
Owen Taylor3473f882001-02-23 17:55:21 +00003224 * xmlXPathNewCString:
3225 * @val: the char * value
3226 *
3227 * Create a new xmlXPathObjectPtr of type string and of value @val
3228 *
3229 * Returns the newly created object.
3230 */
3231xmlXPathObjectPtr
3232xmlXPathNewCString(const char *val) {
3233 xmlXPathObjectPtr ret;
3234
3235 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3236 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003237 xmlXPathErrMemory(NULL, "creating string object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003238 return(NULL);
3239 }
3240 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3241 ret->type = XPATH_STRING;
3242 ret->stringval = xmlStrdup(BAD_CAST val);
3243 return(ret);
3244}
3245
3246/**
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003247 * xmlXPathWrapCString:
3248 * @val: the char * value
3249 *
3250 * Wraps a string into an XPath object.
3251 *
3252 * Returns the newly created object.
3253 */
3254xmlXPathObjectPtr
3255xmlXPathWrapCString (char * val) {
3256 return(xmlXPathWrapString((xmlChar *)(val)));
3257}
3258
3259/**
Thomas Broyerf06a3d82001-07-16 04:52:57 +00003260 * xmlXPathWrapExternal:
3261 * @val: the user data
3262 *
3263 * Wraps the @val data into an XPath object.
3264 *
3265 * Returns the newly created object.
3266 */
3267xmlXPathObjectPtr
3268xmlXPathWrapExternal (void *val) {
3269 xmlXPathObjectPtr ret;
3270
3271 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3272 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003273 xmlXPathErrMemory(NULL, "creating user object\n");
Thomas Broyerf06a3d82001-07-16 04:52:57 +00003274 return(NULL);
3275 }
3276 memset(ret, 0 , (size_t) sizeof(xmlXPathObject));
3277 ret->type = XPATH_USERS;
3278 ret->user = val;
3279 return(ret);
3280}
3281
3282/**
Owen Taylor3473f882001-02-23 17:55:21 +00003283 * xmlXPathObjectCopy:
3284 * @val: the original object
3285 *
3286 * allocate a new copy of a given object
3287 *
3288 * Returns the newly created object.
3289 */
3290xmlXPathObjectPtr
3291xmlXPathObjectCopy(xmlXPathObjectPtr val) {
3292 xmlXPathObjectPtr ret;
3293
3294 if (val == NULL)
3295 return(NULL);
3296
3297 ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
3298 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003299 xmlXPathErrMemory(NULL, "copying object\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003300 return(NULL);
3301 }
3302 memcpy(ret, val , (size_t) sizeof(xmlXPathObject));
3303 switch (val->type) {
3304 case XPATH_BOOLEAN:
3305 case XPATH_NUMBER:
3306 case XPATH_POINT:
3307 case XPATH_RANGE:
3308 break;
3309 case XPATH_STRING:
3310 ret->stringval = xmlStrdup(val->stringval);
3311 break;
3312 case XPATH_XSLT_TREE:
3313 if ((val->nodesetval != NULL) &&
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003314 (val->nodesetval->nodeTab != NULL)) {
Daniel Veillard9adc0462003-03-24 18:39:54 +00003315 xmlNodePtr cur, tmp;
3316 xmlDocPtr top;
Daniel Veillardef0b4502003-03-24 13:57:34 +00003317
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003318 ret->boolval = 1;
Daniel Veillard9adc0462003-03-24 18:39:54 +00003319 top = xmlNewDoc(NULL);
3320 top->name = (char *)
3321 xmlStrdup(val->nodesetval->nodeTab[0]->name);
Daniel Veillardef0b4502003-03-24 13:57:34 +00003322 ret->user = top;
3323 if (top != NULL) {
Daniel Veillard9adc0462003-03-24 18:39:54 +00003324 top->doc = top;
Daniel Veillardef0b4502003-03-24 13:57:34 +00003325 cur = val->nodesetval->nodeTab[0]->children;
3326 while (cur != NULL) {
Daniel Veillard9adc0462003-03-24 18:39:54 +00003327 tmp = xmlDocCopyNode(cur, top, 1);
3328 xmlAddChild((xmlNodePtr) top, tmp);
Daniel Veillardef0b4502003-03-24 13:57:34 +00003329 cur = cur->next;
3330 }
3331 }
Daniel Veillard9adc0462003-03-24 18:39:54 +00003332 ret->nodesetval = xmlXPathNodeSetCreate((xmlNodePtr) top);
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003333 } else
Owen Taylor3473f882001-02-23 17:55:21 +00003334 ret->nodesetval = xmlXPathNodeSetCreate(NULL);
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003335 /* Deallocate the copied tree value */
Owen Taylor3473f882001-02-23 17:55:21 +00003336 break;
3337 case XPATH_NODESET:
3338 ret->nodesetval = xmlXPathNodeSetMerge(NULL, val->nodesetval);
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003339 /* Do not deallocate the copied tree value */
3340 ret->boolval = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00003341 break;
3342 case XPATH_LOCATIONSET:
3343#ifdef LIBXML_XPTR_ENABLED
3344 {
3345 xmlLocationSetPtr loc = val->user;
3346 ret->user = (void *) xmlXPtrLocationSetMerge(NULL, loc);
3347 break;
3348 }
3349#endif
Thomas Broyer47334c02001-10-07 16:41:52 +00003350 case XPATH_USERS:
3351 ret->user = val->user;
3352 break;
3353 case XPATH_UNDEFINED:
Owen Taylor3473f882001-02-23 17:55:21 +00003354 xmlGenericError(xmlGenericErrorContext,
3355 "xmlXPathObjectCopy: unsupported type %d\n",
3356 val->type);
3357 break;
3358 }
3359 return(ret);
3360}
3361
3362/**
3363 * xmlXPathFreeObject:
3364 * @obj: the object to free
3365 *
3366 * Free up an xmlXPathObjectPtr object.
3367 */
3368void
3369xmlXPathFreeObject(xmlXPathObjectPtr obj) {
3370 if (obj == NULL) return;
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003371 if ((obj->type == XPATH_NODESET) || (obj->type == XPATH_XSLT_TREE)) {
Daniel Veillard77851712001-02-27 21:54:07 +00003372 if (obj->boolval) {
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003373 if (obj->user != NULL) {
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003374 xmlXPathFreeNodeSet(obj->nodesetval);
Daniel Veillard38bf6f02002-03-16 22:03:31 +00003375 xmlFreeNodeList((xmlNodePtr) obj->user);
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00003376 } else if (obj->nodesetval != NULL)
Daniel Veillard77851712001-02-27 21:54:07 +00003377 xmlXPathFreeValueTree(obj->nodesetval);
3378 } else {
3379 if (obj->nodesetval != NULL)
3380 xmlXPathFreeNodeSet(obj->nodesetval);
3381 }
Owen Taylor3473f882001-02-23 17:55:21 +00003382#ifdef LIBXML_XPTR_ENABLED
3383 } else if (obj->type == XPATH_LOCATIONSET) {
3384 if (obj->user != NULL)
3385 xmlXPtrFreeLocationSet(obj->user);
3386#endif
3387 } else if (obj->type == XPATH_STRING) {
3388 if (obj->stringval != NULL)
3389 xmlFree(obj->stringval);
Owen Taylor3473f882001-02-23 17:55:21 +00003390 }
3391
Owen Taylor3473f882001-02-23 17:55:21 +00003392 xmlFree(obj);
3393}
3394
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003395
3396/************************************************************************
3397 * *
3398 * Type Casting Routines *
3399 * *
3400 ************************************************************************/
3401
3402/**
3403 * xmlXPathCastBooleanToString:
3404 * @val: a boolean
3405 *
3406 * Converts a boolean to its string value.
3407 *
3408 * Returns a newly allocated string.
3409 */
3410xmlChar *
3411xmlXPathCastBooleanToString (int val) {
3412 xmlChar *ret;
3413 if (val)
3414 ret = xmlStrdup((const xmlChar *) "true");
3415 else
3416 ret = xmlStrdup((const xmlChar *) "false");
3417 return(ret);
3418}
3419
3420/**
3421 * xmlXPathCastNumberToString:
3422 * @val: a number
3423 *
3424 * Converts a number to its string value.
3425 *
3426 * Returns a newly allocated string.
3427 */
3428xmlChar *
3429xmlXPathCastNumberToString (double val) {
3430 xmlChar *ret;
Daniel Veillardcda96922001-08-21 10:56:31 +00003431 switch (xmlXPathIsInf(val)) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003432 case 1:
Daniel Veillard5fc1f082002-03-27 09:05:40 +00003433 ret = xmlStrdup((const xmlChar *) "Infinity");
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003434 break;
3435 case -1:
3436 ret = xmlStrdup((const xmlChar *) "-Infinity");
3437 break;
3438 default:
Daniel Veillardcda96922001-08-21 10:56:31 +00003439 if (xmlXPathIsNaN(val)) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003440 ret = xmlStrdup((const xmlChar *) "NaN");
Daniel Veillardd30be4a2002-03-28 18:25:31 +00003441 } else if (val == 0 && xmlXPathGetSign(val) != 0) {
3442 ret = xmlStrdup((const xmlChar *) "0");
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003443 } else {
3444 /* could be improved */
3445 char buf[100];
3446 xmlXPathFormatNumber(val, buf, 100);
3447 ret = xmlStrdup((const xmlChar *) buf);
3448 }
3449 }
3450 return(ret);
3451}
3452
3453/**
3454 * xmlXPathCastNodeToString:
3455 * @node: a node
3456 *
3457 * Converts a node to its string value.
3458 *
3459 * Returns a newly allocated string.
3460 */
3461xmlChar *
3462xmlXPathCastNodeToString (xmlNodePtr node) {
3463 return(xmlNodeGetContent(node));
3464}
3465
3466/**
3467 * xmlXPathCastNodeSetToString:
3468 * @ns: a node-set
3469 *
3470 * Converts a node-set to its string value.
3471 *
3472 * Returns a newly allocated string.
3473 */
3474xmlChar *
3475xmlXPathCastNodeSetToString (xmlNodeSetPtr ns) {
3476 if ((ns == NULL) || (ns->nodeNr == 0) || (ns->nodeTab == NULL))
3477 return(xmlStrdup((const xmlChar *) ""));
3478
3479 xmlXPathNodeSetSort(ns);
3480 return(xmlXPathCastNodeToString(ns->nodeTab[0]));
3481}
3482
3483/**
3484 * xmlXPathCastToString:
3485 * @val: an XPath object
3486 *
3487 * Converts an existing object to its string() equivalent
3488 *
3489 * Returns the string value of the object, NULL in case of error.
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003490 * A new string is allocated only if needed (@val isn't a
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003491 * string object).
3492 */
3493xmlChar *
3494xmlXPathCastToString(xmlXPathObjectPtr val) {
3495 xmlChar *ret = NULL;
3496
3497 if (val == NULL)
3498 return(xmlStrdup((const xmlChar *) ""));
3499 switch (val->type) {
3500 case XPATH_UNDEFINED:
3501#ifdef DEBUG_EXPR
3502 xmlGenericError(xmlGenericErrorContext, "String: undefined\n");
3503#endif
3504 ret = xmlStrdup((const xmlChar *) "");
3505 break;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003506 case XPATH_NODESET:
William M. Brack0c022ad2002-07-12 00:56:01 +00003507 case XPATH_XSLT_TREE:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003508 ret = xmlXPathCastNodeSetToString(val->nodesetval);
3509 break;
3510 case XPATH_STRING:
Daniel Veillard4e2df542002-03-22 12:23:14 +00003511 return(xmlStrdup(val->stringval));
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003512 case XPATH_BOOLEAN:
3513 ret = xmlXPathCastBooleanToString(val->boolval);
3514 break;
3515 case XPATH_NUMBER: {
3516 ret = xmlXPathCastNumberToString(val->floatval);
3517 break;
3518 }
3519 case XPATH_USERS:
3520 case XPATH_POINT:
3521 case XPATH_RANGE:
3522 case XPATH_LOCATIONSET:
3523 TODO
3524 ret = xmlStrdup((const xmlChar *) "");
3525 break;
3526 }
3527 return(ret);
3528}
3529
3530/**
3531 * xmlXPathConvertString:
3532 * @val: an XPath object
3533 *
3534 * Converts an existing object to its string() equivalent
3535 *
3536 * Returns the new object, the old one is freed (or the operation
3537 * is done directly on @val)
3538 */
3539xmlXPathObjectPtr
3540xmlXPathConvertString(xmlXPathObjectPtr val) {
3541 xmlChar *res = NULL;
3542
3543 if (val == NULL)
3544 return(xmlXPathNewCString(""));
3545
3546 switch (val->type) {
3547 case XPATH_UNDEFINED:
3548#ifdef DEBUG_EXPR
3549 xmlGenericError(xmlGenericErrorContext, "STRING: undefined\n");
3550#endif
3551 break;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003552 case XPATH_NODESET:
William M. Brack0c022ad2002-07-12 00:56:01 +00003553 case XPATH_XSLT_TREE:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003554 res = xmlXPathCastNodeSetToString(val->nodesetval);
3555 break;
3556 case XPATH_STRING:
3557 return(val);
3558 case XPATH_BOOLEAN:
3559 res = xmlXPathCastBooleanToString(val->boolval);
3560 break;
3561 case XPATH_NUMBER:
3562 res = xmlXPathCastNumberToString(val->floatval);
3563 break;
3564 case XPATH_USERS:
3565 case XPATH_POINT:
3566 case XPATH_RANGE:
3567 case XPATH_LOCATIONSET:
3568 TODO;
3569 break;
3570 }
3571 xmlXPathFreeObject(val);
3572 if (res == NULL)
3573 return(xmlXPathNewCString(""));
3574 return(xmlXPathWrapString(res));
3575}
3576
3577/**
3578 * xmlXPathCastBooleanToNumber:
3579 * @val: a boolean
3580 *
3581 * Converts a boolean to its number value
3582 *
3583 * Returns the number value
3584 */
3585double
3586xmlXPathCastBooleanToNumber(int val) {
3587 if (val)
3588 return(1.0);
3589 return(0.0);
3590}
3591
3592/**
3593 * xmlXPathCastStringToNumber:
3594 * @val: a string
3595 *
3596 * Converts a string to its number value
3597 *
3598 * Returns the number value
3599 */
3600double
3601xmlXPathCastStringToNumber(const xmlChar * val) {
3602 return(xmlXPathStringEvalNumber(val));
3603}
3604
3605/**
3606 * xmlXPathCastNodeToNumber:
3607 * @node: a node
3608 *
3609 * Converts a node to its number value
3610 *
3611 * Returns the number value
3612 */
3613double
3614xmlXPathCastNodeToNumber (xmlNodePtr node) {
3615 xmlChar *strval;
3616 double ret;
3617
3618 if (node == NULL)
3619 return(xmlXPathNAN);
3620 strval = xmlXPathCastNodeToString(node);
3621 if (strval == NULL)
3622 return(xmlXPathNAN);
3623 ret = xmlXPathCastStringToNumber(strval);
3624 xmlFree(strval);
3625
3626 return(ret);
3627}
3628
3629/**
3630 * xmlXPathCastNodeSetToNumber:
3631 * @ns: a node-set
3632 *
3633 * Converts a node-set to its number value
3634 *
3635 * Returns the number value
3636 */
3637double
3638xmlXPathCastNodeSetToNumber (xmlNodeSetPtr ns) {
3639 xmlChar *str;
3640 double ret;
3641
3642 if (ns == NULL)
3643 return(xmlXPathNAN);
3644 str = xmlXPathCastNodeSetToString(ns);
3645 ret = xmlXPathCastStringToNumber(str);
3646 xmlFree(str);
3647 return(ret);
3648}
3649
3650/**
3651 * xmlXPathCastToNumber:
3652 * @val: an XPath object
3653 *
3654 * Converts an XPath object to its number value
3655 *
3656 * Returns the number value
3657 */
3658double
3659xmlXPathCastToNumber(xmlXPathObjectPtr val) {
3660 double ret = 0.0;
3661
3662 if (val == NULL)
3663 return(xmlXPathNAN);
3664 switch (val->type) {
3665 case XPATH_UNDEFINED:
3666#ifdef DEGUB_EXPR
3667 xmlGenericError(xmlGenericErrorContext, "NUMBER: undefined\n");
3668#endif
3669 ret = xmlXPathNAN;
3670 break;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003671 case XPATH_NODESET:
William M. Brack0c022ad2002-07-12 00:56:01 +00003672 case XPATH_XSLT_TREE:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003673 ret = xmlXPathCastNodeSetToNumber(val->nodesetval);
3674 break;
3675 case XPATH_STRING:
3676 ret = xmlXPathCastStringToNumber(val->stringval);
3677 break;
3678 case XPATH_NUMBER:
3679 ret = val->floatval;
3680 break;
3681 case XPATH_BOOLEAN:
3682 ret = xmlXPathCastBooleanToNumber(val->boolval);
3683 break;
3684 case XPATH_USERS:
3685 case XPATH_POINT:
3686 case XPATH_RANGE:
3687 case XPATH_LOCATIONSET:
3688 TODO;
3689 ret = xmlXPathNAN;
3690 break;
3691 }
3692 return(ret);
3693}
3694
3695/**
3696 * xmlXPathConvertNumber:
3697 * @val: an XPath object
3698 *
3699 * Converts an existing object to its number() equivalent
3700 *
3701 * Returns the new object, the old one is freed (or the operation
3702 * is done directly on @val)
3703 */
3704xmlXPathObjectPtr
3705xmlXPathConvertNumber(xmlXPathObjectPtr val) {
3706 xmlXPathObjectPtr ret;
3707
3708 if (val == NULL)
3709 return(xmlXPathNewFloat(0.0));
3710 if (val->type == XPATH_NUMBER)
3711 return(val);
3712 ret = xmlXPathNewFloat(xmlXPathCastToNumber(val));
3713 xmlXPathFreeObject(val);
3714 return(ret);
3715}
3716
3717/**
3718 * xmlXPathCastNumberToBoolean:
3719 * @val: a number
3720 *
3721 * Converts a number to its boolean value
3722 *
3723 * Returns the boolean value
3724 */
3725int
3726xmlXPathCastNumberToBoolean (double val) {
Daniel Veillardcda96922001-08-21 10:56:31 +00003727 if (xmlXPathIsNaN(val) || (val == 0.0))
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003728 return(0);
3729 return(1);
3730}
3731
3732/**
3733 * xmlXPathCastStringToBoolean:
3734 * @val: a string
3735 *
3736 * Converts a string to its boolean value
3737 *
3738 * Returns the boolean value
3739 */
3740int
3741xmlXPathCastStringToBoolean (const xmlChar *val) {
3742 if ((val == NULL) || (xmlStrlen(val) == 0))
3743 return(0);
3744 return(1);
3745}
3746
3747/**
3748 * xmlXPathCastNodeSetToBoolean:
3749 * @ns: a node-set
3750 *
3751 * Converts a node-set to its boolean value
3752 *
3753 * Returns the boolean value
3754 */
3755int
3756xmlXPathCastNodeSetToBoolean (xmlNodeSetPtr ns) {
3757 if ((ns == NULL) || (ns->nodeNr == 0))
3758 return(0);
3759 return(1);
3760}
3761
3762/**
Daniel Veillard5e2dace2001-07-18 19:30:27 +00003763 * xmlXPathCastToBoolean:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003764 * @val: an XPath object
3765 *
3766 * Converts an XPath object to its boolean value
3767 *
3768 * Returns the boolean value
3769 */
3770int
3771xmlXPathCastToBoolean (xmlXPathObjectPtr val) {
3772 int ret = 0;
3773
3774 if (val == NULL)
3775 return(0);
3776 switch (val->type) {
3777 case XPATH_UNDEFINED:
3778#ifdef DEBUG_EXPR
3779 xmlGenericError(xmlGenericErrorContext, "BOOLEAN: undefined\n");
3780#endif
3781 ret = 0;
3782 break;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003783 case XPATH_NODESET:
William M. Brack0c022ad2002-07-12 00:56:01 +00003784 case XPATH_XSLT_TREE:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00003785 ret = xmlXPathCastNodeSetToBoolean(val->nodesetval);
3786 break;
3787 case XPATH_STRING:
3788 ret = xmlXPathCastStringToBoolean(val->stringval);
3789 break;
3790 case XPATH_NUMBER:
3791 ret = xmlXPathCastNumberToBoolean(val->floatval);
3792 break;
3793 case XPATH_BOOLEAN:
3794 ret = val->boolval;
3795 break;
3796 case XPATH_USERS:
3797 case XPATH_POINT:
3798 case XPATH_RANGE:
3799 case XPATH_LOCATIONSET:
3800 TODO;
3801 ret = 0;
3802 break;
3803 }
3804 return(ret);
3805}
3806
3807
3808/**
3809 * xmlXPathConvertBoolean:
3810 * @val: an XPath object
3811 *
3812 * Converts an existing object to its boolean() equivalent
3813 *
3814 * Returns the new object, the old one is freed (or the operation
3815 * is done directly on @val)
3816 */
3817xmlXPathObjectPtr
3818xmlXPathConvertBoolean(xmlXPathObjectPtr val) {
3819 xmlXPathObjectPtr ret;
3820
3821 if (val == NULL)
3822 return(xmlXPathNewBoolean(0));
3823 if (val->type == XPATH_BOOLEAN)
3824 return(val);
3825 ret = xmlXPathNewBoolean(xmlXPathCastToBoolean(val));
3826 xmlXPathFreeObject(val);
3827 return(ret);
3828}
3829
Owen Taylor3473f882001-02-23 17:55:21 +00003830/************************************************************************
3831 * *
3832 * Routines to handle XPath contexts *
3833 * *
3834 ************************************************************************/
3835
3836/**
3837 * xmlXPathNewContext:
3838 * @doc: the XML document
3839 *
3840 * Create a new xmlXPathContext
3841 *
Daniel Veillardaf43f632002-03-08 15:05:20 +00003842 * Returns the xmlXPathContext just allocated. The caller will need to free it.
Owen Taylor3473f882001-02-23 17:55:21 +00003843 */
3844xmlXPathContextPtr
3845xmlXPathNewContext(xmlDocPtr doc) {
3846 xmlXPathContextPtr ret;
3847
3848 ret = (xmlXPathContextPtr) xmlMalloc(sizeof(xmlXPathContext));
3849 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003850 xmlXPathErrMemory(NULL, "creating context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003851 return(NULL);
3852 }
3853 memset(ret, 0 , (size_t) sizeof(xmlXPathContext));
3854 ret->doc = doc;
3855 ret->node = NULL;
3856
3857 ret->varHash = NULL;
3858
3859 ret->nb_types = 0;
3860 ret->max_types = 0;
3861 ret->types = NULL;
3862
3863 ret->funcHash = xmlHashCreate(0);
3864
3865 ret->nb_axis = 0;
3866 ret->max_axis = 0;
3867 ret->axis = NULL;
3868
3869 ret->nsHash = NULL;
3870 ret->user = NULL;
3871
3872 ret->contextSize = -1;
3873 ret->proximityPosition = -1;
3874
3875 xmlXPathRegisterAllFunctions(ret);
3876
3877 return(ret);
3878}
3879
3880/**
3881 * xmlXPathFreeContext:
3882 * @ctxt: the context to free
3883 *
3884 * Free up an xmlXPathContext
3885 */
3886void
3887xmlXPathFreeContext(xmlXPathContextPtr ctxt) {
3888 xmlXPathRegisteredNsCleanup(ctxt);
3889 xmlXPathRegisteredFuncsCleanup(ctxt);
3890 xmlXPathRegisteredVariablesCleanup(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00003891 xmlFree(ctxt);
3892}
3893
3894/************************************************************************
3895 * *
3896 * Routines to handle XPath parser contexts *
3897 * *
3898 ************************************************************************/
3899
3900#define CHECK_CTXT(ctxt) \
3901 if (ctxt == NULL) { \
3902 xmlGenericError(xmlGenericErrorContext, \
3903 "%s:%d Internal error: ctxt == NULL\n", \
3904 __FILE__, __LINE__); \
3905 } \
3906
3907
3908#define CHECK_CONTEXT(ctxt) \
3909 if (ctxt == NULL) { \
3910 xmlGenericError(xmlGenericErrorContext, \
3911 "%s:%d Internal error: no context\n", \
3912 __FILE__, __LINE__); \
3913 } \
3914 else if (ctxt->doc == NULL) { \
3915 xmlGenericError(xmlGenericErrorContext, \
3916 "%s:%d Internal error: no document\n", \
3917 __FILE__, __LINE__); \
3918 } \
3919 else if (ctxt->doc->children == NULL) { \
3920 xmlGenericError(xmlGenericErrorContext, \
3921 "%s:%d Internal error: document without root\n", \
3922 __FILE__, __LINE__); \
3923 } \
3924
3925
3926/**
3927 * xmlXPathNewParserContext:
3928 * @str: the XPath expression
3929 * @ctxt: the XPath context
3930 *
3931 * Create a new xmlXPathParserContext
3932 *
3933 * Returns the xmlXPathParserContext just allocated.
3934 */
3935xmlXPathParserContextPtr
3936xmlXPathNewParserContext(const xmlChar *str, xmlXPathContextPtr ctxt) {
3937 xmlXPathParserContextPtr ret;
3938
3939 ret = (xmlXPathParserContextPtr) xmlMalloc(sizeof(xmlXPathParserContext));
3940 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003941 xmlXPathErrMemory(ctxt, "creating parser context\n");
Owen Taylor3473f882001-02-23 17:55:21 +00003942 return(NULL);
3943 }
3944 memset(ret, 0 , (size_t) sizeof(xmlXPathParserContext));
3945 ret->cur = ret->base = str;
3946 ret->context = ctxt;
3947
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003948 ret->comp = xmlXPathNewCompExpr();
3949 if (ret->comp == NULL) {
3950 xmlFree(ret->valueTab);
3951 xmlFree(ret);
3952 return(NULL);
3953 }
Daniel Veillard4773df22004-01-23 13:15:13 +00003954 if ((ctxt != NULL) && (ctxt->dict != NULL)) {
3955 ret->comp->dict = ctxt->dict;
3956 xmlDictReference(ret->comp->dict);
3957 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003958
3959 return(ret);
3960}
3961
3962/**
3963 * xmlXPathCompParserContext:
3964 * @comp: the XPath compiled expression
3965 * @ctxt: the XPath context
3966 *
3967 * Create a new xmlXPathParserContext when processing a compiled expression
3968 *
3969 * Returns the xmlXPathParserContext just allocated.
3970 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00003971static xmlXPathParserContextPtr
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003972xmlXPathCompParserContext(xmlXPathCompExprPtr comp, xmlXPathContextPtr ctxt) {
3973 xmlXPathParserContextPtr ret;
3974
3975 ret = (xmlXPathParserContextPtr) xmlMalloc(sizeof(xmlXPathParserContext));
3976 if (ret == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003977 xmlXPathErrMemory(ctxt, "creating evaluation context\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003978 return(NULL);
3979 }
3980 memset(ret, 0 , (size_t) sizeof(xmlXPathParserContext));
3981
Owen Taylor3473f882001-02-23 17:55:21 +00003982 /* Allocate the value stack */
3983 ret->valueTab = (xmlXPathObjectPtr *)
3984 xmlMalloc(10 * sizeof(xmlXPathObjectPtr));
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003985 if (ret->valueTab == NULL) {
3986 xmlFree(ret);
Daniel Veillardd96f6d32003-10-07 21:25:12 +00003987 xmlXPathErrMemory(ctxt, "creating evaluation context\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003988 return(NULL);
3989 }
Owen Taylor3473f882001-02-23 17:55:21 +00003990 ret->valueNr = 0;
3991 ret->valueMax = 10;
3992 ret->value = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003993
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00003994 ret->context = ctxt;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003995 ret->comp = comp;
3996
Owen Taylor3473f882001-02-23 17:55:21 +00003997 return(ret);
3998}
3999
4000/**
4001 * xmlXPathFreeParserContext:
4002 * @ctxt: the context to free
4003 *
4004 * Free up an xmlXPathParserContext
4005 */
4006void
4007xmlXPathFreeParserContext(xmlXPathParserContextPtr ctxt) {
4008 if (ctxt->valueTab != NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00004009 xmlFree(ctxt->valueTab);
4010 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00004011 if (ctxt->comp)
4012 xmlXPathFreeCompExpr(ctxt->comp);
Owen Taylor3473f882001-02-23 17:55:21 +00004013 xmlFree(ctxt);
4014}
4015
4016/************************************************************************
4017 * *
4018 * The implicit core function library *
4019 * *
4020 ************************************************************************/
4021
Owen Taylor3473f882001-02-23 17:55:21 +00004022/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00004023 * xmlXPathNodeValHash:
Daniel Veillardf06307e2001-07-03 10:35:50 +00004024 * @node: a node pointer
4025 *
4026 * Function computing the beginning of the string value of the node,
4027 * used to speed up comparisons
4028 *
4029 * Returns an int usable as a hash
4030 */
4031static unsigned int
4032xmlXPathNodeValHash(xmlNodePtr node) {
4033 int len = 2;
4034 const xmlChar * string = NULL;
4035 xmlNodePtr tmp = NULL;
4036 unsigned int ret = 0;
4037
4038 if (node == NULL)
4039 return(0);
4040
Daniel Veillard9adc0462003-03-24 18:39:54 +00004041 if (node->type == XML_DOCUMENT_NODE) {
4042 tmp = xmlDocGetRootElement((xmlDocPtr) node);
4043 if (tmp == NULL)
4044 node = node->children;
4045 else
4046 node = tmp;
4047
4048 if (node == NULL)
4049 return(0);
4050 }
Daniel Veillardf06307e2001-07-03 10:35:50 +00004051
4052 switch (node->type) {
4053 case XML_COMMENT_NODE:
4054 case XML_PI_NODE:
4055 case XML_CDATA_SECTION_NODE:
4056 case XML_TEXT_NODE:
4057 string = node->content;
4058 if (string == NULL)
4059 return(0);
4060 if (string[0] == 0)
4061 return(0);
4062 return(((unsigned int) string[0]) +
4063 (((unsigned int) string[1]) << 8));
4064 case XML_NAMESPACE_DECL:
4065 string = ((xmlNsPtr)node)->href;
4066 if (string == NULL)
4067 return(0);
4068 if (string[0] == 0)
4069 return(0);
4070 return(((unsigned int) string[0]) +
4071 (((unsigned int) string[1]) << 8));
4072 case XML_ATTRIBUTE_NODE:
4073 tmp = ((xmlAttrPtr) node)->children;
4074 break;
4075 case XML_ELEMENT_NODE:
4076 tmp = node->children;
4077 break;
4078 default:
4079 return(0);
4080 }
4081 while (tmp != NULL) {
4082 switch (tmp->type) {
4083 case XML_COMMENT_NODE:
4084 case XML_PI_NODE:
4085 case XML_CDATA_SECTION_NODE:
4086 case XML_TEXT_NODE:
4087 string = tmp->content;
4088 break;
4089 case XML_NAMESPACE_DECL:
4090 string = ((xmlNsPtr)tmp)->href;
4091 break;
4092 default:
4093 break;
4094 }
4095 if ((string != NULL) && (string[0] != 0)) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00004096 if (len == 1) {
4097 return(ret + (((unsigned int) string[0]) << 8));
4098 }
4099 if (string[1] == 0) {
4100 len = 1;
4101 ret = (unsigned int) string[0];
4102 } else {
4103 return(((unsigned int) string[0]) +
4104 (((unsigned int) string[1]) << 8));
4105 }
4106 }
4107 /*
4108 * Skip to next node
4109 */
4110 if ((tmp->children != NULL) && (tmp->type != XML_DTD_NODE)) {
4111 if (tmp->children->type != XML_ENTITY_DECL) {
4112 tmp = tmp->children;
4113 continue;
4114 }
4115 }
4116 if (tmp == node)
4117 break;
4118
4119 if (tmp->next != NULL) {
4120 tmp = tmp->next;
4121 continue;
4122 }
4123
4124 do {
4125 tmp = tmp->parent;
4126 if (tmp == NULL)
4127 break;
4128 if (tmp == node) {
4129 tmp = NULL;
4130 break;
4131 }
4132 if (tmp->next != NULL) {
4133 tmp = tmp->next;
4134 break;
4135 }
4136 } while (tmp != NULL);
4137 }
4138 return(ret);
4139}
4140
4141/**
4142 * xmlXPathStringHash:
4143 * @string: a string
4144 *
4145 * Function computing the beginning of the string value of the node,
4146 * used to speed up comparisons
4147 *
4148 * Returns an int usable as a hash
4149 */
4150static unsigned int
4151xmlXPathStringHash(const xmlChar * string) {
4152 if (string == NULL)
4153 return((unsigned int) 0);
4154 if (string[0] == 0)
4155 return(0);
4156 return(((unsigned int) string[0]) +
4157 (((unsigned int) string[1]) << 8));
4158}
4159
4160/**
Owen Taylor3473f882001-02-23 17:55:21 +00004161 * xmlXPathCompareNodeSetFloat:
4162 * @ctxt: the XPath Parser context
4163 * @inf: less than (1) or greater than (0)
4164 * @strict: is the comparison strict
4165 * @arg: the node set
4166 * @f: the value
4167 *
4168 * Implement the compare operation between a nodeset and a number
4169 * @ns < @val (1, 1, ...
4170 * @ns <= @val (1, 0, ...
4171 * @ns > @val (0, 1, ...
4172 * @ns >= @val (0, 0, ...
4173 *
4174 * If one object to be compared is a node-set and the other is a number,
4175 * then the comparison will be true if and only if there is a node in the
4176 * node-set such that the result of performing the comparison on the number
4177 * to be compared and on the result of converting the string-value of that
4178 * node to a number using the number function is true.
4179 *
4180 * Returns 0 or 1 depending on the results of the test.
4181 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004182static int
Owen Taylor3473f882001-02-23 17:55:21 +00004183xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict,
4184 xmlXPathObjectPtr arg, xmlXPathObjectPtr f) {
4185 int i, ret = 0;
4186 xmlNodeSetPtr ns;
4187 xmlChar *str2;
4188
4189 if ((f == NULL) || (arg == NULL) ||
4190 ((arg->type != XPATH_NODESET) && (arg->type != XPATH_XSLT_TREE))) {
4191 xmlXPathFreeObject(arg);
4192 xmlXPathFreeObject(f);
4193 return(0);
4194 }
4195 ns = arg->nodesetval;
Daniel Veillard911f49a2001-04-07 15:39:35 +00004196 if (ns != NULL) {
4197 for (i = 0;i < ns->nodeNr;i++) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00004198 str2 = xmlXPathCastNodeToString(ns->nodeTab[i]);
Daniel Veillard911f49a2001-04-07 15:39:35 +00004199 if (str2 != NULL) {
4200 valuePush(ctxt,
4201 xmlXPathNewString(str2));
4202 xmlFree(str2);
4203 xmlXPathNumberFunction(ctxt, 1);
4204 valuePush(ctxt, xmlXPathObjectCopy(f));
4205 ret = xmlXPathCompareValues(ctxt, inf, strict);
4206 if (ret)
4207 break;
4208 }
4209 }
Owen Taylor3473f882001-02-23 17:55:21 +00004210 }
4211 xmlXPathFreeObject(arg);
4212 xmlXPathFreeObject(f);
4213 return(ret);
4214}
4215
4216/**
4217 * xmlXPathCompareNodeSetString:
4218 * @ctxt: the XPath Parser context
4219 * @inf: less than (1) or greater than (0)
4220 * @strict: is the comparison strict
4221 * @arg: the node set
4222 * @s: the value
4223 *
4224 * Implement the compare operation between a nodeset and a string
4225 * @ns < @val (1, 1, ...
4226 * @ns <= @val (1, 0, ...
4227 * @ns > @val (0, 1, ...
4228 * @ns >= @val (0, 0, ...
4229 *
4230 * If one object to be compared is a node-set and the other is a string,
4231 * then the comparison will be true if and only if there is a node in
4232 * the node-set such that the result of performing the comparison on the
4233 * string-value of the node and the other string is true.
4234 *
4235 * Returns 0 or 1 depending on the results of the test.
4236 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004237static int
Owen Taylor3473f882001-02-23 17:55:21 +00004238xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict,
4239 xmlXPathObjectPtr arg, xmlXPathObjectPtr s) {
4240 int i, ret = 0;
4241 xmlNodeSetPtr ns;
4242 xmlChar *str2;
4243
4244 if ((s == NULL) || (arg == NULL) ||
4245 ((arg->type != XPATH_NODESET) && (arg->type != XPATH_XSLT_TREE))) {
4246 xmlXPathFreeObject(arg);
4247 xmlXPathFreeObject(s);
4248 return(0);
4249 }
4250 ns = arg->nodesetval;
Daniel Veillard911f49a2001-04-07 15:39:35 +00004251 if (ns != NULL) {
4252 for (i = 0;i < ns->nodeNr;i++) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00004253 str2 = xmlXPathCastNodeToString(ns->nodeTab[i]);
Daniel Veillard911f49a2001-04-07 15:39:35 +00004254 if (str2 != NULL) {
4255 valuePush(ctxt,
4256 xmlXPathNewString(str2));
4257 xmlFree(str2);
4258 valuePush(ctxt, xmlXPathObjectCopy(s));
4259 ret = xmlXPathCompareValues(ctxt, inf, strict);
4260 if (ret)
4261 break;
4262 }
4263 }
Owen Taylor3473f882001-02-23 17:55:21 +00004264 }
4265 xmlXPathFreeObject(arg);
4266 xmlXPathFreeObject(s);
4267 return(ret);
4268}
4269
4270/**
4271 * xmlXPathCompareNodeSets:
Daniel Veillardba0b8c92001-05-15 09:43:47 +00004272 * @inf: less than (1) or greater than (0)
Owen Taylor3473f882001-02-23 17:55:21 +00004273 * @strict: is the comparison strict
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004274 * @arg1: the first node set object
Owen Taylor3473f882001-02-23 17:55:21 +00004275 * @arg2: the second node set object
4276 *
4277 * Implement the compare operation on nodesets:
4278 *
4279 * If both objects to be compared are node-sets, then the comparison
4280 * will be true if and only if there is a node in the first node-set
4281 * and a node in the second node-set such that the result of performing
4282 * the comparison on the string-values of the two nodes is true.
4283 * ....
4284 * When neither object to be compared is a node-set and the operator
4285 * is <=, <, >= or >, then the objects are compared by converting both
4286 * objects to numbers and comparing the numbers according to IEEE 754.
4287 * ....
4288 * The number function converts its argument to a number as follows:
4289 * - a string that consists of optional whitespace followed by an
4290 * optional minus sign followed by a Number followed by whitespace
4291 * is converted to the IEEE 754 number that is nearest (according
4292 * to the IEEE 754 round-to-nearest rule) to the mathematical value
4293 * represented by the string; any other string is converted to NaN
4294 *
4295 * Conclusion all nodes need to be converted first to their string value
4296 * and then the comparison must be done when possible
4297 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004298static int
4299xmlXPathCompareNodeSets(int inf, int strict,
Owen Taylor3473f882001-02-23 17:55:21 +00004300 xmlXPathObjectPtr arg1, xmlXPathObjectPtr arg2) {
4301 int i, j, init = 0;
4302 double val1;
4303 double *values2;
4304 int ret = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00004305 xmlNodeSetPtr ns1;
4306 xmlNodeSetPtr ns2;
4307
4308 if ((arg1 == NULL) ||
Daniel Veillard4dd93462001-04-02 15:16:19 +00004309 ((arg1->type != XPATH_NODESET) && (arg1->type != XPATH_XSLT_TREE))) {
4310 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004311 return(0);
Daniel Veillard4dd93462001-04-02 15:16:19 +00004312 }
Owen Taylor3473f882001-02-23 17:55:21 +00004313 if ((arg2 == NULL) ||
Daniel Veillard4dd93462001-04-02 15:16:19 +00004314 ((arg2->type != XPATH_NODESET) && (arg2->type != XPATH_XSLT_TREE))) {
4315 xmlXPathFreeObject(arg1);
4316 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004317 return(0);
Daniel Veillard4dd93462001-04-02 15:16:19 +00004318 }
Owen Taylor3473f882001-02-23 17:55:21 +00004319
4320 ns1 = arg1->nodesetval;
4321 ns2 = arg2->nodesetval;
4322
Daniel Veillardd8df6c02001-04-05 16:54:14 +00004323 if ((ns1 == NULL) || (ns1->nodeNr <= 0)) {
Daniel Veillard4dd93462001-04-02 15:16:19 +00004324 xmlXPathFreeObject(arg1);
4325 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004326 return(0);
Daniel Veillard4dd93462001-04-02 15:16:19 +00004327 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00004328 if ((ns2 == NULL) || (ns2->nodeNr <= 0)) {
Daniel Veillard4dd93462001-04-02 15:16:19 +00004329 xmlXPathFreeObject(arg1);
4330 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004331 return(0);
Daniel Veillard4dd93462001-04-02 15:16:19 +00004332 }
Owen Taylor3473f882001-02-23 17:55:21 +00004333
4334 values2 = (double *) xmlMalloc(ns2->nodeNr * sizeof(double));
4335 if (values2 == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004336 xmlXPathErrMemory(NULL, "comparing nodesets\n");
Daniel Veillard4dd93462001-04-02 15:16:19 +00004337 xmlXPathFreeObject(arg1);
4338 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004339 return(0);
4340 }
4341 for (i = 0;i < ns1->nodeNr;i++) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00004342 val1 = xmlXPathCastNodeToNumber(ns1->nodeTab[i]);
Daniel Veillardcda96922001-08-21 10:56:31 +00004343 if (xmlXPathIsNaN(val1))
Owen Taylor3473f882001-02-23 17:55:21 +00004344 continue;
4345 for (j = 0;j < ns2->nodeNr;j++) {
4346 if (init == 0) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00004347 values2[j] = xmlXPathCastNodeToNumber(ns2->nodeTab[j]);
Owen Taylor3473f882001-02-23 17:55:21 +00004348 }
Daniel Veillardcda96922001-08-21 10:56:31 +00004349 if (xmlXPathIsNaN(values2[j]))
Owen Taylor3473f882001-02-23 17:55:21 +00004350 continue;
4351 if (inf && strict)
4352 ret = (val1 < values2[j]);
4353 else if (inf && !strict)
4354 ret = (val1 <= values2[j]);
4355 else if (!inf && strict)
4356 ret = (val1 > values2[j]);
4357 else if (!inf && !strict)
4358 ret = (val1 >= values2[j]);
4359 if (ret)
4360 break;
4361 }
4362 if (ret)
4363 break;
4364 init = 1;
4365 }
4366 xmlFree(values2);
Daniel Veillard4dd93462001-04-02 15:16:19 +00004367 xmlXPathFreeObject(arg1);
4368 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00004369 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00004370}
4371
4372/**
4373 * xmlXPathCompareNodeSetValue:
4374 * @ctxt: the XPath Parser context
4375 * @inf: less than (1) or greater than (0)
4376 * @strict: is the comparison strict
4377 * @arg: the node set
4378 * @val: the value
4379 *
4380 * Implement the compare operation between a nodeset and a value
4381 * @ns < @val (1, 1, ...
4382 * @ns <= @val (1, 0, ...
4383 * @ns > @val (0, 1, ...
4384 * @ns >= @val (0, 0, ...
4385 *
4386 * If one object to be compared is a node-set and the other is a boolean,
4387 * then the comparison will be true if and only if the result of performing
4388 * the comparison on the boolean and on the result of converting
4389 * the node-set to a boolean using the boolean function is true.
4390 *
4391 * Returns 0 or 1 depending on the results of the test.
4392 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004393static int
Owen Taylor3473f882001-02-23 17:55:21 +00004394xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict,
4395 xmlXPathObjectPtr arg, xmlXPathObjectPtr val) {
4396 if ((val == NULL) || (arg == NULL) ||
4397 ((arg->type != XPATH_NODESET) && (arg->type != XPATH_XSLT_TREE)))
4398 return(0);
4399
4400 switch(val->type) {
4401 case XPATH_NUMBER:
4402 return(xmlXPathCompareNodeSetFloat(ctxt, inf, strict, arg, val));
4403 case XPATH_NODESET:
4404 case XPATH_XSLT_TREE:
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004405 return(xmlXPathCompareNodeSets(inf, strict, arg, val));
Owen Taylor3473f882001-02-23 17:55:21 +00004406 case XPATH_STRING:
4407 return(xmlXPathCompareNodeSetString(ctxt, inf, strict, arg, val));
4408 case XPATH_BOOLEAN:
4409 valuePush(ctxt, arg);
4410 xmlXPathBooleanFunction(ctxt, 1);
4411 valuePush(ctxt, val);
4412 return(xmlXPathCompareValues(ctxt, inf, strict));
4413 default:
4414 TODO
Owen Taylor3473f882001-02-23 17:55:21 +00004415 }
4416 return(0);
4417}
4418
4419/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00004420 * xmlXPathEqualNodeSetString:
Owen Taylor3473f882001-02-23 17:55:21 +00004421 * @arg: the nodeset object argument
4422 * @str: the string to compare to.
William M. Brack0c022ad2002-07-12 00:56:01 +00004423 * @neq: flag to show whether for '=' (0) or '!=' (1)
Owen Taylor3473f882001-02-23 17:55:21 +00004424 *
4425 * Implement the equal operation on XPath objects content: @arg1 == @arg2
4426 * If one object to be compared is a node-set and the other is a string,
4427 * then the comparison will be true if and only if there is a node in
4428 * the node-set such that the result of performing the comparison on the
4429 * string-value of the node and the other string is true.
4430 *
4431 * Returns 0 or 1 depending on the results of the test.
4432 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004433static int
William M. Brack0c022ad2002-07-12 00:56:01 +00004434xmlXPathEqualNodeSetString(xmlXPathObjectPtr arg, const xmlChar * str, int neq)
Daniel Veillardf06307e2001-07-03 10:35:50 +00004435{
Owen Taylor3473f882001-02-23 17:55:21 +00004436 int i;
4437 xmlNodeSetPtr ns;
4438 xmlChar *str2;
Daniel Veillardf06307e2001-07-03 10:35:50 +00004439 unsigned int hash;
Owen Taylor3473f882001-02-23 17:55:21 +00004440
4441 if ((str == NULL) || (arg == NULL) ||
Daniel Veillardf06307e2001-07-03 10:35:50 +00004442 ((arg->type != XPATH_NODESET) && (arg->type != XPATH_XSLT_TREE)))
4443 return (0);
Owen Taylor3473f882001-02-23 17:55:21 +00004444 ns = arg->nodesetval;
William M. Brackc125a722003-11-16 08:06:19 +00004445 /*
4446 * A NULL nodeset compared with a string is always false
4447 * (since there is no node equal, and no node not equal)
4448 */
4449 if ((ns == NULL) || (ns->nodeNr <= 0) )
Daniel Veillardf06307e2001-07-03 10:35:50 +00004450 return (0);
William M. Brackc125a722003-11-16 08:06:19 +00004451 hash = xmlXPathStringHash(str);
Daniel Veillardf06307e2001-07-03 10:35:50 +00004452 for (i = 0; i < ns->nodeNr; i++) {
4453 if (xmlXPathNodeValHash(ns->nodeTab[i]) == hash) {
4454 str2 = xmlNodeGetContent(ns->nodeTab[i]);
4455 if ((str2 != NULL) && (xmlStrEqual(str, str2))) {
4456 xmlFree(str2);
William M. Brack0c022ad2002-07-12 00:56:01 +00004457 if (neq)
4458 continue;
Daniel Veillardf06307e2001-07-03 10:35:50 +00004459 return (1);
Daniel Veillard9adc0462003-03-24 18:39:54 +00004460 } else if ((str2 == NULL) && (xmlStrEqual(str, BAD_CAST ""))) {
4461 if (neq)
4462 continue;
4463 return (1);
William M. Brack0c022ad2002-07-12 00:56:01 +00004464 } else if (neq) {
4465 if (str2 != NULL)
4466 xmlFree(str2);
4467 return (1);
4468 }
Daniel Veillardf06307e2001-07-03 10:35:50 +00004469 if (str2 != NULL)
4470 xmlFree(str2);
William M. Brack0c022ad2002-07-12 00:56:01 +00004471 } else if (neq)
4472 return (1);
Owen Taylor3473f882001-02-23 17:55:21 +00004473 }
Daniel Veillardf06307e2001-07-03 10:35:50 +00004474 return (0);
Owen Taylor3473f882001-02-23 17:55:21 +00004475}
4476
4477/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00004478 * xmlXPathEqualNodeSetFloat:
Owen Taylor3473f882001-02-23 17:55:21 +00004479 * @arg: the nodeset object argument
4480 * @f: the float to compare to
William M. Brack0c022ad2002-07-12 00:56:01 +00004481 * @neq: flag to show whether to compare '=' (0) or '!=' (1)
Owen Taylor3473f882001-02-23 17:55:21 +00004482 *
4483 * Implement the equal operation on XPath objects content: @arg1 == @arg2
4484 * If one object to be compared is a node-set and the other is a number,
4485 * then the comparison will be true if and only if there is a node in
4486 * the node-set such that the result of performing the comparison on the
4487 * number to be compared and on the result of converting the string-value
4488 * of that node to a number using the number function is true.
4489 *
4490 * Returns 0 or 1 depending on the results of the test.
4491 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004492static int
William M. Brack0c022ad2002-07-12 00:56:01 +00004493xmlXPathEqualNodeSetFloat(xmlXPathParserContextPtr ctxt,
4494 xmlXPathObjectPtr arg, double f, int neq) {
4495 int i, ret=0;
4496 xmlNodeSetPtr ns;
4497 xmlChar *str2;
4498 xmlXPathObjectPtr val;
4499 double v;
Owen Taylor3473f882001-02-23 17:55:21 +00004500
4501 if ((arg == NULL) ||
4502 ((arg->type != XPATH_NODESET) && (arg->type != XPATH_XSLT_TREE)))
4503 return(0);
4504
William M. Brack0c022ad2002-07-12 00:56:01 +00004505 ns = arg->nodesetval;
4506 if (ns != NULL) {
4507 for (i=0;i<ns->nodeNr;i++) {
4508 str2 = xmlXPathCastNodeToString(ns->nodeTab[i]);
4509 if (str2 != NULL) {
4510 valuePush(ctxt, xmlXPathNewString(str2));
4511 xmlFree(str2);
4512 xmlXPathNumberFunction(ctxt, 1);
4513 val = valuePop(ctxt);
4514 v = val->floatval;
4515 xmlXPathFreeObject(val);
4516 if (!xmlXPathIsNaN(v)) {
4517 if ((!neq) && (v==f)) {
4518 ret = 1;
4519 break;
4520 } else if ((neq) && (v!=f)) {
4521 ret = 1;
4522 break;
4523 }
4524 }
4525 }
4526 }
4527 }
4528
4529 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00004530}
4531
4532
4533/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00004534 * xmlXPathEqualNodeSets:
Owen Taylor3473f882001-02-23 17:55:21 +00004535 * @arg1: first nodeset object argument
4536 * @arg2: second nodeset object argument
William M. Brack0c022ad2002-07-12 00:56:01 +00004537 * @neq: flag to show whether to test '=' (0) or '!=' (1)
Owen Taylor3473f882001-02-23 17:55:21 +00004538 *
William M. Brack0c022ad2002-07-12 00:56:01 +00004539 * Implement the equal / not equal operation on XPath nodesets:
4540 * @arg1 == @arg2 or @arg1 != @arg2
Owen Taylor3473f882001-02-23 17:55:21 +00004541 * If both objects to be compared are node-sets, then the comparison
4542 * will be true if and only if there is a node in the first node-set and
4543 * a node in the second node-set such that the result of performing the
4544 * comparison on the string-values of the two nodes is true.
4545 *
4546 * (needless to say, this is a costly operation)
4547 *
4548 * Returns 0 or 1 depending on the results of the test.
4549 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004550static int
William M. Brack0c022ad2002-07-12 00:56:01 +00004551xmlXPathEqualNodeSets(xmlXPathObjectPtr arg1, xmlXPathObjectPtr arg2, int neq) {
Owen Taylor3473f882001-02-23 17:55:21 +00004552 int i, j;
Daniel Veillardf06307e2001-07-03 10:35:50 +00004553 unsigned int *hashs1;
4554 unsigned int *hashs2;
Owen Taylor3473f882001-02-23 17:55:21 +00004555 xmlChar **values1;
4556 xmlChar **values2;
4557 int ret = 0;
4558 xmlNodeSetPtr ns1;
4559 xmlNodeSetPtr ns2;
4560
4561 if ((arg1 == NULL) ||
4562 ((arg1->type != XPATH_NODESET) && (arg1->type != XPATH_XSLT_TREE)))
4563 return(0);
4564 if ((arg2 == NULL) ||
4565 ((arg2->type != XPATH_NODESET) && (arg2->type != XPATH_XSLT_TREE)))
4566 return(0);
4567
4568 ns1 = arg1->nodesetval;
4569 ns2 = arg2->nodesetval;
4570
Daniel Veillard911f49a2001-04-07 15:39:35 +00004571 if ((ns1 == NULL) || (ns1->nodeNr <= 0))
Owen Taylor3473f882001-02-23 17:55:21 +00004572 return(0);
Daniel Veillard911f49a2001-04-07 15:39:35 +00004573 if ((ns2 == NULL) || (ns2->nodeNr <= 0))
Owen Taylor3473f882001-02-23 17:55:21 +00004574 return(0);
4575
4576 /*
William M. Brack0c022ad2002-07-12 00:56:01 +00004577 * for equal, check if there is a node pertaining to both sets
Owen Taylor3473f882001-02-23 17:55:21 +00004578 */
William M. Brack0c022ad2002-07-12 00:56:01 +00004579 if (neq == 0)
4580 for (i = 0;i < ns1->nodeNr;i++)
4581 for (j = 0;j < ns2->nodeNr;j++)
4582 if (ns1->nodeTab[i] == ns2->nodeTab[j])
4583 return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00004584
4585 values1 = (xmlChar **) xmlMalloc(ns1->nodeNr * sizeof(xmlChar *));
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004586 if (values1 == NULL) {
4587 xmlXPathErrMemory(NULL, "comparing nodesets\n");
Owen Taylor3473f882001-02-23 17:55:21 +00004588 return(0);
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004589 }
Daniel Veillardf06307e2001-07-03 10:35:50 +00004590 hashs1 = (unsigned int *) xmlMalloc(ns1->nodeNr * sizeof(unsigned int));
4591 if (hashs1 == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004592 xmlXPathErrMemory(NULL, "comparing nodesets\n");
Daniel Veillardf06307e2001-07-03 10:35:50 +00004593 xmlFree(values1);
4594 return(0);
4595 }
Owen Taylor3473f882001-02-23 17:55:21 +00004596 memset(values1, 0, ns1->nodeNr * sizeof(xmlChar *));
4597 values2 = (xmlChar **) xmlMalloc(ns2->nodeNr * sizeof(xmlChar *));
4598 if (values2 == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004599 xmlXPathErrMemory(NULL, "comparing nodesets\n");
Daniel Veillardf06307e2001-07-03 10:35:50 +00004600 xmlFree(hashs1);
Owen Taylor3473f882001-02-23 17:55:21 +00004601 xmlFree(values1);
4602 return(0);
4603 }
Daniel Veillardf06307e2001-07-03 10:35:50 +00004604 hashs2 = (unsigned int *) xmlMalloc(ns2->nodeNr * sizeof(unsigned int));
4605 if (hashs2 == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +00004606 xmlXPathErrMemory(NULL, "comparing nodesets\n");
Daniel Veillardf06307e2001-07-03 10:35:50 +00004607 xmlFree(hashs1);
4608 xmlFree(values1);
4609 xmlFree(values2);
4610 return(0);
4611 }
Owen Taylor3473f882001-02-23 17:55:21 +00004612 memset(values2, 0, ns2->nodeNr * sizeof(xmlChar *));
4613 for (i = 0;i < ns1->nodeNr;i++) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00004614 hashs1[i] = xmlXPathNodeValHash(ns1->nodeTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +00004615 for (j = 0;j < ns2->nodeNr;j++) {
4616 if (i == 0)
Daniel Veillardf06307e2001-07-03 10:35:50 +00004617 hashs2[j] = xmlXPathNodeValHash(ns2->nodeTab[j]);
William M. Brack0c022ad2002-07-12 00:56:01 +00004618 if (hashs1[i] != hashs2[j]) {
4619 if (neq) {
4620 ret = 1;
4621 break;
4622 }
4623 }
4624 else {
Daniel Veillardf06307e2001-07-03 10:35:50 +00004625 if (values1[i] == NULL)
4626 values1[i] = xmlNodeGetContent(ns1->nodeTab[i]);
4627 if (values2[j] == NULL)
4628 values2[j] = xmlNodeGetContent(ns2->nodeTab[j]);
William M. Brack0c022ad2002-07-12 00:56:01 +00004629 ret = xmlStrEqual(values1[i], values2[j]) ^ neq;
Daniel Veillardf06307e2001-07-03 10:35:50 +00004630 if (ret)
4631 break;
4632 }
Owen Taylor3473f882001-02-23 17:55:21 +00004633 }
4634 if (ret)
4635 break;
4636 }
4637 for (i = 0;i < ns1->nodeNr;i++)
4638 if (values1[i] != NULL)
4639 xmlFree(values1[i]);
4640 for (j = 0;j < ns2->nodeNr;j++)
4641 if (values2[j] != NULL)
4642 xmlFree(values2[j]);
4643 xmlFree(values1);
4644 xmlFree(values2);
Daniel Veillardf06307e2001-07-03 10:35:50 +00004645 xmlFree(hashs1);
4646 xmlFree(hashs2);
Owen Taylor3473f882001-02-23 17:55:21 +00004647 return(ret);
4648}
4649
William M. Brack0c022ad2002-07-12 00:56:01 +00004650static int
4651xmlXPathEqualValuesCommon(xmlXPathParserContextPtr ctxt,
4652 xmlXPathObjectPtr arg1, xmlXPathObjectPtr arg2) {
Owen Taylor3473f882001-02-23 17:55:21 +00004653 int ret = 0;
William M. Brack0c022ad2002-07-12 00:56:01 +00004654 /*
4655 *At this point we are assured neither arg1 nor arg2
4656 *is a nodeset, so we can just pick the appropriate routine.
4657 */
Owen Taylor3473f882001-02-23 17:55:21 +00004658 switch (arg1->type) {
4659 case XPATH_UNDEFINED:
4660#ifdef DEBUG_EXPR
4661 xmlGenericError(xmlGenericErrorContext,
4662 "Equal: undefined\n");
4663#endif
4664 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004665 case XPATH_BOOLEAN:
4666 switch (arg2->type) {
4667 case XPATH_UNDEFINED:
4668#ifdef DEBUG_EXPR
4669 xmlGenericError(xmlGenericErrorContext,
4670 "Equal: undefined\n");
4671#endif
4672 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004673 case XPATH_BOOLEAN:
4674#ifdef DEBUG_EXPR
4675 xmlGenericError(xmlGenericErrorContext,
4676 "Equal: %d boolean %d \n",
4677 arg1->boolval, arg2->boolval);
4678#endif
4679 ret = (arg1->boolval == arg2->boolval);
4680 break;
4681 case XPATH_NUMBER:
William M. Brackef61d202002-07-19 08:32:00 +00004682 ret = (arg1->boolval ==
4683 xmlXPathCastNumberToBoolean(arg2->floatval));
Owen Taylor3473f882001-02-23 17:55:21 +00004684 break;
4685 case XPATH_STRING:
4686 if ((arg2->stringval == NULL) ||
4687 (arg2->stringval[0] == 0)) ret = 0;
4688 else
4689 ret = 1;
4690 ret = (arg1->boolval == ret);
4691 break;
4692 case XPATH_USERS:
4693 case XPATH_POINT:
4694 case XPATH_RANGE:
4695 case XPATH_LOCATIONSET:
4696 TODO
4697 break;
William M. Brack0c022ad2002-07-12 00:56:01 +00004698 case XPATH_NODESET:
4699 case XPATH_XSLT_TREE:
4700 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004701 }
4702 break;
4703 case XPATH_NUMBER:
4704 switch (arg2->type) {
4705 case XPATH_UNDEFINED:
4706#ifdef DEBUG_EXPR
4707 xmlGenericError(xmlGenericErrorContext,
4708 "Equal: undefined\n");
4709#endif
4710 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004711 case XPATH_BOOLEAN:
William M. Brackef61d202002-07-19 08:32:00 +00004712 ret = (arg2->boolval==
4713 xmlXPathCastNumberToBoolean(arg1->floatval));
Owen Taylor3473f882001-02-23 17:55:21 +00004714 break;
4715 case XPATH_STRING:
4716 valuePush(ctxt, arg2);
4717 xmlXPathNumberFunction(ctxt, 1);
4718 arg2 = valuePop(ctxt);
4719 /* no break on purpose */
4720 case XPATH_NUMBER:
Daniel Veillardd30be4a2002-03-28 18:25:31 +00004721 /* Hand check NaN and Infinity equalities */
William M. Brack08171912003-12-29 02:52:11 +00004722 if (xmlXPathIsNaN(arg1->floatval) ||
4723 xmlXPathIsNaN(arg2->floatval)) {
Daniel Veillard21458c82002-03-27 16:12:22 +00004724 ret = 0;
Daniel Veillardd30be4a2002-03-28 18:25:31 +00004725 } else if (xmlXPathIsInf(arg1->floatval) == 1) {
4726 if (xmlXPathIsInf(arg2->floatval) == 1)
4727 ret = 1;
4728 else
4729 ret = 0;
4730 } else if (xmlXPathIsInf(arg1->floatval) == -1) {
4731 if (xmlXPathIsInf(arg2->floatval) == -1)
4732 ret = 1;
4733 else
4734 ret = 0;
4735 } else if (xmlXPathIsInf(arg2->floatval) == 1) {
4736 if (xmlXPathIsInf(arg1->floatval) == 1)
4737 ret = 1;
4738 else
4739 ret = 0;
4740 } else if (xmlXPathIsInf(arg2->floatval) == -1) {
4741 if (xmlXPathIsInf(arg1->floatval) == -1)
4742 ret = 1;
4743 else
4744 ret = 0;
Daniel Veillard21458c82002-03-27 16:12:22 +00004745 } else {
4746 ret = (arg1->floatval == arg2->floatval);
4747 }
Owen Taylor3473f882001-02-23 17:55:21 +00004748 break;
4749 case XPATH_USERS:
4750 case XPATH_POINT:
4751 case XPATH_RANGE:
4752 case XPATH_LOCATIONSET:
4753 TODO
4754 break;
William M. Brack0c022ad2002-07-12 00:56:01 +00004755 case XPATH_NODESET:
4756 case XPATH_XSLT_TREE:
4757 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004758 }
4759 break;
4760 case XPATH_STRING:
4761 switch (arg2->type) {
4762 case XPATH_UNDEFINED:
4763#ifdef DEBUG_EXPR
4764 xmlGenericError(xmlGenericErrorContext,
4765 "Equal: undefined\n");
4766#endif
4767 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004768 case XPATH_BOOLEAN:
4769 if ((arg1->stringval == NULL) ||
4770 (arg1->stringval[0] == 0)) ret = 0;
4771 else
4772 ret = 1;
4773 ret = (arg2->boolval == ret);
4774 break;
4775 case XPATH_STRING:
4776 ret = xmlStrEqual(arg1->stringval, arg2->stringval);
4777 break;
4778 case XPATH_NUMBER:
4779 valuePush(ctxt, arg1);
4780 xmlXPathNumberFunction(ctxt, 1);
4781 arg1 = valuePop(ctxt);
Daniel Veillardd30be4a2002-03-28 18:25:31 +00004782 /* Hand check NaN and Infinity equalities */
William M. Brack08171912003-12-29 02:52:11 +00004783 if (xmlXPathIsNaN(arg1->floatval) ||
4784 xmlXPathIsNaN(arg2->floatval)) {
Daniel Veillard21458c82002-03-27 16:12:22 +00004785 ret = 0;
Daniel Veillardd30be4a2002-03-28 18:25:31 +00004786 } else if (xmlXPathIsInf(arg1->floatval) == 1) {
4787 if (xmlXPathIsInf(arg2->floatval) == 1)
4788 ret = 1;
4789 else
4790 ret = 0;
4791 } else if (xmlXPathIsInf(arg1->floatval) == -1) {
4792 if (xmlXPathIsInf(arg2->floatval) == -1)
4793 ret = 1;
4794 else
4795 ret = 0;
4796 } else if (xmlXPathIsInf(arg2->floatval) == 1) {
4797 if (xmlXPathIsInf(arg1->floatval) == 1)
4798 ret = 1;
4799 else
4800 ret = 0;
4801 } else if (xmlXPathIsInf(arg2->floatval) == -1) {
4802 if (xmlXPathIsInf(arg1->floatval) == -1)
4803 ret = 1;
4804 else
4805 ret = 0;
Daniel Veillard21458c82002-03-27 16:12:22 +00004806 } else {
4807 ret = (arg1->floatval == arg2->floatval);
4808 }
Owen Taylor3473f882001-02-23 17:55:21 +00004809 break;
4810 case XPATH_USERS:
4811 case XPATH_POINT:
4812 case XPATH_RANGE:
4813 case XPATH_LOCATIONSET:
4814 TODO
4815 break;
William M. Brack0c022ad2002-07-12 00:56:01 +00004816 case XPATH_NODESET:
4817 case XPATH_XSLT_TREE:
4818 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004819 }
4820 break;
4821 case XPATH_USERS:
4822 case XPATH_POINT:
4823 case XPATH_RANGE:
4824 case XPATH_LOCATIONSET:
4825 TODO
4826 break;
William M. Brack0c022ad2002-07-12 00:56:01 +00004827 case XPATH_NODESET:
4828 case XPATH_XSLT_TREE:
4829 break;
Owen Taylor3473f882001-02-23 17:55:21 +00004830 }
4831 xmlXPathFreeObject(arg1);
4832 xmlXPathFreeObject(arg2);
4833 return(ret);
4834}
4835
William M. Brack0c022ad2002-07-12 00:56:01 +00004836/**
4837 * xmlXPathEqualValues:
4838 * @ctxt: the XPath Parser context
4839 *
4840 * Implement the equal operation on XPath objects content: @arg1 == @arg2
4841 *
4842 * Returns 0 or 1 depending on the results of the test.
4843 */
4844int
4845xmlXPathEqualValues(xmlXPathParserContextPtr ctxt) {
4846 xmlXPathObjectPtr arg1, arg2, argtmp;
4847 int ret = 0;
4848
4849 arg2 = valuePop(ctxt);
4850 arg1 = valuePop(ctxt);
4851 if ((arg1 == NULL) || (arg2 == NULL)) {
4852 if (arg1 != NULL)
4853 xmlXPathFreeObject(arg1);
4854 else
4855 xmlXPathFreeObject(arg2);
4856 XP_ERROR0(XPATH_INVALID_OPERAND);
4857 }
4858
4859 if (arg1 == arg2) {
4860#ifdef DEBUG_EXPR
4861 xmlGenericError(xmlGenericErrorContext,
4862 "Equal: by pointer\n");
4863#endif
4864 return(1);
4865 }
4866
4867 /*
4868 *If either argument is a nodeset, it's a 'special case'
4869 */
4870 if ((arg2->type == XPATH_NODESET) || (arg2->type == XPATH_XSLT_TREE) ||
4871 (arg1->type == XPATH_NODESET) || (arg1->type == XPATH_XSLT_TREE)) {
4872 /*
4873 *Hack it to assure arg1 is the nodeset
4874 */
4875 if ((arg1->type != XPATH_NODESET) && (arg1->type != XPATH_XSLT_TREE)) {
4876 argtmp = arg2;
4877 arg2 = arg1;
4878 arg1 = argtmp;
4879 }
4880 switch (arg2->type) {
4881 case XPATH_UNDEFINED:
4882#ifdef DEBUG_EXPR
4883 xmlGenericError(xmlGenericErrorContext,
4884 "Equal: undefined\n");
4885#endif
4886 break;
4887 case XPATH_NODESET:
4888 case XPATH_XSLT_TREE:
4889 ret = xmlXPathEqualNodeSets(arg1, arg2, 0);
4890 break;
4891 case XPATH_BOOLEAN:
4892 if ((arg1->nodesetval == NULL) ||
4893 (arg1->nodesetval->nodeNr == 0)) ret = 0;
4894 else
4895 ret = 1;
4896 ret = (ret == arg2->boolval);
4897 break;
4898 case XPATH_NUMBER:
4899 ret = xmlXPathEqualNodeSetFloat(ctxt, arg1, arg2->floatval, 0);
4900 break;
4901 case XPATH_STRING:
4902 ret = xmlXPathEqualNodeSetString(arg1, arg2->stringval, 0);
4903 break;
4904 case XPATH_USERS:
4905 case XPATH_POINT:
4906 case XPATH_RANGE:
4907 case XPATH_LOCATIONSET:
4908 TODO
4909 break;
4910 }
4911 xmlXPathFreeObject(arg1);
4912 xmlXPathFreeObject(arg2);
4913 return(ret);
4914 }
4915
4916 return (xmlXPathEqualValuesCommon(ctxt, arg1, arg2));
4917}
4918
4919/**
4920 * xmlXPathNotEqualValues:
4921 * @ctxt: the XPath Parser context
4922 *
4923 * Implement the equal operation on XPath objects content: @arg1 == @arg2
4924 *
4925 * Returns 0 or 1 depending on the results of the test.
4926 */
4927int
4928xmlXPathNotEqualValues(xmlXPathParserContextPtr ctxt) {
4929 xmlXPathObjectPtr arg1, arg2, argtmp;
4930 int ret = 0;
4931
4932 arg2 = valuePop(ctxt);
4933 arg1 = valuePop(ctxt);
4934 if ((arg1 == NULL) || (arg2 == NULL)) {
4935 if (arg1 != NULL)
4936 xmlXPathFreeObject(arg1);
4937 else
4938 xmlXPathFreeObject(arg2);
4939 XP_ERROR0(XPATH_INVALID_OPERAND);
4940 }
4941
4942 if (arg1 == arg2) {
4943#ifdef DEBUG_EXPR
4944 xmlGenericError(xmlGenericErrorContext,
4945 "NotEqual: by pointer\n");
4946#endif
4947 return(0);
4948 }
4949
4950 /*
4951 *If either argument is a nodeset, it's a 'special case'
4952 */
4953 if ((arg2->type == XPATH_NODESET) || (arg2->type == XPATH_XSLT_TREE) ||
4954 (arg1->type == XPATH_NODESET) || (arg1->type == XPATH_XSLT_TREE)) {
4955 /*
4956 *Hack it to assure arg1 is the nodeset
4957 */
4958 if ((arg1->type != XPATH_NODESET) && (arg1->type != XPATH_XSLT_TREE)) {
4959 argtmp = arg2;
4960 arg2 = arg1;
4961 arg1 = argtmp;
4962 }
4963 switch (arg2->type) {
4964 case XPATH_UNDEFINED:
4965#ifdef DEBUG_EXPR
4966 xmlGenericError(xmlGenericErrorContext,
4967 "NotEqual: undefined\n");
4968#endif
4969 break;
4970 case XPATH_NODESET:
4971 case XPATH_XSLT_TREE:
4972 ret = xmlXPathEqualNodeSets(arg1, arg2, 1);
4973 break;
4974 case XPATH_BOOLEAN:
4975 if ((arg1->nodesetval == NULL) ||
4976 (arg1->nodesetval->nodeNr == 0)) ret = 0;
4977 else
4978 ret = 1;
William M. Brackef61d202002-07-19 08:32:00 +00004979 ret = (ret != arg2->boolval);
William M. Brack0c022ad2002-07-12 00:56:01 +00004980 break;
4981 case XPATH_NUMBER:
4982 ret = xmlXPathEqualNodeSetFloat(ctxt, arg1, arg2->floatval, 1);
4983 break;
4984 case XPATH_STRING:
4985 ret = xmlXPathEqualNodeSetString(arg1, arg2->stringval,1);
4986 break;
4987 case XPATH_USERS:
4988 case XPATH_POINT:
4989 case XPATH_RANGE:
4990 case XPATH_LOCATIONSET:
4991 TODO
4992 break;
4993 }
4994 xmlXPathFreeObject(arg1);
4995 xmlXPathFreeObject(arg2);
4996 return(ret);
4997 }
4998
4999 return (!xmlXPathEqualValuesCommon(ctxt, arg1, arg2));
5000}
Owen Taylor3473f882001-02-23 17:55:21 +00005001
5002/**
5003 * xmlXPathCompareValues:
5004 * @ctxt: the XPath Parser context
5005 * @inf: less than (1) or greater than (0)
5006 * @strict: is the comparison strict
5007 *
5008 * Implement the compare operation on XPath objects:
5009 * @arg1 < @arg2 (1, 1, ...
5010 * @arg1 <= @arg2 (1, 0, ...
5011 * @arg1 > @arg2 (0, 1, ...
5012 * @arg1 >= @arg2 (0, 0, ...
5013 *
5014 * When neither object to be compared is a node-set and the operator is
5015 * <=, <, >=, >, then the objects are compared by converted both objects
5016 * to numbers and comparing the numbers according to IEEE 754. The <
5017 * comparison will be true if and only if the first number is less than the
5018 * second number. The <= comparison will be true if and only if the first
5019 * number is less than or equal to the second number. The > comparison
5020 * will be true if and only if the first number is greater than the second
5021 * number. The >= comparison will be true if and only if the first number
5022 * is greater than or equal to the second number.
5023 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00005024 * Returns 1 if the comparison succeeded, 0 if it failed
Owen Taylor3473f882001-02-23 17:55:21 +00005025 */
5026int
5027xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) {
Daniel Veillardd30be4a2002-03-28 18:25:31 +00005028 int ret = 0, arg1i = 0, arg2i = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00005029 xmlXPathObjectPtr arg1, arg2;
5030
William M. Brack0c022ad2002-07-12 00:56:01 +00005031 arg2 = valuePop(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00005032 arg1 = valuePop(ctxt);
William M. Brack0c022ad2002-07-12 00:56:01 +00005033 if ((arg1 == NULL) || (arg2 == NULL)) {
5034 if (arg1 != NULL)
5035 xmlXPathFreeObject(arg1);
5036 else
5037 xmlXPathFreeObject(arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00005038 XP_ERROR0(XPATH_INVALID_OPERAND);
5039 }
5040
William M. Brack0c022ad2002-07-12 00:56:01 +00005041 if ((arg2->type == XPATH_NODESET) || (arg2->type == XPATH_XSLT_TREE) ||
5042 (arg1->type == XPATH_NODESET) || (arg1->type == XPATH_XSLT_TREE)) {
5043 if (((arg2->type == XPATH_NODESET) || (arg2->type == XPATH_XSLT_TREE)) &&
5044 ((arg1->type == XPATH_NODESET) || (arg1->type == XPATH_XSLT_TREE))){
Daniel Veillard56a4cb82001-03-24 17:00:36 +00005045 ret = xmlXPathCompareNodeSets(inf, strict, arg1, arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00005046 } else {
William M. Brack0c022ad2002-07-12 00:56:01 +00005047 if ((arg1->type == XPATH_NODESET) || (arg1->type == XPATH_XSLT_TREE)) {
Daniel Veillard4af6b6e2001-03-06 08:33:38 +00005048 ret = xmlXPathCompareNodeSetValue(ctxt, inf, strict,
5049 arg1, arg2);
Owen Taylor3473f882001-02-23 17:55:21 +00005050 } else {
Daniel Veillard4af6b6e2001-03-06 08:33:38 +00005051 ret = xmlXPathCompareNodeSetValue(ctxt, !inf, strict,
5052 arg2, arg1);
Owen Taylor3473f882001-02-23 17:55:21 +00005053 }
5054 }
5055 return(ret);
5056 }
5057
5058 if (arg1->type != XPATH_NUMBER) {
5059 valuePush(ctxt, arg1);
5060 xmlXPathNumberFunction(ctxt, 1);
5061 arg1 = valuePop(ctxt);
5062 }
5063 if (arg1->type != XPATH_NUMBER) {
5064 xmlXPathFreeObject(arg1);
5065 xmlXPathFreeObject(arg2);
5066 XP_ERROR0(XPATH_INVALID_OPERAND);
5067 }
5068 if (arg2->type != XPATH_NUMBER) {
5069 valuePush(ctxt, arg2);
5070 xmlXPathNumberFunction(ctxt, 1);
5071 arg2 = valuePop(ctxt);
5072 }
5073 if (arg2->type != XPATH_NUMBER) {
5074 xmlXPathFreeObject(arg1);
5075 xmlXPathFreeObject(arg2);
5076 XP_ERROR0(XPATH_INVALID_OPERAND);
5077 }
5078 /*
5079 * Add tests for infinity and nan
5080 * => feedback on 3.4 for Inf and NaN
5081 */
Daniel Veillardd30be4a2002-03-28 18:25:31 +00005082 /* Hand check NaN and Infinity comparisons */
Daniel Veillard21458c82002-03-27 16:12:22 +00005083 if (xmlXPathIsNaN(arg1->floatval) || xmlXPathIsNaN(arg2->floatval)) {
Daniel Veillardd30be4a2002-03-28 18:25:31 +00005084 ret=0;
Daniel Veillard21458c82002-03-27 16:12:22 +00005085 } else {
Daniel Veillardd30be4a2002-03-28 18:25:31 +00005086 arg1i=xmlXPathIsInf(arg1->floatval);
5087 arg2i=xmlXPathIsInf(arg2->floatval);
5088 if (inf && strict) {
5089 if ((arg1i == -1 && arg2i != -1) ||
5090 (arg2i == 1 && arg1i != 1)) {
5091 ret = 1;
5092 } else if (arg1i == 0 && arg2i == 0) {
5093 ret = (arg1->floatval < arg2->floatval);
5094 } else {
5095 ret = 0;
5096 }
5097 }
5098 else if (inf && !strict) {
5099 if (arg1i == -1 || arg2i == 1) {
5100 ret = 1;
5101 } else if (arg1i == 0 && arg2i == 0) {
5102 ret = (arg1->floatval <= arg2->floatval);
5103 } else {
5104 ret = 0;
5105 }
5106 }
5107 else if (!inf && strict) {
5108 if ((arg1i == 1 && arg2i != 1) ||
5109 (arg2i == -1 && arg1i != -1)) {
5110 ret = 1;
5111 } else if (arg1i == 0 && arg2i == 0) {
5112 ret = (arg1->floatval > arg2->floatval);
5113 } else {
5114 ret = 0;
5115 }
5116 }
5117 else if (!inf && !strict) {
5118 if (arg1i == 1 || arg2i == -1) {
5119 ret = 1;
5120 } else if (arg1i == 0 && arg2i == 0) {
5121 ret = (arg1->floatval >= arg2->floatval);
5122 } else {
5123 ret = 0;
5124 }
5125 }
Daniel Veillard21458c82002-03-27 16:12:22 +00005126 }
Owen Taylor3473f882001-02-23 17:55:21 +00005127 xmlXPathFreeObject(arg1);
5128 xmlXPathFreeObject(arg2);
5129 return(ret);
5130}
5131
5132/**
5133 * xmlXPathValueFlipSign:
5134 * @ctxt: the XPath Parser context
5135 *
5136 * Implement the unary - operation on an XPath object
5137 * The numeric operators convert their operands to numbers as if
5138 * by calling the number function.
5139 */
5140void
5141xmlXPathValueFlipSign(xmlXPathParserContextPtr ctxt) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005142 CAST_TO_NUMBER;
5143 CHECK_TYPE(XPATH_NUMBER);
Daniel Veillardeca82812002-04-24 11:42:02 +00005144 if (xmlXPathIsNaN(ctxt->value->floatval))
5145 ctxt->value->floatval=xmlXPathNAN;
5146 else if (xmlXPathIsInf(ctxt->value->floatval) == 1)
5147 ctxt->value->floatval=xmlXPathNINF;
5148 else if (xmlXPathIsInf(ctxt->value->floatval) == -1)
5149 ctxt->value->floatval=xmlXPathPINF;
5150 else if (ctxt->value->floatval == 0) {
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005151 if (xmlXPathGetSign(ctxt->value->floatval) == 0)
5152 ctxt->value->floatval = xmlXPathNZERO;
5153 else
5154 ctxt->value->floatval = 0;
5155 }
5156 else
5157 ctxt->value->floatval = - ctxt->value->floatval;
Owen Taylor3473f882001-02-23 17:55:21 +00005158}
5159
5160/**
5161 * xmlXPathAddValues:
5162 * @ctxt: the XPath Parser context
5163 *
5164 * Implement the add operation on XPath objects:
5165 * The numeric operators convert their operands to numbers as if
5166 * by calling the number function.
5167 */
5168void
5169xmlXPathAddValues(xmlXPathParserContextPtr ctxt) {
5170 xmlXPathObjectPtr arg;
5171 double val;
5172
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005173 arg = valuePop(ctxt);
5174 if (arg == NULL)
5175 XP_ERROR(XPATH_INVALID_OPERAND);
5176 val = xmlXPathCastToNumber(arg);
Owen Taylor3473f882001-02-23 17:55:21 +00005177 xmlXPathFreeObject(arg);
5178
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005179 CAST_TO_NUMBER;
5180 CHECK_TYPE(XPATH_NUMBER);
5181 ctxt->value->floatval += val;
Owen Taylor3473f882001-02-23 17:55:21 +00005182}
5183
5184/**
5185 * xmlXPathSubValues:
5186 * @ctxt: the XPath Parser context
5187 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00005188 * Implement the subtraction operation on XPath objects:
Owen Taylor3473f882001-02-23 17:55:21 +00005189 * The numeric operators convert their operands to numbers as if
5190 * by calling the number function.
5191 */
5192void
5193xmlXPathSubValues(xmlXPathParserContextPtr ctxt) {
5194 xmlXPathObjectPtr arg;
5195 double val;
5196
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005197 arg = valuePop(ctxt);
5198 if (arg == NULL)
5199 XP_ERROR(XPATH_INVALID_OPERAND);
5200 val = xmlXPathCastToNumber(arg);
Owen Taylor3473f882001-02-23 17:55:21 +00005201 xmlXPathFreeObject(arg);
5202
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005203 CAST_TO_NUMBER;
5204 CHECK_TYPE(XPATH_NUMBER);
5205 ctxt->value->floatval -= val;
Owen Taylor3473f882001-02-23 17:55:21 +00005206}
5207
5208/**
5209 * xmlXPathMultValues:
5210 * @ctxt: the XPath Parser context
5211 *
5212 * Implement the multiply operation on XPath objects:
5213 * The numeric operators convert their operands to numbers as if
5214 * by calling the number function.
5215 */
5216void
5217xmlXPathMultValues(xmlXPathParserContextPtr ctxt) {
5218 xmlXPathObjectPtr arg;
5219 double val;
5220
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005221 arg = valuePop(ctxt);
5222 if (arg == NULL)
5223 XP_ERROR(XPATH_INVALID_OPERAND);
5224 val = xmlXPathCastToNumber(arg);
Owen Taylor3473f882001-02-23 17:55:21 +00005225 xmlXPathFreeObject(arg);
5226
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005227 CAST_TO_NUMBER;
5228 CHECK_TYPE(XPATH_NUMBER);
5229 ctxt->value->floatval *= val;
Owen Taylor3473f882001-02-23 17:55:21 +00005230}
5231
5232/**
5233 * xmlXPathDivValues:
5234 * @ctxt: the XPath Parser context
5235 *
5236 * Implement the div operation on XPath objects @arg1 / @arg2:
5237 * The numeric operators convert their operands to numbers as if
5238 * by calling the number function.
5239 */
5240void
5241xmlXPathDivValues(xmlXPathParserContextPtr ctxt) {
5242 xmlXPathObjectPtr arg;
5243 double val;
5244
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005245 arg = valuePop(ctxt);
5246 if (arg == NULL)
5247 XP_ERROR(XPATH_INVALID_OPERAND);
5248 val = xmlXPathCastToNumber(arg);
Owen Taylor3473f882001-02-23 17:55:21 +00005249 xmlXPathFreeObject(arg);
5250
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005251 CAST_TO_NUMBER;
5252 CHECK_TYPE(XPATH_NUMBER);
Daniel Veillardeca82812002-04-24 11:42:02 +00005253 if (xmlXPathIsNaN(val) || xmlXPathIsNaN(ctxt->value->floatval))
5254 ctxt->value->floatval = xmlXPathNAN;
5255 else if (val == 0 && xmlXPathGetSign(val) != 0) {
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005256 if (ctxt->value->floatval == 0)
5257 ctxt->value->floatval = xmlXPathNAN;
5258 else if (ctxt->value->floatval > 0)
5259 ctxt->value->floatval = xmlXPathNINF;
5260 else if (ctxt->value->floatval < 0)
5261 ctxt->value->floatval = xmlXPathPINF;
5262 }
5263 else if (val == 0) {
Daniel Veillard5f4b5992002-02-20 10:22:49 +00005264 if (ctxt->value->floatval == 0)
5265 ctxt->value->floatval = xmlXPathNAN;
5266 else if (ctxt->value->floatval > 0)
5267 ctxt->value->floatval = xmlXPathPINF;
5268 else if (ctxt->value->floatval < 0)
5269 ctxt->value->floatval = xmlXPathNINF;
5270 } else
5271 ctxt->value->floatval /= val;
Owen Taylor3473f882001-02-23 17:55:21 +00005272}
5273
5274/**
5275 * xmlXPathModValues:
5276 * @ctxt: the XPath Parser context
5277 *
5278 * Implement the mod operation on XPath objects: @arg1 / @arg2
5279 * The numeric operators convert their operands to numbers as if
5280 * by calling the number function.
5281 */
5282void
5283xmlXPathModValues(xmlXPathParserContextPtr ctxt) {
5284 xmlXPathObjectPtr arg;
Daniel Veillardfdc91562002-07-01 21:52:03 +00005285 double arg1, arg2;
Owen Taylor3473f882001-02-23 17:55:21 +00005286
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005287 arg = valuePop(ctxt);
5288 if (arg == NULL)
5289 XP_ERROR(XPATH_INVALID_OPERAND);
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005290 arg2 = xmlXPathCastToNumber(arg);
Owen Taylor3473f882001-02-23 17:55:21 +00005291 xmlXPathFreeObject(arg);
5292
Daniel Veillardba0b8c92001-05-15 09:43:47 +00005293 CAST_TO_NUMBER;
5294 CHECK_TYPE(XPATH_NUMBER);
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005295 arg1 = ctxt->value->floatval;
Daniel Veillard268fd1b2001-08-26 18:46:36 +00005296 if (arg2 == 0)
5297 ctxt->value->floatval = xmlXPathNAN;
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005298 else {
Daniel Veillardfdc91562002-07-01 21:52:03 +00005299 ctxt->value->floatval = fmod(arg1, arg2);
Daniel Veillard5fc1f082002-03-27 09:05:40 +00005300 }
Owen Taylor3473f882001-02-23 17:55:21 +00005301}
5302
5303/************************************************************************
5304 * *
5305 * The traversal functions *
5306 * *
5307 ************************************************************************/
5308
Owen Taylor3473f882001-02-23 17:55:21 +00005309/*
5310 * A traversal function enumerates nodes along an axis.
5311 * Initially it must be called with NULL, and it indicates
5312 * termination on the axis by returning NULL.
5313 */
5314typedef xmlNodePtr (*xmlXPathTraversalFunction)
5315 (xmlXPathParserContextPtr ctxt, xmlNodePtr cur);
5316
5317/**
5318 * xmlXPathNextSelf:
5319 * @ctxt: the XPath Parser context
5320 * @cur: the current node in the traversal
5321 *
5322 * Traversal function for the "self" direction
5323 * The self axis contains just the context node itself
5324 *
5325 * Returns the next element following that axis
5326 */
5327xmlNodePtr
5328xmlXPathNextSelf(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5329 if (cur == NULL)
5330 return(ctxt->context->node);
5331 return(NULL);
5332}
5333
5334/**
5335 * xmlXPathNextChild:
5336 * @ctxt: the XPath Parser context
5337 * @cur: the current node in the traversal
5338 *
5339 * Traversal function for the "child" direction
5340 * The child axis contains the children of the context node in document order.
5341 *
5342 * Returns the next element following that axis
5343 */
5344xmlNodePtr
5345xmlXPathNextChild(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5346 if (cur == NULL) {
5347 if (ctxt->context->node == NULL) return(NULL);
5348 switch (ctxt->context->node->type) {
5349 case XML_ELEMENT_NODE:
5350 case XML_TEXT_NODE:
5351 case XML_CDATA_SECTION_NODE:
5352 case XML_ENTITY_REF_NODE:
5353 case XML_ENTITY_NODE:
5354 case XML_PI_NODE:
5355 case XML_COMMENT_NODE:
5356 case XML_NOTATION_NODE:
5357 case XML_DTD_NODE:
5358 return(ctxt->context->node->children);
5359 case XML_DOCUMENT_NODE:
5360 case XML_DOCUMENT_TYPE_NODE:
5361 case XML_DOCUMENT_FRAG_NODE:
5362 case XML_HTML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005363#ifdef LIBXML_DOCB_ENABLED
5364 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005365#endif
5366 return(((xmlDocPtr) ctxt->context->node)->children);
5367 case XML_ELEMENT_DECL:
5368 case XML_ATTRIBUTE_DECL:
5369 case XML_ENTITY_DECL:
5370 case XML_ATTRIBUTE_NODE:
5371 case XML_NAMESPACE_DECL:
5372 case XML_XINCLUDE_START:
5373 case XML_XINCLUDE_END:
5374 return(NULL);
5375 }
5376 return(NULL);
5377 }
5378 if ((cur->type == XML_DOCUMENT_NODE) ||
5379 (cur->type == XML_HTML_DOCUMENT_NODE))
5380 return(NULL);
5381 return(cur->next);
5382}
5383
5384/**
5385 * xmlXPathNextDescendant:
5386 * @ctxt: the XPath Parser context
5387 * @cur: the current node in the traversal
5388 *
5389 * Traversal function for the "descendant" direction
5390 * the descendant axis contains the descendants of the context node in document
5391 * order; a descendant is a child or a child of a child and so on.
5392 *
5393 * Returns the next element following that axis
5394 */
5395xmlNodePtr
5396xmlXPathNextDescendant(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5397 if (cur == NULL) {
5398 if (ctxt->context->node == NULL)
5399 return(NULL);
5400 if ((ctxt->context->node->type == XML_ATTRIBUTE_NODE) ||
5401 (ctxt->context->node->type == XML_NAMESPACE_DECL))
5402 return(NULL);
5403
5404 if (ctxt->context->node == (xmlNodePtr) ctxt->context->doc)
5405 return(ctxt->context->doc->children);
5406 return(ctxt->context->node->children);
5407 }
5408
Daniel Veillard567e1b42001-08-01 15:53:47 +00005409 if (cur->children != NULL) {
Daniel Veillard68e9e742002-11-16 15:35:11 +00005410 /*
5411 * Do not descend on entities declarations
5412 */
5413 if (cur->children->type != XML_ENTITY_DECL) {
5414 cur = cur->children;
5415 /*
5416 * Skip DTDs
5417 */
5418 if (cur->type != XML_DTD_NODE)
5419 return(cur);
5420 }
Daniel Veillard567e1b42001-08-01 15:53:47 +00005421 }
5422
5423 if (cur == ctxt->context->node) return(NULL);
5424
Daniel Veillard68e9e742002-11-16 15:35:11 +00005425 while (cur->next != NULL) {
5426 cur = cur->next;
5427 if ((cur->type != XML_ENTITY_DECL) &&
5428 (cur->type != XML_DTD_NODE))
5429 return(cur);
5430 }
Owen Taylor3473f882001-02-23 17:55:21 +00005431
5432 do {
5433 cur = cur->parent;
5434 if (cur == NULL) return(NULL);
5435 if (cur == ctxt->context->node) return(NULL);
5436 if (cur->next != NULL) {
5437 cur = cur->next;
5438 return(cur);
5439 }
5440 } while (cur != NULL);
5441 return(cur);
5442}
5443
5444/**
5445 * xmlXPathNextDescendantOrSelf:
5446 * @ctxt: the XPath Parser context
5447 * @cur: the current node in the traversal
5448 *
5449 * Traversal function for the "descendant-or-self" direction
5450 * the descendant-or-self axis contains the context node and the descendants
5451 * of the context node in document order; thus the context node is the first
5452 * node on the axis, and the first child of the context node is the second node
5453 * on the axis
5454 *
5455 * Returns the next element following that axis
5456 */
5457xmlNodePtr
5458xmlXPathNextDescendantOrSelf(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5459 if (cur == NULL) {
5460 if (ctxt->context->node == NULL)
5461 return(NULL);
5462 if ((ctxt->context->node->type == XML_ATTRIBUTE_NODE) ||
5463 (ctxt->context->node->type == XML_NAMESPACE_DECL))
5464 return(NULL);
5465 return(ctxt->context->node);
5466 }
5467
5468 return(xmlXPathNextDescendant(ctxt, cur));
5469}
5470
5471/**
5472 * xmlXPathNextParent:
5473 * @ctxt: the XPath Parser context
5474 * @cur: the current node in the traversal
5475 *
5476 * Traversal function for the "parent" direction
5477 * The parent axis contains the parent of the context node, if there is one.
5478 *
5479 * Returns the next element following that axis
5480 */
5481xmlNodePtr
5482xmlXPathNextParent(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5483 /*
5484 * the parent of an attribute or namespace node is the element
5485 * to which the attribute or namespace node is attached
5486 * Namespace handling !!!
5487 */
5488 if (cur == NULL) {
5489 if (ctxt->context->node == NULL) return(NULL);
5490 switch (ctxt->context->node->type) {
5491 case XML_ELEMENT_NODE:
5492 case XML_TEXT_NODE:
5493 case XML_CDATA_SECTION_NODE:
5494 case XML_ENTITY_REF_NODE:
5495 case XML_ENTITY_NODE:
5496 case XML_PI_NODE:
5497 case XML_COMMENT_NODE:
5498 case XML_NOTATION_NODE:
5499 case XML_DTD_NODE:
5500 case XML_ELEMENT_DECL:
5501 case XML_ATTRIBUTE_DECL:
5502 case XML_XINCLUDE_START:
5503 case XML_XINCLUDE_END:
5504 case XML_ENTITY_DECL:
5505 if (ctxt->context->node->parent == NULL)
5506 return((xmlNodePtr) ctxt->context->doc);
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005507 if ((ctxt->context->node->parent->type == XML_ELEMENT_NODE) &&
Daniel Veillard652d8a92003-02-04 19:28:49 +00005508 ((ctxt->context->node->parent->name[0] == ' ') ||
5509 (xmlStrEqual(ctxt->context->node->parent->name,
5510 BAD_CAST "fake node libxslt"))))
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005511 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005512 return(ctxt->context->node->parent);
5513 case XML_ATTRIBUTE_NODE: {
5514 xmlAttrPtr att = (xmlAttrPtr) ctxt->context->node;
5515
5516 return(att->parent);
5517 }
5518 case XML_DOCUMENT_NODE:
5519 case XML_DOCUMENT_TYPE_NODE:
5520 case XML_DOCUMENT_FRAG_NODE:
5521 case XML_HTML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005522#ifdef LIBXML_DOCB_ENABLED
5523 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005524#endif
5525 return(NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00005526 case XML_NAMESPACE_DECL: {
5527 xmlNsPtr ns = (xmlNsPtr) ctxt->context->node;
5528
5529 if ((ns->next != NULL) &&
5530 (ns->next->type != XML_NAMESPACE_DECL))
5531 return((xmlNodePtr) ns->next);
Owen Taylor3473f882001-02-23 17:55:21 +00005532 return(NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00005533 }
Owen Taylor3473f882001-02-23 17:55:21 +00005534 }
5535 }
5536 return(NULL);
5537}
5538
5539/**
5540 * xmlXPathNextAncestor:
5541 * @ctxt: the XPath Parser context
5542 * @cur: the current node in the traversal
5543 *
5544 * Traversal function for the "ancestor" direction
5545 * the ancestor axis contains the ancestors of the context node; the ancestors
5546 * of the context node consist of the parent of context node and the parent's
5547 * parent and so on; the nodes are ordered in reverse document order; thus the
5548 * parent is the first node on the axis, and the parent's parent is the second
5549 * node on the axis
5550 *
5551 * Returns the next element following that axis
5552 */
5553xmlNodePtr
5554xmlXPathNextAncestor(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5555 /*
5556 * the parent of an attribute or namespace node is the element
5557 * to which the attribute or namespace node is attached
5558 * !!!!!!!!!!!!!
5559 */
5560 if (cur == NULL) {
5561 if (ctxt->context->node == NULL) return(NULL);
5562 switch (ctxt->context->node->type) {
5563 case XML_ELEMENT_NODE:
5564 case XML_TEXT_NODE:
5565 case XML_CDATA_SECTION_NODE:
5566 case XML_ENTITY_REF_NODE:
5567 case XML_ENTITY_NODE:
5568 case XML_PI_NODE:
5569 case XML_COMMENT_NODE:
5570 case XML_DTD_NODE:
5571 case XML_ELEMENT_DECL:
5572 case XML_ATTRIBUTE_DECL:
5573 case XML_ENTITY_DECL:
5574 case XML_NOTATION_NODE:
5575 case XML_XINCLUDE_START:
5576 case XML_XINCLUDE_END:
5577 if (ctxt->context->node->parent == NULL)
5578 return((xmlNodePtr) ctxt->context->doc);
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005579 if ((ctxt->context->node->parent->type == XML_ELEMENT_NODE) &&
Daniel Veillard652d8a92003-02-04 19:28:49 +00005580 ((ctxt->context->node->parent->name[0] == ' ') ||
5581 (xmlStrEqual(ctxt->context->node->parent->name,
5582 BAD_CAST "fake node libxslt"))))
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005583 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005584 return(ctxt->context->node->parent);
5585 case XML_ATTRIBUTE_NODE: {
Daniel Veillard56a4cb82001-03-24 17:00:36 +00005586 xmlAttrPtr tmp = (xmlAttrPtr) ctxt->context->node;
Owen Taylor3473f882001-02-23 17:55:21 +00005587
Daniel Veillard56a4cb82001-03-24 17:00:36 +00005588 return(tmp->parent);
Owen Taylor3473f882001-02-23 17:55:21 +00005589 }
5590 case XML_DOCUMENT_NODE:
5591 case XML_DOCUMENT_TYPE_NODE:
5592 case XML_DOCUMENT_FRAG_NODE:
5593 case XML_HTML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005594#ifdef LIBXML_DOCB_ENABLED
5595 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005596#endif
5597 return(NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00005598 case XML_NAMESPACE_DECL: {
5599 xmlNsPtr ns = (xmlNsPtr) ctxt->context->node;
5600
5601 if ((ns->next != NULL) &&
5602 (ns->next->type != XML_NAMESPACE_DECL))
5603 return((xmlNodePtr) ns->next);
William M. Brack08171912003-12-29 02:52:11 +00005604 /* Bad, how did that namespace end up here ? */
Owen Taylor3473f882001-02-23 17:55:21 +00005605 return(NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00005606 }
Owen Taylor3473f882001-02-23 17:55:21 +00005607 }
5608 return(NULL);
5609 }
5610 if (cur == ctxt->context->doc->children)
5611 return((xmlNodePtr) ctxt->context->doc);
5612 if (cur == (xmlNodePtr) ctxt->context->doc)
5613 return(NULL);
5614 switch (cur->type) {
5615 case XML_ELEMENT_NODE:
5616 case XML_TEXT_NODE:
5617 case XML_CDATA_SECTION_NODE:
5618 case XML_ENTITY_REF_NODE:
5619 case XML_ENTITY_NODE:
5620 case XML_PI_NODE:
5621 case XML_COMMENT_NODE:
5622 case XML_NOTATION_NODE:
5623 case XML_DTD_NODE:
5624 case XML_ELEMENT_DECL:
5625 case XML_ATTRIBUTE_DECL:
5626 case XML_ENTITY_DECL:
5627 case XML_XINCLUDE_START:
5628 case XML_XINCLUDE_END:
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005629 if (cur->parent == NULL)
5630 return(NULL);
5631 if ((cur->parent->type == XML_ELEMENT_NODE) &&
Daniel Veillard652d8a92003-02-04 19:28:49 +00005632 ((cur->parent->name[0] == ' ') ||
5633 (xmlStrEqual(cur->parent->name,
5634 BAD_CAST "fake node libxslt"))))
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00005635 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005636 return(cur->parent);
5637 case XML_ATTRIBUTE_NODE: {
5638 xmlAttrPtr att = (xmlAttrPtr) ctxt->context->node;
5639
5640 return(att->parent);
5641 }
Aleksey Sanindffd5c82002-05-31 04:24:13 +00005642 case XML_NAMESPACE_DECL: {
5643 xmlNsPtr ns = (xmlNsPtr) ctxt->context->node;
5644
5645 if ((ns->next != NULL) &&
5646 (ns->next->type != XML_NAMESPACE_DECL))
5647 return((xmlNodePtr) ns->next);
William M. Brack08171912003-12-29 02:52:11 +00005648 /* Bad, how did that namespace end up here ? */
Aleksey Sanindffd5c82002-05-31 04:24:13 +00005649 return(NULL);
5650 }
Owen Taylor3473f882001-02-23 17:55:21 +00005651 case XML_DOCUMENT_NODE:
5652 case XML_DOCUMENT_TYPE_NODE:
5653 case XML_DOCUMENT_FRAG_NODE:
5654 case XML_HTML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005655#ifdef LIBXML_DOCB_ENABLED
5656 case XML_DOCB_DOCUMENT_NODE:
Owen Taylor3473f882001-02-23 17:55:21 +00005657#endif
5658 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005659 }
5660 return(NULL);
5661}
5662
5663/**
5664 * xmlXPathNextAncestorOrSelf:
5665 * @ctxt: the XPath Parser context
5666 * @cur: the current node in the traversal
5667 *
5668 * Traversal function for the "ancestor-or-self" direction
5669 * he ancestor-or-self axis contains the context node and ancestors of
5670 * the context node in reverse document order; thus the context node is
5671 * the first node on the axis, and the context node's parent the second;
5672 * parent here is defined the same as with the parent axis.
5673 *
5674 * Returns the next element following that axis
5675 */
5676xmlNodePtr
5677xmlXPathNextAncestorOrSelf(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5678 if (cur == NULL)
5679 return(ctxt->context->node);
5680 return(xmlXPathNextAncestor(ctxt, cur));
5681}
5682
5683/**
5684 * xmlXPathNextFollowingSibling:
5685 * @ctxt: the XPath Parser context
5686 * @cur: the current node in the traversal
5687 *
5688 * Traversal function for the "following-sibling" direction
5689 * The following-sibling axis contains the following siblings of the context
5690 * node in document order.
5691 *
5692 * Returns the next element following that axis
5693 */
5694xmlNodePtr
5695xmlXPathNextFollowingSibling(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5696 if ((ctxt->context->node->type == XML_ATTRIBUTE_NODE) ||
5697 (ctxt->context->node->type == XML_NAMESPACE_DECL))
5698 return(NULL);
5699 if (cur == (xmlNodePtr) ctxt->context->doc)
5700 return(NULL);
5701 if (cur == NULL)
5702 return(ctxt->context->node->next);
5703 return(cur->next);
5704}
5705
5706/**
5707 * xmlXPathNextPrecedingSibling:
5708 * @ctxt: the XPath Parser context
5709 * @cur: the current node in the traversal
5710 *
5711 * Traversal function for the "preceding-sibling" direction
5712 * The preceding-sibling axis contains the preceding siblings of the context
5713 * node in reverse document order; the first preceding sibling is first on the
5714 * axis; the sibling preceding that node is the second on the axis and so on.
5715 *
5716 * Returns the next element following that axis
5717 */
5718xmlNodePtr
5719xmlXPathNextPrecedingSibling(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5720 if ((ctxt->context->node->type == XML_ATTRIBUTE_NODE) ||
5721 (ctxt->context->node->type == XML_NAMESPACE_DECL))
5722 return(NULL);
5723 if (cur == (xmlNodePtr) ctxt->context->doc)
5724 return(NULL);
5725 if (cur == NULL)
5726 return(ctxt->context->node->prev);
Daniel Veillardf06307e2001-07-03 10:35:50 +00005727 if ((cur->prev != NULL) && (cur->prev->type == XML_DTD_NODE)) {
5728 cur = cur->prev;
5729 if (cur == NULL)
5730 return(ctxt->context->node->prev);
5731 }
Owen Taylor3473f882001-02-23 17:55:21 +00005732 return(cur->prev);
5733}
5734
5735/**
5736 * xmlXPathNextFollowing:
5737 * @ctxt: the XPath Parser context
5738 * @cur: the current node in the traversal
5739 *
5740 * Traversal function for the "following" direction
5741 * The following axis contains all nodes in the same document as the context
5742 * node that are after the context node in document order, excluding any
5743 * descendants and excluding attribute nodes and namespace nodes; the nodes
5744 * are ordered in document order
5745 *
5746 * Returns the next element following that axis
5747 */
5748xmlNodePtr
5749xmlXPathNextFollowing(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5750 if (cur != NULL && cur->children != NULL)
5751 return cur->children ;
5752 if (cur == NULL) cur = ctxt->context->node;
5753 if (cur == NULL) return(NULL) ; /* ERROR */
5754 if (cur->next != NULL) return(cur->next) ;
5755 do {
5756 cur = cur->parent;
5757 if (cur == NULL) return(NULL);
5758 if (cur == (xmlNodePtr) ctxt->context->doc) return(NULL);
5759 if (cur->next != NULL) return(cur->next);
5760 } while (cur != NULL);
5761 return(cur);
5762}
5763
5764/*
5765 * xmlXPathIsAncestor:
5766 * @ancestor: the ancestor node
5767 * @node: the current node
5768 *
5769 * Check that @ancestor is a @node's ancestor
5770 *
5771 * returns 1 if @ancestor is a @node's ancestor, 0 otherwise.
5772 */
5773static int
5774xmlXPathIsAncestor(xmlNodePtr ancestor, xmlNodePtr node) {
5775 if ((ancestor == NULL) || (node == NULL)) return(0);
5776 /* nodes need to be in the same document */
5777 if (ancestor->doc != node->doc) return(0);
5778 /* avoid searching if ancestor or node is the root node */
5779 if (ancestor == (xmlNodePtr) node->doc) return(1);
5780 if (node == (xmlNodePtr) ancestor->doc) return(0);
5781 while (node->parent != NULL) {
5782 if (node->parent == ancestor)
5783 return(1);
5784 node = node->parent;
5785 }
5786 return(0);
5787}
5788
5789/**
5790 * xmlXPathNextPreceding:
5791 * @ctxt: the XPath Parser context
5792 * @cur: the current node in the traversal
5793 *
5794 * Traversal function for the "preceding" direction
5795 * the preceding axis contains all nodes in the same document as the context
5796 * node that are before the context node in document order, excluding any
5797 * ancestors and excluding attribute nodes and namespace nodes; the nodes are
5798 * ordered in reverse document order
5799 *
5800 * Returns the next element following that axis
5801 */
5802xmlNodePtr
Daniel Veillardf06307e2001-07-03 10:35:50 +00005803xmlXPathNextPreceding(xmlXPathParserContextPtr ctxt, xmlNodePtr cur)
5804{
Owen Taylor3473f882001-02-23 17:55:21 +00005805 if (cur == NULL)
Daniel Veillardf06307e2001-07-03 10:35:50 +00005806 cur = ctxt->context->node;
5807 if (cur == NULL)
5808 return (NULL);
5809 if ((cur->prev != NULL) && (cur->prev->type == XML_DTD_NODE))
5810 cur = cur->prev;
Owen Taylor3473f882001-02-23 17:55:21 +00005811 do {
5812 if (cur->prev != NULL) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00005813 for (cur = cur->prev; cur->last != NULL; cur = cur->last) ;
5814 return (cur);
Owen Taylor3473f882001-02-23 17:55:21 +00005815 }
5816
5817 cur = cur->parent;
Daniel Veillardf06307e2001-07-03 10:35:50 +00005818 if (cur == NULL)
5819 return (NULL);
5820 if (cur == ctxt->context->doc->children)
5821 return (NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005822 } while (xmlXPathIsAncestor(cur, ctxt->context->node));
Daniel Veillardf06307e2001-07-03 10:35:50 +00005823 return (cur);
5824}
5825
5826/**
5827 * xmlXPathNextPrecedingInternal:
5828 * @ctxt: the XPath Parser context
5829 * @cur: the current node in the traversal
5830 *
5831 * Traversal function for the "preceding" direction
5832 * the preceding axis contains all nodes in the same document as the context
5833 * node that are before the context node in document order, excluding any
5834 * ancestors and excluding attribute nodes and namespace nodes; the nodes are
5835 * ordered in reverse document order
5836 * This is a faster implementation but internal only since it requires a
5837 * state kept in the parser context: ctxt->ancestor.
5838 *
5839 * Returns the next element following that axis
5840 */
5841static xmlNodePtr
5842xmlXPathNextPrecedingInternal(xmlXPathParserContextPtr ctxt,
5843 xmlNodePtr cur)
5844{
5845 if (cur == NULL) {
5846 cur = ctxt->context->node;
5847 if (cur == NULL)
5848 return (NULL);
William M. Brack40c22b42003-10-10 03:58:39 +00005849 if (cur->type == XML_NAMESPACE_DECL)
5850 cur = (xmlNodePtr)((xmlNsPtr)cur)->next;
Daniel Veillardf06307e2001-07-03 10:35:50 +00005851 ctxt->ancestor = cur->parent;
5852 }
5853 if ((cur->prev != NULL) && (cur->prev->type == XML_DTD_NODE))
5854 cur = cur->prev;
5855 while (cur->prev == NULL) {
5856 cur = cur->parent;
5857 if (cur == NULL)
5858 return (NULL);
5859 if (cur == ctxt->context->doc->children)
5860 return (NULL);
5861 if (cur != ctxt->ancestor)
5862 return (cur);
5863 ctxt->ancestor = cur->parent;
5864 }
5865 cur = cur->prev;
5866 while (cur->last != NULL)
5867 cur = cur->last;
5868 return (cur);
Owen Taylor3473f882001-02-23 17:55:21 +00005869}
5870
5871/**
5872 * xmlXPathNextNamespace:
5873 * @ctxt: the XPath Parser context
5874 * @cur: the current attribute in the traversal
5875 *
5876 * Traversal function for the "namespace" direction
5877 * the namespace axis contains the namespace nodes of the context node;
5878 * the order of nodes on this axis is implementation-defined; the axis will
5879 * be empty unless the context node is an element
5880 *
Daniel Veillard20ee8c02001-10-05 09:18:14 +00005881 * We keep the XML namespace node at the end of the list.
5882 *
Owen Taylor3473f882001-02-23 17:55:21 +00005883 * Returns the next element following that axis
5884 */
5885xmlNodePtr
5886xmlXPathNextNamespace(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
5887 if (ctxt->context->node->type != XML_ELEMENT_NODE) return(NULL);
Daniel Veillardfdc91562002-07-01 21:52:03 +00005888 if (ctxt->context->tmpNsList == NULL && cur != (xmlNodePtr) xmlXPathXMLNamespace) {
Daniel Veillard7d7e3792001-07-30 13:42:13 +00005889 if (ctxt->context->tmpNsList != NULL)
5890 xmlFree(ctxt->context->tmpNsList);
5891 ctxt->context->tmpNsList =
Owen Taylor3473f882001-02-23 17:55:21 +00005892 xmlGetNsList(ctxt->context->doc, ctxt->context->node);
Daniel Veillard7d7e3792001-07-30 13:42:13 +00005893 ctxt->context->tmpNsNr = 0;
Daniel Veillardfdc91562002-07-01 21:52:03 +00005894 if (ctxt->context->tmpNsList != NULL) {
5895 while (ctxt->context->tmpNsList[ctxt->context->tmpNsNr] != NULL) {
5896 ctxt->context->tmpNsNr++;
5897 }
5898 }
Daniel Veillard20ee8c02001-10-05 09:18:14 +00005899 return((xmlNodePtr) xmlXPathXMLNamespace);
Daniel Veillard7d7e3792001-07-30 13:42:13 +00005900 }
Daniel Veillardfdc91562002-07-01 21:52:03 +00005901 if (ctxt->context->tmpNsNr > 0) {
5902 return (xmlNodePtr)ctxt->context->tmpNsList[--ctxt->context->tmpNsNr];
5903 } else {
5904 if (ctxt->context->tmpNsList != NULL)
5905 xmlFree(ctxt->context->tmpNsList);
5906 ctxt->context->tmpNsList = NULL;
5907 return(NULL);
5908 }
Owen Taylor3473f882001-02-23 17:55:21 +00005909}
5910
5911/**
5912 * xmlXPathNextAttribute:
5913 * @ctxt: the XPath Parser context
5914 * @cur: the current attribute in the traversal
5915 *
5916 * Traversal function for the "attribute" direction
5917 * TODO: support DTD inherited default attributes
5918 *
5919 * Returns the next element following that axis
5920 */
5921xmlNodePtr
5922xmlXPathNextAttribute(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) {
Daniel Veillarde470df72001-04-18 21:41:07 +00005923 if (ctxt->context->node == NULL)
5924 return(NULL);
5925 if (ctxt->context->node->type != XML_ELEMENT_NODE)
5926 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005927 if (cur == NULL) {
5928 if (ctxt->context->node == (xmlNodePtr) ctxt->context->doc)
5929 return(NULL);
5930 return((xmlNodePtr)ctxt->context->node->properties);
5931 }
5932 return((xmlNodePtr)cur->next);
5933}
5934
5935/************************************************************************
5936 * *
5937 * NodeTest Functions *
5938 * *
5939 ************************************************************************/
5940
Owen Taylor3473f882001-02-23 17:55:21 +00005941#define IS_FUNCTION 200
5942
Owen Taylor3473f882001-02-23 17:55:21 +00005943
5944/************************************************************************
5945 * *
5946 * Implicit tree core function library *
5947 * *
5948 ************************************************************************/
5949
5950/**
5951 * xmlXPathRoot:
5952 * @ctxt: the XPath Parser context
5953 *
5954 * Initialize the context to the root of the document
5955 */
5956void
5957xmlXPathRoot(xmlXPathParserContextPtr ctxt) {
5958 ctxt->context->node = (xmlNodePtr) ctxt->context->doc;
5959 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
5960}
5961
5962/************************************************************************
5963 * *
5964 * The explicit core function library *
5965 *http://www.w3.org/Style/XSL/Group/1999/07/xpath-19990705.html#corelib *
5966 * *
5967 ************************************************************************/
5968
5969
5970/**
5971 * xmlXPathLastFunction:
5972 * @ctxt: the XPath Parser context
5973 * @nargs: the number of arguments
5974 *
5975 * Implement the last() XPath function
5976 * number last()
5977 * The last function returns the number of nodes in the context node list.
5978 */
5979void
5980xmlXPathLastFunction(xmlXPathParserContextPtr ctxt, int nargs) {
5981 CHECK_ARITY(0);
5982 if (ctxt->context->contextSize >= 0) {
5983 valuePush(ctxt, xmlXPathNewFloat((double) ctxt->context->contextSize));
5984#ifdef DEBUG_EXPR
5985 xmlGenericError(xmlGenericErrorContext,
5986 "last() : %d\n", ctxt->context->contextSize);
5987#endif
5988 } else {
5989 XP_ERROR(XPATH_INVALID_CTXT_SIZE);
5990 }
5991}
5992
5993/**
5994 * xmlXPathPositionFunction:
5995 * @ctxt: the XPath Parser context
5996 * @nargs: the number of arguments
5997 *
5998 * Implement the position() XPath function
5999 * number position()
6000 * The position function returns the position of the context node in the
Daniel Veillardcbaf3992001-12-31 16:16:02 +00006001 * context node list. The first position is 1, and so the last position
Owen Taylor3473f882001-02-23 17:55:21 +00006002 * will be equal to last().
6003 */
6004void
6005xmlXPathPositionFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6006 CHECK_ARITY(0);
6007 if (ctxt->context->proximityPosition >= 0) {
6008 valuePush(ctxt,
6009 xmlXPathNewFloat((double) ctxt->context->proximityPosition));
6010#ifdef DEBUG_EXPR
6011 xmlGenericError(xmlGenericErrorContext, "position() : %d\n",
6012 ctxt->context->proximityPosition);
6013#endif
6014 } else {
6015 XP_ERROR(XPATH_INVALID_CTXT_POSITION);
6016 }
6017}
6018
6019/**
6020 * xmlXPathCountFunction:
6021 * @ctxt: the XPath Parser context
6022 * @nargs: the number of arguments
6023 *
6024 * Implement the count() XPath function
6025 * number count(node-set)
6026 */
6027void
6028xmlXPathCountFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6029 xmlXPathObjectPtr cur;
6030
6031 CHECK_ARITY(1);
6032 if ((ctxt->value == NULL) ||
6033 ((ctxt->value->type != XPATH_NODESET) &&
6034 (ctxt->value->type != XPATH_XSLT_TREE)))
6035 XP_ERROR(XPATH_INVALID_TYPE);
6036 cur = valuePop(ctxt);
6037
Daniel Veillard911f49a2001-04-07 15:39:35 +00006038 if ((cur == NULL) || (cur->nodesetval == NULL))
6039 valuePush(ctxt, xmlXPathNewFloat((double) 0));
William M. Brack0c022ad2002-07-12 00:56:01 +00006040 else if ((cur->type == XPATH_NODESET) || (cur->type == XPATH_XSLT_TREE)) {
Daniel Veillard911f49a2001-04-07 15:39:35 +00006041 valuePush(ctxt, xmlXPathNewFloat((double) cur->nodesetval->nodeNr));
Daniel Veillardfe703322001-08-14 12:18:09 +00006042 } else {
6043 if ((cur->nodesetval->nodeNr != 1) ||
6044 (cur->nodesetval->nodeTab == NULL)) {
6045 valuePush(ctxt, xmlXPathNewFloat((double) 0));
6046 } else {
6047 xmlNodePtr tmp;
6048 int i = 0;
6049
6050 tmp = cur->nodesetval->nodeTab[0];
6051 if (tmp != NULL) {
6052 tmp = tmp->children;
6053 while (tmp != NULL) {
6054 tmp = tmp->next;
6055 i++;
6056 }
6057 }
6058 valuePush(ctxt, xmlXPathNewFloat((double) i));
6059 }
6060 }
Owen Taylor3473f882001-02-23 17:55:21 +00006061 xmlXPathFreeObject(cur);
6062}
6063
6064/**
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006065 * xmlXPathGetElementsByIds:
6066 * @doc: the document
6067 * @ids: a whitespace separated list of IDs
6068 *
6069 * Selects elements by their unique ID.
6070 *
6071 * Returns a node-set of selected elements.
6072 */
6073static xmlNodeSetPtr
6074xmlXPathGetElementsByIds (xmlDocPtr doc, const xmlChar *ids) {
6075 xmlNodeSetPtr ret;
6076 const xmlChar *cur = ids;
6077 xmlChar *ID;
6078 xmlAttrPtr attr;
6079 xmlNodePtr elem = NULL;
6080
Daniel Veillard7a985a12003-07-06 17:57:42 +00006081 if (ids == NULL) return(NULL);
6082
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006083 ret = xmlXPathNodeSetCreate(NULL);
6084
William M. Brack76e95df2003-10-18 16:20:14 +00006085 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006086 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00006087 while ((!IS_BLANK_CH(*cur)) && (*cur != 0))
Daniel Veillarde209b332003-03-26 21:40:13 +00006088 cur++;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006089
6090 ID = xmlStrndup(ids, cur - ids);
Daniel Veillarde209b332003-03-26 21:40:13 +00006091 if (ID != NULL) {
6092 if (xmlValidateNCName(ID, 1) == 0) {
6093 attr = xmlGetID(doc, ID);
6094 if (attr != NULL) {
6095 if (attr->type == XML_ATTRIBUTE_NODE)
6096 elem = attr->parent;
6097 else if (attr->type == XML_ELEMENT_NODE)
6098 elem = (xmlNodePtr) attr;
6099 else
6100 elem = NULL;
6101 if (elem != NULL)
6102 xmlXPathNodeSetAdd(ret, elem);
6103 }
6104 }
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006105 xmlFree(ID);
Daniel Veillarde209b332003-03-26 21:40:13 +00006106 }
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006107
William M. Brack76e95df2003-10-18 16:20:14 +00006108 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006109 ids = cur;
6110 }
6111 return(ret);
6112}
6113
6114/**
Owen Taylor3473f882001-02-23 17:55:21 +00006115 * xmlXPathIdFunction:
6116 * @ctxt: the XPath Parser context
6117 * @nargs: the number of arguments
6118 *
6119 * Implement the id() XPath function
6120 * node-set id(object)
6121 * The id function selects elements by their unique ID
6122 * (see [5.2.1 Unique IDs]). When the argument to id is of type node-set,
6123 * then the result is the union of the result of applying id to the
6124 * string value of each of the nodes in the argument node-set. When the
6125 * argument to id is of any other type, the argument is converted to a
6126 * string as if by a call to the string function; the string is split
6127 * into a whitespace-separated list of tokens (whitespace is any sequence
6128 * of characters matching the production S); the result is a node-set
6129 * containing the elements in the same document as the context node that
6130 * have a unique ID equal to any of the tokens in the list.
6131 */
6132void
6133xmlXPathIdFunction(xmlXPathParserContextPtr ctxt, int nargs) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006134 xmlChar *tokens;
6135 xmlNodeSetPtr ret;
6136 xmlXPathObjectPtr obj;
Owen Taylor3473f882001-02-23 17:55:21 +00006137
6138 CHECK_ARITY(1);
6139 obj = valuePop(ctxt);
6140 if (obj == NULL) XP_ERROR(XPATH_INVALID_OPERAND);
William M. Brack0c022ad2002-07-12 00:56:01 +00006141 if ((obj->type == XPATH_NODESET) || (obj->type == XPATH_XSLT_TREE)) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006142 xmlNodeSetPtr ns;
Owen Taylor3473f882001-02-23 17:55:21 +00006143 int i;
6144
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006145 ret = xmlXPathNodeSetCreate(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006146
Daniel Veillard911f49a2001-04-07 15:39:35 +00006147 if (obj->nodesetval != NULL) {
6148 for (i = 0; i < obj->nodesetval->nodeNr; i++) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006149 tokens =
6150 xmlXPathCastNodeToString(obj->nodesetval->nodeTab[i]);
6151 ns = xmlXPathGetElementsByIds(ctxt->context->doc, tokens);
6152 ret = xmlXPathNodeSetMerge(ret, ns);
6153 xmlXPathFreeNodeSet(ns);
6154 if (tokens != NULL)
6155 xmlFree(tokens);
Daniel Veillard911f49a2001-04-07 15:39:35 +00006156 }
Owen Taylor3473f882001-02-23 17:55:21 +00006157 }
6158
6159 xmlXPathFreeObject(obj);
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006160 valuePush(ctxt, xmlXPathWrapNodeSet(ret));
Owen Taylor3473f882001-02-23 17:55:21 +00006161 return;
6162 }
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006163 obj = xmlXPathConvertString(obj);
Owen Taylor3473f882001-02-23 17:55:21 +00006164
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006165 ret = xmlXPathGetElementsByIds(ctxt->context->doc, obj->stringval);
6166 valuePush(ctxt, xmlXPathWrapNodeSet(ret));
Owen Taylor3473f882001-02-23 17:55:21 +00006167
Owen Taylor3473f882001-02-23 17:55:21 +00006168 xmlXPathFreeObject(obj);
6169 return;
6170}
6171
6172/**
6173 * xmlXPathLocalNameFunction:
6174 * @ctxt: the XPath Parser context
6175 * @nargs: the number of arguments
6176 *
6177 * Implement the local-name() XPath function
6178 * string local-name(node-set?)
6179 * The local-name function returns a string containing the local part
6180 * of the name of the node in the argument node-set that is first in
6181 * document order. If the node-set is empty or the first node has no
6182 * name, an empty string is returned. If the argument is omitted it
6183 * defaults to the context node.
6184 */
6185void
6186xmlXPathLocalNameFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6187 xmlXPathObjectPtr cur;
6188
6189 if (nargs == 0) {
6190 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
6191 nargs = 1;
6192 }
6193
6194 CHECK_ARITY(1);
6195 if ((ctxt->value == NULL) ||
6196 ((ctxt->value->type != XPATH_NODESET) &&
6197 (ctxt->value->type != XPATH_XSLT_TREE)))
6198 XP_ERROR(XPATH_INVALID_TYPE);
6199 cur = valuePop(ctxt);
6200
Daniel Veillard911f49a2001-04-07 15:39:35 +00006201 if ((cur->nodesetval == NULL) || (cur->nodesetval->nodeNr == 0)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006202 valuePush(ctxt, xmlXPathNewCString(""));
6203 } else {
6204 int i = 0; /* Should be first in document order !!!!! */
6205 switch (cur->nodesetval->nodeTab[i]->type) {
6206 case XML_ELEMENT_NODE:
6207 case XML_ATTRIBUTE_NODE:
6208 case XML_PI_NODE:
Daniel Veillard652d8a92003-02-04 19:28:49 +00006209 if (cur->nodesetval->nodeTab[i]->name[0] == ' ')
6210 valuePush(ctxt, xmlXPathNewCString(""));
6211 else
6212 valuePush(ctxt,
Owen Taylor3473f882001-02-23 17:55:21 +00006213 xmlXPathNewString(cur->nodesetval->nodeTab[i]->name));
6214 break;
6215 case XML_NAMESPACE_DECL:
6216 valuePush(ctxt, xmlXPathNewString(
6217 ((xmlNsPtr)cur->nodesetval->nodeTab[i])->prefix));
6218 break;
6219 default:
6220 valuePush(ctxt, xmlXPathNewCString(""));
6221 }
6222 }
6223 xmlXPathFreeObject(cur);
6224}
6225
6226/**
6227 * xmlXPathNamespaceURIFunction:
6228 * @ctxt: the XPath Parser context
6229 * @nargs: the number of arguments
6230 *
6231 * Implement the namespace-uri() XPath function
6232 * string namespace-uri(node-set?)
6233 * The namespace-uri function returns a string containing the
6234 * namespace URI of the expanded name of the node in the argument
6235 * node-set that is first in document order. If the node-set is empty,
6236 * the first node has no name, or the expanded name has no namespace
6237 * URI, an empty string is returned. If the argument is omitted it
6238 * defaults to the context node.
6239 */
6240void
6241xmlXPathNamespaceURIFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6242 xmlXPathObjectPtr cur;
6243
6244 if (nargs == 0) {
6245 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
6246 nargs = 1;
6247 }
6248 CHECK_ARITY(1);
6249 if ((ctxt->value == NULL) ||
6250 ((ctxt->value->type != XPATH_NODESET) &&
6251 (ctxt->value->type != XPATH_XSLT_TREE)))
6252 XP_ERROR(XPATH_INVALID_TYPE);
6253 cur = valuePop(ctxt);
6254
Daniel Veillard911f49a2001-04-07 15:39:35 +00006255 if ((cur->nodesetval == NULL) || (cur->nodesetval->nodeNr == 0)) {
Owen Taylor3473f882001-02-23 17:55:21 +00006256 valuePush(ctxt, xmlXPathNewCString(""));
6257 } else {
6258 int i = 0; /* Should be first in document order !!!!! */
6259 switch (cur->nodesetval->nodeTab[i]->type) {
6260 case XML_ELEMENT_NODE:
6261 case XML_ATTRIBUTE_NODE:
6262 if (cur->nodesetval->nodeTab[i]->ns == NULL)
6263 valuePush(ctxt, xmlXPathNewCString(""));
6264 else
6265 valuePush(ctxt, xmlXPathNewString(
6266 cur->nodesetval->nodeTab[i]->ns->href));
6267 break;
6268 default:
6269 valuePush(ctxt, xmlXPathNewCString(""));
6270 }
6271 }
6272 xmlXPathFreeObject(cur);
6273}
6274
6275/**
6276 * xmlXPathNameFunction:
6277 * @ctxt: the XPath Parser context
6278 * @nargs: the number of arguments
6279 *
6280 * Implement the name() XPath function
6281 * string name(node-set?)
6282 * The name function returns a string containing a QName representing
Daniel Veillardcbaf3992001-12-31 16:16:02 +00006283 * the name of the node in the argument node-set that is first in document
Owen Taylor3473f882001-02-23 17:55:21 +00006284 * order. The QName must represent the name with respect to the namespace
6285 * declarations in effect on the node whose name is being represented.
6286 * Typically, this will be the form in which the name occurred in the XML
6287 * source. This need not be the case if there are namespace declarations
6288 * in effect on the node that associate multiple prefixes with the same
6289 * namespace. However, an implementation may include information about
6290 * the original prefix in its representation of nodes; in this case, an
6291 * implementation can ensure that the returned string is always the same
6292 * as the QName used in the XML source. If the argument it omitted it
6293 * defaults to the context node.
6294 * Libxml keep the original prefix so the "real qualified name" used is
6295 * returned.
6296 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00006297static void
Daniel Veillard04383752001-07-08 14:27:15 +00006298xmlXPathNameFunction(xmlXPathParserContextPtr ctxt, int nargs)
6299{
Owen Taylor3473f882001-02-23 17:55:21 +00006300 xmlXPathObjectPtr cur;
6301
6302 if (nargs == 0) {
Daniel Veillard04383752001-07-08 14:27:15 +00006303 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
6304 nargs = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00006305 }
6306
6307 CHECK_ARITY(1);
Daniel Veillard04383752001-07-08 14:27:15 +00006308 if ((ctxt->value == NULL) ||
6309 ((ctxt->value->type != XPATH_NODESET) &&
6310 (ctxt->value->type != XPATH_XSLT_TREE)))
6311 XP_ERROR(XPATH_INVALID_TYPE);
Owen Taylor3473f882001-02-23 17:55:21 +00006312 cur = valuePop(ctxt);
6313
Daniel Veillard911f49a2001-04-07 15:39:35 +00006314 if ((cur->nodesetval == NULL) || (cur->nodesetval->nodeNr == 0)) {
Daniel Veillard04383752001-07-08 14:27:15 +00006315 valuePush(ctxt, xmlXPathNewCString(""));
Owen Taylor3473f882001-02-23 17:55:21 +00006316 } else {
Daniel Veillard04383752001-07-08 14:27:15 +00006317 int i = 0; /* Should be first in document order !!!!! */
Owen Taylor3473f882001-02-23 17:55:21 +00006318
Daniel Veillard04383752001-07-08 14:27:15 +00006319 switch (cur->nodesetval->nodeTab[i]->type) {
6320 case XML_ELEMENT_NODE:
6321 case XML_ATTRIBUTE_NODE:
Daniel Veillard652d8a92003-02-04 19:28:49 +00006322 if (cur->nodesetval->nodeTab[i]->name[0] == ' ')
6323 valuePush(ctxt, xmlXPathNewCString(""));
6324 else if ((cur->nodesetval->nodeTab[i]->ns == NULL) ||
6325 (cur->nodesetval->nodeTab[i]->ns->prefix == NULL)) {
Daniel Veillard04383752001-07-08 14:27:15 +00006326 valuePush(ctxt,
Daniel Veillardc00cda82003-04-07 10:22:39 +00006327 xmlXPathNewString(cur->nodesetval->nodeTab[i]->name));
Daniel Veillard04383752001-07-08 14:27:15 +00006328
Daniel Veillard652d8a92003-02-04 19:28:49 +00006329 } else {
Daniel Veillardc00cda82003-04-07 10:22:39 +00006330 xmlChar *fullname;
6331
6332 fullname = xmlBuildQName(cur->nodesetval->nodeTab[i]->name,
6333 cur->nodesetval->nodeTab[i]->ns->prefix,
6334 NULL, 0);
6335 if (fullname == cur->nodesetval->nodeTab[i]->name)
6336 fullname = xmlStrdup(cur->nodesetval->nodeTab[i]->name);
6337 if (fullname == NULL) {
6338 XP_ERROR(XPATH_MEMORY_ERROR);
6339 }
6340 valuePush(ctxt, xmlXPathWrapString(fullname));
Daniel Veillard04383752001-07-08 14:27:15 +00006341 }
6342 break;
6343 default:
6344 valuePush(ctxt,
6345 xmlXPathNewNodeSet(cur->nodesetval->nodeTab[i]));
6346 xmlXPathLocalNameFunction(ctxt, 1);
6347 }
Owen Taylor3473f882001-02-23 17:55:21 +00006348 }
6349 xmlXPathFreeObject(cur);
6350}
6351
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00006352
6353/**
Owen Taylor3473f882001-02-23 17:55:21 +00006354 * xmlXPathStringFunction:
6355 * @ctxt: the XPath Parser context
6356 * @nargs: the number of arguments
6357 *
6358 * Implement the string() XPath function
6359 * string string(object?)
William M. Brack08171912003-12-29 02:52:11 +00006360 * The string function converts an object to a string as follows:
Owen Taylor3473f882001-02-23 17:55:21 +00006361 * - A node-set is converted to a string by returning the value of
6362 * the node in the node-set that is first in document order.
6363 * If the node-set is empty, an empty string is returned.
6364 * - A number is converted to a string as follows
6365 * + NaN is converted to the string NaN
6366 * + positive zero is converted to the string 0
6367 * + negative zero is converted to the string 0
6368 * + positive infinity is converted to the string Infinity
6369 * + negative infinity is converted to the string -Infinity
6370 * + if the number is an integer, the number is represented in
6371 * decimal form as a Number with no decimal point and no leading
6372 * zeros, preceded by a minus sign (-) if the number is negative
6373 * + otherwise, the number is represented in decimal form as a
6374 * Number including a decimal point with at least one digit
6375 * before the decimal point and at least one digit after the
6376 * decimal point, preceded by a minus sign (-) if the number
6377 * is negative; there must be no leading zeros before the decimal
Daniel Veillardcbaf3992001-12-31 16:16:02 +00006378 * point apart possibly from the one required digit immediately
Owen Taylor3473f882001-02-23 17:55:21 +00006379 * before the decimal point; beyond the one required digit
6380 * after the decimal point there must be as many, but only as
6381 * many, more digits as are needed to uniquely distinguish the
6382 * number from all other IEEE 754 numeric values.
6383 * - The boolean false value is converted to the string false.
6384 * The boolean true value is converted to the string true.
6385 *
6386 * If the argument is omitted, it defaults to a node-set with the
6387 * context node as its only member.
6388 */
6389void
6390xmlXPathStringFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6391 xmlXPathObjectPtr cur;
6392
6393 if (nargs == 0) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006394 valuePush(ctxt,
6395 xmlXPathWrapString(
6396 xmlXPathCastNodeToString(ctxt->context->node)));
6397 return;
Owen Taylor3473f882001-02-23 17:55:21 +00006398 }
6399
6400 CHECK_ARITY(1);
6401 cur = valuePop(ctxt);
6402 if (cur == NULL) XP_ERROR(XPATH_INVALID_OPERAND);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00006403 cur = xmlXPathConvertString(cur);
6404 valuePush(ctxt, cur);
Owen Taylor3473f882001-02-23 17:55:21 +00006405}
6406
6407/**
6408 * xmlXPathStringLengthFunction:
6409 * @ctxt: the XPath Parser context
6410 * @nargs: the number of arguments
6411 *
6412 * Implement the string-length() XPath function
6413 * number string-length(string?)
6414 * The string-length returns the number of characters in the string
6415 * (see [3.6 Strings]). If the argument is omitted, it defaults to
6416 * the context node converted to a string, in other words the value
6417 * of the context node.
6418 */
6419void
6420xmlXPathStringLengthFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6421 xmlXPathObjectPtr cur;
6422
6423 if (nargs == 0) {
6424 if (ctxt->context->node == NULL) {
6425 valuePush(ctxt, xmlXPathNewFloat(0));
6426 } else {
6427 xmlChar *content;
6428
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006429 content = xmlXPathCastNodeToString(ctxt->context->node);
Daniel Veillarde043ee12001-04-16 14:08:07 +00006430 valuePush(ctxt, xmlXPathNewFloat(xmlUTF8Strlen(content)));
Owen Taylor3473f882001-02-23 17:55:21 +00006431 xmlFree(content);
6432 }
6433 return;
6434 }
6435 CHECK_ARITY(1);
6436 CAST_TO_STRING;
6437 CHECK_TYPE(XPATH_STRING);
6438 cur = valuePop(ctxt);
Daniel Veillarde043ee12001-04-16 14:08:07 +00006439 valuePush(ctxt, xmlXPathNewFloat(xmlUTF8Strlen(cur->stringval)));
Owen Taylor3473f882001-02-23 17:55:21 +00006440 xmlXPathFreeObject(cur);
6441}
6442
6443/**
6444 * xmlXPathConcatFunction:
6445 * @ctxt: the XPath Parser context
6446 * @nargs: the number of arguments
6447 *
6448 * Implement the concat() XPath function
6449 * string concat(string, string, string*)
6450 * The concat function returns the concatenation of its arguments.
6451 */
6452void
6453xmlXPathConcatFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6454 xmlXPathObjectPtr cur, newobj;
6455 xmlChar *tmp;
6456
6457 if (nargs < 2) {
6458 CHECK_ARITY(2);
6459 }
6460
6461 CAST_TO_STRING;
6462 cur = valuePop(ctxt);
6463 if ((cur == NULL) || (cur->type != XPATH_STRING)) {
6464 xmlXPathFreeObject(cur);
6465 return;
6466 }
6467 nargs--;
6468
6469 while (nargs > 0) {
6470 CAST_TO_STRING;
6471 newobj = valuePop(ctxt);
6472 if ((newobj == NULL) || (newobj->type != XPATH_STRING)) {
6473 xmlXPathFreeObject(newobj);
6474 xmlXPathFreeObject(cur);
6475 XP_ERROR(XPATH_INVALID_TYPE);
6476 }
6477 tmp = xmlStrcat(newobj->stringval, cur->stringval);
6478 newobj->stringval = cur->stringval;
6479 cur->stringval = tmp;
6480
6481 xmlXPathFreeObject(newobj);
6482 nargs--;
6483 }
6484 valuePush(ctxt, cur);
6485}
6486
6487/**
6488 * xmlXPathContainsFunction:
6489 * @ctxt: the XPath Parser context
6490 * @nargs: the number of arguments
6491 *
6492 * Implement the contains() XPath function
6493 * boolean contains(string, string)
6494 * The contains function returns true if the first argument string
6495 * contains the second argument string, and otherwise returns false.
6496 */
6497void
6498xmlXPathContainsFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6499 xmlXPathObjectPtr hay, needle;
6500
6501 CHECK_ARITY(2);
6502 CAST_TO_STRING;
6503 CHECK_TYPE(XPATH_STRING);
6504 needle = valuePop(ctxt);
6505 CAST_TO_STRING;
6506 hay = valuePop(ctxt);
6507 if ((hay == NULL) || (hay->type != XPATH_STRING)) {
6508 xmlXPathFreeObject(hay);
6509 xmlXPathFreeObject(needle);
6510 XP_ERROR(XPATH_INVALID_TYPE);
6511 }
6512 if (xmlStrstr(hay->stringval, needle->stringval))
6513 valuePush(ctxt, xmlXPathNewBoolean(1));
6514 else
6515 valuePush(ctxt, xmlXPathNewBoolean(0));
6516 xmlXPathFreeObject(hay);
6517 xmlXPathFreeObject(needle);
6518}
6519
6520/**
6521 * xmlXPathStartsWithFunction:
6522 * @ctxt: the XPath Parser context
6523 * @nargs: the number of arguments
6524 *
6525 * Implement the starts-with() XPath function
6526 * boolean starts-with(string, string)
6527 * The starts-with function returns true if the first argument string
6528 * starts with the second argument string, and otherwise returns false.
6529 */
6530void
6531xmlXPathStartsWithFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6532 xmlXPathObjectPtr hay, needle;
6533 int n;
6534
6535 CHECK_ARITY(2);
6536 CAST_TO_STRING;
6537 CHECK_TYPE(XPATH_STRING);
6538 needle = valuePop(ctxt);
6539 CAST_TO_STRING;
6540 hay = valuePop(ctxt);
6541 if ((hay == NULL) || (hay->type != XPATH_STRING)) {
6542 xmlXPathFreeObject(hay);
6543 xmlXPathFreeObject(needle);
6544 XP_ERROR(XPATH_INVALID_TYPE);
6545 }
6546 n = xmlStrlen(needle->stringval);
6547 if (xmlStrncmp(hay->stringval, needle->stringval, n))
6548 valuePush(ctxt, xmlXPathNewBoolean(0));
6549 else
6550 valuePush(ctxt, xmlXPathNewBoolean(1));
6551 xmlXPathFreeObject(hay);
6552 xmlXPathFreeObject(needle);
6553}
6554
6555/**
6556 * xmlXPathSubstringFunction:
6557 * @ctxt: the XPath Parser context
6558 * @nargs: the number of arguments
6559 *
6560 * Implement the substring() XPath function
6561 * string substring(string, number, number?)
6562 * The substring function returns the substring of the first argument
6563 * starting at the position specified in the second argument with
6564 * length specified in the third argument. For example,
6565 * substring("12345",2,3) returns "234". If the third argument is not
6566 * specified, it returns the substring starting at the position specified
6567 * in the second argument and continuing to the end of the string. For
6568 * example, substring("12345",2) returns "2345". More precisely, each
6569 * character in the string (see [3.6 Strings]) is considered to have a
6570 * numeric position: the position of the first character is 1, the position
6571 * of the second character is 2 and so on. The returned substring contains
6572 * those characters for which the position of the character is greater than
6573 * or equal to the second argument and, if the third argument is specified,
6574 * less than the sum of the second and third arguments; the comparisons
6575 * and addition used for the above follow the standard IEEE 754 rules. Thus:
6576 * - substring("12345", 1.5, 2.6) returns "234"
6577 * - substring("12345", 0, 3) returns "12"
6578 * - substring("12345", 0 div 0, 3) returns ""
6579 * - substring("12345", 1, 0 div 0) returns ""
6580 * - substring("12345", -42, 1 div 0) returns "12345"
6581 * - substring("12345", -1 div 0, 1 div 0) returns ""
6582 */
6583void
6584xmlXPathSubstringFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6585 xmlXPathObjectPtr str, start, len;
Daniel Veillard97ac1312001-05-30 19:14:17 +00006586 double le=0, in;
6587 int i, l, m;
Owen Taylor3473f882001-02-23 17:55:21 +00006588 xmlChar *ret;
6589
Owen Taylor3473f882001-02-23 17:55:21 +00006590 if (nargs < 2) {
6591 CHECK_ARITY(2);
6592 }
6593 if (nargs > 3) {
6594 CHECK_ARITY(3);
6595 }
Daniel Veillard97ac1312001-05-30 19:14:17 +00006596 /*
6597 * take care of possible last (position) argument
6598 */
Owen Taylor3473f882001-02-23 17:55:21 +00006599 if (nargs == 3) {
6600 CAST_TO_NUMBER;
6601 CHECK_TYPE(XPATH_NUMBER);
6602 len = valuePop(ctxt);
6603 le = len->floatval;
6604 xmlXPathFreeObject(len);
Owen Taylor3473f882001-02-23 17:55:21 +00006605 }
Daniel Veillard97ac1312001-05-30 19:14:17 +00006606
Owen Taylor3473f882001-02-23 17:55:21 +00006607 CAST_TO_NUMBER;
6608 CHECK_TYPE(XPATH_NUMBER);
6609 start = valuePop(ctxt);
6610 in = start->floatval;
6611 xmlXPathFreeObject(start);
6612 CAST_TO_STRING;
6613 CHECK_TYPE(XPATH_STRING);
6614 str = valuePop(ctxt);
Daniel Veillard97ac1312001-05-30 19:14:17 +00006615 m = xmlUTF8Strlen((const unsigned char *)str->stringval);
Owen Taylor3473f882001-02-23 17:55:21 +00006616
Daniel Veillard97ac1312001-05-30 19:14:17 +00006617 /*
6618 * If last pos not present, calculate last position
6619 */
Daniel Veillard9e412302002-06-10 15:59:44 +00006620 if (nargs != 3) {
6621 le = (double)m;
6622 if (in < 1.0)
6623 in = 1.0;
6624 }
Daniel Veillard97ac1312001-05-30 19:14:17 +00006625
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006626 /* Need to check for the special cases where either
6627 * the index is NaN, the length is NaN, or both
6628 * arguments are infinity (relying on Inf + -Inf = NaN)
Daniel Veillard97ac1312001-05-30 19:14:17 +00006629 */
Daniel Veillard9e412302002-06-10 15:59:44 +00006630 if (!xmlXPathIsNaN(in + le) && !xmlXPathIsInf(in)) {
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006631 /*
Daniel Veillard9e412302002-06-10 15:59:44 +00006632 * To meet the requirements of the spec, the arguments
6633 * must be converted to integer format before
6634 * initial index calculations are done
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006635 *
Daniel Veillard9e412302002-06-10 15:59:44 +00006636 * First we go to integer form, rounding up
6637 * and checking for special cases
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006638 */
6639 i = (int) in;
Daniel Veillard9e412302002-06-10 15:59:44 +00006640 if (((double)i)+0.5 <= in) i++;
Owen Taylor3473f882001-02-23 17:55:21 +00006641
Daniel Veillard9e412302002-06-10 15:59:44 +00006642 if (xmlXPathIsInf(le) == 1) {
6643 l = m;
6644 if (i < 1)
6645 i = 1;
6646 }
6647 else if (xmlXPathIsInf(le) == -1 || le < 0.0)
6648 l = 0;
6649 else {
6650 l = (int) le;
6651 if (((double)l)+0.5 <= le) l++;
6652 }
6653
6654 /* Now we normalize inidices */
6655 i -= 1;
6656 l += i;
6657 if (i < 0)
6658 i = 0;
6659 if (l > m)
6660 l = m;
Owen Taylor3473f882001-02-23 17:55:21 +00006661
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006662 /* number of chars to copy */
6663 l -= i;
Owen Taylor3473f882001-02-23 17:55:21 +00006664
Daniel Veillard0eafdef2002-04-10 16:14:34 +00006665 ret = xmlUTF8Strsub(str->stringval, i, l);
6666 }
6667 else {
6668 ret = NULL;
6669 }
6670
Owen Taylor3473f882001-02-23 17:55:21 +00006671 if (ret == NULL)
6672 valuePush(ctxt, xmlXPathNewCString(""));
6673 else {
6674 valuePush(ctxt, xmlXPathNewString(ret));
6675 xmlFree(ret);
6676 }
Daniel Veillard97ac1312001-05-30 19:14:17 +00006677
Owen Taylor3473f882001-02-23 17:55:21 +00006678 xmlXPathFreeObject(str);
6679}
6680
6681/**
6682 * xmlXPathSubstringBeforeFunction:
6683 * @ctxt: the XPath Parser context
6684 * @nargs: the number of arguments
6685 *
6686 * Implement the substring-before() XPath function
6687 * string substring-before(string, string)
6688 * The substring-before function returns the substring of the first
6689 * argument string that precedes the first occurrence of the second
6690 * argument string in the first argument string, or the empty string
6691 * if the first argument string does not contain the second argument
6692 * string. For example, substring-before("1999/04/01","/") returns 1999.
6693 */
6694void
6695xmlXPathSubstringBeforeFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6696 xmlXPathObjectPtr str;
6697 xmlXPathObjectPtr find;
6698 xmlBufferPtr target;
6699 const xmlChar *point;
6700 int offset;
6701
6702 CHECK_ARITY(2);
6703 CAST_TO_STRING;
6704 find = valuePop(ctxt);
6705 CAST_TO_STRING;
6706 str = valuePop(ctxt);
6707
6708 target = xmlBufferCreate();
6709 if (target) {
6710 point = xmlStrstr(str->stringval, find->stringval);
6711 if (point) {
6712 offset = (int)(point - str->stringval);
6713 xmlBufferAdd(target, str->stringval, offset);
6714 }
6715 valuePush(ctxt, xmlXPathNewString(xmlBufferContent(target)));
6716 xmlBufferFree(target);
6717 }
6718
6719 xmlXPathFreeObject(str);
6720 xmlXPathFreeObject(find);
6721}
6722
6723/**
6724 * xmlXPathSubstringAfterFunction:
6725 * @ctxt: the XPath Parser context
6726 * @nargs: the number of arguments
6727 *
6728 * Implement the substring-after() XPath function
6729 * string substring-after(string, string)
6730 * The substring-after function returns the substring of the first
6731 * argument string that follows the first occurrence of the second
6732 * argument string in the first argument string, or the empty stringi
6733 * if the first argument string does not contain the second argument
6734 * string. For example, substring-after("1999/04/01","/") returns 04/01,
6735 * and substring-after("1999/04/01","19") returns 99/04/01.
6736 */
6737void
6738xmlXPathSubstringAfterFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6739 xmlXPathObjectPtr str;
6740 xmlXPathObjectPtr find;
6741 xmlBufferPtr target;
6742 const xmlChar *point;
6743 int offset;
6744
6745 CHECK_ARITY(2);
6746 CAST_TO_STRING;
6747 find = valuePop(ctxt);
6748 CAST_TO_STRING;
6749 str = valuePop(ctxt);
6750
6751 target = xmlBufferCreate();
6752 if (target) {
6753 point = xmlStrstr(str->stringval, find->stringval);
6754 if (point) {
6755 offset = (int)(point - str->stringval) + xmlStrlen(find->stringval);
6756 xmlBufferAdd(target, &str->stringval[offset],
6757 xmlStrlen(str->stringval) - offset);
6758 }
6759 valuePush(ctxt, xmlXPathNewString(xmlBufferContent(target)));
6760 xmlBufferFree(target);
6761 }
6762
6763 xmlXPathFreeObject(str);
6764 xmlXPathFreeObject(find);
6765}
6766
6767/**
6768 * xmlXPathNormalizeFunction:
6769 * @ctxt: the XPath Parser context
6770 * @nargs: the number of arguments
6771 *
6772 * Implement the normalize-space() XPath function
6773 * string normalize-space(string?)
6774 * The normalize-space function returns the argument string with white
6775 * space normalized by stripping leading and trailing whitespace
6776 * and replacing sequences of whitespace characters by a single
6777 * space. Whitespace characters are the same allowed by the S production
6778 * in XML. If the argument is omitted, it defaults to the context
6779 * node converted to a string, in other words the value of the context node.
6780 */
6781void
6782xmlXPathNormalizeFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6783 xmlXPathObjectPtr obj = NULL;
6784 xmlChar *source = NULL;
6785 xmlBufferPtr target;
6786 xmlChar blank;
6787
6788 if (nargs == 0) {
6789 /* Use current context node */
Daniel Veillardba0b8c92001-05-15 09:43:47 +00006790 valuePush(ctxt,
6791 xmlXPathWrapString(
6792 xmlXPathCastNodeToString(ctxt->context->node)));
Owen Taylor3473f882001-02-23 17:55:21 +00006793 nargs = 1;
6794 }
6795
6796 CHECK_ARITY(1);
6797 CAST_TO_STRING;
6798 CHECK_TYPE(XPATH_STRING);
6799 obj = valuePop(ctxt);
6800 source = obj->stringval;
6801
6802 target = xmlBufferCreate();
6803 if (target && source) {
6804
6805 /* Skip leading whitespaces */
William M. Brack76e95df2003-10-18 16:20:14 +00006806 while (IS_BLANK_CH(*source))
Owen Taylor3473f882001-02-23 17:55:21 +00006807 source++;
6808
6809 /* Collapse intermediate whitespaces, and skip trailing whitespaces */
6810 blank = 0;
6811 while (*source) {
William M. Brack76e95df2003-10-18 16:20:14 +00006812 if (IS_BLANK_CH(*source)) {
Daniel Veillard97ac1312001-05-30 19:14:17 +00006813 blank = 0x20;
Owen Taylor3473f882001-02-23 17:55:21 +00006814 } else {
6815 if (blank) {
6816 xmlBufferAdd(target, &blank, 1);
6817 blank = 0;
6818 }
6819 xmlBufferAdd(target, source, 1);
6820 }
6821 source++;
6822 }
6823
6824 valuePush(ctxt, xmlXPathNewString(xmlBufferContent(target)));
6825 xmlBufferFree(target);
6826 }
6827 xmlXPathFreeObject(obj);
6828}
6829
6830/**
6831 * xmlXPathTranslateFunction:
6832 * @ctxt: the XPath Parser context
6833 * @nargs: the number of arguments
6834 *
6835 * Implement the translate() XPath function
6836 * string translate(string, string, string)
6837 * The translate function returns the first argument string with
6838 * occurrences of characters in the second argument string replaced
6839 * by the character at the corresponding position in the third argument
6840 * string. For example, translate("bar","abc","ABC") returns the string
6841 * BAr. If there is a character in the second argument string with no
6842 * character at a corresponding position in the third argument string
6843 * (because the second argument string is longer than the third argument
6844 * string), then occurrences of that character in the first argument
6845 * string are removed. For example, translate("--aaa--","abc-","ABC")
6846 * returns "AAA". If a character occurs more than once in second
6847 * argument string, then the first occurrence determines the replacement
6848 * character. If the third argument string is longer than the second
6849 * argument string, then excess characters are ignored.
6850 */
6851void
6852xmlXPathTranslateFunction(xmlXPathParserContextPtr ctxt, int nargs) {
Daniel Veillarde043ee12001-04-16 14:08:07 +00006853 xmlXPathObjectPtr str;
6854 xmlXPathObjectPtr from;
6855 xmlXPathObjectPtr to;
6856 xmlBufferPtr target;
Daniel Veillard97ac1312001-05-30 19:14:17 +00006857 int offset, max;
Daniel Veillarde043ee12001-04-16 14:08:07 +00006858 xmlChar ch;
Daniel Veillard97ac1312001-05-30 19:14:17 +00006859 xmlChar *point;
6860 xmlChar *cptr;
Owen Taylor3473f882001-02-23 17:55:21 +00006861
Daniel Veillarde043ee12001-04-16 14:08:07 +00006862 CHECK_ARITY(3);
Owen Taylor3473f882001-02-23 17:55:21 +00006863
Daniel Veillarde043ee12001-04-16 14:08:07 +00006864 CAST_TO_STRING;
6865 to = valuePop(ctxt);
6866 CAST_TO_STRING;
6867 from = valuePop(ctxt);
6868 CAST_TO_STRING;
6869 str = valuePop(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00006870
Daniel Veillarde043ee12001-04-16 14:08:07 +00006871 target = xmlBufferCreate();
6872 if (target) {
Daniel Veillard97ac1312001-05-30 19:14:17 +00006873 max = xmlUTF8Strlen(to->stringval);
6874 for (cptr = str->stringval; (ch=*cptr); ) {
6875 offset = xmlUTF8Strloc(from->stringval, cptr);
6876 if (offset >= 0) {
6877 if (offset < max) {
6878 point = xmlUTF8Strpos(to->stringval, offset);
6879 if (point)
6880 xmlBufferAdd(target, point, xmlUTF8Strsize(point, 1));
6881 }
6882 } else
6883 xmlBufferAdd(target, cptr, xmlUTF8Strsize(cptr, 1));
6884
6885 /* Step to next character in input */
6886 cptr++;
6887 if ( ch & 0x80 ) {
6888 /* if not simple ascii, verify proper format */
6889 if ( (ch & 0xc0) != 0xc0 ) {
6890 xmlGenericError(xmlGenericErrorContext,
6891 "xmlXPathTranslateFunction: Invalid UTF8 string\n");
6892 break;
6893 }
6894 /* then skip over remaining bytes for this char */
6895 while ( (ch <<= 1) & 0x80 )
6896 if ( (*cptr++ & 0xc0) != 0x80 ) {
6897 xmlGenericError(xmlGenericErrorContext,
6898 "xmlXPathTranslateFunction: Invalid UTF8 string\n");
6899 break;
6900 }
6901 if (ch & 0x80) /* must have had error encountered */
6902 break;
6903 }
Daniel Veillarde043ee12001-04-16 14:08:07 +00006904 }
Owen Taylor3473f882001-02-23 17:55:21 +00006905 }
Daniel Veillarde043ee12001-04-16 14:08:07 +00006906 valuePush(ctxt, xmlXPathNewString(xmlBufferContent(target)));
6907 xmlBufferFree(target);
6908 xmlXPathFreeObject(str);
6909 xmlXPathFreeObject(from);
6910 xmlXPathFreeObject(to);
Owen Taylor3473f882001-02-23 17:55:21 +00006911}
6912
6913/**
6914 * xmlXPathBooleanFunction:
6915 * @ctxt: the XPath Parser context
6916 * @nargs: the number of arguments
6917 *
6918 * Implement the boolean() XPath function
6919 * boolean boolean(object)
William M. Brack08171912003-12-29 02:52:11 +00006920 * The boolean function converts its argument to a boolean as follows:
Owen Taylor3473f882001-02-23 17:55:21 +00006921 * - a number is true if and only if it is neither positive or
6922 * negative zero nor NaN
6923 * - a node-set is true if and only if it is non-empty
6924 * - a string is true if and only if its length is non-zero
6925 */
6926void
6927xmlXPathBooleanFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6928 xmlXPathObjectPtr cur;
Owen Taylor3473f882001-02-23 17:55:21 +00006929
6930 CHECK_ARITY(1);
6931 cur = valuePop(ctxt);
6932 if (cur == NULL) XP_ERROR(XPATH_INVALID_OPERAND);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00006933 cur = xmlXPathConvertBoolean(cur);
6934 valuePush(ctxt, cur);
Owen Taylor3473f882001-02-23 17:55:21 +00006935}
6936
6937/**
6938 * xmlXPathNotFunction:
6939 * @ctxt: the XPath Parser context
6940 * @nargs: the number of arguments
6941 *
6942 * Implement the not() XPath function
6943 * boolean not(boolean)
6944 * The not function returns true if its argument is false,
6945 * and false otherwise.
6946 */
6947void
6948xmlXPathNotFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6949 CHECK_ARITY(1);
6950 CAST_TO_BOOLEAN;
6951 CHECK_TYPE(XPATH_BOOLEAN);
6952 ctxt->value->boolval = ! ctxt->value->boolval;
6953}
6954
6955/**
6956 * xmlXPathTrueFunction:
6957 * @ctxt: the XPath Parser context
6958 * @nargs: the number of arguments
6959 *
6960 * Implement the true() XPath function
6961 * boolean true()
6962 */
6963void
6964xmlXPathTrueFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6965 CHECK_ARITY(0);
6966 valuePush(ctxt, xmlXPathNewBoolean(1));
6967}
6968
6969/**
6970 * xmlXPathFalseFunction:
6971 * @ctxt: the XPath Parser context
6972 * @nargs: the number of arguments
6973 *
6974 * Implement the false() XPath function
6975 * boolean false()
6976 */
6977void
6978xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs) {
6979 CHECK_ARITY(0);
6980 valuePush(ctxt, xmlXPathNewBoolean(0));
6981}
6982
6983/**
6984 * xmlXPathLangFunction:
6985 * @ctxt: the XPath Parser context
6986 * @nargs: the number of arguments
6987 *
6988 * Implement the lang() XPath function
6989 * boolean lang(string)
6990 * The lang function returns true or false depending on whether the
6991 * language of the context node as specified by xml:lang attributes
6992 * is the same as or is a sublanguage of the language specified by
6993 * the argument string. The language of the context node is determined
6994 * by the value of the xml:lang attribute on the context node, or, if
6995 * the context node has no xml:lang attribute, by the value of the
6996 * xml:lang attribute on the nearest ancestor of the context node that
6997 * has an xml:lang attribute. If there is no such attribute, then lang
6998 * returns false. If there is such an attribute, then lang returns
6999 * true if the attribute value is equal to the argument ignoring case,
7000 * or if there is some suffix starting with - such that the attribute
7001 * value is equal to the argument ignoring that suffix of the attribute
7002 * value and ignoring case.
7003 */
7004void
7005xmlXPathLangFunction(xmlXPathParserContextPtr ctxt, int nargs) {
7006 xmlXPathObjectPtr val;
7007 const xmlChar *theLang;
7008 const xmlChar *lang;
7009 int ret = 0;
7010 int i;
7011
7012 CHECK_ARITY(1);
7013 CAST_TO_STRING;
7014 CHECK_TYPE(XPATH_STRING);
7015 val = valuePop(ctxt);
7016 lang = val->stringval;
7017 theLang = xmlNodeGetLang(ctxt->context->node);
7018 if ((theLang != NULL) && (lang != NULL)) {
7019 for (i = 0;lang[i] != 0;i++)
7020 if (toupper(lang[i]) != toupper(theLang[i]))
7021 goto not_equal;
7022 ret = 1;
7023 }
7024not_equal:
7025 xmlXPathFreeObject(val);
7026 valuePush(ctxt, xmlXPathNewBoolean(ret));
7027}
7028
7029/**
7030 * xmlXPathNumberFunction:
7031 * @ctxt: the XPath Parser context
7032 * @nargs: the number of arguments
7033 *
7034 * Implement the number() XPath function
7035 * number number(object?)
7036 */
7037void
7038xmlXPathNumberFunction(xmlXPathParserContextPtr ctxt, int nargs) {
7039 xmlXPathObjectPtr cur;
7040 double res;
7041
7042 if (nargs == 0) {
7043 if (ctxt->context->node == NULL) {
7044 valuePush(ctxt, xmlXPathNewFloat(0.0));
7045 } else {
7046 xmlChar* content = xmlNodeGetContent(ctxt->context->node);
7047
7048 res = xmlXPathStringEvalNumber(content);
7049 valuePush(ctxt, xmlXPathNewFloat(res));
7050 xmlFree(content);
7051 }
7052 return;
7053 }
7054
7055 CHECK_ARITY(1);
7056 cur = valuePop(ctxt);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007057 cur = xmlXPathConvertNumber(cur);
7058 valuePush(ctxt, cur);
Owen Taylor3473f882001-02-23 17:55:21 +00007059}
7060
7061/**
7062 * xmlXPathSumFunction:
7063 * @ctxt: the XPath Parser context
7064 * @nargs: the number of arguments
7065 *
7066 * Implement the sum() XPath function
7067 * number sum(node-set)
7068 * The sum function returns the sum of the values of the nodes in
7069 * the argument node-set.
7070 */
7071void
7072xmlXPathSumFunction(xmlXPathParserContextPtr ctxt, int nargs) {
7073 xmlXPathObjectPtr cur;
7074 int i;
Daniel Veillardba0b8c92001-05-15 09:43:47 +00007075 double res = 0.0;
Owen Taylor3473f882001-02-23 17:55:21 +00007076
7077 CHECK_ARITY(1);
7078 if ((ctxt->value == NULL) ||
7079 ((ctxt->value->type != XPATH_NODESET) &&
7080 (ctxt->value->type != XPATH_XSLT_TREE)))
7081 XP_ERROR(XPATH_INVALID_TYPE);
7082 cur = valuePop(ctxt);
7083
William M. Brack08171912003-12-29 02:52:11 +00007084 if ((cur->nodesetval != NULL) && (cur->nodesetval->nodeNr != 0)) {
Daniel Veillardba0b8c92001-05-15 09:43:47 +00007085 for (i = 0; i < cur->nodesetval->nodeNr; i++) {
7086 res += xmlXPathCastNodeToNumber(cur->nodesetval->nodeTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +00007087 }
7088 }
William M. Brack08171912003-12-29 02:52:11 +00007089 valuePush(ctxt, xmlXPathNewFloat(res));
Owen Taylor3473f882001-02-23 17:55:21 +00007090 xmlXPathFreeObject(cur);
7091}
7092
7093/**
7094 * xmlXPathFloorFunction:
7095 * @ctxt: the XPath Parser context
7096 * @nargs: the number of arguments
7097 *
7098 * Implement the floor() XPath function
7099 * number floor(number)
7100 * The floor function returns the largest (closest to positive infinity)
7101 * number that is not greater than the argument and that is an integer.
7102 */
7103void
7104xmlXPathFloorFunction(xmlXPathParserContextPtr ctxt, int nargs) {
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007105 double f;
7106
Owen Taylor3473f882001-02-23 17:55:21 +00007107 CHECK_ARITY(1);
7108 CAST_TO_NUMBER;
7109 CHECK_TYPE(XPATH_NUMBER);
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007110
7111 f = (double)((int) ctxt->value->floatval);
7112 if (f != ctxt->value->floatval) {
7113 if (ctxt->value->floatval > 0)
7114 ctxt->value->floatval = f;
7115 else
7116 ctxt->value->floatval = f - 1;
7117 }
Owen Taylor3473f882001-02-23 17:55:21 +00007118}
7119
7120/**
7121 * xmlXPathCeilingFunction:
7122 * @ctxt: the XPath Parser context
7123 * @nargs: the number of arguments
7124 *
7125 * Implement the ceiling() XPath function
7126 * number ceiling(number)
7127 * The ceiling function returns the smallest (closest to negative infinity)
7128 * number that is not less than the argument and that is an integer.
7129 */
7130void
7131xmlXPathCeilingFunction(xmlXPathParserContextPtr ctxt, int nargs) {
7132 double f;
7133
7134 CHECK_ARITY(1);
7135 CAST_TO_NUMBER;
7136 CHECK_TYPE(XPATH_NUMBER);
7137
7138#if 0
7139 ctxt->value->floatval = ceil(ctxt->value->floatval);
7140#else
7141 f = (double)((int) ctxt->value->floatval);
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007142 if (f != ctxt->value->floatval) {
7143 if (ctxt->value->floatval > 0)
7144 ctxt->value->floatval = f + 1;
Daniel Veillard5fc1f082002-03-27 09:05:40 +00007145 else {
7146 if (ctxt->value->floatval < 0 && f == 0)
7147 ctxt->value->floatval = xmlXPathNZERO;
7148 else
7149 ctxt->value->floatval = f;
7150 }
7151
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007152 }
Owen Taylor3473f882001-02-23 17:55:21 +00007153#endif
7154}
7155
7156/**
7157 * xmlXPathRoundFunction:
7158 * @ctxt: the XPath Parser context
7159 * @nargs: the number of arguments
7160 *
7161 * Implement the round() XPath function
7162 * number round(number)
7163 * The round function returns the number that is closest to the
7164 * argument and that is an integer. If there are two such numbers,
7165 * then the one that is even is returned.
7166 */
7167void
7168xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs) {
7169 double f;
7170
7171 CHECK_ARITY(1);
7172 CAST_TO_NUMBER;
7173 CHECK_TYPE(XPATH_NUMBER);
7174
Daniel Veillardcda96922001-08-21 10:56:31 +00007175 if ((xmlXPathIsNaN(ctxt->value->floatval)) ||
7176 (xmlXPathIsInf(ctxt->value->floatval) == 1) ||
7177 (xmlXPathIsInf(ctxt->value->floatval) == -1) ||
Owen Taylor3473f882001-02-23 17:55:21 +00007178 (ctxt->value->floatval == 0.0))
7179 return;
7180
Owen Taylor3473f882001-02-23 17:55:21 +00007181 f = (double)((int) ctxt->value->floatval);
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007182 if (ctxt->value->floatval < 0) {
7183 if (ctxt->value->floatval < f - 0.5)
7184 ctxt->value->floatval = f - 1;
7185 else
7186 ctxt->value->floatval = f;
Daniel Veillard5fc1f082002-03-27 09:05:40 +00007187 if (ctxt->value->floatval == 0)
7188 ctxt->value->floatval = xmlXPathNZERO;
Daniel Veillard56cd18b2002-03-22 14:14:43 +00007189 } else {
7190 if (ctxt->value->floatval < f + 0.5)
7191 ctxt->value->floatval = f;
7192 else
7193 ctxt->value->floatval = f + 1;
7194 }
Owen Taylor3473f882001-02-23 17:55:21 +00007195}
7196
7197/************************************************************************
7198 * *
7199 * The Parser *
7200 * *
7201 ************************************************************************/
7202
7203/*
William M. Brack08171912003-12-29 02:52:11 +00007204 * a few forward declarations since we use a recursive call based
Owen Taylor3473f882001-02-23 17:55:21 +00007205 * implementation.
7206 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007207static void xmlXPathCompileExpr(xmlXPathParserContextPtr ctxt);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00007208static void xmlXPathCompPredicate(xmlXPathParserContextPtr ctxt, int filter);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007209static void xmlXPathCompLocationPath(xmlXPathParserContextPtr ctxt);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007210static void xmlXPathCompRelativeLocationPath(xmlXPathParserContextPtr ctxt);
Daniel Veillard2156a562001-04-28 12:24:34 +00007211static xmlChar * xmlXPathParseNameComplex(xmlXPathParserContextPtr ctxt,
7212 int qualified);
Owen Taylor3473f882001-02-23 17:55:21 +00007213
7214/**
Daniel Veillard61d80a22001-04-27 17:13:01 +00007215 * xmlXPathCurrentChar:
7216 * @ctxt: the XPath parser context
7217 * @cur: pointer to the beginning of the char
7218 * @len: pointer to the length of the char read
7219 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00007220 * The current char value, if using UTF-8 this may actually span multiple
Daniel Veillard61d80a22001-04-27 17:13:01 +00007221 * bytes in the input buffer.
7222 *
Daniel Veillard60087f32001-10-10 09:45:09 +00007223 * Returns the current char value and its length
Daniel Veillard61d80a22001-04-27 17:13:01 +00007224 */
7225
7226static int
7227xmlXPathCurrentChar(xmlXPathParserContextPtr ctxt, int *len) {
7228 unsigned char c;
7229 unsigned int val;
7230 const xmlChar *cur;
7231
7232 if (ctxt == NULL)
7233 return(0);
7234 cur = ctxt->cur;
7235
7236 /*
7237 * We are supposed to handle UTF8, check it's valid
7238 * From rfc2044: encoding of the Unicode values on UTF-8:
7239 *
7240 * UCS-4 range (hex.) UTF-8 octet sequence (binary)
7241 * 0000 0000-0000 007F 0xxxxxxx
7242 * 0000 0080-0000 07FF 110xxxxx 10xxxxxx
7243 * 0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
7244 *
7245 * Check for the 0x110000 limit too
7246 */
7247 c = *cur;
7248 if (c & 0x80) {
7249 if ((cur[1] & 0xc0) != 0x80)
7250 goto encoding_error;
7251 if ((c & 0xe0) == 0xe0) {
7252
7253 if ((cur[2] & 0xc0) != 0x80)
7254 goto encoding_error;
7255 if ((c & 0xf0) == 0xf0) {
7256 if (((c & 0xf8) != 0xf0) ||
7257 ((cur[3] & 0xc0) != 0x80))
7258 goto encoding_error;
7259 /* 4-byte code */
7260 *len = 4;
7261 val = (cur[0] & 0x7) << 18;
7262 val |= (cur[1] & 0x3f) << 12;
7263 val |= (cur[2] & 0x3f) << 6;
7264 val |= cur[3] & 0x3f;
7265 } else {
7266 /* 3-byte code */
7267 *len = 3;
7268 val = (cur[0] & 0xf) << 12;
7269 val |= (cur[1] & 0x3f) << 6;
7270 val |= cur[2] & 0x3f;
7271 }
7272 } else {
7273 /* 2-byte code */
7274 *len = 2;
7275 val = (cur[0] & 0x1f) << 6;
7276 val |= cur[1] & 0x3f;
7277 }
7278 if (!IS_CHAR(val)) {
7279 XP_ERROR0(XPATH_INVALID_CHAR_ERROR);
7280 }
7281 return(val);
7282 } else {
7283 /* 1-byte code */
7284 *len = 1;
7285 return((int) *cur);
7286 }
7287encoding_error:
7288 /*
William M. Brack08171912003-12-29 02:52:11 +00007289 * If we detect an UTF8 error that probably means that the
7290 * input encoding didn't get properly advertised in the
Daniel Veillard61d80a22001-04-27 17:13:01 +00007291 * declaration header. Report the error and switch the encoding
7292 * to ISO-Latin-1 (if you don't like this policy, just declare the
7293 * encoding !)
7294 */
Daniel Veillard42596ad2001-05-22 16:57:14 +00007295 *len = 0;
Daniel Veillard61d80a22001-04-27 17:13:01 +00007296 XP_ERROR0(XPATH_ENCODING_ERROR);
Daniel Veillard61d80a22001-04-27 17:13:01 +00007297}
7298
7299/**
Owen Taylor3473f882001-02-23 17:55:21 +00007300 * xmlXPathParseNCName:
7301 * @ctxt: the XPath Parser context
7302 *
7303 * parse an XML namespace non qualified name.
7304 *
7305 * [NS 3] NCName ::= (Letter | '_') (NCNameChar)*
7306 *
7307 * [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' |
7308 * CombiningChar | Extender
7309 *
7310 * Returns the namespace name or NULL
7311 */
7312
7313xmlChar *
7314xmlXPathParseNCName(xmlXPathParserContextPtr ctxt) {
Daniel Veillard2156a562001-04-28 12:24:34 +00007315 const xmlChar *in;
7316 xmlChar *ret;
7317 int count = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007318
Daniel Veillard2156a562001-04-28 12:24:34 +00007319 /*
7320 * Accelerator for simple ASCII names
7321 */
7322 in = ctxt->cur;
7323 if (((*in >= 0x61) && (*in <= 0x7A)) ||
7324 ((*in >= 0x41) && (*in <= 0x5A)) ||
7325 (*in == '_')) {
7326 in++;
7327 while (((*in >= 0x61) && (*in <= 0x7A)) ||
7328 ((*in >= 0x41) && (*in <= 0x5A)) ||
7329 ((*in >= 0x30) && (*in <= 0x39)) ||
Daniel Veillard9a89a8a2001-06-27 11:13:35 +00007330 (*in == '_') || (*in == '.') ||
7331 (*in == '-'))
Daniel Veillard2156a562001-04-28 12:24:34 +00007332 in++;
7333 if ((*in == ' ') || (*in == '>') || (*in == '/') ||
7334 (*in == '[') || (*in == ']') || (*in == ':') ||
7335 (*in == '@') || (*in == '*')) {
7336 count = in - ctxt->cur;
7337 if (count == 0)
7338 return(NULL);
7339 ret = xmlStrndup(ctxt->cur, count);
7340 ctxt->cur = in;
7341 return(ret);
7342 }
7343 }
7344 return(xmlXPathParseNameComplex(ctxt, 0));
Owen Taylor3473f882001-02-23 17:55:21 +00007345}
7346
Daniel Veillard2156a562001-04-28 12:24:34 +00007347
Owen Taylor3473f882001-02-23 17:55:21 +00007348/**
7349 * xmlXPathParseQName:
7350 * @ctxt: the XPath Parser context
7351 * @prefix: a xmlChar **
7352 *
7353 * parse an XML qualified name
7354 *
7355 * [NS 5] QName ::= (Prefix ':')? LocalPart
7356 *
7357 * [NS 6] Prefix ::= NCName
7358 *
7359 * [NS 7] LocalPart ::= NCName
7360 *
7361 * Returns the function returns the local part, and prefix is updated
7362 * to get the Prefix if any.
7363 */
7364
Daniel Veillard56a4cb82001-03-24 17:00:36 +00007365static xmlChar *
Owen Taylor3473f882001-02-23 17:55:21 +00007366xmlXPathParseQName(xmlXPathParserContextPtr ctxt, xmlChar **prefix) {
7367 xmlChar *ret = NULL;
7368
7369 *prefix = NULL;
7370 ret = xmlXPathParseNCName(ctxt);
7371 if (CUR == ':') {
7372 *prefix = ret;
7373 NEXT;
7374 ret = xmlXPathParseNCName(ctxt);
7375 }
7376 return(ret);
7377}
7378
7379/**
7380 * xmlXPathParseName:
7381 * @ctxt: the XPath Parser context
7382 *
7383 * parse an XML name
7384 *
7385 * [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' |
7386 * CombiningChar | Extender
7387 *
7388 * [5] Name ::= (Letter | '_' | ':') (NameChar)*
7389 *
7390 * Returns the namespace name or NULL
7391 */
7392
7393xmlChar *
7394xmlXPathParseName(xmlXPathParserContextPtr ctxt) {
Daniel Veillard61d80a22001-04-27 17:13:01 +00007395 const xmlChar *in;
7396 xmlChar *ret;
7397 int count = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007398
Daniel Veillard61d80a22001-04-27 17:13:01 +00007399 /*
7400 * Accelerator for simple ASCII names
7401 */
7402 in = ctxt->cur;
7403 if (((*in >= 0x61) && (*in <= 0x7A)) ||
7404 ((*in >= 0x41) && (*in <= 0x5A)) ||
7405 (*in == '_') || (*in == ':')) {
7406 in++;
7407 while (((*in >= 0x61) && (*in <= 0x7A)) ||
7408 ((*in >= 0x41) && (*in <= 0x5A)) ||
7409 ((*in >= 0x30) && (*in <= 0x39)) ||
Daniel Veillard76d66f42001-05-16 21:05:17 +00007410 (*in == '_') || (*in == '-') ||
7411 (*in == ':') || (*in == '.'))
Daniel Veillard61d80a22001-04-27 17:13:01 +00007412 in++;
Daniel Veillard76d66f42001-05-16 21:05:17 +00007413 if ((*in > 0) && (*in < 0x80)) {
Daniel Veillard61d80a22001-04-27 17:13:01 +00007414 count = in - ctxt->cur;
7415 ret = xmlStrndup(ctxt->cur, count);
7416 ctxt->cur = in;
7417 return(ret);
7418 }
7419 }
Daniel Veillard2156a562001-04-28 12:24:34 +00007420 return(xmlXPathParseNameComplex(ctxt, 1));
Owen Taylor3473f882001-02-23 17:55:21 +00007421}
7422
Daniel Veillard61d80a22001-04-27 17:13:01 +00007423static xmlChar *
Daniel Veillard2156a562001-04-28 12:24:34 +00007424xmlXPathParseNameComplex(xmlXPathParserContextPtr ctxt, int qualified) {
Daniel Veillard61d80a22001-04-27 17:13:01 +00007425 xmlChar buf[XML_MAX_NAMELEN + 5];
7426 int len = 0, l;
7427 int c;
7428
7429 /*
7430 * Handler for more complex cases
7431 */
7432 c = CUR_CHAR(l);
7433 if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */
Daniel Veillard2156a562001-04-28 12:24:34 +00007434 (c == '[') || (c == ']') || (c == '@') || /* accelerators */
7435 (c == '*') || /* accelerators */
Daniel Veillard61d80a22001-04-27 17:13:01 +00007436 (!IS_LETTER(c) && (c != '_') &&
Daniel Veillard2156a562001-04-28 12:24:34 +00007437 ((qualified) && (c != ':')))) {
Daniel Veillard61d80a22001-04-27 17:13:01 +00007438 return(NULL);
7439 }
7440
7441 while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */
7442 ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
7443 (c == '.') || (c == '-') ||
Daniel Veillard2156a562001-04-28 12:24:34 +00007444 (c == '_') || ((qualified) && (c == ':')) ||
Daniel Veillard61d80a22001-04-27 17:13:01 +00007445 (IS_COMBINING(c)) ||
7446 (IS_EXTENDER(c)))) {
7447 COPY_BUF(l,buf,len,c);
7448 NEXTL(l);
7449 c = CUR_CHAR(l);
7450 if (len >= XML_MAX_NAMELEN) {
7451 /*
7452 * Okay someone managed to make a huge name, so he's ready to pay
7453 * for the processing speed.
7454 */
7455 xmlChar *buffer;
7456 int max = len * 2;
7457
Daniel Veillard3c908dc2003-04-19 00:07:51 +00007458 buffer = (xmlChar *) xmlMallocAtomic(max * sizeof(xmlChar));
Daniel Veillard61d80a22001-04-27 17:13:01 +00007459 if (buffer == NULL) {
7460 XP_ERROR0(XPATH_MEMORY_ERROR);
7461 }
7462 memcpy(buffer, buf, len);
7463 while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */
7464 (c == '.') || (c == '-') ||
Daniel Veillard2156a562001-04-28 12:24:34 +00007465 (c == '_') || ((qualified) && (c == ':')) ||
Daniel Veillard61d80a22001-04-27 17:13:01 +00007466 (IS_COMBINING(c)) ||
7467 (IS_EXTENDER(c))) {
7468 if (len + 10 > max) {
7469 max *= 2;
7470 buffer = (xmlChar *) xmlRealloc(buffer,
7471 max * sizeof(xmlChar));
Daniel Veillard61d80a22001-04-27 17:13:01 +00007472 if (buffer == NULL) {
7473 XP_ERROR0(XPATH_MEMORY_ERROR);
7474 }
7475 }
7476 COPY_BUF(l,buffer,len,c);
7477 NEXTL(l);
7478 c = CUR_CHAR(l);
7479 }
7480 buffer[len] = 0;
7481 return(buffer);
7482 }
7483 }
Daniel Veillard2156a562001-04-28 12:24:34 +00007484 if (len == 0)
7485 return(NULL);
Daniel Veillard61d80a22001-04-27 17:13:01 +00007486 return(xmlStrndup(buf, len));
7487}
Daniel Veillard3cd72402002-05-13 10:33:30 +00007488
7489#define MAX_FRAC 20
7490
7491static double my_pow10[MAX_FRAC] = {
7492 1.0, 10.0, 100.0, 1000.0, 10000.0,
7493 100000.0, 1000000.0, 10000000.0, 100000000.0, 1000000000.0,
7494 10000000000.0, 100000000000.0, 1000000000000.0, 10000000000000.0,
7495 100000000000000.0,
7496 1000000000000000.0, 10000000000000000.0, 100000000000000000.0,
7497 1000000000000000000.0, 10000000000000000000.0
7498};
7499
Owen Taylor3473f882001-02-23 17:55:21 +00007500/**
7501 * xmlXPathStringEvalNumber:
7502 * @str: A string to scan
7503 *
Bjorn Reese70a9da52001-04-21 16:57:29 +00007504 * [30a] Float ::= Number ('e' Digits?)?
7505 *
Owen Taylor3473f882001-02-23 17:55:21 +00007506 * [30] Number ::= Digits ('.' Digits?)?
7507 * | '.' Digits
7508 * [31] Digits ::= [0-9]+
7509 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007510 * Compile a Number in the string
Owen Taylor3473f882001-02-23 17:55:21 +00007511 * In complement of the Number expression, this function also handles
7512 * negative values : '-' Number.
7513 *
7514 * Returns the double value.
7515 */
7516double
7517xmlXPathStringEvalNumber(const xmlChar *str) {
7518 const xmlChar *cur = str;
Daniel Veillard7b416132002-03-07 08:36:03 +00007519 double ret;
Daniel Veillardb06c6142001-08-27 14:26:30 +00007520 int ok = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007521 int isneg = 0;
Bjorn Reese70a9da52001-04-21 16:57:29 +00007522 int exponent = 0;
7523 int is_exponent_negative = 0;
Daniel Veillardb06c6142001-08-27 14:26:30 +00007524#ifdef __GNUC__
7525 unsigned long tmp = 0;
Daniel Veillard7b416132002-03-07 08:36:03 +00007526 double temp;
Daniel Veillardb06c6142001-08-27 14:26:30 +00007527#endif
Daniel Veillardeca82812002-04-24 11:42:02 +00007528 if (cur == NULL) return(0);
William M. Brack76e95df2003-10-18 16:20:14 +00007529 while (IS_BLANK_CH(*cur)) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00007530 if ((*cur != '.') && ((*cur < '0') || (*cur > '9')) && (*cur != '-')) {
7531 return(xmlXPathNAN);
7532 }
7533 if (*cur == '-') {
7534 isneg = 1;
7535 cur++;
7536 }
Daniel Veillardb06c6142001-08-27 14:26:30 +00007537
7538#ifdef __GNUC__
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007539 /*
Daniel Veillard7b416132002-03-07 08:36:03 +00007540 * tmp/temp is a workaround against a gcc compiler bug
7541 * http://veillard.com/gcc.bug
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007542 */
Daniel Veillard7b416132002-03-07 08:36:03 +00007543 ret = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007544 while ((*cur >= '0') && (*cur <= '9')) {
Daniel Veillard7b416132002-03-07 08:36:03 +00007545 ret = ret * 10;
7546 tmp = (*cur - '0');
Owen Taylor3473f882001-02-23 17:55:21 +00007547 ok = 1;
7548 cur++;
Daniel Veillard7b416132002-03-07 08:36:03 +00007549 temp = (double) tmp;
7550 ret = ret + temp;
Owen Taylor3473f882001-02-23 17:55:21 +00007551 }
Daniel Veillardb06c6142001-08-27 14:26:30 +00007552#else
Daniel Veillard7b416132002-03-07 08:36:03 +00007553 ret = 0;
Daniel Veillardb06c6142001-08-27 14:26:30 +00007554 while ((*cur >= '0') && (*cur <= '9')) {
7555 ret = ret * 10 + (*cur - '0');
7556 ok = 1;
7557 cur++;
7558 }
7559#endif
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007560
Owen Taylor3473f882001-02-23 17:55:21 +00007561 if (*cur == '.') {
Daniel Veillard3cd72402002-05-13 10:33:30 +00007562 int v, frac = 0;
7563 double fraction = 0;
7564
Owen Taylor3473f882001-02-23 17:55:21 +00007565 cur++;
7566 if (((*cur < '0') || (*cur > '9')) && (!ok)) {
7567 return(xmlXPathNAN);
7568 }
Daniel Veillard3cd72402002-05-13 10:33:30 +00007569 while (((*cur >= '0') && (*cur <= '9')) && (frac < MAX_FRAC)) {
7570 v = (*cur - '0');
7571 fraction = fraction * 10 + v;
7572 frac = frac + 1;
Owen Taylor3473f882001-02-23 17:55:21 +00007573 cur++;
7574 }
Daniel Veillard3cd72402002-05-13 10:33:30 +00007575 fraction /= my_pow10[frac];
7576 ret = ret + fraction;
7577 while ((*cur >= '0') && (*cur <= '9'))
7578 cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00007579 }
Bjorn Reese70a9da52001-04-21 16:57:29 +00007580 if ((*cur == 'e') || (*cur == 'E')) {
7581 cur++;
7582 if (*cur == '-') {
7583 is_exponent_negative = 1;
7584 cur++;
7585 }
7586 while ((*cur >= '0') && (*cur <= '9')) {
7587 exponent = exponent * 10 + (*cur - '0');
7588 cur++;
7589 }
7590 }
William M. Brack76e95df2003-10-18 16:20:14 +00007591 while (IS_BLANK_CH(*cur)) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00007592 if (*cur != 0) return(xmlXPathNAN);
7593 if (isneg) ret = -ret;
Bjorn Reese70a9da52001-04-21 16:57:29 +00007594 if (is_exponent_negative) exponent = -exponent;
7595 ret *= pow(10.0, (double)exponent);
Owen Taylor3473f882001-02-23 17:55:21 +00007596 return(ret);
7597}
7598
7599/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007600 * xmlXPathCompNumber:
Owen Taylor3473f882001-02-23 17:55:21 +00007601 * @ctxt: the XPath Parser context
7602 *
7603 * [30] Number ::= Digits ('.' Digits?)?
7604 * | '.' Digits
7605 * [31] Digits ::= [0-9]+
7606 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007607 * Compile a Number, then push it on the stack
Owen Taylor3473f882001-02-23 17:55:21 +00007608 *
7609 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007610static void
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007611xmlXPathCompNumber(xmlXPathParserContextPtr ctxt)
7612{
Owen Taylor3473f882001-02-23 17:55:21 +00007613 double ret = 0.0;
7614 double mult = 1;
Daniel Veillard7b416132002-03-07 08:36:03 +00007615 int ok = 0;
Bjorn Reese70a9da52001-04-21 16:57:29 +00007616 int exponent = 0;
7617 int is_exponent_negative = 0;
Daniel Veillard7b416132002-03-07 08:36:03 +00007618#ifdef __GNUC__
7619 unsigned long tmp = 0;
7620 double temp;
7621#endif
Owen Taylor3473f882001-02-23 17:55:21 +00007622
7623 CHECK_ERROR;
7624 if ((CUR != '.') && ((CUR < '0') || (CUR > '9'))) {
7625 XP_ERROR(XPATH_NUMBER_ERROR);
7626 }
Daniel Veillard7b416132002-03-07 08:36:03 +00007627#ifdef __GNUC__
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007628 /*
Daniel Veillard7b416132002-03-07 08:36:03 +00007629 * tmp/temp is a workaround against a gcc compiler bug
7630 * http://veillard.com/gcc.bug
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007631 */
Daniel Veillard7b416132002-03-07 08:36:03 +00007632 ret = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00007633 while ((CUR >= '0') && (CUR <= '9')) {
Daniel Veillard7b416132002-03-07 08:36:03 +00007634 ret = ret * 10;
7635 tmp = (CUR - '0');
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007636 ok = 1;
7637 NEXT;
Daniel Veillard7b416132002-03-07 08:36:03 +00007638 temp = (double) tmp;
7639 ret = ret + temp;
Owen Taylor3473f882001-02-23 17:55:21 +00007640 }
Daniel Veillard7b416132002-03-07 08:36:03 +00007641#else
7642 ret = 0;
7643 while ((CUR >= '0') && (CUR <= '9')) {
7644 ret = ret * 10 + (CUR - '0');
7645 ok = 1;
7646 NEXT;
7647 }
7648#endif
Owen Taylor3473f882001-02-23 17:55:21 +00007649 if (CUR == '.') {
7650 NEXT;
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007651 if (((CUR < '0') || (CUR > '9')) && (!ok)) {
7652 XP_ERROR(XPATH_NUMBER_ERROR);
7653 }
7654 while ((CUR >= '0') && (CUR <= '9')) {
7655 mult /= 10;
7656 ret = ret + (CUR - '0') * mult;
7657 NEXT;
7658 }
Owen Taylor3473f882001-02-23 17:55:21 +00007659 }
Bjorn Reese70a9da52001-04-21 16:57:29 +00007660 if ((CUR == 'e') || (CUR == 'E')) {
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007661 NEXT;
7662 if (CUR == '-') {
7663 is_exponent_negative = 1;
7664 NEXT;
7665 }
7666 while ((CUR >= '0') && (CUR <= '9')) {
7667 exponent = exponent * 10 + (CUR - '0');
7668 NEXT;
7669 }
7670 if (is_exponent_negative)
7671 exponent = -exponent;
7672 ret *= pow(10.0, (double) exponent);
Bjorn Reese70a9da52001-04-21 16:57:29 +00007673 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00007674 PUSH_LONG_EXPR(XPATH_OP_VALUE, XPATH_NUMBER, 0, 0,
Daniel Veillardd79bcd12001-06-21 22:07:42 +00007675 xmlXPathNewFloat(ret), NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00007676}
7677
7678/**
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007679 * xmlXPathParseLiteral:
7680 * @ctxt: the XPath Parser context
7681 *
7682 * Parse a Literal
7683 *
7684 * [29] Literal ::= '"' [^"]* '"'
7685 * | "'" [^']* "'"
7686 *
7687 * Returns the value found or NULL in case of error
7688 */
7689static xmlChar *
7690xmlXPathParseLiteral(xmlXPathParserContextPtr ctxt) {
7691 const xmlChar *q;
7692 xmlChar *ret = NULL;
7693
7694 if (CUR == '"') {
7695 NEXT;
7696 q = CUR_PTR;
William M. Brack76e95df2003-10-18 16:20:14 +00007697 while ((IS_CHAR_CH(CUR)) && (CUR != '"'))
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007698 NEXT;
William M. Brack76e95df2003-10-18 16:20:14 +00007699 if (!IS_CHAR_CH(CUR)) {
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007700 XP_ERROR0(XPATH_UNFINISHED_LITERAL_ERROR);
7701 } else {
7702 ret = xmlStrndup(q, CUR_PTR - q);
7703 NEXT;
7704 }
7705 } else if (CUR == '\'') {
7706 NEXT;
7707 q = CUR_PTR;
William M. Brack76e95df2003-10-18 16:20:14 +00007708 while ((IS_CHAR_CH(CUR)) && (CUR != '\''))
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007709 NEXT;
William M. Brack76e95df2003-10-18 16:20:14 +00007710 if (!IS_CHAR_CH(CUR)) {
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007711 XP_ERROR0(XPATH_UNFINISHED_LITERAL_ERROR);
7712 } else {
7713 ret = xmlStrndup(q, CUR_PTR - q);
7714 NEXT;
7715 }
7716 } else {
7717 XP_ERROR0(XPATH_START_LITERAL_ERROR);
7718 }
7719 return(ret);
7720}
7721
7722/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007723 * xmlXPathCompLiteral:
Owen Taylor3473f882001-02-23 17:55:21 +00007724 * @ctxt: the XPath Parser context
7725 *
7726 * Parse a Literal and push it on the stack.
7727 *
7728 * [29] Literal ::= '"' [^"]* '"'
7729 * | "'" [^']* "'"
7730 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007731 * TODO: xmlXPathCompLiteral memory allocation could be improved.
Owen Taylor3473f882001-02-23 17:55:21 +00007732 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007733static void
7734xmlXPathCompLiteral(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00007735 const xmlChar *q;
7736 xmlChar *ret = NULL;
7737
7738 if (CUR == '"') {
7739 NEXT;
7740 q = CUR_PTR;
William M. Brack76e95df2003-10-18 16:20:14 +00007741 while ((IS_CHAR_CH(CUR)) && (CUR != '"'))
Owen Taylor3473f882001-02-23 17:55:21 +00007742 NEXT;
William M. Brack76e95df2003-10-18 16:20:14 +00007743 if (!IS_CHAR_CH(CUR)) {
Owen Taylor3473f882001-02-23 17:55:21 +00007744 XP_ERROR(XPATH_UNFINISHED_LITERAL_ERROR);
7745 } else {
7746 ret = xmlStrndup(q, CUR_PTR - q);
7747 NEXT;
7748 }
7749 } else if (CUR == '\'') {
7750 NEXT;
7751 q = CUR_PTR;
William M. Brack76e95df2003-10-18 16:20:14 +00007752 while ((IS_CHAR_CH(CUR)) && (CUR != '\''))
Owen Taylor3473f882001-02-23 17:55:21 +00007753 NEXT;
William M. Brack76e95df2003-10-18 16:20:14 +00007754 if (!IS_CHAR_CH(CUR)) {
Owen Taylor3473f882001-02-23 17:55:21 +00007755 XP_ERROR(XPATH_UNFINISHED_LITERAL_ERROR);
7756 } else {
7757 ret = xmlStrndup(q, CUR_PTR - q);
7758 NEXT;
7759 }
7760 } else {
7761 XP_ERROR(XPATH_START_LITERAL_ERROR);
7762 }
7763 if (ret == NULL) return;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00007764 PUSH_LONG_EXPR(XPATH_OP_VALUE, XPATH_STRING, 0, 0,
7765 xmlXPathNewString(ret), NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00007766 xmlFree(ret);
7767}
7768
7769/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007770 * xmlXPathCompVariableReference:
Owen Taylor3473f882001-02-23 17:55:21 +00007771 * @ctxt: the XPath Parser context
7772 *
7773 * Parse a VariableReference, evaluate it and push it on the stack.
7774 *
7775 * The variable bindings consist of a mapping from variable names
William M. Brack08171912003-12-29 02:52:11 +00007776 * to variable values. The value of a variable is an object, which can be
Owen Taylor3473f882001-02-23 17:55:21 +00007777 * of any of the types that are possible for the value of an expression,
7778 * and may also be of additional types not specified here.
7779 *
7780 * Early evaluation is possible since:
7781 * The variable bindings [...] used to evaluate a subexpression are
7782 * always the same as those used to evaluate the containing expression.
7783 *
7784 * [36] VariableReference ::= '$' QName
7785 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007786static void
7787xmlXPathCompVariableReference(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00007788 xmlChar *name;
7789 xmlChar *prefix;
Owen Taylor3473f882001-02-23 17:55:21 +00007790
7791 SKIP_BLANKS;
7792 if (CUR != '$') {
7793 XP_ERROR(XPATH_VARIABLE_REF_ERROR);
7794 }
7795 NEXT;
7796 name = xmlXPathParseQName(ctxt, &prefix);
7797 if (name == NULL) {
7798 XP_ERROR(XPATH_VARIABLE_REF_ERROR);
7799 }
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00007800 ctxt->comp->last = -1;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00007801 PUSH_LONG_EXPR(XPATH_OP_VARIABLE, 0, 0, 0,
7802 name, prefix);
Owen Taylor3473f882001-02-23 17:55:21 +00007803 SKIP_BLANKS;
7804}
7805
7806/**
7807 * xmlXPathIsNodeType:
Owen Taylor3473f882001-02-23 17:55:21 +00007808 * @name: a name string
7809 *
7810 * Is the name given a NodeType one.
7811 *
7812 * [38] NodeType ::= 'comment'
7813 * | 'text'
7814 * | 'processing-instruction'
7815 * | 'node'
7816 *
7817 * Returns 1 if true 0 otherwise
7818 */
7819int
7820xmlXPathIsNodeType(const xmlChar *name) {
7821 if (name == NULL)
7822 return(0);
7823
Daniel Veillard1971ee22002-01-31 20:29:19 +00007824 if (xmlStrEqual(name, BAD_CAST "node"))
Owen Taylor3473f882001-02-23 17:55:21 +00007825 return(1);
7826 if (xmlStrEqual(name, BAD_CAST "text"))
7827 return(1);
Daniel Veillard1971ee22002-01-31 20:29:19 +00007828 if (xmlStrEqual(name, BAD_CAST "comment"))
Owen Taylor3473f882001-02-23 17:55:21 +00007829 return(1);
Daniel Veillard1971ee22002-01-31 20:29:19 +00007830 if (xmlStrEqual(name, BAD_CAST "processing-instruction"))
Owen Taylor3473f882001-02-23 17:55:21 +00007831 return(1);
7832 return(0);
7833}
7834
7835/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007836 * xmlXPathCompFunctionCall:
Owen Taylor3473f882001-02-23 17:55:21 +00007837 * @ctxt: the XPath Parser context
7838 *
7839 * [16] FunctionCall ::= FunctionName '(' ( Argument ( ',' Argument)*)? ')'
7840 * [17] Argument ::= Expr
7841 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007842 * Compile a function call, the evaluation of all arguments are
Owen Taylor3473f882001-02-23 17:55:21 +00007843 * pushed on the stack
7844 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007845static void
7846xmlXPathCompFunctionCall(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00007847 xmlChar *name;
7848 xmlChar *prefix;
Owen Taylor3473f882001-02-23 17:55:21 +00007849 int nbargs = 0;
7850
7851 name = xmlXPathParseQName(ctxt, &prefix);
7852 if (name == NULL) {
7853 XP_ERROR(XPATH_EXPR_ERROR);
7854 }
7855 SKIP_BLANKS;
Owen Taylor3473f882001-02-23 17:55:21 +00007856#ifdef DEBUG_EXPR
7857 if (prefix == NULL)
7858 xmlGenericError(xmlGenericErrorContext, "Calling function %s\n",
7859 name);
7860 else
7861 xmlGenericError(xmlGenericErrorContext, "Calling function %s:%s\n",
7862 prefix, name);
7863#endif
7864
Owen Taylor3473f882001-02-23 17:55:21 +00007865 if (CUR != '(') {
7866 XP_ERROR(XPATH_EXPR_ERROR);
7867 }
7868 NEXT;
7869 SKIP_BLANKS;
7870
Daniel Veillard9e7160d2001-03-18 23:17:47 +00007871 ctxt->comp->last = -1;
Daniel Veillard71f9d732003-01-14 16:07:16 +00007872 if (CUR != ')') {
7873 while (CUR != 0) {
7874 int op1 = ctxt->comp->last;
7875 ctxt->comp->last = -1;
7876 xmlXPathCompileExpr(ctxt);
7877 CHECK_ERROR;
7878 PUSH_BINARY_EXPR(XPATH_OP_ARG, op1, ctxt->comp->last, 0, 0);
7879 nbargs++;
7880 if (CUR == ')') break;
7881 if (CUR != ',') {
7882 XP_ERROR(XPATH_EXPR_ERROR);
7883 }
7884 NEXT;
7885 SKIP_BLANKS;
Owen Taylor3473f882001-02-23 17:55:21 +00007886 }
Owen Taylor3473f882001-02-23 17:55:21 +00007887 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00007888 PUSH_LONG_EXPR(XPATH_OP_FUNCTION, nbargs, 0, 0,
7889 name, prefix);
Owen Taylor3473f882001-02-23 17:55:21 +00007890 NEXT;
7891 SKIP_BLANKS;
Owen Taylor3473f882001-02-23 17:55:21 +00007892}
7893
7894/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007895 * xmlXPathCompPrimaryExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00007896 * @ctxt: the XPath Parser context
7897 *
7898 * [15] PrimaryExpr ::= VariableReference
7899 * | '(' Expr ')'
7900 * | Literal
7901 * | Number
7902 * | FunctionCall
7903 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007904 * Compile a primary expression.
Owen Taylor3473f882001-02-23 17:55:21 +00007905 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007906static void
7907xmlXPathCompPrimaryExpr(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00007908 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007909 if (CUR == '$') xmlXPathCompVariableReference(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00007910 else if (CUR == '(') {
7911 NEXT;
7912 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007913 xmlXPathCompileExpr(ctxt);
Aleksey Sanin50fe8b12002-05-07 16:21:36 +00007914 CHECK_ERROR;
Owen Taylor3473f882001-02-23 17:55:21 +00007915 if (CUR != ')') {
7916 XP_ERROR(XPATH_EXPR_ERROR);
7917 }
7918 NEXT;
7919 SKIP_BLANKS;
William M. Brack76e95df2003-10-18 16:20:14 +00007920 } else if (IS_DIGIT_CH(CUR) || (CUR == '.' && IS_DIGIT_CH(NXT(1)))) {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007921 xmlXPathCompNumber(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00007922 } else if ((CUR == '\'') || (CUR == '"')) {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007923 xmlXPathCompLiteral(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00007924 } else {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007925 xmlXPathCompFunctionCall(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00007926 }
7927 SKIP_BLANKS;
7928}
7929
7930/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007931 * xmlXPathCompFilterExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00007932 * @ctxt: the XPath Parser context
7933 *
7934 * [20] FilterExpr ::= PrimaryExpr
7935 * | FilterExpr Predicate
7936 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007937 * Compile a filter expression.
Owen Taylor3473f882001-02-23 17:55:21 +00007938 * Square brackets are used to filter expressions in the same way that
7939 * they are used in location paths. It is an error if the expression to
7940 * be filtered does not evaluate to a node-set. The context node list
7941 * used for evaluating the expression in square brackets is the node-set
7942 * to be filtered listed in document order.
7943 */
7944
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00007945static void
7946xmlXPathCompFilterExpr(xmlXPathParserContextPtr ctxt) {
7947 xmlXPathCompPrimaryExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00007948 CHECK_ERROR;
7949 SKIP_BLANKS;
7950
7951 while (CUR == '[') {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00007952 xmlXPathCompPredicate(ctxt, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00007953 SKIP_BLANKS;
7954 }
7955
7956
7957}
7958
7959/**
7960 * xmlXPathScanName:
7961 * @ctxt: the XPath Parser context
7962 *
7963 * Trickery: parse an XML name but without consuming the input flow
7964 * Needed to avoid insanity in the parser state.
7965 *
7966 * [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' |
7967 * CombiningChar | Extender
7968 *
7969 * [5] Name ::= (Letter | '_' | ':') (NameChar)*
7970 *
7971 * [6] Names ::= Name (S Name)*
7972 *
7973 * Returns the Name parsed or NULL
7974 */
7975
Daniel Veillard56a4cb82001-03-24 17:00:36 +00007976static xmlChar *
Owen Taylor3473f882001-02-23 17:55:21 +00007977xmlXPathScanName(xmlXPathParserContextPtr ctxt) {
7978 xmlChar buf[XML_MAX_NAMELEN];
7979 int len = 0;
7980
7981 SKIP_BLANKS;
William M. Brack76e95df2003-10-18 16:20:14 +00007982 if (!IS_LETTER_CH(CUR) && (CUR != '_') &&
Owen Taylor3473f882001-02-23 17:55:21 +00007983 (CUR != ':')) {
7984 return(NULL);
7985 }
7986
William M. Brack76e95df2003-10-18 16:20:14 +00007987 while ((IS_LETTER_CH(NXT(len))) || (IS_DIGIT_CH(NXT(len))) ||
Owen Taylor3473f882001-02-23 17:55:21 +00007988 (NXT(len) == '.') || (NXT(len) == '-') ||
7989 (NXT(len) == '_') || (NXT(len) == ':') ||
William M. Brack76e95df2003-10-18 16:20:14 +00007990 (IS_COMBINING_CH(NXT(len))) ||
7991 (IS_EXTENDER_CH(NXT(len)))) {
Owen Taylor3473f882001-02-23 17:55:21 +00007992 buf[len] = NXT(len);
7993 len++;
7994 if (len >= XML_MAX_NAMELEN) {
7995 xmlGenericError(xmlGenericErrorContext,
7996 "xmlScanName: reached XML_MAX_NAMELEN limit\n");
William M. Brack76e95df2003-10-18 16:20:14 +00007997 while ((IS_LETTER_CH(NXT(len))) || (IS_DIGIT_CH(NXT(len))) ||
Owen Taylor3473f882001-02-23 17:55:21 +00007998 (NXT(len) == '.') || (NXT(len) == '-') ||
7999 (NXT(len) == '_') || (NXT(len) == ':') ||
William M. Brack76e95df2003-10-18 16:20:14 +00008000 (IS_COMBINING_CH(NXT(len))) ||
8001 (IS_EXTENDER_CH(NXT(len))))
Owen Taylor3473f882001-02-23 17:55:21 +00008002 len++;
8003 break;
8004 }
8005 }
8006 return(xmlStrndup(buf, len));
8007}
8008
8009/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008010 * xmlXPathCompPathExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008011 * @ctxt: the XPath Parser context
8012 *
8013 * [19] PathExpr ::= LocationPath
8014 * | FilterExpr
8015 * | FilterExpr '/' RelativeLocationPath
8016 * | FilterExpr '//' RelativeLocationPath
8017 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008018 * Compile a path expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008019 * The / operator and // operators combine an arbitrary expression
8020 * and a relative location path. It is an error if the expression
8021 * does not evaluate to a node-set.
8022 * The / operator does composition in the same way as when / is
8023 * used in a location path. As in location paths, // is short for
8024 * /descendant-or-self::node()/.
8025 */
8026
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008027static void
8028xmlXPathCompPathExpr(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00008029 int lc = 1; /* Should we branch to LocationPath ? */
8030 xmlChar *name = NULL; /* we may have to preparse a name to find out */
8031
8032 SKIP_BLANKS;
William M. Brack76e95df2003-10-18 16:20:14 +00008033 if ((CUR == '$') || (CUR == '(') || (IS_DIGIT_CH(CUR)) ||
8034 (CUR == '\'') || (CUR == '"') || (CUR == '.' && IS_DIGIT_CH(NXT(1)))) {
Owen Taylor3473f882001-02-23 17:55:21 +00008035 lc = 0;
8036 } else if (CUR == '*') {
8037 /* relative or absolute location path */
8038 lc = 1;
8039 } else if (CUR == '/') {
8040 /* relative or absolute location path */
8041 lc = 1;
8042 } else if (CUR == '@') {
8043 /* relative abbreviated attribute location path */
8044 lc = 1;
8045 } else if (CUR == '.') {
8046 /* relative abbreviated attribute location path */
8047 lc = 1;
8048 } else {
8049 /*
8050 * Problem is finding if we have a name here whether it's:
8051 * - a nodetype
8052 * - a function call in which case it's followed by '('
8053 * - an axis in which case it's followed by ':'
8054 * - a element name
8055 * We do an a priori analysis here rather than having to
8056 * maintain parsed token content through the recursive function
William M. Brack08171912003-12-29 02:52:11 +00008057 * calls. This looks uglier but makes the code easier to
Owen Taylor3473f882001-02-23 17:55:21 +00008058 * read/write/debug.
8059 */
8060 SKIP_BLANKS;
8061 name = xmlXPathScanName(ctxt);
8062 if ((name != NULL) && (xmlStrstr(name, (xmlChar *) "::") != NULL)) {
8063#ifdef DEBUG_STEP
8064 xmlGenericError(xmlGenericErrorContext,
8065 "PathExpr: Axis\n");
8066#endif
8067 lc = 1;
8068 xmlFree(name);
8069 } else if (name != NULL) {
8070 int len =xmlStrlen(name);
Owen Taylor3473f882001-02-23 17:55:21 +00008071
8072
8073 while (NXT(len) != 0) {
8074 if (NXT(len) == '/') {
8075 /* element name */
8076#ifdef DEBUG_STEP
8077 xmlGenericError(xmlGenericErrorContext,
8078 "PathExpr: AbbrRelLocation\n");
8079#endif
8080 lc = 1;
8081 break;
William M. Brack76e95df2003-10-18 16:20:14 +00008082 } else if (IS_BLANK_CH(NXT(len))) {
William M. Brack78637da2003-07-31 14:47:38 +00008083 /* ignore blanks */
8084 ;
Owen Taylor3473f882001-02-23 17:55:21 +00008085 } else if (NXT(len) == ':') {
8086#ifdef DEBUG_STEP
8087 xmlGenericError(xmlGenericErrorContext,
8088 "PathExpr: AbbrRelLocation\n");
8089#endif
8090 lc = 1;
8091 break;
8092 } else if ((NXT(len) == '(')) {
8093 /* Note Type or Function */
8094 if (xmlXPathIsNodeType(name)) {
8095#ifdef DEBUG_STEP
8096 xmlGenericError(xmlGenericErrorContext,
8097 "PathExpr: Type search\n");
8098#endif
8099 lc = 1;
8100 } else {
8101#ifdef DEBUG_STEP
8102 xmlGenericError(xmlGenericErrorContext,
8103 "PathExpr: function call\n");
8104#endif
8105 lc = 0;
8106 }
8107 break;
8108 } else if ((NXT(len) == '[')) {
8109 /* element name */
8110#ifdef DEBUG_STEP
8111 xmlGenericError(xmlGenericErrorContext,
8112 "PathExpr: AbbrRelLocation\n");
8113#endif
8114 lc = 1;
8115 break;
8116 } else if ((NXT(len) == '<') || (NXT(len) == '>') ||
8117 (NXT(len) == '=')) {
8118 lc = 1;
8119 break;
8120 } else {
8121 lc = 1;
8122 break;
8123 }
8124 len++;
8125 }
8126 if (NXT(len) == 0) {
8127#ifdef DEBUG_STEP
8128 xmlGenericError(xmlGenericErrorContext,
8129 "PathExpr: AbbrRelLocation\n");
8130#endif
8131 /* element name */
8132 lc = 1;
8133 }
8134 xmlFree(name);
8135 } else {
William M. Brack08171912003-12-29 02:52:11 +00008136 /* make sure all cases are covered explicitly */
Owen Taylor3473f882001-02-23 17:55:21 +00008137 XP_ERROR(XPATH_EXPR_ERROR);
8138 }
8139 }
8140
8141 if (lc) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008142 if (CUR == '/') {
8143 PUSH_LEAVE_EXPR(XPATH_OP_ROOT, 0, 0);
8144 } else {
8145 PUSH_LEAVE_EXPR(XPATH_OP_NODE, 0, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008146 }
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008147 xmlXPathCompLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008148 } else {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008149 xmlXPathCompFilterExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008150 CHECK_ERROR;
8151 if ((CUR == '/') && (NXT(1) == '/')) {
8152 SKIP(2);
8153 SKIP_BLANKS;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008154
8155 PUSH_LONG_EXPR(XPATH_OP_COLLECT, AXIS_DESCENDANT_OR_SELF,
8156 NODE_TEST_TYPE, NODE_TYPE_NODE, NULL, NULL);
8157 PUSH_UNARY_EXPR(XPATH_OP_RESET, ctxt->comp->last, 1, 0);
8158
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008159 xmlXPathCompRelativeLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008160 } else if (CUR == '/') {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008161 xmlXPathCompRelativeLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008162 }
8163 }
8164 SKIP_BLANKS;
8165}
8166
8167/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008168 * xmlXPathCompUnionExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008169 * @ctxt: the XPath Parser context
8170 *
8171 * [18] UnionExpr ::= PathExpr
8172 * | UnionExpr '|' PathExpr
8173 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008174 * Compile an union expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008175 */
8176
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008177static void
8178xmlXPathCompUnionExpr(xmlXPathParserContextPtr ctxt) {
8179 xmlXPathCompPathExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008180 CHECK_ERROR;
8181 SKIP_BLANKS;
8182 while (CUR == '|') {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008183 int op1 = ctxt->comp->last;
8184 PUSH_LEAVE_EXPR(XPATH_OP_NODE, 0, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008185
8186 NEXT;
8187 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008188 xmlXPathCompPathExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008189
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008190 PUSH_BINARY_EXPR(XPATH_OP_UNION, op1, ctxt->comp->last, 0, 0);
8191
Owen Taylor3473f882001-02-23 17:55:21 +00008192 SKIP_BLANKS;
8193 }
Owen Taylor3473f882001-02-23 17:55:21 +00008194}
8195
8196/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008197 * xmlXPathCompUnaryExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008198 * @ctxt: the XPath Parser context
8199 *
8200 * [27] UnaryExpr ::= UnionExpr
8201 * | '-' UnaryExpr
8202 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008203 * Compile an unary expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008204 */
8205
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008206static void
8207xmlXPathCompUnaryExpr(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00008208 int minus = 0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008209 int found = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00008210
8211 SKIP_BLANKS;
Daniel Veillard68d7b672001-03-12 18:22:04 +00008212 while (CUR == '-') {
8213 minus = 1 - minus;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008214 found = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00008215 NEXT;
8216 SKIP_BLANKS;
8217 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008218
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008219 xmlXPathCompUnionExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008220 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008221 if (found) {
8222 if (minus)
8223 PUSH_UNARY_EXPR(XPATH_OP_PLUS, ctxt->comp->last, 2, 0);
8224 else
8225 PUSH_UNARY_EXPR(XPATH_OP_PLUS, ctxt->comp->last, 3, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008226 }
8227}
8228
8229/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008230 * xmlXPathCompMultiplicativeExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008231 * @ctxt: the XPath Parser context
8232 *
8233 * [26] MultiplicativeExpr ::= UnaryExpr
8234 * | MultiplicativeExpr MultiplyOperator UnaryExpr
8235 * | MultiplicativeExpr 'div' UnaryExpr
8236 * | MultiplicativeExpr 'mod' UnaryExpr
8237 * [34] MultiplyOperator ::= '*'
8238 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008239 * Compile an Additive expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008240 */
8241
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008242static void
8243xmlXPathCompMultiplicativeExpr(xmlXPathParserContextPtr ctxt) {
8244 xmlXPathCompUnaryExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008245 CHECK_ERROR;
8246 SKIP_BLANKS;
8247 while ((CUR == '*') ||
8248 ((CUR == 'd') && (NXT(1) == 'i') && (NXT(2) == 'v')) ||
8249 ((CUR == 'm') && (NXT(1) == 'o') && (NXT(2) == 'd'))) {
8250 int op = -1;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008251 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008252
8253 if (CUR == '*') {
8254 op = 0;
8255 NEXT;
8256 } else if (CUR == 'd') {
8257 op = 1;
8258 SKIP(3);
8259 } else if (CUR == 'm') {
8260 op = 2;
8261 SKIP(3);
8262 }
8263 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008264 xmlXPathCompUnaryExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008265 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008266 PUSH_BINARY_EXPR(XPATH_OP_MULT, op1, ctxt->comp->last, op, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008267 SKIP_BLANKS;
8268 }
8269}
8270
8271/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008272 * xmlXPathCompAdditiveExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008273 * @ctxt: the XPath Parser context
8274 *
8275 * [25] AdditiveExpr ::= MultiplicativeExpr
8276 * | AdditiveExpr '+' MultiplicativeExpr
8277 * | AdditiveExpr '-' MultiplicativeExpr
8278 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008279 * Compile an Additive expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008280 */
8281
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008282static void
8283xmlXPathCompAdditiveExpr(xmlXPathParserContextPtr ctxt) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008284
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008285 xmlXPathCompMultiplicativeExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008286 CHECK_ERROR;
8287 SKIP_BLANKS;
8288 while ((CUR == '+') || (CUR == '-')) {
8289 int plus;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008290 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008291
8292 if (CUR == '+') plus = 1;
8293 else plus = 0;
8294 NEXT;
8295 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008296 xmlXPathCompMultiplicativeExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008297 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008298 PUSH_BINARY_EXPR(XPATH_OP_PLUS, op1, ctxt->comp->last, plus, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008299 SKIP_BLANKS;
8300 }
8301}
8302
8303/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008304 * xmlXPathCompRelationalExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008305 * @ctxt: the XPath Parser context
8306 *
8307 * [24] RelationalExpr ::= AdditiveExpr
8308 * | RelationalExpr '<' AdditiveExpr
8309 * | RelationalExpr '>' AdditiveExpr
8310 * | RelationalExpr '<=' AdditiveExpr
8311 * | RelationalExpr '>=' AdditiveExpr
8312 *
8313 * A <= B > C is allowed ? Answer from James, yes with
8314 * (AdditiveExpr <= AdditiveExpr) > AdditiveExpr
8315 * which is basically what got implemented.
8316 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008317 * Compile a Relational expression, then push the result
Owen Taylor3473f882001-02-23 17:55:21 +00008318 * on the stack
8319 */
8320
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008321static void
8322xmlXPathCompRelationalExpr(xmlXPathParserContextPtr ctxt) {
8323 xmlXPathCompAdditiveExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008324 CHECK_ERROR;
8325 SKIP_BLANKS;
8326 while ((CUR == '<') ||
8327 (CUR == '>') ||
8328 ((CUR == '<') && (NXT(1) == '=')) ||
8329 ((CUR == '>') && (NXT(1) == '='))) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008330 int inf, strict;
8331 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008332
8333 if (CUR == '<') inf = 1;
8334 else inf = 0;
8335 if (NXT(1) == '=') strict = 0;
8336 else strict = 1;
8337 NEXT;
8338 if (!strict) NEXT;
8339 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008340 xmlXPathCompAdditiveExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008341 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008342 PUSH_BINARY_EXPR(XPATH_OP_CMP, op1, ctxt->comp->last, inf, strict);
Owen Taylor3473f882001-02-23 17:55:21 +00008343 SKIP_BLANKS;
8344 }
8345}
8346
8347/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008348 * xmlXPathCompEqualityExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008349 * @ctxt: the XPath Parser context
8350 *
8351 * [23] EqualityExpr ::= RelationalExpr
8352 * | EqualityExpr '=' RelationalExpr
8353 * | EqualityExpr '!=' RelationalExpr
8354 *
8355 * A != B != C is allowed ? Answer from James, yes with
8356 * (RelationalExpr = RelationalExpr) = RelationalExpr
8357 * (RelationalExpr != RelationalExpr) != RelationalExpr
8358 * which is basically what got implemented.
8359 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008360 * Compile an Equality expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008361 *
8362 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008363static void
8364xmlXPathCompEqualityExpr(xmlXPathParserContextPtr ctxt) {
8365 xmlXPathCompRelationalExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008366 CHECK_ERROR;
8367 SKIP_BLANKS;
8368 while ((CUR == '=') || ((CUR == '!') && (NXT(1) == '='))) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008369 int eq;
8370 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008371
8372 if (CUR == '=') eq = 1;
8373 else eq = 0;
8374 NEXT;
8375 if (!eq) NEXT;
8376 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008377 xmlXPathCompRelationalExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008378 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008379 PUSH_BINARY_EXPR(XPATH_OP_EQUAL, op1, ctxt->comp->last, eq, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008380 SKIP_BLANKS;
8381 }
8382}
8383
8384/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008385 * xmlXPathCompAndExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008386 * @ctxt: the XPath Parser context
8387 *
8388 * [22] AndExpr ::= EqualityExpr
8389 * | AndExpr 'and' EqualityExpr
8390 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008391 * Compile an AND expression.
Owen Taylor3473f882001-02-23 17:55:21 +00008392 *
8393 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008394static void
8395xmlXPathCompAndExpr(xmlXPathParserContextPtr ctxt) {
8396 xmlXPathCompEqualityExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008397 CHECK_ERROR;
8398 SKIP_BLANKS;
8399 while ((CUR == 'a') && (NXT(1) == 'n') && (NXT(2) == 'd')) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008400 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008401 SKIP(3);
8402 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008403 xmlXPathCompEqualityExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008404 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008405 PUSH_BINARY_EXPR(XPATH_OP_AND, op1, ctxt->comp->last, 0, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008406 SKIP_BLANKS;
8407 }
8408}
8409
8410/**
Daniel Veillard591b4be2003-02-09 23:33:36 +00008411 * xmlXPathCompileExpr:
Owen Taylor3473f882001-02-23 17:55:21 +00008412 * @ctxt: the XPath Parser context
8413 *
8414 * [14] Expr ::= OrExpr
8415 * [21] OrExpr ::= AndExpr
8416 * | OrExpr 'or' AndExpr
8417 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008418 * Parse and compile an expression
Owen Taylor3473f882001-02-23 17:55:21 +00008419 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008420static void
8421xmlXPathCompileExpr(xmlXPathParserContextPtr ctxt) {
8422 xmlXPathCompAndExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008423 CHECK_ERROR;
8424 SKIP_BLANKS;
8425 while ((CUR == 'o') && (NXT(1) == 'r')) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008426 int op1 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008427 SKIP(2);
8428 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008429 xmlXPathCompAndExpr(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008430 CHECK_ERROR;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008431 PUSH_BINARY_EXPR(XPATH_OP_OR, op1, ctxt->comp->last, 0, 0);
8432 op1 = ctxt->comp->nbStep;
Owen Taylor3473f882001-02-23 17:55:21 +00008433 SKIP_BLANKS;
8434 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008435 if (ctxt->comp->steps[ctxt->comp->last].op != XPATH_OP_VALUE) {
8436 /* more ops could be optimized too */
8437 PUSH_UNARY_EXPR(XPATH_OP_SORT, ctxt->comp->last , 0, 0);
8438 }
Owen Taylor3473f882001-02-23 17:55:21 +00008439}
8440
8441/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008442 * xmlXPathCompPredicate:
Owen Taylor3473f882001-02-23 17:55:21 +00008443 * @ctxt: the XPath Parser context
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008444 * @filter: act as a filter
Owen Taylor3473f882001-02-23 17:55:21 +00008445 *
8446 * [8] Predicate ::= '[' PredicateExpr ']'
8447 * [9] PredicateExpr ::= Expr
8448 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008449 * Compile a predicate expression
Owen Taylor3473f882001-02-23 17:55:21 +00008450 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008451static void
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008452xmlXPathCompPredicate(xmlXPathParserContextPtr ctxt, int filter) {
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008453 int op1 = ctxt->comp->last;
8454
8455 SKIP_BLANKS;
8456 if (CUR != '[') {
8457 XP_ERROR(XPATH_INVALID_PREDICATE_ERROR);
8458 }
8459 NEXT;
8460 SKIP_BLANKS;
8461
8462 ctxt->comp->last = -1;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008463 xmlXPathCompileExpr(ctxt);
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008464 CHECK_ERROR;
8465
8466 if (CUR != ']') {
8467 XP_ERROR(XPATH_INVALID_PREDICATE_ERROR);
8468 }
8469
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008470 if (filter)
8471 PUSH_BINARY_EXPR(XPATH_OP_FILTER, op1, ctxt->comp->last, 0, 0);
8472 else
8473 PUSH_BINARY_EXPR(XPATH_OP_PREDICATE, op1, ctxt->comp->last, 0, 0);
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008474
8475 NEXT;
8476 SKIP_BLANKS;
8477}
8478
8479/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008480 * xmlXPathCompNodeTest:
Owen Taylor3473f882001-02-23 17:55:21 +00008481 * @ctxt: the XPath Parser context
8482 * @test: pointer to a xmlXPathTestVal
8483 * @type: pointer to a xmlXPathTypeVal
8484 * @prefix: placeholder for a possible name prefix
8485 *
8486 * [7] NodeTest ::= NameTest
8487 * | NodeType '(' ')'
8488 * | 'processing-instruction' '(' Literal ')'
8489 *
8490 * [37] NameTest ::= '*'
8491 * | NCName ':' '*'
8492 * | QName
8493 * [38] NodeType ::= 'comment'
8494 * | 'text'
8495 * | 'processing-instruction'
8496 * | 'node'
8497 *
William M. Brack08171912003-12-29 02:52:11 +00008498 * Returns the name found and updates @test, @type and @prefix appropriately
Owen Taylor3473f882001-02-23 17:55:21 +00008499 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00008500static xmlChar *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008501xmlXPathCompNodeTest(xmlXPathParserContextPtr ctxt, xmlXPathTestVal *test,
8502 xmlXPathTypeVal *type, const xmlChar **prefix,
8503 xmlChar *name) {
Owen Taylor3473f882001-02-23 17:55:21 +00008504 int blanks;
8505
8506 if ((test == NULL) || (type == NULL) || (prefix == NULL)) {
8507 STRANGE;
8508 return(NULL);
8509 }
William M. Brack78637da2003-07-31 14:47:38 +00008510 *type = (xmlXPathTypeVal) 0;
8511 *test = (xmlXPathTestVal) 0;
Owen Taylor3473f882001-02-23 17:55:21 +00008512 *prefix = NULL;
8513 SKIP_BLANKS;
8514
8515 if ((name == NULL) && (CUR == '*')) {
8516 /*
8517 * All elements
8518 */
8519 NEXT;
8520 *test = NODE_TEST_ALL;
8521 return(NULL);
8522 }
8523
8524 if (name == NULL)
8525 name = xmlXPathParseNCName(ctxt);
8526 if (name == NULL) {
8527 XP_ERROR0(XPATH_EXPR_ERROR);
8528 }
8529
William M. Brack76e95df2003-10-18 16:20:14 +00008530 blanks = IS_BLANK_CH(CUR);
Owen Taylor3473f882001-02-23 17:55:21 +00008531 SKIP_BLANKS;
8532 if (CUR == '(') {
8533 NEXT;
8534 /*
8535 * NodeType or PI search
8536 */
8537 if (xmlStrEqual(name, BAD_CAST "comment"))
8538 *type = NODE_TYPE_COMMENT;
8539 else if (xmlStrEqual(name, BAD_CAST "node"))
8540 *type = NODE_TYPE_NODE;
8541 else if (xmlStrEqual(name, BAD_CAST "processing-instruction"))
8542 *type = NODE_TYPE_PI;
8543 else if (xmlStrEqual(name, BAD_CAST "text"))
8544 *type = NODE_TYPE_TEXT;
8545 else {
8546 if (name != NULL)
8547 xmlFree(name);
8548 XP_ERROR0(XPATH_EXPR_ERROR);
8549 }
8550
8551 *test = NODE_TEST_TYPE;
8552
8553 SKIP_BLANKS;
8554 if (*type == NODE_TYPE_PI) {
8555 /*
8556 * Specific case: search a PI by name.
8557 */
Owen Taylor3473f882001-02-23 17:55:21 +00008558 if (name != NULL)
8559 xmlFree(name);
Daniel Veillard82e49712001-04-26 14:38:03 +00008560 name = NULL;
8561 if (CUR != ')') {
8562 name = xmlXPathParseLiteral(ctxt);
8563 CHECK_ERROR 0;
Daniel Veillarded23b7d2002-05-27 12:16:02 +00008564 *test = NODE_TEST_PI;
Daniel Veillard82e49712001-04-26 14:38:03 +00008565 SKIP_BLANKS;
8566 }
Owen Taylor3473f882001-02-23 17:55:21 +00008567 }
8568 if (CUR != ')') {
8569 if (name != NULL)
8570 xmlFree(name);
8571 XP_ERROR0(XPATH_UNCLOSED_ERROR);
8572 }
8573 NEXT;
8574 return(name);
8575 }
8576 *test = NODE_TEST_NAME;
8577 if ((!blanks) && (CUR == ':')) {
8578 NEXT;
8579
8580 /*
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00008581 * Since currently the parser context don't have a
8582 * namespace list associated:
8583 * The namespace name for this prefix can be computed
8584 * only at evaluation time. The compilation is done
8585 * outside of any context.
Owen Taylor3473f882001-02-23 17:55:21 +00008586 */
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00008587#if 0
Owen Taylor3473f882001-02-23 17:55:21 +00008588 *prefix = xmlXPathNsLookup(ctxt->context, name);
8589 if (name != NULL)
8590 xmlFree(name);
8591 if (*prefix == NULL) {
8592 XP_ERROR0(XPATH_UNDEF_PREFIX_ERROR);
8593 }
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00008594#else
8595 *prefix = name;
8596#endif
Owen Taylor3473f882001-02-23 17:55:21 +00008597
8598 if (CUR == '*') {
8599 /*
8600 * All elements
8601 */
8602 NEXT;
8603 *test = NODE_TEST_ALL;
8604 return(NULL);
8605 }
8606
8607 name = xmlXPathParseNCName(ctxt);
8608 if (name == NULL) {
8609 XP_ERROR0(XPATH_EXPR_ERROR);
8610 }
8611 }
8612 return(name);
8613}
8614
8615/**
8616 * xmlXPathIsAxisName:
8617 * @name: a preparsed name token
8618 *
8619 * [6] AxisName ::= 'ancestor'
8620 * | 'ancestor-or-self'
8621 * | 'attribute'
8622 * | 'child'
8623 * | 'descendant'
8624 * | 'descendant-or-self'
8625 * | 'following'
8626 * | 'following-sibling'
8627 * | 'namespace'
8628 * | 'parent'
8629 * | 'preceding'
8630 * | 'preceding-sibling'
8631 * | 'self'
8632 *
8633 * Returns the axis or 0
8634 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00008635static xmlXPathAxisVal
Owen Taylor3473f882001-02-23 17:55:21 +00008636xmlXPathIsAxisName(const xmlChar *name) {
William M. Brack78637da2003-07-31 14:47:38 +00008637 xmlXPathAxisVal ret = (xmlXPathAxisVal) 0;
Owen Taylor3473f882001-02-23 17:55:21 +00008638 switch (name[0]) {
8639 case 'a':
8640 if (xmlStrEqual(name, BAD_CAST "ancestor"))
8641 ret = AXIS_ANCESTOR;
8642 if (xmlStrEqual(name, BAD_CAST "ancestor-or-self"))
8643 ret = AXIS_ANCESTOR_OR_SELF;
8644 if (xmlStrEqual(name, BAD_CAST "attribute"))
8645 ret = AXIS_ATTRIBUTE;
8646 break;
8647 case 'c':
8648 if (xmlStrEqual(name, BAD_CAST "child"))
8649 ret = AXIS_CHILD;
8650 break;
8651 case 'd':
8652 if (xmlStrEqual(name, BAD_CAST "descendant"))
8653 ret = AXIS_DESCENDANT;
8654 if (xmlStrEqual(name, BAD_CAST "descendant-or-self"))
8655 ret = AXIS_DESCENDANT_OR_SELF;
8656 break;
8657 case 'f':
8658 if (xmlStrEqual(name, BAD_CAST "following"))
8659 ret = AXIS_FOLLOWING;
8660 if (xmlStrEqual(name, BAD_CAST "following-sibling"))
8661 ret = AXIS_FOLLOWING_SIBLING;
8662 break;
8663 case 'n':
8664 if (xmlStrEqual(name, BAD_CAST "namespace"))
8665 ret = AXIS_NAMESPACE;
8666 break;
8667 case 'p':
8668 if (xmlStrEqual(name, BAD_CAST "parent"))
8669 ret = AXIS_PARENT;
8670 if (xmlStrEqual(name, BAD_CAST "preceding"))
8671 ret = AXIS_PRECEDING;
8672 if (xmlStrEqual(name, BAD_CAST "preceding-sibling"))
8673 ret = AXIS_PRECEDING_SIBLING;
8674 break;
8675 case 's':
8676 if (xmlStrEqual(name, BAD_CAST "self"))
8677 ret = AXIS_SELF;
8678 break;
8679 }
8680 return(ret);
8681}
8682
8683/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008684 * xmlXPathCompStep:
Owen Taylor3473f882001-02-23 17:55:21 +00008685 * @ctxt: the XPath Parser context
8686 *
8687 * [4] Step ::= AxisSpecifier NodeTest Predicate*
8688 * | AbbreviatedStep
8689 *
8690 * [12] AbbreviatedStep ::= '.' | '..'
8691 *
8692 * [5] AxisSpecifier ::= AxisName '::'
8693 * | AbbreviatedAxisSpecifier
8694 *
8695 * [13] AbbreviatedAxisSpecifier ::= '@'?
8696 *
8697 * Modified for XPtr range support as:
8698 *
8699 * [4xptr] Step ::= AxisSpecifier NodeTest Predicate*
8700 * | AbbreviatedStep
8701 * | 'range-to' '(' Expr ')' Predicate*
8702 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008703 * Compile one step in a Location Path
Owen Taylor3473f882001-02-23 17:55:21 +00008704 * A location step of . is short for self::node(). This is
8705 * particularly useful in conjunction with //. For example, the
8706 * location path .//para is short for
8707 * self::node()/descendant-or-self::node()/child::para
8708 * and so will select all para descendant elements of the context
8709 * node.
8710 * Similarly, a location step of .. is short for parent::node().
8711 * For example, ../title is short for parent::node()/child::title
8712 * and so will select the title children of the parent of the context
8713 * node.
8714 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008715static void
8716xmlXPathCompStep(xmlXPathParserContextPtr ctxt) {
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008717#ifdef LIBXML_XPTR_ENABLED
8718 int rangeto = 0;
8719 int op2 = -1;
8720#endif
8721
Owen Taylor3473f882001-02-23 17:55:21 +00008722 SKIP_BLANKS;
8723 if ((CUR == '.') && (NXT(1) == '.')) {
8724 SKIP(2);
8725 SKIP_BLANKS;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008726 PUSH_LONG_EXPR(XPATH_OP_COLLECT, AXIS_PARENT,
8727 NODE_TEST_TYPE, NODE_TYPE_NODE, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00008728 } else if (CUR == '.') {
8729 NEXT;
8730 SKIP_BLANKS;
8731 } else {
8732 xmlChar *name = NULL;
8733 const xmlChar *prefix = NULL;
8734 xmlXPathTestVal test;
William M. Brack78637da2003-07-31 14:47:38 +00008735 xmlXPathAxisVal axis = (xmlXPathAxisVal) 0;
Owen Taylor3473f882001-02-23 17:55:21 +00008736 xmlXPathTypeVal type;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008737 int op1;
Owen Taylor3473f882001-02-23 17:55:21 +00008738
8739 /*
8740 * The modification needed for XPointer change to the production
8741 */
8742#ifdef LIBXML_XPTR_ENABLED
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00008743 if (ctxt->xptr) {
Owen Taylor3473f882001-02-23 17:55:21 +00008744 name = xmlXPathParseNCName(ctxt);
8745 if ((name != NULL) && (xmlStrEqual(name, BAD_CAST "range-to"))) {
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008746 op2 = ctxt->comp->last;
Owen Taylor3473f882001-02-23 17:55:21 +00008747 xmlFree(name);
8748 SKIP_BLANKS;
8749 if (CUR != '(') {
8750 XP_ERROR(XPATH_EXPR_ERROR);
8751 }
8752 NEXT;
8753 SKIP_BLANKS;
8754
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008755 xmlXPathCompileExpr(ctxt);
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008756 /* PUSH_BINARY_EXPR(XPATH_OP_RANGETO, op2, ctxt->comp->last, 0, 0); */
Owen Taylor3473f882001-02-23 17:55:21 +00008757 CHECK_ERROR;
8758
8759 SKIP_BLANKS;
8760 if (CUR != ')') {
8761 XP_ERROR(XPATH_EXPR_ERROR);
8762 }
8763 NEXT;
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008764 rangeto = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00008765 goto eval_predicates;
8766 }
8767 }
8768#endif
Daniel Veillard2156a562001-04-28 12:24:34 +00008769 if (CUR == '*') {
8770 axis = AXIS_CHILD;
8771 } else {
8772 if (name == NULL)
8773 name = xmlXPathParseNCName(ctxt);
8774 if (name != NULL) {
8775 axis = xmlXPathIsAxisName(name);
8776 if (axis != 0) {
8777 SKIP_BLANKS;
8778 if ((CUR == ':') && (NXT(1) == ':')) {
8779 SKIP(2);
8780 xmlFree(name);
8781 name = NULL;
8782 } else {
8783 /* an element name can conflict with an axis one :-\ */
8784 axis = AXIS_CHILD;
8785 }
Owen Taylor3473f882001-02-23 17:55:21 +00008786 } else {
Owen Taylor3473f882001-02-23 17:55:21 +00008787 axis = AXIS_CHILD;
8788 }
Daniel Veillard2156a562001-04-28 12:24:34 +00008789 } else if (CUR == '@') {
8790 NEXT;
8791 axis = AXIS_ATTRIBUTE;
Owen Taylor3473f882001-02-23 17:55:21 +00008792 } else {
Daniel Veillard2156a562001-04-28 12:24:34 +00008793 axis = AXIS_CHILD;
Owen Taylor3473f882001-02-23 17:55:21 +00008794 }
Owen Taylor3473f882001-02-23 17:55:21 +00008795 }
8796
8797 CHECK_ERROR;
8798
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008799 name = xmlXPathCompNodeTest(ctxt, &test, &type, &prefix, name);
Owen Taylor3473f882001-02-23 17:55:21 +00008800 if (test == 0)
8801 return;
8802
8803#ifdef DEBUG_STEP
8804 xmlGenericError(xmlGenericErrorContext,
8805 "Basis : computing new set\n");
8806#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008807
Owen Taylor3473f882001-02-23 17:55:21 +00008808#ifdef DEBUG_STEP
8809 xmlGenericError(xmlGenericErrorContext, "Basis : ");
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008810 if (ctxt->value == NULL)
8811 xmlGenericError(xmlGenericErrorContext, "no value\n");
8812 else if (ctxt->value->nodesetval == NULL)
8813 xmlGenericError(xmlGenericErrorContext, "Empty\n");
8814 else
8815 xmlGenericErrorContextNodeSet(stdout, ctxt->value->nodesetval);
Owen Taylor3473f882001-02-23 17:55:21 +00008816#endif
Owen Taylor3473f882001-02-23 17:55:21 +00008817
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00008818#ifdef LIBXML_XPTR_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00008819eval_predicates:
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00008820#endif
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008821 op1 = ctxt->comp->last;
8822 ctxt->comp->last = -1;
8823
Owen Taylor3473f882001-02-23 17:55:21 +00008824 SKIP_BLANKS;
8825 while (CUR == '[') {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008826 xmlXPathCompPredicate(ctxt, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00008827 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008828
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008829#ifdef LIBXML_XPTR_ENABLED
8830 if (rangeto) {
8831 PUSH_BINARY_EXPR(XPATH_OP_RANGETO, op2, op1, 0, 0);
8832 } else
8833#endif
8834 PUSH_FULL_EXPR(XPATH_OP_COLLECT, op1, ctxt->comp->last, axis,
8835 test, type, (void *)prefix, (void *)name);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008836
Owen Taylor3473f882001-02-23 17:55:21 +00008837 }
8838#ifdef DEBUG_STEP
8839 xmlGenericError(xmlGenericErrorContext, "Step : ");
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00008840 if (ctxt->value == NULL)
8841 xmlGenericError(xmlGenericErrorContext, "no value\n");
8842 else if (ctxt->value->nodesetval == NULL)
8843 xmlGenericError(xmlGenericErrorContext, "Empty\n");
8844 else
8845 xmlGenericErrorContextNodeSet(xmlGenericErrorContext,
8846 ctxt->value->nodesetval);
Owen Taylor3473f882001-02-23 17:55:21 +00008847#endif
8848}
8849
8850/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008851 * xmlXPathCompRelativeLocationPath:
Owen Taylor3473f882001-02-23 17:55:21 +00008852 * @ctxt: the XPath Parser context
8853 *
8854 * [3] RelativeLocationPath ::= Step
8855 * | RelativeLocationPath '/' Step
8856 * | AbbreviatedRelativeLocationPath
8857 * [11] AbbreviatedRelativeLocationPath ::= RelativeLocationPath '//' Step
8858 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008859 * Compile a relative location path.
Owen Taylor3473f882001-02-23 17:55:21 +00008860 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008861static void
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008862xmlXPathCompRelativeLocationPath
Owen Taylor3473f882001-02-23 17:55:21 +00008863(xmlXPathParserContextPtr ctxt) {
8864 SKIP_BLANKS;
8865 if ((CUR == '/') && (NXT(1) == '/')) {
8866 SKIP(2);
8867 SKIP_BLANKS;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008868 PUSH_LONG_EXPR(XPATH_OP_COLLECT, AXIS_DESCENDANT_OR_SELF,
8869 NODE_TEST_TYPE, NODE_TYPE_NODE, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00008870 } else if (CUR == '/') {
8871 NEXT;
8872 SKIP_BLANKS;
8873 }
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008874 xmlXPathCompStep(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008875 SKIP_BLANKS;
8876 while (CUR == '/') {
8877 if ((CUR == '/') && (NXT(1) == '/')) {
8878 SKIP(2);
8879 SKIP_BLANKS;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008880 PUSH_LONG_EXPR(XPATH_OP_COLLECT, AXIS_DESCENDANT_OR_SELF,
Owen Taylor3473f882001-02-23 17:55:21 +00008881 NODE_TEST_TYPE, NODE_TYPE_NODE, NULL, NULL);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008882 xmlXPathCompStep(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008883 } else if (CUR == '/') {
8884 NEXT;
8885 SKIP_BLANKS;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008886 xmlXPathCompStep(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008887 }
8888 SKIP_BLANKS;
8889 }
8890}
8891
8892/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008893 * xmlXPathCompLocationPath:
Owen Taylor3473f882001-02-23 17:55:21 +00008894 * @ctxt: the XPath Parser context
8895 *
8896 * [1] LocationPath ::= RelativeLocationPath
8897 * | AbsoluteLocationPath
8898 * [2] AbsoluteLocationPath ::= '/' RelativeLocationPath?
8899 * | AbbreviatedAbsoluteLocationPath
8900 * [10] AbbreviatedAbsoluteLocationPath ::=
8901 * '//' RelativeLocationPath
8902 *
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008903 * Compile a location path
8904 *
Owen Taylor3473f882001-02-23 17:55:21 +00008905 * // is short for /descendant-or-self::node()/. For example,
8906 * //para is short for /descendant-or-self::node()/child::para and
8907 * so will select any para element in the document (even a para element
8908 * that is a document element will be selected by //para since the
8909 * document element node is a child of the root node); div//para is
8910 * short for div/descendant-or-self::node()/child::para and so will
8911 * select all para descendants of div children.
8912 */
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008913static void
8914xmlXPathCompLocationPath(xmlXPathParserContextPtr ctxt) {
Owen Taylor3473f882001-02-23 17:55:21 +00008915 SKIP_BLANKS;
8916 if (CUR != '/') {
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008917 xmlXPathCompRelativeLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008918 } else {
8919 while (CUR == '/') {
8920 if ((CUR == '/') && (NXT(1) == '/')) {
8921 SKIP(2);
8922 SKIP_BLANKS;
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008923 PUSH_LONG_EXPR(XPATH_OP_COLLECT, AXIS_DESCENDANT_OR_SELF,
8924 NODE_TEST_TYPE, NODE_TYPE_NODE, NULL, NULL);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008925 xmlXPathCompRelativeLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008926 } else if (CUR == '/') {
8927 NEXT;
Daniel Veillard608ad072001-06-14 08:32:28 +00008928 SKIP_BLANKS;
8929 if ((CUR != 0 ) &&
William M. Brack76e95df2003-10-18 16:20:14 +00008930 ((IS_LETTER_CH(CUR)) || (CUR == '_') || (CUR == '.') ||
Daniel Veillard608ad072001-06-14 08:32:28 +00008931 (CUR == '@') || (CUR == '*')))
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00008932 xmlXPathCompRelativeLocationPath(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00008933 }
8934 }
8935 }
8936}
8937
Daniel Veillard9e7160d2001-03-18 23:17:47 +00008938/************************************************************************
8939 * *
8940 * XPath precompiled expression evaluation *
8941 * *
8942 ************************************************************************/
8943
Daniel Veillardf06307e2001-07-03 10:35:50 +00008944static int
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008945xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, xmlXPathStepOpPtr op);
8946
8947/**
8948 * xmlXPathNodeCollectAndTest:
8949 * @ctxt: the XPath Parser context
8950 * @op: the XPath precompiled step operation
Daniel Veillardf06307e2001-07-03 10:35:50 +00008951 * @first: pointer to the first element in document order
8952 * @last: pointer to the last element in document order
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008953 *
8954 * This is the function implementing a step: based on the current list
8955 * of nodes, it builds up a new list, looking at all nodes under that
William M. Brack08171912003-12-29 02:52:11 +00008956 * axis and selecting them. It also does the predicate filtering
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008957 *
8958 * Pushes the new NodeSet resulting from the search.
Daniel Veillardf06307e2001-07-03 10:35:50 +00008959 *
William M. Brack08171912003-12-29 02:52:11 +00008960 * Returns the number of nodes traversed
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008961 */
Daniel Veillardf06307e2001-07-03 10:35:50 +00008962static int
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008963xmlXPathNodeCollectAndTest(xmlXPathParserContextPtr ctxt,
Daniel Veillardf06307e2001-07-03 10:35:50 +00008964 xmlXPathStepOpPtr op,
8965 xmlNodePtr * first, xmlNodePtr * last)
8966{
William M. Brack78637da2003-07-31 14:47:38 +00008967 xmlXPathAxisVal axis = (xmlXPathAxisVal) op->value;
8968 xmlXPathTestVal test = (xmlXPathTestVal) op->value2;
8969 xmlXPathTypeVal type = (xmlXPathTypeVal) op->value3;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008970 const xmlChar *prefix = op->value4;
8971 const xmlChar *name = op->value5;
Daniel Veillarde043ee12001-04-16 14:08:07 +00008972 const xmlChar *URI = NULL;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008973
8974#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00008975 int n = 0;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008976#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00008977 int i, t = 0;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008978 xmlNodeSetPtr ret, list;
8979 xmlXPathTraversalFunction next = NULL;
Daniel Veillardf06307e2001-07-03 10:35:50 +00008980 void (*addNode) (xmlNodeSetPtr, xmlNodePtr);
Daniel Veillard75be0132002-03-13 10:03:35 +00008981 xmlNodeSetPtr (*mergeNodeSet) (xmlNodeSetPtr, xmlNodeSetPtr);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008982 xmlNodePtr cur = NULL;
8983 xmlXPathObjectPtr obj;
8984 xmlNodeSetPtr nodelist;
8985 xmlNodePtr tmp;
8986
Daniel Veillardf06307e2001-07-03 10:35:50 +00008987 CHECK_TYPE0(XPATH_NODESET);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008988 obj = valuePop(ctxt);
8989 addNode = xmlXPathNodeSetAdd;
Daniel Veillard75be0132002-03-13 10:03:35 +00008990 mergeNodeSet = xmlXPathNodeSetMerge;
Daniel Veillarde043ee12001-04-16 14:08:07 +00008991 if (prefix != NULL) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00008992 URI = xmlXPathNsLookup(ctxt->context, prefix);
8993 if (URI == NULL)
8994 XP_ERROR0(XPATH_UNDEF_PREFIX_ERROR);
Daniel Veillarde043ee12001-04-16 14:08:07 +00008995 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008996#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00008997 xmlGenericError(xmlGenericErrorContext, "new step : ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00008998#endif
8999 switch (axis) {
9000 case AXIS_ANCESTOR:
9001#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009002 xmlGenericError(xmlGenericErrorContext, "axis 'ancestors' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009003#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009004 first = NULL;
9005 next = xmlXPathNextAncestor;
9006 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009007 case AXIS_ANCESTOR_OR_SELF:
9008#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009009 xmlGenericError(xmlGenericErrorContext,
9010 "axis 'ancestors-or-self' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009011#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009012 first = NULL;
9013 next = xmlXPathNextAncestorOrSelf;
9014 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009015 case AXIS_ATTRIBUTE:
9016#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009017 xmlGenericError(xmlGenericErrorContext, "axis 'attributes' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009018#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009019 first = NULL;
9020 last = NULL;
9021 next = xmlXPathNextAttribute;
Daniel Veillard75be0132002-03-13 10:03:35 +00009022 mergeNodeSet = xmlXPathNodeSetMergeUnique;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009023 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009024 case AXIS_CHILD:
9025#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009026 xmlGenericError(xmlGenericErrorContext, "axis 'child' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009027#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009028 last = NULL;
9029 next = xmlXPathNextChild;
Daniel Veillard75be0132002-03-13 10:03:35 +00009030 mergeNodeSet = xmlXPathNodeSetMergeUnique;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009031 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009032 case AXIS_DESCENDANT:
9033#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009034 xmlGenericError(xmlGenericErrorContext, "axis 'descendant' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009035#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009036 last = NULL;
9037 next = xmlXPathNextDescendant;
9038 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009039 case AXIS_DESCENDANT_OR_SELF:
9040#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009041 xmlGenericError(xmlGenericErrorContext,
9042 "axis 'descendant-or-self' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009043#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009044 last = NULL;
9045 next = xmlXPathNextDescendantOrSelf;
9046 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009047 case AXIS_FOLLOWING:
9048#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009049 xmlGenericError(xmlGenericErrorContext, "axis 'following' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009050#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009051 last = NULL;
9052 next = xmlXPathNextFollowing;
9053 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009054 case AXIS_FOLLOWING_SIBLING:
9055#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009056 xmlGenericError(xmlGenericErrorContext,
9057 "axis 'following-siblings' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009058#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009059 last = NULL;
9060 next = xmlXPathNextFollowingSibling;
9061 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009062 case AXIS_NAMESPACE:
9063#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009064 xmlGenericError(xmlGenericErrorContext, "axis 'namespace' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009065#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009066 first = NULL;
9067 last = NULL;
9068 next = (xmlXPathTraversalFunction) xmlXPathNextNamespace;
Daniel Veillard75be0132002-03-13 10:03:35 +00009069 mergeNodeSet = xmlXPathNodeSetMergeUnique;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009070 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009071 case AXIS_PARENT:
9072#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009073 xmlGenericError(xmlGenericErrorContext, "axis 'parent' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009074#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009075 first = NULL;
9076 next = xmlXPathNextParent;
9077 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009078 case AXIS_PRECEDING:
9079#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009080 xmlGenericError(xmlGenericErrorContext, "axis 'preceding' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009081#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009082 first = NULL;
9083 next = xmlXPathNextPrecedingInternal;
9084 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009085 case AXIS_PRECEDING_SIBLING:
9086#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009087 xmlGenericError(xmlGenericErrorContext,
9088 "axis 'preceding-sibling' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009089#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009090 first = NULL;
9091 next = xmlXPathNextPrecedingSibling;
9092 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009093 case AXIS_SELF:
9094#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009095 xmlGenericError(xmlGenericErrorContext, "axis 'self' ");
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009096#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009097 first = NULL;
9098 last = NULL;
9099 next = xmlXPathNextSelf;
Daniel Veillard75be0132002-03-13 10:03:35 +00009100 mergeNodeSet = xmlXPathNodeSetMergeUnique;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009101 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009102 }
9103 if (next == NULL)
Daniel Veillardf06307e2001-07-03 10:35:50 +00009104 return(0);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009105
9106 nodelist = obj->nodesetval;
9107 if (nodelist == NULL) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00009108 xmlXPathFreeObject(obj);
9109 valuePush(ctxt, xmlXPathWrapNodeSet(NULL));
9110 return(0);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009111 }
9112 addNode = xmlXPathNodeSetAddUnique;
9113 ret = NULL;
9114#ifdef DEBUG_STEP
9115 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardf06307e2001-07-03 10:35:50 +00009116 " context contains %d nodes\n", nodelist->nodeNr);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009117 switch (test) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00009118 case NODE_TEST_NONE:
9119 xmlGenericError(xmlGenericErrorContext,
9120 " searching for none !!!\n");
9121 break;
9122 case NODE_TEST_TYPE:
9123 xmlGenericError(xmlGenericErrorContext,
9124 " searching for type %d\n", type);
9125 break;
9126 case NODE_TEST_PI:
9127 xmlGenericError(xmlGenericErrorContext,
9128 " searching for PI !!!\n");
9129 break;
9130 case NODE_TEST_ALL:
9131 xmlGenericError(xmlGenericErrorContext,
9132 " searching for *\n");
9133 break;
9134 case NODE_TEST_NS:
9135 xmlGenericError(xmlGenericErrorContext,
9136 " searching for namespace %s\n",
9137 prefix);
9138 break;
9139 case NODE_TEST_NAME:
9140 xmlGenericError(xmlGenericErrorContext,
9141 " searching for name %s\n", name);
9142 if (prefix != NULL)
9143 xmlGenericError(xmlGenericErrorContext,
9144 " with namespace %s\n", prefix);
9145 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009146 }
9147 xmlGenericError(xmlGenericErrorContext, "Testing : ");
9148#endif
9149 /*
9150 * 2.3 Node Tests
9151 * - For the attribute axis, the principal node type is attribute.
9152 * - For the namespace axis, the principal node type is namespace.
9153 * - For other axes, the principal node type is element.
9154 *
9155 * A node test * is true for any node of the
Daniel Veillardcbaf3992001-12-31 16:16:02 +00009156 * principal node type. For example, child::* will
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009157 * select all element children of the context node
9158 */
9159 tmp = ctxt->context->node;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009160 for (i = 0; i < nodelist->nodeNr; i++) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009161 ctxt->context->node = nodelist->nodeTab[i];
9162
Daniel Veillardf06307e2001-07-03 10:35:50 +00009163 cur = NULL;
9164 list = xmlXPathNodeSetCreate(NULL);
9165 do {
9166 cur = next(ctxt, cur);
9167 if (cur == NULL)
9168 break;
9169 if ((first != NULL) && (*first == cur))
9170 break;
9171 if (((t % 256) == 0) &&
9172 (first != NULL) && (*first != NULL) &&
9173 (xmlXPathCmpNodes(*first, cur) >= 0))
9174 break;
9175 if ((last != NULL) && (*last == cur))
9176 break;
9177 if (((t % 256) == 0) &&
9178 (last != NULL) && (*last != NULL) &&
9179 (xmlXPathCmpNodes(cur, *last) >= 0))
9180 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009181 t++;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009182#ifdef DEBUG_STEP
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009183 xmlGenericError(xmlGenericErrorContext, " %s", cur->name);
9184#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009185 switch (test) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009186 case NODE_TEST_NONE:
Daniel Veillardf06307e2001-07-03 10:35:50 +00009187 ctxt->context->node = tmp;
9188 STRANGE return(t);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009189 case NODE_TEST_TYPE:
Daniel Veillardf06307e2001-07-03 10:35:50 +00009190 if ((cur->type == type) ||
9191 ((type == NODE_TYPE_NODE) &&
9192 ((cur->type == XML_DOCUMENT_NODE) ||
9193 (cur->type == XML_HTML_DOCUMENT_NODE) ||
9194 (cur->type == XML_ELEMENT_NODE) ||
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00009195 (cur->type == XML_NAMESPACE_DECL) ||
9196 (cur->type == XML_ATTRIBUTE_NODE) ||
Daniel Veillardf06307e2001-07-03 10:35:50 +00009197 (cur->type == XML_PI_NODE) ||
9198 (cur->type == XML_COMMENT_NODE) ||
9199 (cur->type == XML_CDATA_SECTION_NODE) ||
Daniel Veillard7583a592001-07-08 13:15:55 +00009200 (cur->type == XML_TEXT_NODE))) ||
9201 ((type == NODE_TYPE_TEXT) &&
9202 (cur->type == XML_CDATA_SECTION_NODE))) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009203#ifdef DEBUG_STEP
9204 n++;
9205#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009206 addNode(list, cur);
9207 }
9208 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009209 case NODE_TEST_PI:
Daniel Veillardf06307e2001-07-03 10:35:50 +00009210 if (cur->type == XML_PI_NODE) {
9211 if ((name != NULL) &&
9212 (!xmlStrEqual(name, cur->name)))
9213 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009214#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009215 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009216#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009217 addNode(list, cur);
9218 }
9219 break;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009220 case NODE_TEST_ALL:
Daniel Veillardf06307e2001-07-03 10:35:50 +00009221 if (axis == AXIS_ATTRIBUTE) {
9222 if (cur->type == XML_ATTRIBUTE_NODE) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009223#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009224 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009225#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009226 addNode(list, cur);
9227 }
9228 } else if (axis == AXIS_NAMESPACE) {
9229 if (cur->type == XML_NAMESPACE_DECL) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009230#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009231 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009232#endif
Daniel Veillard044fc6b2002-03-04 17:09:44 +00009233 xmlXPathNodeSetAddNs(list, ctxt->context->node,
9234 (xmlNsPtr) cur);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009235 }
9236 } else {
9237 if (cur->type == XML_ELEMENT_NODE) {
9238 if (prefix == NULL) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009239#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009240 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009241#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009242 addNode(list, cur);
9243 } else if ((cur->ns != NULL) &&
9244 (xmlStrEqual(URI, cur->ns->href))) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009245#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009246 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009247#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009248 addNode(list, cur);
9249 }
9250 }
9251 }
9252 break;
9253 case NODE_TEST_NS:{
9254 TODO;
9255 break;
9256 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009257 case NODE_TEST_NAME:
Daniel Veillardf06307e2001-07-03 10:35:50 +00009258 switch (cur->type) {
9259 case XML_ELEMENT_NODE:
9260 if (xmlStrEqual(name, cur->name)) {
9261 if (prefix == NULL) {
9262 if (cur->ns == NULL) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009263#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009264 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009265#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009266 addNode(list, cur);
9267 }
9268 } else {
9269 if ((cur->ns != NULL) &&
9270 (xmlStrEqual(URI,
9271 cur->ns->href))) {
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009272#ifdef DEBUG_STEP
Daniel Veillardf06307e2001-07-03 10:35:50 +00009273 n++;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009274#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009275 addNode(list, cur);
9276 }
9277 }
9278 }
9279 break;
9280 case XML_ATTRIBUTE_NODE:{
9281 xmlAttrPtr attr = (xmlAttrPtr) cur;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009282
Daniel Veillardf06307e2001-07-03 10:35:50 +00009283 if (xmlStrEqual(name, attr->name)) {
9284 if (prefix == NULL) {
9285 if ((attr->ns == NULL) ||
9286 (attr->ns->prefix == NULL)) {
9287#ifdef DEBUG_STEP
9288 n++;
9289#endif
9290 addNode(list,
9291 (xmlNodePtr) attr);
9292 }
9293 } else {
9294 if ((attr->ns != NULL) &&
9295 (xmlStrEqual(URI,
9296 attr->ns->
9297 href))) {
9298#ifdef DEBUG_STEP
9299 n++;
9300#endif
9301 addNode(list,
9302 (xmlNodePtr) attr);
9303 }
9304 }
9305 }
9306 break;
9307 }
9308 case XML_NAMESPACE_DECL:
9309 if (cur->type == XML_NAMESPACE_DECL) {
9310 xmlNsPtr ns = (xmlNsPtr) cur;
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009311
Daniel Veillardf06307e2001-07-03 10:35:50 +00009312 if ((ns->prefix != NULL) && (name != NULL)
9313 && (xmlStrEqual(ns->prefix, name))) {
9314#ifdef DEBUG_STEP
9315 n++;
9316#endif
Daniel Veillard044fc6b2002-03-04 17:09:44 +00009317 xmlXPathNodeSetAddNs(list,
9318 ctxt->context->node, (xmlNsPtr) cur);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009319 }
9320 }
9321 break;
9322 default:
9323 break;
9324 }
9325 break;
9326 break;
9327 }
9328 } while (cur != NULL);
9329
9330 /*
9331 * If there is some predicate filtering do it now
9332 */
Daniel Veillard6fbcf422002-03-21 12:32:59 +00009333 if ((op->ch2 != -1) && (list != NULL) && (list->nodeNr > 0)) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00009334 xmlXPathObjectPtr obj2;
9335
9336 valuePush(ctxt, xmlXPathWrapNodeSet(list));
9337 xmlXPathCompOpEval(ctxt, &ctxt->comp->steps[op->ch2]);
9338 CHECK_TYPE0(XPATH_NODESET);
9339 obj2 = valuePop(ctxt);
9340 list = obj2->nodesetval;
9341 obj2->nodesetval = NULL;
9342 xmlXPathFreeObject(obj2);
9343 }
9344 if (ret == NULL) {
9345 ret = list;
9346 } else {
Daniel Veillard75be0132002-03-13 10:03:35 +00009347 ret = mergeNodeSet(ret, list);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009348 xmlXPathFreeNodeSet(list);
9349 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009350 }
9351 ctxt->context->node = tmp;
9352#ifdef DEBUG_STEP
9353 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardf06307e2001-07-03 10:35:50 +00009354 "\nExamined %d nodes, found %d nodes at that step\n",
9355 t, n);
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009356#endif
Daniel Veillardd8df6c02001-04-05 16:54:14 +00009357 valuePush(ctxt, xmlXPathWrapNodeSet(ret));
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00009358 if ((obj->boolval) && (obj->user != NULL)) {
9359 ctxt->value->boolval = 1;
9360 ctxt->value->user = obj->user;
9361 obj->user = NULL;
9362 obj->boolval = 0;
9363 }
9364 xmlXPathFreeObject(obj);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009365 return(t);
9366}
9367
9368/**
9369 * xmlXPathNodeCollectAndTestNth:
9370 * @ctxt: the XPath Parser context
9371 * @op: the XPath precompiled step operation
9372 * @indx: the index to collect
9373 * @first: pointer to the first element in document order
9374 * @last: pointer to the last element in document order
9375 *
9376 * This is the function implementing a step: based on the current list
9377 * of nodes, it builds up a new list, looking at all nodes under that
William M. Brack08171912003-12-29 02:52:11 +00009378 * axis and selecting them. It also does the predicate filtering
Daniel Veillardf06307e2001-07-03 10:35:50 +00009379 *
9380 * Pushes the new NodeSet resulting from the search.
9381 * Returns the number of node traversed
9382 */
9383static int
9384xmlXPathNodeCollectAndTestNth(xmlXPathParserContextPtr ctxt,
9385 xmlXPathStepOpPtr op, int indx,
9386 xmlNodePtr * first, xmlNodePtr * last)
9387{
William M. Brack78637da2003-07-31 14:47:38 +00009388 xmlXPathAxisVal axis = (xmlXPathAxisVal) op->value;
9389 xmlXPathTestVal test = (xmlXPathTestVal) op->value2;
9390 xmlXPathTypeVal type = (xmlXPathTypeVal) op->value3;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009391 const xmlChar *prefix = op->value4;
9392 const xmlChar *name = op->value5;
9393 const xmlChar *URI = NULL;
9394 int n = 0, t = 0;
9395
9396 int i;
9397 xmlNodeSetPtr list;
9398 xmlXPathTraversalFunction next = NULL;
9399 void (*addNode) (xmlNodeSetPtr, xmlNodePtr);
9400 xmlNodePtr cur = NULL;
9401 xmlXPathObjectPtr obj;
9402 xmlNodeSetPtr nodelist;
9403 xmlNodePtr tmp;
9404
9405 CHECK_TYPE0(XPATH_NODESET);
9406 obj = valuePop(ctxt);
9407 addNode = xmlXPathNodeSetAdd;
9408 if (prefix != NULL) {
9409 URI = xmlXPathNsLookup(ctxt->context, prefix);
9410 if (URI == NULL)
9411 XP_ERROR0(XPATH_UNDEF_PREFIX_ERROR);
9412 }
9413#ifdef DEBUG_STEP_NTH
9414 xmlGenericError(xmlGenericErrorContext, "new step : ");
9415 if (first != NULL) {
9416 if (*first != NULL)
9417 xmlGenericError(xmlGenericErrorContext, "first = %s ",
9418 (*first)->name);
9419 else
9420 xmlGenericError(xmlGenericErrorContext, "first = NULL ");
9421 }
9422 if (last != NULL) {
9423 if (*last != NULL)
9424 xmlGenericError(xmlGenericErrorContext, "last = %s ",
9425 (*last)->name);
9426 else
9427 xmlGenericError(xmlGenericErrorContext, "last = NULL ");
9428 }
9429#endif
9430 switch (axis) {
9431 case AXIS_ANCESTOR:
9432#ifdef DEBUG_STEP_NTH
9433 xmlGenericError(xmlGenericErrorContext, "axis 'ancestors' ");
9434#endif
9435 first = NULL;
9436 next = xmlXPathNextAncestor;
9437 break;
9438 case AXIS_ANCESTOR_OR_SELF:
9439#ifdef DEBUG_STEP_NTH
9440 xmlGenericError(xmlGenericErrorContext,
9441 "axis 'ancestors-or-self' ");
9442#endif
9443 first = NULL;
9444 next = xmlXPathNextAncestorOrSelf;
9445 break;
9446 case AXIS_ATTRIBUTE:
9447#ifdef DEBUG_STEP_NTH
9448 xmlGenericError(xmlGenericErrorContext, "axis 'attributes' ");
9449#endif
9450 first = NULL;
9451 last = NULL;
9452 next = xmlXPathNextAttribute;
9453 break;
9454 case AXIS_CHILD:
9455#ifdef DEBUG_STEP_NTH
9456 xmlGenericError(xmlGenericErrorContext, "axis 'child' ");
9457#endif
9458 last = NULL;
9459 next = xmlXPathNextChild;
9460 break;
9461 case AXIS_DESCENDANT:
9462#ifdef DEBUG_STEP_NTH
9463 xmlGenericError(xmlGenericErrorContext, "axis 'descendant' ");
9464#endif
9465 last = NULL;
9466 next = xmlXPathNextDescendant;
9467 break;
9468 case AXIS_DESCENDANT_OR_SELF:
9469#ifdef DEBUG_STEP_NTH
9470 xmlGenericError(xmlGenericErrorContext,
9471 "axis 'descendant-or-self' ");
9472#endif
9473 last = NULL;
9474 next = xmlXPathNextDescendantOrSelf;
9475 break;
9476 case AXIS_FOLLOWING:
9477#ifdef DEBUG_STEP_NTH
9478 xmlGenericError(xmlGenericErrorContext, "axis 'following' ");
9479#endif
9480 last = NULL;
9481 next = xmlXPathNextFollowing;
9482 break;
9483 case AXIS_FOLLOWING_SIBLING:
9484#ifdef DEBUG_STEP_NTH
9485 xmlGenericError(xmlGenericErrorContext,
9486 "axis 'following-siblings' ");
9487#endif
9488 last = NULL;
9489 next = xmlXPathNextFollowingSibling;
9490 break;
9491 case AXIS_NAMESPACE:
9492#ifdef DEBUG_STEP_NTH
9493 xmlGenericError(xmlGenericErrorContext, "axis 'namespace' ");
9494#endif
9495 last = NULL;
9496 first = NULL;
9497 next = (xmlXPathTraversalFunction) xmlXPathNextNamespace;
9498 break;
9499 case AXIS_PARENT:
9500#ifdef DEBUG_STEP_NTH
9501 xmlGenericError(xmlGenericErrorContext, "axis 'parent' ");
9502#endif
9503 first = NULL;
9504 next = xmlXPathNextParent;
9505 break;
9506 case AXIS_PRECEDING:
9507#ifdef DEBUG_STEP_NTH
9508 xmlGenericError(xmlGenericErrorContext, "axis 'preceding' ");
9509#endif
9510 first = NULL;
9511 next = xmlXPathNextPrecedingInternal;
9512 break;
9513 case AXIS_PRECEDING_SIBLING:
9514#ifdef DEBUG_STEP_NTH
9515 xmlGenericError(xmlGenericErrorContext,
9516 "axis 'preceding-sibling' ");
9517#endif
9518 first = NULL;
9519 next = xmlXPathNextPrecedingSibling;
9520 break;
9521 case AXIS_SELF:
9522#ifdef DEBUG_STEP_NTH
9523 xmlGenericError(xmlGenericErrorContext, "axis 'self' ");
9524#endif
9525 first = NULL;
9526 last = NULL;
9527 next = xmlXPathNextSelf;
9528 break;
9529 }
9530 if (next == NULL)
9531 return(0);
9532
9533 nodelist = obj->nodesetval;
9534 if (nodelist == NULL) {
9535 xmlXPathFreeObject(obj);
9536 valuePush(ctxt, xmlXPathWrapNodeSet(NULL));
9537 return(0);
9538 }
9539 addNode = xmlXPathNodeSetAddUnique;
9540#ifdef DEBUG_STEP_NTH
9541 xmlGenericError(xmlGenericErrorContext,
9542 " context contains %d nodes\n", nodelist->nodeNr);
9543 switch (test) {
9544 case NODE_TEST_NONE:
9545 xmlGenericError(xmlGenericErrorContext,
9546 " searching for none !!!\n");
9547 break;
9548 case NODE_TEST_TYPE:
9549 xmlGenericError(xmlGenericErrorContext,
9550 " searching for type %d\n", type);
9551 break;
9552 case NODE_TEST_PI:
9553 xmlGenericError(xmlGenericErrorContext,
9554 " searching for PI !!!\n");
9555 break;
9556 case NODE_TEST_ALL:
9557 xmlGenericError(xmlGenericErrorContext,
9558 " searching for *\n");
9559 break;
9560 case NODE_TEST_NS:
9561 xmlGenericError(xmlGenericErrorContext,
9562 " searching for namespace %s\n",
9563 prefix);
9564 break;
9565 case NODE_TEST_NAME:
9566 xmlGenericError(xmlGenericErrorContext,
9567 " searching for name %s\n", name);
9568 if (prefix != NULL)
9569 xmlGenericError(xmlGenericErrorContext,
9570 " with namespace %s\n", prefix);
9571 break;
9572 }
9573 xmlGenericError(xmlGenericErrorContext, "Testing : ");
9574#endif
9575 /*
9576 * 2.3 Node Tests
9577 * - For the attribute axis, the principal node type is attribute.
9578 * - For the namespace axis, the principal node type is namespace.
9579 * - For other axes, the principal node type is element.
9580 *
9581 * A node test * is true for any node of the
Daniel Veillardcbaf3992001-12-31 16:16:02 +00009582 * principal node type. For example, child::* will
Daniel Veillardf06307e2001-07-03 10:35:50 +00009583 * select all element children of the context node
9584 */
9585 tmp = ctxt->context->node;
9586 list = xmlXPathNodeSetCreate(NULL);
9587 for (i = 0; i < nodelist->nodeNr; i++) {
9588 ctxt->context->node = nodelist->nodeTab[i];
9589
9590 cur = NULL;
9591 n = 0;
9592 do {
9593 cur = next(ctxt, cur);
9594 if (cur == NULL)
9595 break;
9596 if ((first != NULL) && (*first == cur))
9597 break;
9598 if (((t % 256) == 0) &&
9599 (first != NULL) && (*first != NULL) &&
9600 (xmlXPathCmpNodes(*first, cur) >= 0))
9601 break;
9602 if ((last != NULL) && (*last == cur))
9603 break;
9604 if (((t % 256) == 0) &&
9605 (last != NULL) && (*last != NULL) &&
9606 (xmlXPathCmpNodes(cur, *last) >= 0))
9607 break;
9608 t++;
9609 switch (test) {
9610 case NODE_TEST_NONE:
9611 ctxt->context->node = tmp;
9612 STRANGE return(0);
9613 case NODE_TEST_TYPE:
9614 if ((cur->type == type) ||
9615 ((type == NODE_TYPE_NODE) &&
9616 ((cur->type == XML_DOCUMENT_NODE) ||
9617 (cur->type == XML_HTML_DOCUMENT_NODE) ||
9618 (cur->type == XML_ELEMENT_NODE) ||
9619 (cur->type == XML_PI_NODE) ||
9620 (cur->type == XML_COMMENT_NODE) ||
9621 (cur->type == XML_CDATA_SECTION_NODE) ||
Daniel Veillard8606bbb2002-11-12 12:36:52 +00009622 (cur->type == XML_TEXT_NODE))) ||
9623 ((type == NODE_TYPE_TEXT) &&
9624 (cur->type == XML_CDATA_SECTION_NODE))) {
Daniel Veillardf06307e2001-07-03 10:35:50 +00009625 n++;
9626 if (n == indx)
9627 addNode(list, cur);
9628 }
9629 break;
9630 case NODE_TEST_PI:
9631 if (cur->type == XML_PI_NODE) {
9632 if ((name != NULL) &&
9633 (!xmlStrEqual(name, cur->name)))
9634 break;
9635 n++;
9636 if (n == indx)
9637 addNode(list, cur);
9638 }
9639 break;
9640 case NODE_TEST_ALL:
9641 if (axis == AXIS_ATTRIBUTE) {
9642 if (cur->type == XML_ATTRIBUTE_NODE) {
9643 n++;
9644 if (n == indx)
9645 addNode(list, cur);
9646 }
9647 } else if (axis == AXIS_NAMESPACE) {
9648 if (cur->type == XML_NAMESPACE_DECL) {
9649 n++;
9650 if (n == indx)
Daniel Veillard044fc6b2002-03-04 17:09:44 +00009651 xmlXPathNodeSetAddNs(list, ctxt->context->node,
9652 (xmlNsPtr) cur);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009653 }
9654 } else {
9655 if (cur->type == XML_ELEMENT_NODE) {
9656 if (prefix == NULL) {
9657 n++;
9658 if (n == indx)
9659 addNode(list, cur);
9660 } else if ((cur->ns != NULL) &&
9661 (xmlStrEqual(URI, cur->ns->href))) {
9662 n++;
9663 if (n == indx)
9664 addNode(list, cur);
9665 }
9666 }
9667 }
9668 break;
9669 case NODE_TEST_NS:{
9670 TODO;
9671 break;
9672 }
9673 case NODE_TEST_NAME:
9674 switch (cur->type) {
9675 case XML_ELEMENT_NODE:
9676 if (xmlStrEqual(name, cur->name)) {
9677 if (prefix == NULL) {
9678 if (cur->ns == NULL) {
9679 n++;
9680 if (n == indx)
9681 addNode(list, cur);
9682 }
9683 } else {
9684 if ((cur->ns != NULL) &&
9685 (xmlStrEqual(URI,
9686 cur->ns->href))) {
9687 n++;
9688 if (n == indx)
9689 addNode(list, cur);
9690 }
9691 }
9692 }
9693 break;
9694 case XML_ATTRIBUTE_NODE:{
9695 xmlAttrPtr attr = (xmlAttrPtr) cur;
9696
9697 if (xmlStrEqual(name, attr->name)) {
9698 if (prefix == NULL) {
9699 if ((attr->ns == NULL) ||
9700 (attr->ns->prefix == NULL)) {
9701 n++;
9702 if (n == indx)
9703 addNode(list, cur);
9704 }
9705 } else {
9706 if ((attr->ns != NULL) &&
9707 (xmlStrEqual(URI,
9708 attr->ns->
9709 href))) {
9710 n++;
9711 if (n == indx)
9712 addNode(list, cur);
9713 }
9714 }
9715 }
9716 break;
9717 }
9718 case XML_NAMESPACE_DECL:
9719 if (cur->type == XML_NAMESPACE_DECL) {
9720 xmlNsPtr ns = (xmlNsPtr) cur;
9721
9722 if ((ns->prefix != NULL) && (name != NULL)
9723 && (xmlStrEqual(ns->prefix, name))) {
9724 n++;
9725 if (n == indx)
Daniel Veillard044fc6b2002-03-04 17:09:44 +00009726 xmlXPathNodeSetAddNs(list,
9727 ctxt->context->node, (xmlNsPtr) cur);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009728 }
9729 }
9730 break;
9731 default:
9732 break;
9733 }
9734 break;
9735 break;
9736 }
9737 } while (n < indx);
9738 }
9739 ctxt->context->node = tmp;
9740#ifdef DEBUG_STEP_NTH
9741 xmlGenericError(xmlGenericErrorContext,
9742 "\nExamined %d nodes, found %d nodes at that step\n",
9743 t, list->nodeNr);
9744#endif
Daniel Veillardf06307e2001-07-03 10:35:50 +00009745 valuePush(ctxt, xmlXPathWrapNodeSet(list));
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00009746 if ((obj->boolval) && (obj->user != NULL)) {
9747 ctxt->value->boolval = 1;
9748 ctxt->value->user = obj->user;
9749 obj->user = NULL;
9750 obj->boolval = 0;
9751 }
9752 xmlXPathFreeObject(obj);
Daniel Veillardf06307e2001-07-03 10:35:50 +00009753 return(t);
9754}
9755
9756/**
9757 * xmlXPathCompOpEvalFirst:
9758 * @ctxt: the XPath parser context with the compiled expression
9759 * @op: an XPath compiled operation
9760 * @first: the first elem found so far
9761 *
9762 * Evaluate the Precompiled XPath operation searching only the first
9763 * element in document order
9764 *
9765 * Returns the number of examined objects.
9766 */
9767static int
9768xmlXPathCompOpEvalFirst(xmlXPathParserContextPtr ctxt,
9769 xmlXPathStepOpPtr op, xmlNodePtr * first)
9770{
9771 int total = 0, cur;
9772 xmlXPathCompExprPtr comp;
9773 xmlXPathObjectPtr arg1, arg2;
9774
Daniel Veillard556c6682001-10-06 09:59:51 +00009775 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009776 comp = ctxt->comp;
9777 switch (op->op) {
9778 case XPATH_OP_END:
9779 return (0);
9780 case XPATH_OP_UNION:
9781 total =
9782 xmlXPathCompOpEvalFirst(ctxt, &comp->steps[op->ch1],
9783 first);
Daniel Veillard556c6682001-10-06 09:59:51 +00009784 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009785 if ((ctxt->value != NULL)
9786 && (ctxt->value->type == XPATH_NODESET)
9787 && (ctxt->value->nodesetval != NULL)
9788 && (ctxt->value->nodesetval->nodeNr >= 1)) {
9789 /*
9790 * limit tree traversing to first node in the result
9791 */
9792 xmlXPathNodeSetSort(ctxt->value->nodesetval);
9793 *first = ctxt->value->nodesetval->nodeTab[0];
9794 }
9795 cur =
9796 xmlXPathCompOpEvalFirst(ctxt, &comp->steps[op->ch2],
9797 first);
Daniel Veillard556c6682001-10-06 09:59:51 +00009798 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009799 CHECK_TYPE0(XPATH_NODESET);
9800 arg2 = valuePop(ctxt);
9801
9802 CHECK_TYPE0(XPATH_NODESET);
9803 arg1 = valuePop(ctxt);
9804
9805 arg1->nodesetval = xmlXPathNodeSetMerge(arg1->nodesetval,
9806 arg2->nodesetval);
9807 valuePush(ctxt, arg1);
9808 xmlXPathFreeObject(arg2);
9809 /* optimizer */
9810 if (total > cur)
9811 xmlXPathCompSwap(op);
9812 return (total + cur);
9813 case XPATH_OP_ROOT:
9814 xmlXPathRoot(ctxt);
9815 return (0);
9816 case XPATH_OP_NODE:
9817 if (op->ch1 != -1)
9818 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009819 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009820 if (op->ch2 != -1)
9821 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009822 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009823 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
9824 return (total);
9825 case XPATH_OP_RESET:
9826 if (op->ch1 != -1)
9827 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009828 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009829 if (op->ch2 != -1)
9830 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009831 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009832 ctxt->context->node = NULL;
9833 return (total);
9834 case XPATH_OP_COLLECT:{
9835 if (op->ch1 == -1)
9836 return (total);
9837
9838 total = xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009839 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009840
9841 /*
9842 * Optimization for [n] selection where n is a number
9843 */
9844 if ((op->ch2 != -1) &&
9845 (comp->steps[op->ch2].op == XPATH_OP_PREDICATE) &&
9846 (comp->steps[op->ch2].ch1 == -1) &&
9847 (comp->steps[op->ch2].ch2 != -1) &&
9848 (comp->steps[comp->steps[op->ch2].ch2].op ==
9849 XPATH_OP_VALUE)) {
9850 xmlXPathObjectPtr val;
9851
9852 val = comp->steps[comp->steps[op->ch2].ch2].value4;
9853 if ((val != NULL) && (val->type == XPATH_NUMBER)) {
9854 int indx = (int) val->floatval;
9855
9856 if (val->floatval == (float) indx) {
9857 xmlXPathNodeCollectAndTestNth(ctxt, op, indx,
9858 first, NULL);
9859 return (total);
9860 }
9861 }
9862 }
9863 total += xmlXPathNodeCollectAndTest(ctxt, op, first, NULL);
9864 return (total);
9865 }
9866 case XPATH_OP_VALUE:
9867 valuePush(ctxt,
9868 xmlXPathObjectCopy((xmlXPathObjectPtr) op->value4));
9869 return (0);
9870 case XPATH_OP_SORT:
9871 if (op->ch1 != -1)
9872 total +=
9873 xmlXPathCompOpEvalFirst(ctxt, &comp->steps[op->ch1],
9874 first);
Daniel Veillard556c6682001-10-06 09:59:51 +00009875 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009876 if ((ctxt->value != NULL)
9877 && (ctxt->value->type == XPATH_NODESET)
9878 && (ctxt->value->nodesetval != NULL))
9879 xmlXPathNodeSetSort(ctxt->value->nodesetval);
9880 return (total);
9881 default:
9882 return (xmlXPathCompOpEval(ctxt, op));
9883 }
9884}
9885
9886/**
9887 * xmlXPathCompOpEvalLast:
9888 * @ctxt: the XPath parser context with the compiled expression
9889 * @op: an XPath compiled operation
9890 * @last: the last elem found so far
9891 *
9892 * Evaluate the Precompiled XPath operation searching only the last
9893 * element in document order
9894 *
William M. Brack08171912003-12-29 02:52:11 +00009895 * Returns the number of nodes traversed
Daniel Veillardf06307e2001-07-03 10:35:50 +00009896 */
9897static int
9898xmlXPathCompOpEvalLast(xmlXPathParserContextPtr ctxt, xmlXPathStepOpPtr op,
9899 xmlNodePtr * last)
9900{
9901 int total = 0, cur;
9902 xmlXPathCompExprPtr comp;
9903 xmlXPathObjectPtr arg1, arg2;
William M. Brackce4fc562004-01-22 02:47:18 +00009904 xmlNodePtr bak;
9905 xmlDocPtr bakd;
9906 int pp;
9907 int cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009908
Daniel Veillard556c6682001-10-06 09:59:51 +00009909 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009910 comp = ctxt->comp;
9911 switch (op->op) {
9912 case XPATH_OP_END:
9913 return (0);
9914 case XPATH_OP_UNION:
William M. Brackce4fc562004-01-22 02:47:18 +00009915 bakd = ctxt->context->doc;
9916 bak = ctxt->context->node;
9917 pp = ctxt->context->proximityPosition;
9918 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009919 total =
9920 xmlXPathCompOpEvalLast(ctxt, &comp->steps[op->ch1], last);
Daniel Veillard556c6682001-10-06 09:59:51 +00009921 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009922 if ((ctxt->value != NULL)
9923 && (ctxt->value->type == XPATH_NODESET)
9924 && (ctxt->value->nodesetval != NULL)
9925 && (ctxt->value->nodesetval->nodeNr >= 1)) {
9926 /*
9927 * limit tree traversing to first node in the result
9928 */
9929 xmlXPathNodeSetSort(ctxt->value->nodesetval);
9930 *last =
9931 ctxt->value->nodesetval->nodeTab[ctxt->value->
9932 nodesetval->nodeNr -
9933 1];
9934 }
William M. Brackce4fc562004-01-22 02:47:18 +00009935 ctxt->context->doc = bakd;
9936 ctxt->context->node = bak;
9937 ctxt->context->proximityPosition = pp;
9938 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009939 cur =
9940 xmlXPathCompOpEvalLast(ctxt, &comp->steps[op->ch2], last);
Daniel Veillard556c6682001-10-06 09:59:51 +00009941 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009942 if ((ctxt->value != NULL)
9943 && (ctxt->value->type == XPATH_NODESET)
9944 && (ctxt->value->nodesetval != NULL)
9945 && (ctxt->value->nodesetval->nodeNr >= 1)) {
9946 }
9947 CHECK_TYPE0(XPATH_NODESET);
9948 arg2 = valuePop(ctxt);
9949
9950 CHECK_TYPE0(XPATH_NODESET);
9951 arg1 = valuePop(ctxt);
9952
9953 arg1->nodesetval = xmlXPathNodeSetMerge(arg1->nodesetval,
9954 arg2->nodesetval);
9955 valuePush(ctxt, arg1);
9956 xmlXPathFreeObject(arg2);
9957 /* optimizer */
9958 if (total > cur)
9959 xmlXPathCompSwap(op);
9960 return (total + cur);
9961 case XPATH_OP_ROOT:
9962 xmlXPathRoot(ctxt);
9963 return (0);
9964 case XPATH_OP_NODE:
9965 if (op->ch1 != -1)
9966 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009967 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009968 if (op->ch2 != -1)
9969 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009970 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009971 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
9972 return (total);
9973 case XPATH_OP_RESET:
9974 if (op->ch1 != -1)
9975 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009976 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009977 if (op->ch2 != -1)
9978 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009979 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009980 ctxt->context->node = NULL;
9981 return (total);
9982 case XPATH_OP_COLLECT:{
9983 if (op->ch1 == -1)
9984 return (0);
9985
9986 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +00009987 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +00009988
9989 /*
9990 * Optimization for [n] selection where n is a number
9991 */
9992 if ((op->ch2 != -1) &&
9993 (comp->steps[op->ch2].op == XPATH_OP_PREDICATE) &&
9994 (comp->steps[op->ch2].ch1 == -1) &&
9995 (comp->steps[op->ch2].ch2 != -1) &&
9996 (comp->steps[comp->steps[op->ch2].ch2].op ==
9997 XPATH_OP_VALUE)) {
9998 xmlXPathObjectPtr val;
9999
10000 val = comp->steps[comp->steps[op->ch2].ch2].value4;
10001 if ((val != NULL) && (val->type == XPATH_NUMBER)) {
10002 int indx = (int) val->floatval;
10003
10004 if (val->floatval == (float) indx) {
10005 total +=
10006 xmlXPathNodeCollectAndTestNth(ctxt, op,
10007 indx, NULL,
10008 last);
10009 return (total);
10010 }
10011 }
10012 }
10013 total += xmlXPathNodeCollectAndTest(ctxt, op, NULL, last);
10014 return (total);
10015 }
10016 case XPATH_OP_VALUE:
10017 valuePush(ctxt,
10018 xmlXPathObjectCopy((xmlXPathObjectPtr) op->value4));
10019 return (0);
10020 case XPATH_OP_SORT:
10021 if (op->ch1 != -1)
10022 total +=
10023 xmlXPathCompOpEvalLast(ctxt, &comp->steps[op->ch1],
10024 last);
Daniel Veillard556c6682001-10-06 09:59:51 +000010025 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010026 if ((ctxt->value != NULL)
10027 && (ctxt->value->type == XPATH_NODESET)
10028 && (ctxt->value->nodesetval != NULL))
10029 xmlXPathNodeSetSort(ctxt->value->nodesetval);
10030 return (total);
10031 default:
10032 return (xmlXPathCompOpEval(ctxt, op));
10033 }
Daniel Veillardd8df6c02001-04-05 16:54:14 +000010034}
10035
Owen Taylor3473f882001-02-23 17:55:21 +000010036/**
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010037 * xmlXPathCompOpEval:
10038 * @ctxt: the XPath parser context with the compiled expression
10039 * @op: an XPath compiled operation
10040 *
10041 * Evaluate the Precompiled XPath operation
William M. Brack08171912003-12-29 02:52:11 +000010042 * Returns the number of nodes traversed
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010043 */
Daniel Veillardf06307e2001-07-03 10:35:50 +000010044static int
10045xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, xmlXPathStepOpPtr op)
10046{
10047 int total = 0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010048 int equal, ret;
10049 xmlXPathCompExprPtr comp;
10050 xmlXPathObjectPtr arg1, arg2;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010051 xmlNodePtr bak;
10052 xmlDocPtr bakd;
William M. Brack6000af52002-06-28 11:43:13 +000010053 int pp;
William M. Brack692092b2002-06-28 15:01:24 +000010054 int cs;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010055
Daniel Veillard556c6682001-10-06 09:59:51 +000010056 CHECK_ERROR0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010057 comp = ctxt->comp;
10058 switch (op->op) {
Daniel Veillardf06307e2001-07-03 10:35:50 +000010059 case XPATH_OP_END:
10060 return (0);
10061 case XPATH_OP_AND:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010062 bakd = ctxt->context->doc;
10063 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010064 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010065 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010066 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010067 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010068 xmlXPathBooleanFunction(ctxt, 1);
10069 if ((ctxt->value == NULL) || (ctxt->value->boolval == 0))
10070 return (total);
10071 arg2 = valuePop(ctxt);
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010072 ctxt->context->doc = bakd;
10073 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010074 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010075 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010076 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010077 if (ctxt->error) {
10078 xmlXPathFreeObject(arg2);
10079 return(0);
10080 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010081 xmlXPathBooleanFunction(ctxt, 1);
10082 arg1 = valuePop(ctxt);
10083 arg1->boolval &= arg2->boolval;
10084 valuePush(ctxt, arg1);
10085 xmlXPathFreeObject(arg2);
10086 return (total);
10087 case XPATH_OP_OR:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010088 bakd = ctxt->context->doc;
10089 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010090 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010091 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010092 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010093 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010094 xmlXPathBooleanFunction(ctxt, 1);
10095 if ((ctxt->value == NULL) || (ctxt->value->boolval == 1))
10096 return (total);
10097 arg2 = valuePop(ctxt);
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010098 ctxt->context->doc = bakd;
10099 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010100 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010101 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010102 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010103 if (ctxt->error) {
10104 xmlXPathFreeObject(arg2);
10105 return(0);
10106 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010107 xmlXPathBooleanFunction(ctxt, 1);
10108 arg1 = valuePop(ctxt);
10109 arg1->boolval |= arg2->boolval;
10110 valuePush(ctxt, arg1);
10111 xmlXPathFreeObject(arg2);
10112 return (total);
10113 case XPATH_OP_EQUAL:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010114 bakd = ctxt->context->doc;
10115 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010116 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010117 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010118 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010119 CHECK_ERROR0;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010120 ctxt->context->doc = bakd;
10121 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010122 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010123 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010124 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010125 CHECK_ERROR0;
William M. Brack0c022ad2002-07-12 00:56:01 +000010126 if (op->value)
10127 equal = xmlXPathEqualValues(ctxt);
10128 else
10129 equal = xmlXPathNotEqualValues(ctxt);
10130 valuePush(ctxt, xmlXPathNewBoolean(equal));
Daniel Veillardf06307e2001-07-03 10:35:50 +000010131 return (total);
10132 case XPATH_OP_CMP:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010133 bakd = ctxt->context->doc;
10134 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010135 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010136 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010137 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010138 CHECK_ERROR0;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010139 ctxt->context->doc = bakd;
10140 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010141 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010142 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010143 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010144 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010145 ret = xmlXPathCompareValues(ctxt, op->value, op->value2);
10146 valuePush(ctxt, xmlXPathNewBoolean(ret));
10147 return (total);
10148 case XPATH_OP_PLUS:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010149 bakd = ctxt->context->doc;
10150 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010151 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010152 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010153 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010154 CHECK_ERROR0;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010155 if (op->ch2 != -1) {
10156 ctxt->context->doc = bakd;
10157 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010158 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010159 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010160 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010161 }
Daniel Veillard556c6682001-10-06 09:59:51 +000010162 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010163 if (op->value == 0)
10164 xmlXPathSubValues(ctxt);
10165 else if (op->value == 1)
10166 xmlXPathAddValues(ctxt);
10167 else if (op->value == 2)
10168 xmlXPathValueFlipSign(ctxt);
10169 else if (op->value == 3) {
10170 CAST_TO_NUMBER;
10171 CHECK_TYPE0(XPATH_NUMBER);
10172 }
10173 return (total);
10174 case XPATH_OP_MULT:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010175 bakd = ctxt->context->doc;
10176 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010177 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010178 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010179 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010180 CHECK_ERROR0;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010181 ctxt->context->doc = bakd;
10182 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010183 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010184 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010185 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010186 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010187 if (op->value == 0)
10188 xmlXPathMultValues(ctxt);
10189 else if (op->value == 1)
10190 xmlXPathDivValues(ctxt);
10191 else if (op->value == 2)
10192 xmlXPathModValues(ctxt);
10193 return (total);
10194 case XPATH_OP_UNION:
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010195 bakd = ctxt->context->doc;
10196 bak = ctxt->context->node;
William M. Brack6000af52002-06-28 11:43:13 +000010197 pp = ctxt->context->proximityPosition;
William M. Brack692092b2002-06-28 15:01:24 +000010198 cs = ctxt->context->contextSize;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010199 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010200 CHECK_ERROR0;
Daniel Veillard7089d6b2002-03-29 17:28:10 +000010201 ctxt->context->doc = bakd;
10202 ctxt->context->node = bak;
William M. Brack6000af52002-06-28 11:43:13 +000010203 ctxt->context->proximityPosition = pp;
William M. Brack692092b2002-06-28 15:01:24 +000010204 ctxt->context->contextSize = cs;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010205 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010206 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010207 CHECK_TYPE0(XPATH_NODESET);
10208 arg2 = valuePop(ctxt);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010209
Daniel Veillardf06307e2001-07-03 10:35:50 +000010210 CHECK_TYPE0(XPATH_NODESET);
10211 arg1 = valuePop(ctxt);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010212
Daniel Veillardf06307e2001-07-03 10:35:50 +000010213 arg1->nodesetval = xmlXPathNodeSetMerge(arg1->nodesetval,
10214 arg2->nodesetval);
10215 valuePush(ctxt, arg1);
10216 xmlXPathFreeObject(arg2);
10217 return (total);
10218 case XPATH_OP_ROOT:
10219 xmlXPathRoot(ctxt);
10220 return (total);
10221 case XPATH_OP_NODE:
10222 if (op->ch1 != -1)
10223 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010224 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010225 if (op->ch2 != -1)
10226 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010227 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010228 valuePush(ctxt, xmlXPathNewNodeSet(ctxt->context->node));
10229 return (total);
10230 case XPATH_OP_RESET:
10231 if (op->ch1 != -1)
10232 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010233 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010234 if (op->ch2 != -1)
10235 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010236 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010237 ctxt->context->node = NULL;
10238 return (total);
10239 case XPATH_OP_COLLECT:{
10240 if (op->ch1 == -1)
10241 return (total);
Daniel Veillardd8df6c02001-04-05 16:54:14 +000010242
Daniel Veillardf06307e2001-07-03 10:35:50 +000010243 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010244 CHECK_ERROR0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010245
Daniel Veillardf06307e2001-07-03 10:35:50 +000010246 /*
10247 * Optimization for [n] selection where n is a number
10248 */
10249 if ((op->ch2 != -1) &&
10250 (comp->steps[op->ch2].op == XPATH_OP_PREDICATE) &&
10251 (comp->steps[op->ch2].ch1 == -1) &&
10252 (comp->steps[op->ch2].ch2 != -1) &&
10253 (comp->steps[comp->steps[op->ch2].ch2].op ==
10254 XPATH_OP_VALUE)) {
10255 xmlXPathObjectPtr val;
Daniel Veillard42596ad2001-05-22 16:57:14 +000010256
Daniel Veillardf06307e2001-07-03 10:35:50 +000010257 val = comp->steps[comp->steps[op->ch2].ch2].value4;
10258 if ((val != NULL) && (val->type == XPATH_NUMBER)) {
10259 int indx = (int) val->floatval;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010260
Daniel Veillardf06307e2001-07-03 10:35:50 +000010261 if (val->floatval == (float) indx) {
10262 total +=
10263 xmlXPathNodeCollectAndTestNth(ctxt, op,
10264 indx, NULL,
10265 NULL);
10266 return (total);
10267 }
10268 }
10269 }
10270 total += xmlXPathNodeCollectAndTest(ctxt, op, NULL, NULL);
10271 return (total);
10272 }
10273 case XPATH_OP_VALUE:
10274 valuePush(ctxt,
10275 xmlXPathObjectCopy((xmlXPathObjectPtr) op->value4));
10276 return (total);
10277 case XPATH_OP_VARIABLE:{
Daniel Veillard556c6682001-10-06 09:59:51 +000010278 xmlXPathObjectPtr val;
10279
Daniel Veillardf06307e2001-07-03 10:35:50 +000010280 if (op->ch1 != -1)
10281 total +=
10282 xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010283 if (op->value5 == NULL) {
10284 val = xmlXPathVariableLookup(ctxt->context, op->value4);
10285 if (val == NULL) {
10286 ctxt->error = XPATH_UNDEF_VARIABLE_ERROR;
10287 return(0);
10288 }
10289 valuePush(ctxt, val);
10290 } else {
Daniel Veillardf06307e2001-07-03 10:35:50 +000010291 const xmlChar *URI;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010292
Daniel Veillardf06307e2001-07-03 10:35:50 +000010293 URI = xmlXPathNsLookup(ctxt->context, op->value5);
10294 if (URI == NULL) {
10295 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010296 "xmlXPathCompOpEval: variable %s bound to undefined prefix %s\n",
Daniel Veillardf06307e2001-07-03 10:35:50 +000010297 op->value4, op->value5);
10298 return (total);
10299 }
Daniel Veillard556c6682001-10-06 09:59:51 +000010300 val = xmlXPathVariableLookupNS(ctxt->context,
10301 op->value4, URI);
10302 if (val == NULL) {
10303 ctxt->error = XPATH_UNDEF_VARIABLE_ERROR;
10304 return(0);
10305 }
10306 valuePush(ctxt, val);
Daniel Veillardf06307e2001-07-03 10:35:50 +000010307 }
10308 return (total);
10309 }
10310 case XPATH_OP_FUNCTION:{
10311 xmlXPathFunction func;
10312 const xmlChar *oldFunc, *oldFuncURI;
Daniel Veillard556c6682001-10-06 09:59:51 +000010313 int i;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010314
10315 if (op->ch1 != -1)
10316 total +=
10317 xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010318 if (ctxt->valueNr < op->value) {
10319 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010320 "xmlXPathCompOpEval: parameter error\n");
Daniel Veillard556c6682001-10-06 09:59:51 +000010321 ctxt->error = XPATH_INVALID_OPERAND;
10322 return (total);
10323 }
10324 for (i = 0; i < op->value; i++)
10325 if (ctxt->valueTab[(ctxt->valueNr - 1) - i] == NULL) {
10326 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010327 "xmlXPathCompOpEval: parameter error\n");
Daniel Veillard556c6682001-10-06 09:59:51 +000010328 ctxt->error = XPATH_INVALID_OPERAND;
10329 return (total);
10330 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010331 if (op->cache != NULL)
10332 func = (xmlXPathFunction) op->cache;
10333 else {
10334 const xmlChar *URI = NULL;
10335
10336 if (op->value5 == NULL)
10337 func =
10338 xmlXPathFunctionLookup(ctxt->context,
10339 op->value4);
10340 else {
10341 URI = xmlXPathNsLookup(ctxt->context, op->value5);
10342 if (URI == NULL) {
10343 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010344 "xmlXPathCompOpEval: function %s bound to undefined prefix %s\n",
Daniel Veillardf06307e2001-07-03 10:35:50 +000010345 op->value4, op->value5);
10346 return (total);
10347 }
10348 func = xmlXPathFunctionLookupNS(ctxt->context,
10349 op->value4, URI);
10350 }
10351 if (func == NULL) {
10352 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010353 "xmlXPathCompOpEval: function %s not found\n",
Daniel Veillardf06307e2001-07-03 10:35:50 +000010354 op->value4);
10355 XP_ERROR0(XPATH_UNKNOWN_FUNC_ERROR);
Daniel Veillardf06307e2001-07-03 10:35:50 +000010356 }
10357 op->cache = (void *) func;
10358 op->cacheURI = (void *) URI;
10359 }
10360 oldFunc = ctxt->context->function;
10361 oldFuncURI = ctxt->context->functionURI;
10362 ctxt->context->function = op->value4;
10363 ctxt->context->functionURI = op->cacheURI;
10364 func(ctxt, op->value);
10365 ctxt->context->function = oldFunc;
10366 ctxt->context->functionURI = oldFuncURI;
10367 return (total);
10368 }
10369 case XPATH_OP_ARG:
Daniel Veillard088bf112002-05-14 11:03:59 +000010370 bakd = ctxt->context->doc;
10371 bak = ctxt->context->node;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010372 if (op->ch1 != -1)
10373 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard088bf112002-05-14 11:03:59 +000010374 ctxt->context->doc = bakd;
10375 ctxt->context->node = bak;
Daniel Veillard556c6682001-10-06 09:59:51 +000010376 CHECK_ERROR0;
William M. Brack72ee48d2003-12-30 08:30:19 +000010377 if (op->ch2 != -1) {
Daniel Veillardf06307e2001-07-03 10:35:50 +000010378 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch2]);
William M. Brack72ee48d2003-12-30 08:30:19 +000010379 ctxt->context->doc = bakd;
10380 ctxt->context->node = bak;
10381 CHECK_ERROR0;
10382 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010383 return (total);
10384 case XPATH_OP_PREDICATE:
10385 case XPATH_OP_FILTER:{
10386 xmlXPathObjectPtr res;
10387 xmlXPathObjectPtr obj, tmp;
10388 xmlNodeSetPtr newset = NULL;
10389 xmlNodeSetPtr oldset;
10390 xmlNodePtr oldnode;
10391 int i;
10392
10393 /*
10394 * Optimization for ()[1] selection i.e. the first elem
10395 */
10396 if ((op->ch1 != -1) && (op->ch2 != -1) &&
10397 (comp->steps[op->ch1].op == XPATH_OP_SORT) &&
10398 (comp->steps[op->ch2].op == XPATH_OP_VALUE)) {
10399 xmlXPathObjectPtr val;
10400
10401 val = comp->steps[op->ch2].value4;
10402 if ((val != NULL) && (val->type == XPATH_NUMBER) &&
10403 (val->floatval == 1.0)) {
10404 xmlNodePtr first = NULL;
10405
10406 total +=
10407 xmlXPathCompOpEvalFirst(ctxt,
10408 &comp->steps[op->ch1],
10409 &first);
Daniel Veillard556c6682001-10-06 09:59:51 +000010410 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010411 /*
10412 * The nodeset should be in document order,
10413 * Keep only the first value
10414 */
10415 if ((ctxt->value != NULL) &&
10416 (ctxt->value->type == XPATH_NODESET) &&
10417 (ctxt->value->nodesetval != NULL) &&
10418 (ctxt->value->nodesetval->nodeNr > 1))
10419 ctxt->value->nodesetval->nodeNr = 1;
10420 return (total);
10421 }
10422 }
10423 /*
10424 * Optimization for ()[last()] selection i.e. the last elem
10425 */
10426 if ((op->ch1 != -1) && (op->ch2 != -1) &&
10427 (comp->steps[op->ch1].op == XPATH_OP_SORT) &&
10428 (comp->steps[op->ch2].op == XPATH_OP_SORT)) {
10429 int f = comp->steps[op->ch2].ch1;
10430
10431 if ((f != -1) &&
10432 (comp->steps[f].op == XPATH_OP_FUNCTION) &&
10433 (comp->steps[f].value5 == NULL) &&
10434 (comp->steps[f].value == 0) &&
10435 (comp->steps[f].value4 != NULL) &&
10436 (xmlStrEqual
10437 (comp->steps[f].value4, BAD_CAST "last"))) {
10438 xmlNodePtr last = NULL;
10439
10440 total +=
10441 xmlXPathCompOpEvalLast(ctxt,
10442 &comp->steps[op->ch1],
10443 &last);
Daniel Veillard556c6682001-10-06 09:59:51 +000010444 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010445 /*
10446 * The nodeset should be in document order,
10447 * Keep only the last value
10448 */
10449 if ((ctxt->value != NULL) &&
10450 (ctxt->value->type == XPATH_NODESET) &&
10451 (ctxt->value->nodesetval != NULL) &&
10452 (ctxt->value->nodesetval->nodeTab != NULL) &&
10453 (ctxt->value->nodesetval->nodeNr > 1)) {
10454 ctxt->value->nodesetval->nodeTab[0] =
10455 ctxt->value->nodesetval->nodeTab[ctxt->
10456 value->
10457 nodesetval->
10458 nodeNr -
10459 1];
10460 ctxt->value->nodesetval->nodeNr = 1;
10461 }
10462 return (total);
10463 }
10464 }
10465
10466 if (op->ch1 != -1)
10467 total +=
10468 xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010469 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010470 if (op->ch2 == -1)
10471 return (total);
10472 if (ctxt->value == NULL)
10473 return (total);
10474
10475 oldnode = ctxt->context->node;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010476
10477#ifdef LIBXML_XPTR_ENABLED
Daniel Veillardf06307e2001-07-03 10:35:50 +000010478 /*
10479 * Hum are we filtering the result of an XPointer expression
10480 */
10481 if (ctxt->value->type == XPATH_LOCATIONSET) {
10482 xmlLocationSetPtr newlocset = NULL;
10483 xmlLocationSetPtr oldlocset;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010484
Daniel Veillardf06307e2001-07-03 10:35:50 +000010485 /*
10486 * Extract the old locset, and then evaluate the result of the
10487 * expression for all the element in the locset. use it to grow
10488 * up a new locset.
10489 */
10490 CHECK_TYPE0(XPATH_LOCATIONSET);
10491 obj = valuePop(ctxt);
10492 oldlocset = obj->user;
10493 ctxt->context->node = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010494
Daniel Veillardf06307e2001-07-03 10:35:50 +000010495 if ((oldlocset == NULL) || (oldlocset->locNr == 0)) {
10496 ctxt->context->contextSize = 0;
10497 ctxt->context->proximityPosition = 0;
10498 if (op->ch2 != -1)
10499 total +=
10500 xmlXPathCompOpEval(ctxt,
10501 &comp->steps[op->ch2]);
10502 res = valuePop(ctxt);
10503 if (res != NULL)
10504 xmlXPathFreeObject(res);
10505 valuePush(ctxt, obj);
10506 CHECK_ERROR0;
10507 return (total);
10508 }
10509 newlocset = xmlXPtrLocationSetCreate(NULL);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010510
Daniel Veillardf06307e2001-07-03 10:35:50 +000010511 for (i = 0; i < oldlocset->locNr; i++) {
10512 /*
10513 * Run the evaluation with a node list made of a
10514 * single item in the nodelocset.
10515 */
10516 ctxt->context->node = oldlocset->locTab[i]->user;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010517 ctxt->context->contextSize = oldlocset->locNr;
10518 ctxt->context->proximityPosition = i + 1;
William M. Brackf7eb7942003-12-31 07:59:17 +000010519 tmp = xmlXPathNewNodeSet(ctxt->context->node);
10520 valuePush(ctxt, tmp);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010521
Daniel Veillardf06307e2001-07-03 10:35:50 +000010522 if (op->ch2 != -1)
10523 total +=
10524 xmlXPathCompOpEval(ctxt,
10525 &comp->steps[op->ch2]);
10526 CHECK_ERROR0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010527
Daniel Veillardf06307e2001-07-03 10:35:50 +000010528 /*
10529 * The result of the evaluation need to be tested to
10530 * decided whether the filter succeeded or not
10531 */
10532 res = valuePop(ctxt);
10533 if (xmlXPathEvaluatePredicateResult(ctxt, res)) {
10534 xmlXPtrLocationSetAdd(newlocset,
10535 xmlXPathObjectCopy
10536 (oldlocset->locTab[i]));
10537 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010538
Daniel Veillardf06307e2001-07-03 10:35:50 +000010539 /*
10540 * Cleanup
10541 */
10542 if (res != NULL)
10543 xmlXPathFreeObject(res);
10544 if (ctxt->value == tmp) {
10545 res = valuePop(ctxt);
10546 xmlXPathFreeObject(res);
10547 }
10548
10549 ctxt->context->node = NULL;
10550 }
10551
10552 /*
10553 * The result is used as the new evaluation locset.
10554 */
10555 xmlXPathFreeObject(obj);
10556 ctxt->context->node = NULL;
10557 ctxt->context->contextSize = -1;
10558 ctxt->context->proximityPosition = -1;
10559 valuePush(ctxt, xmlXPtrWrapLocationSet(newlocset));
10560 ctxt->context->node = oldnode;
10561 return (total);
10562 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010563#endif /* LIBXML_XPTR_ENABLED */
10564
Daniel Veillardf06307e2001-07-03 10:35:50 +000010565 /*
10566 * Extract the old set, and then evaluate the result of the
10567 * expression for all the element in the set. use it to grow
10568 * up a new set.
10569 */
10570 CHECK_TYPE0(XPATH_NODESET);
10571 obj = valuePop(ctxt);
10572 oldset = obj->nodesetval;
Daniel Veillard911f49a2001-04-07 15:39:35 +000010573
Daniel Veillardf06307e2001-07-03 10:35:50 +000010574 oldnode = ctxt->context->node;
10575 ctxt->context->node = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010576
Daniel Veillardf06307e2001-07-03 10:35:50 +000010577 if ((oldset == NULL) || (oldset->nodeNr == 0)) {
10578 ctxt->context->contextSize = 0;
10579 ctxt->context->proximityPosition = 0;
10580 if (op->ch2 != -1)
10581 total +=
10582 xmlXPathCompOpEval(ctxt,
10583 &comp->steps[op->ch2]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010584 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010585 res = valuePop(ctxt);
10586 if (res != NULL)
10587 xmlXPathFreeObject(res);
10588 valuePush(ctxt, obj);
10589 ctxt->context->node = oldnode;
10590 CHECK_ERROR0;
10591 } else {
10592 /*
10593 * Initialize the new set.
10594 */
10595 newset = xmlXPathNodeSetCreate(NULL);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010596
Daniel Veillardf06307e2001-07-03 10:35:50 +000010597 for (i = 0; i < oldset->nodeNr; i++) {
10598 /*
10599 * Run the evaluation with a node list made of
10600 * a single item in the nodeset.
10601 */
10602 ctxt->context->node = oldset->nodeTab[i];
10603 tmp = xmlXPathNewNodeSet(ctxt->context->node);
10604 valuePush(ctxt, tmp);
10605 ctxt->context->contextSize = oldset->nodeNr;
10606 ctxt->context->proximityPosition = i + 1;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010607
Daniel Veillardf06307e2001-07-03 10:35:50 +000010608 if (op->ch2 != -1)
10609 total +=
10610 xmlXPathCompOpEval(ctxt,
10611 &comp->steps[op->ch2]);
10612 CHECK_ERROR0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010613
Daniel Veillardf06307e2001-07-03 10:35:50 +000010614 /*
William M. Brack08171912003-12-29 02:52:11 +000010615 * The result of the evaluation needs to be tested to
10616 * decide whether the filter succeeded or not
Daniel Veillardf06307e2001-07-03 10:35:50 +000010617 */
10618 res = valuePop(ctxt);
10619 if (xmlXPathEvaluatePredicateResult(ctxt, res)) {
10620 xmlXPathNodeSetAdd(newset, oldset->nodeTab[i]);
10621 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010622
Daniel Veillardf06307e2001-07-03 10:35:50 +000010623 /*
10624 * Cleanup
10625 */
10626 if (res != NULL)
10627 xmlXPathFreeObject(res);
10628 if (ctxt->value == tmp) {
10629 res = valuePop(ctxt);
10630 xmlXPathFreeObject(res);
10631 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010632
Daniel Veillardf06307e2001-07-03 10:35:50 +000010633 ctxt->context->node = NULL;
10634 }
10635
10636 /*
10637 * The result is used as the new evaluation set.
10638 */
10639 xmlXPathFreeObject(obj);
10640 ctxt->context->node = NULL;
10641 ctxt->context->contextSize = -1;
10642 ctxt->context->proximityPosition = -1;
10643 valuePush(ctxt, xmlXPathWrapNodeSet(newset));
10644 }
10645 ctxt->context->node = oldnode;
10646 return (total);
10647 }
10648 case XPATH_OP_SORT:
10649 if (op->ch1 != -1)
10650 total += xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
Daniel Veillard556c6682001-10-06 09:59:51 +000010651 CHECK_ERROR0;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010652 if ((ctxt->value != NULL) &&
10653 (ctxt->value->type == XPATH_NODESET) &&
10654 (ctxt->value->nodesetval != NULL))
10655 xmlXPathNodeSetSort(ctxt->value->nodesetval);
10656 return (total);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010657#ifdef LIBXML_XPTR_ENABLED
Daniel Veillardf06307e2001-07-03 10:35:50 +000010658 case XPATH_OP_RANGETO:{
10659 xmlXPathObjectPtr range;
10660 xmlXPathObjectPtr res, obj;
10661 xmlXPathObjectPtr tmp;
William M. Brack08171912003-12-29 02:52:11 +000010662 xmlLocationSetPtr newlocset = NULL;
10663 xmlLocationSetPtr oldlocset;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010664 xmlNodeSetPtr oldset;
William M. Brack72ee48d2003-12-30 08:30:19 +000010665 int i, j;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010666
Daniel Veillardf06307e2001-07-03 10:35:50 +000010667 if (op->ch1 != -1)
10668 total +=
10669 xmlXPathCompOpEval(ctxt, &comp->steps[op->ch1]);
10670 if (op->ch2 == -1)
10671 return (total);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010672
William M. Brack08171912003-12-29 02:52:11 +000010673 if (ctxt->value->type == XPATH_LOCATIONSET) {
10674 /*
10675 * Extract the old locset, and then evaluate the result of the
10676 * expression for all the element in the locset. use it to grow
10677 * up a new locset.
10678 */
10679 CHECK_TYPE0(XPATH_LOCATIONSET);
10680 obj = valuePop(ctxt);
10681 oldlocset = obj->user;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010682
William M. Brack08171912003-12-29 02:52:11 +000010683 if ((oldlocset == NULL) || (oldlocset->locNr == 0)) {
William M. Brack72ee48d2003-12-30 08:30:19 +000010684 ctxt->context->node = NULL;
William M. Brack08171912003-12-29 02:52:11 +000010685 ctxt->context->contextSize = 0;
10686 ctxt->context->proximityPosition = 0;
10687 total += xmlXPathCompOpEval(ctxt,&comp->steps[op->ch2]);
10688 res = valuePop(ctxt);
10689 if (res != NULL)
10690 xmlXPathFreeObject(res);
10691 valuePush(ctxt, obj);
10692 CHECK_ERROR0;
10693 return (total);
10694 }
10695 newlocset = xmlXPtrLocationSetCreate(NULL);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010696
William M. Brack08171912003-12-29 02:52:11 +000010697 for (i = 0; i < oldlocset->locNr; i++) {
Daniel Veillardf06307e2001-07-03 10:35:50 +000010698 /*
William M. Brack08171912003-12-29 02:52:11 +000010699 * Run the evaluation with a node list made of a
10700 * single item in the nodelocset.
Daniel Veillardf06307e2001-07-03 10:35:50 +000010701 */
William M. Brackf7eb7942003-12-31 07:59:17 +000010702 ctxt->context->node = oldlocset->locTab[i]->user;
10703 ctxt->context->contextSize = oldlocset->locNr;
10704 ctxt->context->proximityPosition = i + 1;
Daniel Veillardf06307e2001-07-03 10:35:50 +000010705 tmp = xmlXPathNewNodeSet(ctxt->context->node);
10706 valuePush(ctxt, tmp);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010707
Daniel Veillardf06307e2001-07-03 10:35:50 +000010708 if (op->ch2 != -1)
10709 total +=
10710 xmlXPathCompOpEval(ctxt,
10711 &comp->steps[op->ch2]);
10712 CHECK_ERROR0;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010713
Daniel Veillardf06307e2001-07-03 10:35:50 +000010714 res = valuePop(ctxt);
William M. Brack72ee48d2003-12-30 08:30:19 +000010715 if (res->type == XPATH_LOCATIONSET) {
10716 xmlLocationSetPtr rloc =
10717 (xmlLocationSetPtr)res->user;
10718 for (j=0; j<rloc->locNr; j++) {
10719 range = xmlXPtrNewRange(
10720 oldlocset->locTab[i]->user,
10721 oldlocset->locTab[i]->index,
10722 rloc->locTab[j]->user2,
10723 rloc->locTab[j]->index2);
10724 if (range != NULL) {
10725 xmlXPtrLocationSetAdd(newlocset, range);
10726 }
10727 }
10728 } else {
10729 range = xmlXPtrNewRangeNodeObject(
10730 (xmlNodePtr)oldlocset->locTab[i]->user, res);
10731 if (range != NULL) {
10732 xmlXPtrLocationSetAdd(newlocset,range);
10733 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010734 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010735
Daniel Veillardf06307e2001-07-03 10:35:50 +000010736 /*
10737 * Cleanup
10738 */
10739 if (res != NULL)
10740 xmlXPathFreeObject(res);
10741 if (ctxt->value == tmp) {
10742 res = valuePop(ctxt);
10743 xmlXPathFreeObject(res);
10744 }
10745
10746 ctxt->context->node = NULL;
10747 }
William M. Brack72ee48d2003-12-30 08:30:19 +000010748 } else { /* Not a location set */
William M. Brack08171912003-12-29 02:52:11 +000010749 CHECK_TYPE0(XPATH_NODESET);
10750 obj = valuePop(ctxt);
10751 oldset = obj->nodesetval;
10752 ctxt->context->node = NULL;
10753
10754 newlocset = xmlXPtrLocationSetCreate(NULL);
10755
10756 if (oldset != NULL) {
10757 for (i = 0; i < oldset->nodeNr; i++) {
10758 /*
10759 * Run the evaluation with a node list made of a single item
10760 * in the nodeset.
10761 */
10762 ctxt->context->node = oldset->nodeTab[i];
10763 tmp = xmlXPathNewNodeSet(ctxt->context->node);
10764 valuePush(ctxt, tmp);
10765
10766 if (op->ch2 != -1)
10767 total +=
10768 xmlXPathCompOpEval(ctxt,
10769 &comp->steps[op->ch2]);
10770 CHECK_ERROR0;
10771
William M. Brack08171912003-12-29 02:52:11 +000010772 res = valuePop(ctxt);
10773 range =
10774 xmlXPtrNewRangeNodeObject(oldset->nodeTab[i],
10775 res);
10776 if (range != NULL) {
10777 xmlXPtrLocationSetAdd(newlocset, range);
10778 }
10779
10780 /*
10781 * Cleanup
10782 */
10783 if (res != NULL)
10784 xmlXPathFreeObject(res);
10785 if (ctxt->value == tmp) {
10786 res = valuePop(ctxt);
10787 xmlXPathFreeObject(res);
10788 }
10789
10790 ctxt->context->node = NULL;
10791 }
10792 }
Daniel Veillardf06307e2001-07-03 10:35:50 +000010793 }
10794
10795 /*
10796 * The result is used as the new evaluation set.
10797 */
10798 xmlXPathFreeObject(obj);
10799 ctxt->context->node = NULL;
10800 ctxt->context->contextSize = -1;
10801 ctxt->context->proximityPosition = -1;
William M. Brack08171912003-12-29 02:52:11 +000010802 valuePush(ctxt, xmlXPtrWrapLocationSet(newlocset));
Daniel Veillardf06307e2001-07-03 10:35:50 +000010803 return (total);
10804 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010805#endif /* LIBXML_XPTR_ENABLED */
10806 }
10807 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardf06307e2001-07-03 10:35:50 +000010808 "XPath: unknown precompiled operation %d\n", op->op);
10809 return (total);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010810}
10811
10812/**
10813 * xmlXPathRunEval:
10814 * @ctxt: the XPath parser context with the compiled expression
10815 *
10816 * Evaluate the Precompiled XPath expression in the given context.
10817 */
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000010818static void
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010819xmlXPathRunEval(xmlXPathParserContextPtr ctxt) {
10820 xmlXPathCompExprPtr comp;
10821
10822 if ((ctxt == NULL) || (ctxt->comp == NULL))
10823 return;
10824
10825 if (ctxt->valueTab == NULL) {
10826 /* Allocate the value stack */
10827 ctxt->valueTab = (xmlXPathObjectPtr *)
10828 xmlMalloc(10 * sizeof(xmlXPathObjectPtr));
10829 if (ctxt->valueTab == NULL) {
Daniel Veillardd96f6d32003-10-07 21:25:12 +000010830 xmlXPathPErrMemory(ctxt, "creating evaluation context\n");
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010831 xmlFree(ctxt);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010832 }
10833 ctxt->valueNr = 0;
10834 ctxt->valueMax = 10;
10835 ctxt->value = NULL;
10836 }
10837 comp = ctxt->comp;
Aleksey Sanin29b6f762002-05-05 06:59:57 +000010838 if(comp->last < 0) {
10839 xmlGenericError(xmlGenericErrorContext,
10840 "xmlXPathRunEval: last is less than zero\n");
10841 return;
10842 }
Daniel Veillard9e7160d2001-03-18 23:17:47 +000010843 xmlXPathCompOpEval(ctxt, &comp->steps[comp->last]);
10844}
10845
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010846/************************************************************************
10847 * *
10848 * Public interfaces *
10849 * *
10850 ************************************************************************/
10851
10852/**
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000010853 * xmlXPathEvalPredicate:
10854 * @ctxt: the XPath context
10855 * @res: the Predicate Expression evaluation result
10856 *
10857 * Evaluate a predicate result for the current node.
10858 * A PredicateExpr is evaluated by evaluating the Expr and converting
10859 * the result to a boolean. If the result is a number, the result will
10860 * be converted to true if the number is equal to the position of the
10861 * context node in the context node list (as returned by the position
10862 * function) and will be converted to false otherwise; if the result
10863 * is not a number, then the result will be converted as if by a call
10864 * to the boolean function.
10865 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010866 * Returns 1 if predicate is true, 0 otherwise
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000010867 */
10868int
10869xmlXPathEvalPredicate(xmlXPathContextPtr ctxt, xmlXPathObjectPtr res) {
10870 if (res == NULL) return(0);
10871 switch (res->type) {
10872 case XPATH_BOOLEAN:
10873 return(res->boolval);
10874 case XPATH_NUMBER:
10875 return(res->floatval == ctxt->proximityPosition);
10876 case XPATH_NODESET:
10877 case XPATH_XSLT_TREE:
Daniel Veillardd8df6c02001-04-05 16:54:14 +000010878 if (res->nodesetval == NULL)
10879 return(0);
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000010880 return(res->nodesetval->nodeNr != 0);
10881 case XPATH_STRING:
10882 return((res->stringval != NULL) &&
10883 (xmlStrlen(res->stringval) != 0));
10884 default:
10885 STRANGE
10886 }
10887 return(0);
10888}
10889
10890/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010891 * xmlXPathEvaluatePredicateResult:
10892 * @ctxt: the XPath Parser context
10893 * @res: the Predicate Expression evaluation result
10894 *
10895 * Evaluate a predicate result for the current node.
10896 * A PredicateExpr is evaluated by evaluating the Expr and converting
10897 * the result to a boolean. If the result is a number, the result will
10898 * be converted to true if the number is equal to the position of the
10899 * context node in the context node list (as returned by the position
10900 * function) and will be converted to false otherwise; if the result
10901 * is not a number, then the result will be converted as if by a call
10902 * to the boolean function.
10903 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010904 * Returns 1 if predicate is true, 0 otherwise
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010905 */
10906int
10907xmlXPathEvaluatePredicateResult(xmlXPathParserContextPtr ctxt,
10908 xmlXPathObjectPtr res) {
10909 if (res == NULL) return(0);
10910 switch (res->type) {
10911 case XPATH_BOOLEAN:
10912 return(res->boolval);
10913 case XPATH_NUMBER:
10914 return(res->floatval == ctxt->context->proximityPosition);
10915 case XPATH_NODESET:
10916 case XPATH_XSLT_TREE:
Daniel Veillard73639a72001-04-10 14:31:39 +000010917 if (res->nodesetval == NULL)
Daniel Veillard911f49a2001-04-07 15:39:35 +000010918 return(0);
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010919 return(res->nodesetval->nodeNr != 0);
10920 case XPATH_STRING:
10921 return((res->stringval != NULL) &&
10922 (xmlStrlen(res->stringval) != 0));
William M. Brack08171912003-12-29 02:52:11 +000010923#ifdef LIBXML_XPTR_ENABLED
10924 case XPATH_LOCATIONSET:{
10925 xmlLocationSetPtr ptr = res->user;
10926 if (ptr == NULL)
10927 return(0);
10928 return (ptr->locNr != 0);
10929 }
10930#endif
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010931 default:
10932 STRANGE
10933 }
10934 return(0);
10935}
10936
10937/**
Daniel Veillard4773df22004-01-23 13:15:13 +000010938 * xmlXPathCtxtCompile:
10939 * @ctxt: an XPath context
10940 * @str: the XPath expression
10941 *
10942 * Compile an XPath expression
10943 *
10944 * Returns the xmlXPathCompExprPtr resulting from the compilation or NULL.
10945 * the caller has to free the object.
10946 */
10947xmlXPathCompExprPtr
10948xmlXPathCtxtCompile(xmlXPathContextPtr ctxt, const xmlChar *str) {
10949 xmlXPathParserContextPtr pctxt;
10950 xmlXPathCompExprPtr comp;
10951
10952 xmlXPathInit();
10953
10954 pctxt = xmlXPathNewParserContext(str, ctxt);
10955 xmlXPathCompileExpr(pctxt);
10956
10957 if( pctxt->error != XPATH_EXPRESSION_OK )
10958 {
10959 xmlXPathFreeParserContext(pctxt);
10960 return (0);
10961 }
10962
10963 if (*pctxt->cur != 0) {
10964 /*
10965 * aleksey: in some cases this line prints *second* error message
10966 * (see bug #78858) and probably this should be fixed.
10967 * However, we are not sure that all error messages are printed
10968 * out in other places. It's not critical so we leave it as-is for now
10969 */
10970 xmlXPatherror(pctxt, __FILE__, __LINE__, XPATH_EXPR_ERROR);
10971 comp = NULL;
10972 } else {
10973 comp = pctxt->comp;
10974 pctxt->comp = NULL;
10975 }
10976 xmlXPathFreeParserContext(pctxt);
10977 if (comp != NULL) {
10978 comp->expr = xmlStrdup(str);
10979#ifdef DEBUG_EVAL_COUNTS
10980 comp->string = xmlStrdup(str);
10981 comp->nb = 0;
10982#endif
10983 }
10984 return(comp);
10985}
10986
10987/**
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010988 * xmlXPathCompile:
10989 * @str: the XPath expression
10990 *
10991 * Compile an XPath expression
10992 *
Daniel Veillard591b4be2003-02-09 23:33:36 +000010993 * Returns the xmlXPathCompExprPtr resulting from the compilation or NULL.
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010994 * the caller has to free the object.
10995 */
10996xmlXPathCompExprPtr
10997xmlXPathCompile(const xmlChar *str) {
Daniel Veillard4773df22004-01-23 13:15:13 +000010998 return(xmlXPathCtxtCompile(NULL, str));
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000010999}
11000
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011001/**
11002 * xmlXPathCompiledEval:
11003 * @comp: the compiled XPath expression
Owen Taylor3473f882001-02-23 17:55:21 +000011004 * @ctx: the XPath context
11005 *
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011006 * Evaluate the Precompiled XPath expression in the given context.
Owen Taylor3473f882001-02-23 17:55:21 +000011007 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +000011008 * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL.
Owen Taylor3473f882001-02-23 17:55:21 +000011009 * the caller has to free the object.
11010 */
11011xmlXPathObjectPtr
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011012xmlXPathCompiledEval(xmlXPathCompExprPtr comp, xmlXPathContextPtr ctx) {
Owen Taylor3473f882001-02-23 17:55:21 +000011013 xmlXPathParserContextPtr ctxt;
11014 xmlXPathObjectPtr res, tmp, init = NULL;
11015 int stack = 0;
Daniel Veillard81463942001-10-16 12:34:39 +000011016#ifndef LIBXML_THREAD_ENABLED
11017 static int reentance = 0;
11018#endif
Owen Taylor3473f882001-02-23 17:55:21 +000011019
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011020 if ((comp == NULL) || (ctx == NULL))
11021 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +000011022 xmlXPathInit();
11023
11024 CHECK_CONTEXT(ctx)
11025
Daniel Veillard81463942001-10-16 12:34:39 +000011026#ifndef LIBXML_THREAD_ENABLED
11027 reentance++;
11028 if (reentance > 1)
11029 xmlXPathDisableOptimizer = 1;
11030#endif
11031
Daniel Veillardf06307e2001-07-03 10:35:50 +000011032#ifdef DEBUG_EVAL_COUNTS
11033 comp->nb++;
11034 if ((comp->string != NULL) && (comp->nb > 100)) {
11035 fprintf(stderr, "100 x %s\n", comp->string);
11036 comp->nb = 0;
11037 }
11038#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011039 ctxt = xmlXPathCompParserContext(comp, ctx);
11040 xmlXPathRunEval(ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +000011041
11042 if (ctxt->value == NULL) {
11043 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000011044 "xmlXPathCompiledEval: evaluation failed\n");
Owen Taylor3473f882001-02-23 17:55:21 +000011045 res = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +000011046 } else {
11047 res = valuePop(ctxt);
11048 }
11049
Daniel Veillardf06307e2001-07-03 10:35:50 +000011050
Owen Taylor3473f882001-02-23 17:55:21 +000011051 do {
11052 tmp = valuePop(ctxt);
11053 if (tmp != NULL) {
11054 if (tmp != init)
11055 stack++;
11056 xmlXPathFreeObject(tmp);
11057 }
11058 } while (tmp != NULL);
11059 if ((stack != 0) && (res != NULL)) {
11060 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardcbaf3992001-12-31 16:16:02 +000011061 "xmlXPathCompiledEval: %d object left on the stack\n",
Owen Taylor3473f882001-02-23 17:55:21 +000011062 stack);
11063 }
11064 if (ctxt->error != XPATH_EXPRESSION_OK) {
11065 xmlXPathFreeObject(res);
11066 res = NULL;
11067 }
11068
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011069
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000011070 ctxt->comp = NULL;
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011071 xmlXPathFreeParserContext(ctxt);
Daniel Veillard81463942001-10-16 12:34:39 +000011072#ifndef LIBXML_THREAD_ENABLED
11073 reentance--;
11074#endif
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011075 return(res);
11076}
11077
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000011078/**
11079 * xmlXPathEvalExpr:
11080 * @ctxt: the XPath Parser context
11081 *
11082 * Parse and evaluate an XPath expression in the given context,
11083 * then push the result on the context stack
11084 */
11085void
11086xmlXPathEvalExpr(xmlXPathParserContextPtr ctxt) {
11087 xmlXPathCompileExpr(ctxt);
Aleksey Sanin50fe8b12002-05-07 16:21:36 +000011088 CHECK_ERROR;
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000011089 xmlXPathRunEval(ctxt);
11090}
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011091
11092/**
11093 * xmlXPathEval:
11094 * @str: the XPath expression
11095 * @ctx: the XPath context
11096 *
11097 * Evaluate the XPath Location Path in the given context.
11098 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +000011099 * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL.
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011100 * the caller has to free the object.
11101 */
11102xmlXPathObjectPtr
11103xmlXPathEval(const xmlChar *str, xmlXPathContextPtr ctx) {
11104 xmlXPathParserContextPtr ctxt;
11105 xmlXPathObjectPtr res, tmp, init = NULL;
11106 int stack = 0;
11107
11108 xmlXPathInit();
11109
11110 CHECK_CONTEXT(ctx)
11111
11112 ctxt = xmlXPathNewParserContext(str, ctx);
11113 xmlXPathEvalExpr(ctxt);
Daniel Veillard9e7160d2001-03-18 23:17:47 +000011114
11115 if (ctxt->value == NULL) {
11116 xmlGenericError(xmlGenericErrorContext,
11117 "xmlXPathEval: evaluation failed\n");
11118 res = NULL;
11119 } else if (*ctxt->cur != 0) {
11120 xmlXPatherror(ctxt, __FILE__, __LINE__, XPATH_EXPR_ERROR);
11121 res = NULL;
11122 } else {
11123 res = valuePop(ctxt);
11124 }
11125
11126 do {
11127 tmp = valuePop(ctxt);
11128 if (tmp != NULL) {
11129 if (tmp != init)
11130 stack++;
11131 xmlXPathFreeObject(tmp);
11132 }
11133 } while (tmp != NULL);
11134 if ((stack != 0) && (res != NULL)) {
11135 xmlGenericError(xmlGenericErrorContext,
11136 "xmlXPathEval: %d object left on the stack\n",
11137 stack);
11138 }
11139 if (ctxt->error != XPATH_EXPRESSION_OK) {
11140 xmlXPathFreeObject(res);
11141 res = NULL;
11142 }
11143
Owen Taylor3473f882001-02-23 17:55:21 +000011144 xmlXPathFreeParserContext(ctxt);
11145 return(res);
11146}
11147
11148/**
11149 * xmlXPathEvalExpression:
11150 * @str: the XPath expression
11151 * @ctxt: the XPath context
11152 *
11153 * Evaluate the XPath expression in the given context.
11154 *
11155 * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL.
11156 * the caller has to free the object.
11157 */
11158xmlXPathObjectPtr
11159xmlXPathEvalExpression(const xmlChar *str, xmlXPathContextPtr ctxt) {
11160 xmlXPathParserContextPtr pctxt;
11161 xmlXPathObjectPtr res, tmp;
11162 int stack = 0;
11163
11164 xmlXPathInit();
11165
11166 CHECK_CONTEXT(ctxt)
11167
11168 pctxt = xmlXPathNewParserContext(str, ctxt);
11169 xmlXPathEvalExpr(pctxt);
Owen Taylor3473f882001-02-23 17:55:21 +000011170
11171 if (*pctxt->cur != 0) {
11172 xmlXPatherror(pctxt, __FILE__, __LINE__, XPATH_EXPR_ERROR);
11173 res = NULL;
11174 } else {
11175 res = valuePop(pctxt);
11176 }
11177 do {
11178 tmp = valuePop(pctxt);
11179 if (tmp != NULL) {
11180 xmlXPathFreeObject(tmp);
11181 stack++;
11182 }
11183 } while (tmp != NULL);
11184 if ((stack != 0) && (res != NULL)) {
11185 xmlGenericError(xmlGenericErrorContext,
11186 "xmlXPathEvalExpression: %d object left on the stack\n",
11187 stack);
11188 }
11189 xmlXPathFreeParserContext(pctxt);
11190 return(res);
11191}
11192
Daniel Veillard42766c02002-08-22 20:52:17 +000011193/************************************************************************
11194 * *
11195 * Extra functions not pertaining to the XPath spec *
11196 * *
11197 ************************************************************************/
11198/**
11199 * xmlXPathEscapeUriFunction:
11200 * @ctxt: the XPath Parser context
11201 * @nargs: the number of arguments
11202 *
11203 * Implement the escape-uri() XPath function
11204 * string escape-uri(string $str, bool $escape-reserved)
11205 *
11206 * This function applies the URI escaping rules defined in section 2 of [RFC
11207 * 2396] to the string supplied as $uri-part, which typically represents all
11208 * or part of a URI. The effect of the function is to replace any special
11209 * character in the string by an escape sequence of the form %xx%yy...,
11210 * where xxyy... is the hexadecimal representation of the octets used to
11211 * represent the character in UTF-8.
11212 *
11213 * The set of characters that are escaped depends on the setting of the
11214 * boolean argument $escape-reserved.
11215 *
11216 * If $escape-reserved is true, all characters are escaped other than lower
11217 * case letters a-z, upper case letters A-Z, digits 0-9, and the characters
11218 * referred to in [RFC 2396] as "marks": specifically, "-" | "_" | "." | "!"
11219 * | "~" | "*" | "'" | "(" | ")". The "%" character itself is escaped only
11220 * if it is not followed by two hexadecimal digits (that is, 0-9, a-f, and
11221 * A-F).
11222 *
11223 * If $escape-reserved is false, the behavior differs in that characters
11224 * referred to in [RFC 2396] as reserved characters are not escaped. These
11225 * characters are ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ",".
11226 *
11227 * [RFC 2396] does not define whether escaped URIs should use lower case or
11228 * upper case for hexadecimal digits. To ensure that escaped URIs can be
11229 * compared using string comparison functions, this function must always use
11230 * the upper-case letters A-F.
11231 *
11232 * Generally, $escape-reserved should be set to true when escaping a string
11233 * that is to form a single part of a URI, and to false when escaping an
11234 * entire URI or URI reference.
11235 *
11236 * In the case of non-ascii characters, the string is encoded according to
11237 * utf-8 and then converted according to RFC 2396.
11238 *
11239 * Examples
11240 * xf:escape-uri ("gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles#ocean"), true())
11241 * returns "gopher%3A%2F%2Fspinaltap.micro.umn.edu%2F00%2FWeather%2FCalifornia%2FLos%20Angeles%23ocean"
11242 * xf:escape-uri ("gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles#ocean"), false())
11243 * returns "gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles%23ocean"
11244 *
11245 */
Daniel Veillard118aed72002-09-24 14:13:13 +000011246static void
Daniel Veillard42766c02002-08-22 20:52:17 +000011247xmlXPathEscapeUriFunction(xmlXPathParserContextPtr ctxt, int nargs) {
11248 xmlXPathObjectPtr str;
11249 int escape_reserved;
11250 xmlBufferPtr target;
11251 xmlChar *cptr;
11252 xmlChar escape[4];
11253
11254 CHECK_ARITY(2);
11255
11256 escape_reserved = xmlXPathPopBoolean(ctxt);
11257
11258 CAST_TO_STRING;
11259 str = valuePop(ctxt);
11260
11261 target = xmlBufferCreate();
11262
11263 escape[0] = '%';
11264 escape[3] = 0;
11265
11266 if (target) {
11267 for (cptr = str->stringval; *cptr; cptr++) {
11268 if ((*cptr >= 'A' && *cptr <= 'Z') ||
11269 (*cptr >= 'a' && *cptr <= 'z') ||
11270 (*cptr >= '0' && *cptr <= '9') ||
11271 *cptr == '-' || *cptr == '_' || *cptr == '.' ||
11272 *cptr == '!' || *cptr == '~' || *cptr == '*' ||
11273 *cptr == '\''|| *cptr == '(' || *cptr == ')' ||
11274 (*cptr == '%' &&
11275 ((cptr[1] >= 'A' && cptr[1] <= 'F') ||
11276 (cptr[1] >= 'a' && cptr[1] <= 'f') ||
11277 (cptr[1] >= '0' && cptr[1] <= '9')) &&
11278 ((cptr[2] >= 'A' && cptr[2] <= 'F') ||
11279 (cptr[2] >= 'a' && cptr[2] <= 'f') ||
11280 (cptr[2] >= '0' && cptr[2] <= '9'))) ||
11281 (!escape_reserved &&
11282 (*cptr == ';' || *cptr == '/' || *cptr == '?' ||
11283 *cptr == ':' || *cptr == '@' || *cptr == '&' ||
11284 *cptr == '=' || *cptr == '+' || *cptr == '$' ||
11285 *cptr == ','))) {
11286 xmlBufferAdd(target, cptr, 1);
11287 } else {
11288 if ((*cptr >> 4) < 10)
11289 escape[1] = '0' + (*cptr >> 4);
11290 else
11291 escape[1] = 'A' - 10 + (*cptr >> 4);
11292 if ((*cptr & 0xF) < 10)
11293 escape[2] = '0' + (*cptr & 0xF);
11294 else
11295 escape[2] = 'A' - 10 + (*cptr & 0xF);
11296
11297 xmlBufferAdd(target, &escape[0], 3);
11298 }
11299 }
11300 }
11301 valuePush(ctxt, xmlXPathNewString(xmlBufferContent(target)));
11302 xmlBufferFree(target);
11303 xmlXPathFreeObject(str);
11304}
11305
Owen Taylor3473f882001-02-23 17:55:21 +000011306/**
11307 * xmlXPathRegisterAllFunctions:
11308 * @ctxt: the XPath context
11309 *
11310 * Registers all default XPath functions in this context
11311 */
11312void
11313xmlXPathRegisterAllFunctions(xmlXPathContextPtr ctxt)
11314{
11315 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"boolean",
11316 xmlXPathBooleanFunction);
11317 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"ceiling",
11318 xmlXPathCeilingFunction);
11319 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"count",
11320 xmlXPathCountFunction);
11321 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"concat",
11322 xmlXPathConcatFunction);
11323 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"contains",
11324 xmlXPathContainsFunction);
11325 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"id",
11326 xmlXPathIdFunction);
11327 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"false",
11328 xmlXPathFalseFunction);
11329 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"floor",
11330 xmlXPathFloorFunction);
11331 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"last",
11332 xmlXPathLastFunction);
11333 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"lang",
11334 xmlXPathLangFunction);
11335 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"local-name",
11336 xmlXPathLocalNameFunction);
11337 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"not",
11338 xmlXPathNotFunction);
11339 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"name",
11340 xmlXPathNameFunction);
11341 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"namespace-uri",
11342 xmlXPathNamespaceURIFunction);
11343 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"normalize-space",
11344 xmlXPathNormalizeFunction);
11345 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"number",
11346 xmlXPathNumberFunction);
11347 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"position",
11348 xmlXPathPositionFunction);
11349 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"round",
11350 xmlXPathRoundFunction);
11351 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"string",
11352 xmlXPathStringFunction);
11353 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"string-length",
11354 xmlXPathStringLengthFunction);
11355 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"starts-with",
11356 xmlXPathStartsWithFunction);
11357 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"substring",
11358 xmlXPathSubstringFunction);
11359 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"substring-before",
11360 xmlXPathSubstringBeforeFunction);
11361 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"substring-after",
11362 xmlXPathSubstringAfterFunction);
11363 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"sum",
11364 xmlXPathSumFunction);
11365 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"true",
11366 xmlXPathTrueFunction);
11367 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"translate",
11368 xmlXPathTranslateFunction);
Daniel Veillard42766c02002-08-22 20:52:17 +000011369
11370 xmlXPathRegisterFuncNS(ctxt, (const xmlChar *)"escape-uri",
11371 (const xmlChar *)"http://www.w3.org/2002/08/xquery-functions",
11372 xmlXPathEscapeUriFunction);
Owen Taylor3473f882001-02-23 17:55:21 +000011373}
11374
11375#endif /* LIBXML_XPATH_ENABLED */