2 * xpointer.c : Code to handle XML Pointer
4 * Base implementation was made accordingly to
5 * W3C Candidate Recommendation 7 June 2000
6 * http://www.w3.org/TR/2000/CR-xptr-20000607
8 * Added support for the element() scheme described in:
9 * W3C Proposed Recommendation 13 November 2002
10 * http://www.w3.org/TR/2002/PR-xptr-element-20021113/
12 * See Copyright for the status of this software.
21 * TODO: better handling of error cases, the full expression should
22 * be parsed beforehand instead of a progressive evaluation
23 * TODO: Access into entities references are not supported now ...
24 * need a start to be able to pop out of entities refs since
25 * parent is the endity declaration, not the ref.
29 #include <libxml/xpointer.h>
30 #include <libxml/xmlmemory.h>
31 #include <libxml/parserInternals.h>
32 #include <libxml/uri.h>
33 #include <libxml/xpath.h>
34 #include <libxml/xpathInternals.h>
35 #include <libxml/xmlerror.h>
36 #include <libxml/globals.h>
38 #ifdef LIBXML_XPTR_ENABLED
40 /* Add support of the xmlns() xpointer scheme to initialize the namespaces */
41 #define XPTR_XMLNS_SCHEME
43 /* #define DEBUG_RANGES */
45 #ifdef LIBXML_DEBUG_ENABLED
46 #include <libxml/debugXML.h>
51 xmlGenericError(xmlGenericErrorContext, \
52 "Unimplemented block at %s:%d\n", \
56 xmlGenericError(xmlGenericErrorContext, \
57 "Internal error at %s:%d\n", \
60 /************************************************************************
62 * Some factorized error routines *
64 ************************************************************************/
68 * @extra: extra informations
70 * Handle a redefinition of attribute error
73 xmlXPtrErrMemory(const char *extra
)
75 __xmlRaiseError(NULL
, NULL
, NULL
, NULL
, NULL
, XML_FROM_XPOINTER
,
76 XML_ERR_NO_MEMORY
, XML_ERR_ERROR
, NULL
, 0, extra
,
78 "Memory allocation failed : %s\n", extra
);
83 * @ctxt: an XPTR evaluation context
84 * @extra: extra informations
86 * Handle a redefinition of attribute error
89 xmlXPtrErr(xmlXPathParserContextPtr ctxt
, int error
,
90 const char * msg
, const xmlChar
*extra
)
94 if ((ctxt
== NULL
) || (ctxt
->context
== NULL
)) {
95 __xmlRaiseError(NULL
, NULL
, NULL
,
96 NULL
, NULL
, XML_FROM_XPOINTER
, error
,
97 XML_ERR_ERROR
, NULL
, 0,
98 (const char *) extra
, NULL
, NULL
, 0, 0,
102 ctxt
->context
->lastError
.domain
= XML_FROM_XPOINTER
;
103 ctxt
->context
->lastError
.code
= error
;
104 ctxt
->context
->lastError
.level
= XML_ERR_ERROR
;
105 ctxt
->context
->lastError
.str1
= (char *) xmlStrdup(ctxt
->base
);
106 ctxt
->context
->lastError
.int1
= ctxt
->cur
- ctxt
->base
;
107 ctxt
->context
->lastError
.node
= ctxt
->context
->debugNode
;
108 if (ctxt
->context
->error
!= NULL
) {
109 ctxt
->context
->error(ctxt
->context
->userData
,
110 &ctxt
->context
->lastError
);
112 __xmlRaiseError(NULL
, NULL
, NULL
,
113 NULL
, ctxt
->context
->debugNode
, XML_FROM_XPOINTER
,
114 error
, XML_ERR_ERROR
, NULL
, 0,
115 (const char *) extra
, (const char *) ctxt
->base
, NULL
,
116 ctxt
->cur
- ctxt
->base
, 0,
121 /************************************************************************
123 * A few helper functions for child sequences *
125 ************************************************************************/
126 /* xmlXPtrAdvanceNode is a private function, but used by xinclude.c */
127 xmlNodePtr
xmlXPtrAdvanceNode(xmlNodePtr cur
, int *level
);
132 * Returns the number of child for an element, -1 in case of error
135 xmlXPtrGetArity(xmlNodePtr cur
) {
137 if ((cur
== NULL
) || (cur
->type
== XML_NAMESPACE_DECL
))
140 for (i
= 0;cur
!= NULL
;cur
= cur
->next
) {
141 if ((cur
->type
== XML_ELEMENT_NODE
) ||
142 (cur
->type
== XML_DOCUMENT_NODE
) ||
143 (cur
->type
== XML_HTML_DOCUMENT_NODE
)) {
154 * Returns the index of the node in its parent children list, -1
158 xmlXPtrGetIndex(xmlNodePtr cur
) {
160 if ((cur
== NULL
) || (cur
->type
== XML_NAMESPACE_DECL
))
162 for (i
= 1;cur
!= NULL
;cur
= cur
->prev
) {
163 if ((cur
->type
== XML_ELEMENT_NODE
) ||
164 (cur
->type
== XML_DOCUMENT_NODE
) ||
165 (cur
->type
== XML_HTML_DOCUMENT_NODE
)) {
173 * xmlXPtrGetNthChild:
175 * @no: the child number
177 * Returns the @no'th element child of @cur or NULL
180 xmlXPtrGetNthChild(xmlNodePtr cur
, int no
) {
182 if ((cur
== NULL
) || (cur
->type
== XML_NAMESPACE_DECL
))
185 for (i
= 0;i
<= no
;cur
= cur
->next
) {
188 if ((cur
->type
== XML_ELEMENT_NODE
) ||
189 (cur
->type
== XML_DOCUMENT_NODE
) ||
190 (cur
->type
== XML_HTML_DOCUMENT_NODE
)) {
199 /************************************************************************
201 * Handling of XPointer specific types *
203 ************************************************************************/
207 * @node1: the first node
208 * @index1: the first index
209 * @node2: the second node
210 * @index2: the second index
212 * Compare two points w.r.t document order
214 * Returns -2 in case of error 1 if first point < second point, 0 if
215 * that's the same point, -1 otherwise
218 xmlXPtrCmpPoints(xmlNodePtr node1
, int index1
, xmlNodePtr node2
, int index2
) {
219 if ((node1
== NULL
) || (node2
== NULL
))
222 * a couple of optimizations which will avoid computations in most cases
224 if (node1
== node2
) {
231 return(xmlXPathCmpNodes(node1
, node2
));
236 * @node: the xmlNodePtr
237 * @indx: the indx within the node
239 * Create a new xmlXPathObjectPtr of type point
241 * Returns the newly created object.
243 static xmlXPathObjectPtr
244 xmlXPtrNewPoint(xmlNodePtr node
, int indx
) {
245 xmlXPathObjectPtr ret
;
252 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
254 xmlXPtrErrMemory("allocating point");
257 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
258 ret
->type
= XPATH_POINT
;
259 ret
->user
= (void *) node
;
265 * xmlXPtrRangeCheckOrder:
266 * @range: an object range
268 * Make sure the points in the range are in the right order
271 xmlXPtrRangeCheckOrder(xmlXPathObjectPtr range
) {
276 if (range
->type
!= XPATH_RANGE
)
278 if (range
->user2
== NULL
)
280 tmp
= xmlXPtrCmpPoints(range
->user
, range
->index
,
281 range
->user2
, range
->index2
);
284 range
->user
= range
->user2
;
287 range
->index
= range
->index2
;
293 * xmlXPtrRangesEqual:
294 * @range1: the first range
295 * @range2: the second range
299 * Returns 1 if equal, 0 otherwise
302 xmlXPtrRangesEqual(xmlXPathObjectPtr range1
, xmlXPathObjectPtr range2
) {
303 if (range1
== range2
)
305 if ((range1
== NULL
) || (range2
== NULL
))
307 if (range1
->type
!= range2
->type
)
309 if (range1
->type
!= XPATH_RANGE
)
311 if (range1
->user
!= range2
->user
)
313 if (range1
->index
!= range2
->index
)
315 if (range1
->user2
!= range2
->user2
)
317 if (range1
->index2
!= range2
->index2
)
324 * @start: the starting node
325 * @startindex: the start index
326 * @end: the ending point
327 * @endindex: the ending index
329 * Create a new xmlXPathObjectPtr of type range
331 * Returns the newly created object.
334 xmlXPtrNewRange(xmlNodePtr start
, int startindex
,
335 xmlNodePtr end
, int endindex
) {
336 xmlXPathObjectPtr ret
;
347 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
349 xmlXPtrErrMemory("allocating range");
352 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
353 ret
->type
= XPATH_RANGE
;
355 ret
->index
= startindex
;
357 ret
->index2
= endindex
;
358 xmlXPtrRangeCheckOrder(ret
);
363 * xmlXPtrNewRangePoints:
364 * @start: the starting point
365 * @end: the ending point
367 * Create a new xmlXPathObjectPtr of type range using 2 Points
369 * Returns the newly created object.
372 xmlXPtrNewRangePoints(xmlXPathObjectPtr start
, xmlXPathObjectPtr end
) {
373 xmlXPathObjectPtr ret
;
379 if (start
->type
!= XPATH_POINT
)
381 if (end
->type
!= XPATH_POINT
)
384 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
386 xmlXPtrErrMemory("allocating range");
389 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
390 ret
->type
= XPATH_RANGE
;
391 ret
->user
= start
->user
;
392 ret
->index
= start
->index
;
393 ret
->user2
= end
->user
;
394 ret
->index2
= end
->index
;
395 xmlXPtrRangeCheckOrder(ret
);
400 * xmlXPtrNewRangePointNode:
401 * @start: the starting point
402 * @end: the ending node
404 * Create a new xmlXPathObjectPtr of type range from a point to a node
406 * Returns the newly created object.
409 xmlXPtrNewRangePointNode(xmlXPathObjectPtr start
, xmlNodePtr end
) {
410 xmlXPathObjectPtr ret
;
416 if (start
->type
!= XPATH_POINT
)
419 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
421 xmlXPtrErrMemory("allocating range");
424 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
425 ret
->type
= XPATH_RANGE
;
426 ret
->user
= start
->user
;
427 ret
->index
= start
->index
;
430 xmlXPtrRangeCheckOrder(ret
);
435 * xmlXPtrNewRangeNodePoint:
436 * @start: the starting node
437 * @end: the ending point
439 * Create a new xmlXPathObjectPtr of type range from a node to a point
441 * Returns the newly created object.
444 xmlXPtrNewRangeNodePoint(xmlNodePtr start
, xmlXPathObjectPtr end
) {
445 xmlXPathObjectPtr ret
;
451 if (start
->type
!= XPATH_POINT
)
453 if (end
->type
!= XPATH_POINT
)
456 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
458 xmlXPtrErrMemory("allocating range");
461 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
462 ret
->type
= XPATH_RANGE
;
465 ret
->user2
= end
->user
;
466 ret
->index2
= end
->index
;
467 xmlXPtrRangeCheckOrder(ret
);
472 * xmlXPtrNewRangeNodes:
473 * @start: the starting node
474 * @end: the ending node
476 * Create a new xmlXPathObjectPtr of type range using 2 nodes
478 * Returns the newly created object.
481 xmlXPtrNewRangeNodes(xmlNodePtr start
, xmlNodePtr end
) {
482 xmlXPathObjectPtr ret
;
489 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
491 xmlXPtrErrMemory("allocating range");
494 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
495 ret
->type
= XPATH_RANGE
;
500 xmlXPtrRangeCheckOrder(ret
);
505 * xmlXPtrNewCollapsedRange:
506 * @start: the starting and ending node
508 * Create a new xmlXPathObjectPtr of type range using a single nodes
510 * Returns the newly created object.
513 xmlXPtrNewCollapsedRange(xmlNodePtr start
) {
514 xmlXPathObjectPtr ret
;
519 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
521 xmlXPtrErrMemory("allocating range");
524 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
525 ret
->type
= XPATH_RANGE
;
534 * xmlXPtrNewRangeNodeObject:
535 * @start: the starting node
536 * @end: the ending object
538 * Create a new xmlXPathObjectPtr of type range from a not to an object
540 * Returns the newly created object.
543 xmlXPtrNewRangeNodeObject(xmlNodePtr start
, xmlXPathObjectPtr end
) {
544 xmlXPathObjectPtr ret
;
558 if (end
->nodesetval
->nodeNr
<= 0)
566 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
568 xmlXPtrErrMemory("allocating range");
571 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
572 ret
->type
= XPATH_RANGE
;
577 ret
->user2
= end
->user
;
578 ret
->index2
= end
->index
;
581 ret
->user2
= end
->user2
;
582 ret
->index2
= end
->index2
;
584 case XPATH_NODESET
: {
585 ret
->user2
= end
->nodesetval
->nodeTab
[end
->nodesetval
->nodeNr
- 1];
593 xmlXPtrRangeCheckOrder(ret
);
597 #define XML_RANGESET_DEFAULT 10
600 * xmlXPtrLocationSetCreate:
601 * @val: an initial xmlXPathObjectPtr, or NULL
603 * Create a new xmlLocationSetPtr of type double and of value @val
605 * Returns the newly created object.
608 xmlXPtrLocationSetCreate(xmlXPathObjectPtr val
) {
609 xmlLocationSetPtr ret
;
611 ret
= (xmlLocationSetPtr
) xmlMalloc(sizeof(xmlLocationSet
));
613 xmlXPtrErrMemory("allocating locationset");
616 memset(ret
, 0 , (size_t) sizeof(xmlLocationSet
));
618 ret
->locTab
= (xmlXPathObjectPtr
*) xmlMalloc(XML_RANGESET_DEFAULT
*
619 sizeof(xmlXPathObjectPtr
));
620 if (ret
->locTab
== NULL
) {
621 xmlXPtrErrMemory("allocating locationset");
625 memset(ret
->locTab
, 0 ,
626 XML_RANGESET_DEFAULT
* (size_t) sizeof(xmlXPathObjectPtr
));
627 ret
->locMax
= XML_RANGESET_DEFAULT
;
628 ret
->locTab
[ret
->locNr
++] = val
;
634 * xmlXPtrLocationSetAdd:
635 * @cur: the initial range set
636 * @val: a new xmlXPathObjectPtr
638 * add a new xmlXPathObjectPtr to an existing LocationSet
639 * If the location already exist in the set @val is freed.
642 xmlXPtrLocationSetAdd(xmlLocationSetPtr cur
, xmlXPathObjectPtr val
) {
645 if ((cur
== NULL
) || (val
== NULL
)) return;
648 * check against doublons
650 for (i
= 0;i
< cur
->locNr
;i
++) {
651 if (xmlXPtrRangesEqual(cur
->locTab
[i
], val
)) {
652 xmlXPathFreeObject(val
);
658 * grow the locTab if needed
660 if (cur
->locMax
== 0) {
661 cur
->locTab
= (xmlXPathObjectPtr
*) xmlMalloc(XML_RANGESET_DEFAULT
*
662 sizeof(xmlXPathObjectPtr
));
663 if (cur
->locTab
== NULL
) {
664 xmlXPtrErrMemory("adding location to set");
667 memset(cur
->locTab
, 0 ,
668 XML_RANGESET_DEFAULT
* (size_t) sizeof(xmlXPathObjectPtr
));
669 cur
->locMax
= XML_RANGESET_DEFAULT
;
670 } else if (cur
->locNr
== cur
->locMax
) {
671 xmlXPathObjectPtr
*temp
;
674 temp
= (xmlXPathObjectPtr
*) xmlRealloc(cur
->locTab
, cur
->locMax
*
675 sizeof(xmlXPathObjectPtr
));
677 xmlXPtrErrMemory("adding location to set");
682 cur
->locTab
[cur
->locNr
++] = val
;
686 * xmlXPtrLocationSetMerge:
687 * @val1: the first LocationSet
688 * @val2: the second LocationSet
690 * Merges two rangesets, all ranges from @val2 are added to @val1
692 * Returns val1 once extended or NULL in case of error.
695 xmlXPtrLocationSetMerge(xmlLocationSetPtr val1
, xmlLocationSetPtr val2
) {
698 if (val1
== NULL
) return(NULL
);
699 if (val2
== NULL
) return(val1
);
702 * !!!!! this can be optimized a lot, knowing that both
703 * val1 and val2 already have unicity of their values.
706 for (i
= 0;i
< val2
->locNr
;i
++)
707 xmlXPtrLocationSetAdd(val1
, val2
->locTab
[i
]);
713 * xmlXPtrLocationSetDel:
714 * @cur: the initial range set
715 * @val: an xmlXPathObjectPtr
717 * Removes an xmlXPathObjectPtr from an existing LocationSet
720 xmlXPtrLocationSetDel(xmlLocationSetPtr cur
, xmlXPathObjectPtr val
) {
723 if (cur
== NULL
) return;
724 if (val
== NULL
) return;
727 * check against doublons
729 for (i
= 0;i
< cur
->locNr
;i
++)
730 if (cur
->locTab
[i
] == val
) break;
732 if (i
>= cur
->locNr
) {
734 xmlGenericError(xmlGenericErrorContext
,
735 "xmlXPtrLocationSetDel: Range wasn't found in RangeList\n");
740 for (;i
< cur
->locNr
;i
++)
741 cur
->locTab
[i
] = cur
->locTab
[i
+ 1];
742 cur
->locTab
[cur
->locNr
] = NULL
;
746 * xmlXPtrLocationSetRemove:
747 * @cur: the initial range set
748 * @val: the index to remove
750 * Removes an entry from an existing LocationSet list.
753 xmlXPtrLocationSetRemove(xmlLocationSetPtr cur
, int val
) {
754 if (cur
== NULL
) return;
755 if (val
>= cur
->locNr
) return;
757 for (;val
< cur
->locNr
;val
++)
758 cur
->locTab
[val
] = cur
->locTab
[val
+ 1];
759 cur
->locTab
[cur
->locNr
] = NULL
;
763 * xmlXPtrFreeLocationSet:
764 * @obj: the xmlLocationSetPtr to free
766 * Free the LocationSet compound (not the actual ranges !).
769 xmlXPtrFreeLocationSet(xmlLocationSetPtr obj
) {
772 if (obj
== NULL
) return;
773 if (obj
->locTab
!= NULL
) {
774 for (i
= 0;i
< obj
->locNr
; i
++) {
775 xmlXPathFreeObject(obj
->locTab
[i
]);
777 xmlFree(obj
->locTab
);
783 * xmlXPtrNewLocationSetNodes:
784 * @start: the start NodePtr value
785 * @end: the end NodePtr value or NULL
787 * Create a new xmlXPathObjectPtr of type LocationSet and initialize
788 * it with the single range made of the two nodes @start and @end
790 * Returns the newly created object.
793 xmlXPtrNewLocationSetNodes(xmlNodePtr start
, xmlNodePtr end
) {
794 xmlXPathObjectPtr ret
;
796 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
798 xmlXPtrErrMemory("allocating locationset");
801 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
802 ret
->type
= XPATH_LOCATIONSET
;
804 ret
->user
= xmlXPtrLocationSetCreate(xmlXPtrNewCollapsedRange(start
));
806 ret
->user
= xmlXPtrLocationSetCreate(xmlXPtrNewRangeNodes(start
,end
));
811 * xmlXPtrNewLocationSetNodeSet:
814 * Create a new xmlXPathObjectPtr of type LocationSet and initialize
815 * it with all the nodes from @set
817 * Returns the newly created object.
820 xmlXPtrNewLocationSetNodeSet(xmlNodeSetPtr set
) {
821 xmlXPathObjectPtr ret
;
823 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
825 xmlXPtrErrMemory("allocating locationset");
828 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
829 ret
->type
= XPATH_LOCATIONSET
;
832 xmlLocationSetPtr newset
;
834 newset
= xmlXPtrLocationSetCreate(NULL
);
838 for (i
= 0;i
< set
->nodeNr
;i
++)
839 xmlXPtrLocationSetAdd(newset
,
840 xmlXPtrNewCollapsedRange(set
->nodeTab
[i
]));
842 ret
->user
= (void *) newset
;
848 * xmlXPtrWrapLocationSet:
849 * @val: the LocationSet value
851 * Wrap the LocationSet @val in a new xmlXPathObjectPtr
853 * Returns the newly created object.
856 xmlXPtrWrapLocationSet(xmlLocationSetPtr val
) {
857 xmlXPathObjectPtr ret
;
859 ret
= (xmlXPathObjectPtr
) xmlMalloc(sizeof(xmlXPathObject
));
861 xmlXPtrErrMemory("allocating locationset");
864 memset(ret
, 0 , (size_t) sizeof(xmlXPathObject
));
865 ret
->type
= XPATH_LOCATIONSET
;
866 ret
->user
= (void *) val
;
870 /************************************************************************
874 ************************************************************************/
876 static void xmlXPtrEvalChildSeq(xmlXPathParserContextPtr ctxt
, xmlChar
*name
);
879 * Macros for accessing the content. Those should be used only by the parser,
882 * Dirty macros, i.e. one need to make assumption on the context to use them
884 * CUR_PTR return the current pointer to the xmlChar to be parsed.
885 * CUR returns the current xmlChar value, i.e. a 8 bit value
886 * in ISO-Latin or UTF-8.
887 * This should be used internally by the parser
888 * only to compare to ASCII values otherwise it would break when
889 * running with UTF-8 encoding.
890 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
891 * to compare on ASCII based substring.
892 * SKIP(n) Skip n xmlChar, and must also be used only to skip ASCII defined
893 * strings within the parser.
894 * CURRENT Returns the current char value, with the full decoding of
895 * UTF-8 if we are using this mode. It returns an int.
896 * NEXT Skip to the next character, this does the proper decoding
897 * in UTF-8 mode. It also pop-up unfinished entities on the fly.
898 * It returns the pointer to the current xmlChar.
901 #define CUR (*ctxt->cur)
902 #define SKIP(val) ctxt->cur += (val)
903 #define NXT(val) ctxt->cur[(val)]
904 #define CUR_PTR ctxt->cur
906 #define SKIP_BLANKS \
907 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
909 #define CURRENT (*ctxt->cur)
910 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
914 * @ctxt: the XPointer Parser context
915 * @index: the child number
917 * Move the current node of the nodeset on the stack to the
918 * given child if found
921 xmlXPtrGetChildNo(xmlXPathParserContextPtr ctxt
, int indx
) {
922 xmlNodePtr cur
= NULL
;
923 xmlXPathObjectPtr obj
;
924 xmlNodeSetPtr oldset
;
926 CHECK_TYPE(XPATH_NODESET
);
927 obj
= valuePop(ctxt
);
928 oldset
= obj
->nodesetval
;
929 if ((indx
<= 0) || (oldset
== NULL
) || (oldset
->nodeNr
!= 1)) {
930 xmlXPathFreeObject(obj
);
931 valuePush(ctxt
, xmlXPathNewNodeSet(NULL
));
934 cur
= xmlXPtrGetNthChild(oldset
->nodeTab
[0], indx
);
936 xmlXPathFreeObject(obj
);
937 valuePush(ctxt
, xmlXPathNewNodeSet(NULL
));
940 oldset
->nodeTab
[0] = cur
;
941 valuePush(ctxt
, obj
);
945 * xmlXPtrEvalXPtrPart:
946 * @ctxt: the XPointer Parser context
947 * @name: the preparsed Scheme for the XPtrPart
949 * XPtrPart ::= 'xpointer' '(' XPtrExpr ')'
950 * | Scheme '(' SchemeSpecificExpr ')'
952 * Scheme ::= NCName - 'xpointer' [VC: Non-XPointer schemes]
954 * SchemeSpecificExpr ::= StringWithBalancedParens
956 * StringWithBalancedParens ::=
957 * [^()]* ('(' StringWithBalancedParens ')' [^()]*)*
958 * [VC: Parenthesis escaping]
960 * XPtrExpr ::= Expr [VC: Parenthesis escaping]
962 * VC: Parenthesis escaping:
963 * The end of an XPointer part is signaled by the right parenthesis ")"
964 * character that is balanced with the left parenthesis "(" character
965 * that began the part. Any unbalanced parenthesis character inside the
966 * expression, even within literals, must be escaped with a circumflex (^)
967 * character preceding it. If the expression contains any literal
968 * occurrences of the circumflex, each must be escaped with an additional
969 * circumflex (that is, ^^). If the unescaped parentheses in the expression
970 * are not balanced, a syntax error results.
972 * Parse and evaluate an XPtrPart. Basically it generates the unescaped
973 * string and if the scheme is 'xpointer' it will call the XPath interpreter.
975 * TODO: there is no new scheme registration mechanism
979 xmlXPtrEvalXPtrPart(xmlXPathParserContextPtr ctxt
, xmlChar
*name
) {
980 xmlChar
*buffer
, *cur
;
985 name
= xmlXPathParseName(ctxt
);
987 XP_ERROR(XPATH_EXPR_ERROR
);
990 XP_ERROR(XPATH_EXPR_ERROR
);
994 len
= xmlStrlen(ctxt
->cur
);
996 buffer
= (xmlChar
*) xmlMallocAtomic(len
* sizeof (xmlChar
));
997 if (buffer
== NULL
) {
998 xmlXPtrErrMemory("allocating buffer");
1010 } else if (CUR
== '(') {
1012 } else if (CUR
== '^') {
1013 if ((NXT(1) == ')') || (NXT(1) == '(') || (NXT(1) == '^')) {
1022 if ((level
!= 0) && (CUR
== 0)) {
1024 XP_ERROR(XPTR_SYNTAX_ERROR
);
1027 if (xmlStrEqual(name
, (xmlChar
*) "xpointer")) {
1028 const xmlChar
*left
= CUR_PTR
;
1032 * To evaluate an xpointer scheme element (4.3) we need:
1033 * context initialized to the root
1034 * context position initalized to 1
1035 * context size initialized to 1
1037 ctxt
->context
->node
= (xmlNodePtr
)ctxt
->context
->doc
;
1038 ctxt
->context
->proximityPosition
= 1;
1039 ctxt
->context
->contextSize
= 1;
1040 xmlXPathEvalExpr(ctxt
);
1042 } else if (xmlStrEqual(name
, (xmlChar
*) "element")) {
1043 const xmlChar
*left
= CUR_PTR
;
1047 if (buffer
[0] == '/') {
1049 xmlXPtrEvalChildSeq(ctxt
, NULL
);
1051 name2
= xmlXPathParseName(ctxt
);
1052 if (name2
== NULL
) {
1055 XP_ERROR(XPATH_EXPR_ERROR
);
1057 xmlXPtrEvalChildSeq(ctxt
, name2
);
1060 #ifdef XPTR_XMLNS_SCHEME
1061 } else if (xmlStrEqual(name
, (xmlChar
*) "xmlns")) {
1062 const xmlChar
*left
= CUR_PTR
;
1068 prefix
= xmlXPathParseNCName(ctxt
);
1069 if (prefix
== NULL
) {
1072 XP_ERROR(XPTR_SYNTAX_ERROR
);
1079 XP_ERROR(XPTR_SYNTAX_ERROR
);
1083 /* @@ check escaping in the XPointer WD */
1085 value
= xmlParseURI((const char *)ctxt
->cur
);
1086 if (value
== NULL
) {
1090 XP_ERROR(XPTR_SYNTAX_ERROR
);
1092 URI
= xmlSaveUri(value
);
1098 XP_ERROR(XPATH_MEMORY_ERROR
);
1101 xmlXPathRegisterNs(ctxt
->context
, prefix
, URI
);
1105 #endif /* XPTR_XMLNS_SCHEME */
1107 xmlXPtrErr(ctxt
, XML_XPTR_UNKNOWN_SCHEME
,
1108 "unsupported scheme '%s'\n", name
);
1115 * xmlXPtrEvalFullXPtr:
1116 * @ctxt: the XPointer Parser context
1117 * @name: the preparsed Scheme for the first XPtrPart
1119 * FullXPtr ::= XPtrPart (S? XPtrPart)*
1121 * As the specs says:
1123 * When multiple XPtrParts are provided, they must be evaluated in
1124 * left-to-right order. If evaluation of one part fails, the nexti
1125 * is evaluated. The following conditions cause XPointer part failure:
1127 * - An unknown scheme
1128 * - A scheme that does not locate any sub-resource present in the resource
1129 * - A scheme that is not applicable to the media type of the resource
1131 * The XPointer application must consume a failed XPointer part and
1132 * attempt to evaluate the next one, if any. The result of the first
1133 * XPointer part whose evaluation succeeds is taken to be the fragment
1134 * located by the XPointer as a whole. If all the parts fail, the result
1135 * for the XPointer as a whole is a sub-resource error.
1138 * Parse and evaluate a Full XPtr i.e. possibly a cascade of XPath based
1139 * expressions or other schemes.
1142 xmlXPtrEvalFullXPtr(xmlXPathParserContextPtr ctxt
, xmlChar
*name
) {
1144 name
= xmlXPathParseName(ctxt
);
1146 XP_ERROR(XPATH_EXPR_ERROR
);
1147 while (name
!= NULL
) {
1148 ctxt
->error
= XPATH_EXPRESSION_OK
;
1149 xmlXPtrEvalXPtrPart(ctxt
, name
);
1151 /* in case of syntax error, break here */
1152 if ((ctxt
->error
!= XPATH_EXPRESSION_OK
) &&
1153 (ctxt
->error
!= XML_XPTR_UNKNOWN_SCHEME
))
1157 * If the returned value is a non-empty nodeset
1158 * or location set, return here.
1160 if (ctxt
->value
!= NULL
) {
1161 xmlXPathObjectPtr obj
= ctxt
->value
;
1163 switch (obj
->type
) {
1164 case XPATH_LOCATIONSET
: {
1165 xmlLocationSetPtr loc
= ctxt
->value
->user
;
1166 if ((loc
!= NULL
) && (loc
->locNr
> 0))
1170 case XPATH_NODESET
: {
1171 xmlNodeSetPtr loc
= ctxt
->value
->nodesetval
;
1172 if ((loc
!= NULL
) && (loc
->nodeNr
> 0))
1181 * Evaluating to improper values is equivalent to
1182 * a sub-resource error, clean-up the stack
1185 obj
= valuePop(ctxt
);
1187 xmlXPathFreeObject(obj
);
1189 } while (obj
!= NULL
);
1193 * Is there another XPointer part.
1196 name
= xmlXPathParseName(ctxt
);
1201 * xmlXPtrEvalChildSeq:
1202 * @ctxt: the XPointer Parser context
1203 * @name: a possible ID name of the child sequence
1205 * ChildSeq ::= '/1' ('/' [0-9]*)*
1206 * | Name ('/' [0-9]*)+
1208 * Parse and evaluate a Child Sequence. This routine also handle the
1209 * case of a Bare Name used to get a document ID.
1212 xmlXPtrEvalChildSeq(xmlXPathParserContextPtr ctxt
, xmlChar
*name
) {
1214 * XPointer don't allow by syntax to address in mutirooted trees
1215 * this might prove useful in some cases, warn about it.
1217 if ((name
== NULL
) && (CUR
== '/') && (NXT(1) != '1')) {
1218 xmlXPtrErr(ctxt
, XML_XPTR_CHILDSEQ_START
,
1219 "warning: ChildSeq not starting by /1\n", NULL
);
1223 valuePush(ctxt
, xmlXPathNewString(name
));
1225 xmlXPathIdFunction(ctxt
, 1);
1229 while (CUR
== '/') {
1233 while ((CUR
>= '0') && (CUR
<= '9')) {
1234 child
= child
* 10 + (CUR
- '0');
1237 xmlXPtrGetChildNo(ctxt
, child
);
1243 * xmlXPtrEvalXPointer:
1244 * @ctxt: the XPointer Parser context
1250 * Parse and evaluate an XPointer
1253 xmlXPtrEvalXPointer(xmlXPathParserContextPtr ctxt
) {
1254 if (ctxt
->valueTab
== NULL
) {
1255 /* Allocate the value stack */
1256 ctxt
->valueTab
= (xmlXPathObjectPtr
*)
1257 xmlMalloc(10 * sizeof(xmlXPathObjectPtr
));
1258 if (ctxt
->valueTab
== NULL
) {
1259 xmlXPtrErrMemory("allocating evaluation context");
1263 ctxt
->valueMax
= 10;
1265 ctxt
->valueFrame
= 0;
1270 xmlXPtrEvalChildSeq(ctxt
, NULL
);
1274 name
= xmlXPathParseName(ctxt
);
1276 XP_ERROR(XPATH_EXPR_ERROR
);
1278 xmlXPtrEvalFullXPtr(ctxt
, name
);
1279 /* Short evaluation */
1282 /* this handle both Bare Names and Child Sequences */
1283 xmlXPtrEvalChildSeq(ctxt
, name
);
1288 XP_ERROR(XPATH_EXPR_ERROR
);
1292 /************************************************************************
1294 * General routines *
1296 ************************************************************************/
1299 void xmlXPtrStringRangeFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1301 void xmlXPtrStartPointFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1303 void xmlXPtrEndPointFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1305 void xmlXPtrHereFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1307 void xmlXPtrOriginFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1309 void xmlXPtrRangeInsideFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1311 void xmlXPtrRangeFunction(xmlXPathParserContextPtr ctxt
, int nargs
);
1314 * xmlXPtrNewContext:
1315 * @doc: the XML document
1316 * @here: the node that directly contains the XPointer being evaluated or NULL
1317 * @origin: the element from which a user or program initiated traversal of
1318 * the link, or NULL.
1320 * Create a new XPointer context
1322 * Returns the xmlXPathContext just allocated.
1325 xmlXPtrNewContext(xmlDocPtr doc
, xmlNodePtr here
, xmlNodePtr origin
) {
1326 xmlXPathContextPtr ret
;
1328 ret
= xmlXPathNewContext(doc
);
1333 ret
->origin
= origin
;
1335 xmlXPathRegisterFunc(ret
, (xmlChar
*)"range-to",
1336 xmlXPtrRangeToFunction
);
1337 xmlXPathRegisterFunc(ret
, (xmlChar
*)"range",
1338 xmlXPtrRangeFunction
);
1339 xmlXPathRegisterFunc(ret
, (xmlChar
*)"range-inside",
1340 xmlXPtrRangeInsideFunction
);
1341 xmlXPathRegisterFunc(ret
, (xmlChar
*)"string-range",
1342 xmlXPtrStringRangeFunction
);
1343 xmlXPathRegisterFunc(ret
, (xmlChar
*)"start-point",
1344 xmlXPtrStartPointFunction
);
1345 xmlXPathRegisterFunc(ret
, (xmlChar
*)"end-point",
1346 xmlXPtrEndPointFunction
);
1347 xmlXPathRegisterFunc(ret
, (xmlChar
*)"here",
1348 xmlXPtrHereFunction
);
1349 xmlXPathRegisterFunc(ret
, (xmlChar
*)" origin",
1350 xmlXPtrOriginFunction
);
1357 * @str: the XPointer expression
1358 * @ctx: the XPointer context
1360 * Evaluate the XPath Location Path in the given context.
1362 * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL.
1363 * the caller has to free the object.
1366 xmlXPtrEval(const xmlChar
*str
, xmlXPathContextPtr ctx
) {
1367 xmlXPathParserContextPtr ctxt
;
1368 xmlXPathObjectPtr res
= NULL
, tmp
;
1369 xmlXPathObjectPtr init
= NULL
;
1374 if ((ctx
== NULL
) || (str
== NULL
))
1377 ctxt
= xmlXPathNewParserContext(str
, ctx
);
1381 xmlXPtrEvalXPointer(ctxt
);
1383 if ((ctxt
->value
!= NULL
) &&
1384 (ctxt
->value
->type
!= XPATH_NODESET
) &&
1385 (ctxt
->value
->type
!= XPATH_LOCATIONSET
)) {
1386 xmlXPtrErr(ctxt
, XML_XPTR_EVAL_FAILED
,
1387 "xmlXPtrEval: evaluation failed to return a node set\n",
1390 res
= valuePop(ctxt
);
1394 tmp
= valuePop(ctxt
);
1397 if (tmp
->type
== XPATH_NODESET
) {
1399 * Evaluation may push a root nodeset which is unused
1402 set
= tmp
->nodesetval
;
1403 if ((set
->nodeNr
!= 1) ||
1404 (set
->nodeTab
[0] != (xmlNodePtr
) ctx
->doc
))
1409 xmlXPathFreeObject(tmp
);
1411 } while (tmp
!= NULL
);
1413 xmlXPtrErr(ctxt
, XML_XPTR_EXTRA_OBJECTS
,
1414 "xmlXPtrEval: object(s) left on the eval stack\n",
1417 if (ctxt
->error
!= XPATH_EXPRESSION_OK
) {
1418 xmlXPathFreeObject(res
);
1422 xmlXPathFreeParserContext(ctxt
);
1427 * xmlXPtrBuildRangeNodeList:
1428 * @range: a range object
1430 * Build a node list tree copy of the range
1432 * Returns an xmlNodePtr list or NULL.
1433 * the caller has to free the node tree.
1436 xmlXPtrBuildRangeNodeList(xmlXPathObjectPtr range
) {
1437 /* pointers to generated nodes */
1438 xmlNodePtr list
= NULL
, last
= NULL
, parent
= NULL
, tmp
;
1439 /* pointers to traversal nodes */
1440 xmlNodePtr start
, cur
, end
;
1445 if (range
->type
!= XPATH_RANGE
)
1447 start
= (xmlNodePtr
) range
->user
;
1449 if ((start
== NULL
) || (start
->type
== XML_NAMESPACE_DECL
))
1453 return(xmlCopyNode(start
, 1));
1454 if (end
->type
== XML_NAMESPACE_DECL
)
1458 index1
= range
->index
;
1459 index2
= range
->index2
;
1460 while (cur
!= NULL
) {
1462 if (cur
->type
== XML_TEXT_NODE
) {
1463 const xmlChar
*content
= cur
->content
;
1466 if (content
== NULL
) {
1467 tmp
= xmlNewTextLen(NULL
, 0);
1470 if ((cur
== start
) && (index1
> 1)) {
1471 content
+= (index1
- 1);
1472 len
-= (index1
- 1);
1477 tmp
= xmlNewTextLen(content
, len
);
1479 /* single sub text node selection */
1482 /* prune and return full set */
1484 xmlAddNextSibling(last
, tmp
);
1486 xmlAddChild(parent
, tmp
);
1489 tmp
= xmlCopyNode(cur
, 0);
1494 xmlAddNextSibling(last
, tmp
);
1496 xmlAddChild(parent
, tmp
);
1502 end
= xmlXPtrGetNthChild(cur
, index2
- 1);
1505 if ((cur
== start
) && (index1
> 1)) {
1506 cur
= xmlXPtrGetNthChild(cur
, index1
- 1);
1509 cur
= cur
->children
;
1512 * Now gather the remaining nodes from cur to end
1514 continue; /* while */
1516 } else if ((cur
== start
) &&
1517 (list
== NULL
) /* looks superfluous but ... */ ) {
1518 if ((cur
->type
== XML_TEXT_NODE
) ||
1519 (cur
->type
== XML_CDATA_SECTION_NODE
)) {
1520 const xmlChar
*content
= cur
->content
;
1522 if (content
== NULL
) {
1523 tmp
= xmlNewTextLen(NULL
, 0);
1526 content
+= (index1
- 1);
1528 tmp
= xmlNewText(content
);
1532 if ((cur
== start
) && (index1
> 1)) {
1533 tmp
= xmlCopyNode(cur
, 0);
1537 cur
= xmlXPtrGetNthChild(cur
, index1
- 1);
1540 * Now gather the remaining nodes from cur to end
1542 continue; /* while */
1544 tmp
= xmlCopyNode(cur
, 1);
1551 switch (cur
->type
) {
1553 case XML_ELEMENT_DECL
:
1554 case XML_ATTRIBUTE_DECL
:
1555 case XML_ENTITY_NODE
:
1556 /* Do not copy DTD informations */
1558 case XML_ENTITY_DECL
:
1559 TODO
/* handle crossing entities -> stack needed */
1561 case XML_XINCLUDE_START
:
1562 case XML_XINCLUDE_END
:
1563 /* don't consider it part of the tree content */
1565 case XML_ATTRIBUTE_NODE
:
1566 /* Humm, should not happen ! */
1570 tmp
= xmlCopyNode(cur
, 1);
1574 if ((list
== NULL
) || ((last
== NULL
) && (parent
== NULL
))) {
1579 xmlAddNextSibling(last
, tmp
);
1581 xmlAddChild(parent
, tmp
);
1587 * Skip to next node in document order
1589 if ((list
== NULL
) || ((last
== NULL
) && (parent
== NULL
))) {
1593 cur
= xmlXPtrAdvanceNode(cur
, NULL
);
1599 * xmlXPtrBuildNodeList:
1600 * @obj: the XPointer result from the evaluation.
1602 * Build a node list tree copy of the XPointer result.
1603 * This will drop Attributes and Namespace declarations.
1605 * Returns an xmlNodePtr list or NULL.
1606 * the caller has to free the node tree.
1609 xmlXPtrBuildNodeList(xmlXPathObjectPtr obj
) {
1610 xmlNodePtr list
= NULL
, last
= NULL
;
1615 switch (obj
->type
) {
1616 case XPATH_NODESET
: {
1617 xmlNodeSetPtr set
= obj
->nodesetval
;
1620 for (i
= 0;i
< set
->nodeNr
;i
++) {
1621 if (set
->nodeTab
[i
] == NULL
)
1623 switch (set
->nodeTab
[i
]->type
) {
1625 case XML_CDATA_SECTION_NODE
:
1626 case XML_ELEMENT_NODE
:
1627 case XML_ENTITY_REF_NODE
:
1628 case XML_ENTITY_NODE
:
1630 case XML_COMMENT_NODE
:
1631 case XML_DOCUMENT_NODE
:
1632 case XML_HTML_DOCUMENT_NODE
:
1633 #ifdef LIBXML_DOCB_ENABLED
1634 case XML_DOCB_DOCUMENT_NODE
:
1636 case XML_XINCLUDE_START
:
1637 case XML_XINCLUDE_END
:
1639 case XML_ATTRIBUTE_NODE
:
1640 case XML_NAMESPACE_DECL
:
1641 case XML_DOCUMENT_TYPE_NODE
:
1642 case XML_DOCUMENT_FRAG_NODE
:
1643 case XML_NOTATION_NODE
:
1645 case XML_ELEMENT_DECL
:
1646 case XML_ATTRIBUTE_DECL
:
1647 case XML_ENTITY_DECL
:
1651 list
= last
= xmlCopyNode(set
->nodeTab
[i
], 1);
1653 xmlAddNextSibling(last
, xmlCopyNode(set
->nodeTab
[i
], 1));
1654 if (last
->next
!= NULL
)
1660 case XPATH_LOCATIONSET
: {
1661 xmlLocationSetPtr set
= (xmlLocationSetPtr
) obj
->user
;
1664 for (i
= 0;i
< set
->locNr
;i
++) {
1666 list
= last
= xmlXPtrBuildNodeList(set
->locTab
[i
]);
1668 xmlAddNextSibling(last
,
1669 xmlXPtrBuildNodeList(set
->locTab
[i
]));
1671 while (last
->next
!= NULL
)
1678 return(xmlXPtrBuildRangeNodeList(obj
));
1680 return(xmlCopyNode(obj
->user
, 0));
1687 /************************************************************************
1689 * XPointer functions *
1691 ************************************************************************/
1694 * xmlXPtrNbLocChildren:
1695 * @node: an xmlNodePtr
1697 * Count the number of location children of @node or the length of the
1698 * string value in case of text/PI/Comments nodes
1700 * Returns the number of location children
1703 xmlXPtrNbLocChildren(xmlNodePtr node
) {
1707 switch (node
->type
) {
1708 case XML_HTML_DOCUMENT_NODE
:
1709 case XML_DOCUMENT_NODE
:
1710 case XML_ELEMENT_NODE
:
1711 node
= node
->children
;
1712 while (node
!= NULL
) {
1713 if (node
->type
== XML_ELEMENT_NODE
)
1718 case XML_ATTRIBUTE_NODE
:
1722 case XML_COMMENT_NODE
:
1724 case XML_CDATA_SECTION_NODE
:
1725 case XML_ENTITY_REF_NODE
:
1726 ret
= xmlStrlen(node
->content
);
1735 * xmlXPtrHereFunction:
1736 * @ctxt: the XPointer Parser context
1737 * @nargs: the number of args
1739 * Function implementing here() operation
1740 * as described in 5.4.3
1743 xmlXPtrHereFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
1746 if (ctxt
->context
->here
== NULL
)
1747 XP_ERROR(XPTR_SYNTAX_ERROR
);
1749 valuePush(ctxt
, xmlXPtrNewLocationSetNodes(ctxt
->context
->here
, NULL
));
1753 * xmlXPtrOriginFunction:
1754 * @ctxt: the XPointer Parser context
1755 * @nargs: the number of args
1757 * Function implementing origin() operation
1758 * as described in 5.4.3
1761 xmlXPtrOriginFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
1764 if (ctxt
->context
->origin
== NULL
)
1765 XP_ERROR(XPTR_SYNTAX_ERROR
);
1767 valuePush(ctxt
, xmlXPtrNewLocationSetNodes(ctxt
->context
->origin
, NULL
));
1771 * xmlXPtrStartPointFunction:
1772 * @ctxt: the XPointer Parser context
1773 * @nargs: the number of args
1775 * Function implementing start-point() operation
1776 * as described in 5.4.3
1778 * location-set start-point(location-set)
1780 * For each location x in the argument location-set, start-point adds a
1781 * location of type point to the result location-set. That point represents
1782 * the start point of location x and is determined by the following rules:
1784 * - If x is of type point, the start point is x.
1785 * - If x is of type range, the start point is the start point of x.
1786 * - If x is of type root, element, text, comment, or processing instruction,
1787 * - the container node of the start point is x and the index is 0.
1788 * - If x is of type attribute or namespace, the function must signal a
1794 xmlXPtrStartPointFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
1795 xmlXPathObjectPtr tmp
, obj
, point
;
1796 xmlLocationSetPtr newset
= NULL
;
1797 xmlLocationSetPtr oldset
= NULL
;
1800 if ((ctxt
->value
== NULL
) ||
1801 ((ctxt
->value
->type
!= XPATH_LOCATIONSET
) &&
1802 (ctxt
->value
->type
!= XPATH_NODESET
)))
1803 XP_ERROR(XPATH_INVALID_TYPE
)
1805 obj
= valuePop(ctxt
);
1806 if (obj
->type
== XPATH_NODESET
) {
1808 * First convert to a location set
1810 tmp
= xmlXPtrNewLocationSetNodeSet(obj
->nodesetval
);
1811 xmlXPathFreeObject(obj
);
1813 XP_ERROR(XPATH_MEMORY_ERROR
)
1817 newset
= xmlXPtrLocationSetCreate(NULL
);
1818 if (newset
== NULL
) {
1819 xmlXPathFreeObject(obj
);
1820 XP_ERROR(XPATH_MEMORY_ERROR
);
1822 oldset
= (xmlLocationSetPtr
) obj
->user
;
1823 if (oldset
!= NULL
) {
1826 for (i
= 0; i
< oldset
->locNr
; i
++) {
1827 tmp
= oldset
->locTab
[i
];
1831 switch (tmp
->type
) {
1833 point
= xmlXPtrNewPoint(tmp
->user
, tmp
->index
);
1836 xmlNodePtr node
= tmp
->user
;
1838 if (node
->type
== XML_ATTRIBUTE_NODE
) {
1839 /* TODO: Namespace Nodes ??? */
1840 xmlXPathFreeObject(obj
);
1841 xmlXPtrFreeLocationSet(newset
);
1842 XP_ERROR(XPTR_SYNTAX_ERROR
);
1844 point
= xmlXPtrNewPoint(node
, tmp
->index
);
1849 /*** Should we raise an error ?
1850 xmlXPathFreeObject(obj);
1851 xmlXPathFreeObject(newset);
1852 XP_ERROR(XPATH_INVALID_TYPE)
1857 xmlXPtrLocationSetAdd(newset
, point
);
1860 xmlXPathFreeObject(obj
);
1861 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
1865 * xmlXPtrEndPointFunction:
1866 * @ctxt: the XPointer Parser context
1867 * @nargs: the number of args
1869 * Function implementing end-point() operation
1870 * as described in 5.4.3
1871 * ----------------------------
1872 * location-set end-point(location-set)
1874 * For each location x in the argument location-set, end-point adds a
1875 * location of type point to the result location-set. That point represents
1876 * the end point of location x and is determined by the following rules:
1878 * - If x is of type point, the resulting point is x.
1879 * - If x is of type range, the resulting point is the end point of x.
1880 * - If x is of type root or element, the container node of the resulting
1881 * point is x and the index is the number of location children of x.
1882 * - If x is of type text, comment, or processing instruction, the container
1883 * node of the resulting point is x and the index is the length of the
1884 * string-value of x.
1885 * - If x is of type attribute or namespace, the function must signal a
1887 * ----------------------------
1890 xmlXPtrEndPointFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
1891 xmlXPathObjectPtr tmp
, obj
, point
;
1892 xmlLocationSetPtr newset
= NULL
;
1893 xmlLocationSetPtr oldset
= NULL
;
1896 if ((ctxt
->value
== NULL
) ||
1897 ((ctxt
->value
->type
!= XPATH_LOCATIONSET
) &&
1898 (ctxt
->value
->type
!= XPATH_NODESET
)))
1899 XP_ERROR(XPATH_INVALID_TYPE
)
1901 obj
= valuePop(ctxt
);
1902 if (obj
->type
== XPATH_NODESET
) {
1904 * First convert to a location set
1906 tmp
= xmlXPtrNewLocationSetNodeSet(obj
->nodesetval
);
1907 xmlXPathFreeObject(obj
);
1909 XP_ERROR(XPATH_MEMORY_ERROR
)
1913 newset
= xmlXPtrLocationSetCreate(NULL
);
1914 if (newset
== NULL
) {
1915 xmlXPathFreeObject(obj
);
1916 XP_ERROR(XPATH_MEMORY_ERROR
);
1918 oldset
= (xmlLocationSetPtr
) obj
->user
;
1919 if (oldset
!= NULL
) {
1922 for (i
= 0; i
< oldset
->locNr
; i
++) {
1923 tmp
= oldset
->locTab
[i
];
1927 switch (tmp
->type
) {
1929 point
= xmlXPtrNewPoint(tmp
->user
, tmp
->index
);
1932 xmlNodePtr node
= tmp
->user2
;
1934 if (node
->type
== XML_ATTRIBUTE_NODE
) {
1935 /* TODO: Namespace Nodes ??? */
1936 xmlXPathFreeObject(obj
);
1937 xmlXPtrFreeLocationSet(newset
);
1938 XP_ERROR(XPTR_SYNTAX_ERROR
);
1940 point
= xmlXPtrNewPoint(node
, tmp
->index2
);
1941 } else if (tmp
->user
== NULL
) {
1942 point
= xmlXPtrNewPoint(node
,
1943 xmlXPtrNbLocChildren(node
));
1948 /*** Should we raise an error ?
1949 xmlXPathFreeObject(obj);
1950 xmlXPathFreeObject(newset);
1951 XP_ERROR(XPATH_INVALID_TYPE)
1956 xmlXPtrLocationSetAdd(newset
, point
);
1959 xmlXPathFreeObject(obj
);
1960 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
1965 * xmlXPtrCoveringRange:
1966 * @ctxt: the XPointer Parser context
1967 * @loc: the location for which the covering range must be computed
1969 * A covering range is a range that wholly encompasses a location
1970 * Section 5.3.3. Covering Ranges for All Location Types
1971 * http://www.w3.org/TR/xptr#N2267
1973 * Returns a new location or NULL in case of error
1975 static xmlXPathObjectPtr
1976 xmlXPtrCoveringRange(xmlXPathParserContextPtr ctxt
, xmlXPathObjectPtr loc
) {
1979 if ((ctxt
== NULL
) || (ctxt
->context
== NULL
) ||
1980 (ctxt
->context
->doc
== NULL
))
1982 switch (loc
->type
) {
1984 return(xmlXPtrNewRange(loc
->user
, loc
->index
,
1985 loc
->user
, loc
->index
));
1987 if (loc
->user2
!= NULL
) {
1988 return(xmlXPtrNewRange(loc
->user
, loc
->index
,
1989 loc
->user2
, loc
->index2
));
1991 xmlNodePtr node
= (xmlNodePtr
) loc
->user
;
1992 if (node
== (xmlNodePtr
) ctxt
->context
->doc
) {
1993 return(xmlXPtrNewRange(node
, 0, node
,
1994 xmlXPtrGetArity(node
)));
1996 switch (node
->type
) {
1997 case XML_ATTRIBUTE_NODE
:
1998 /* !!! our model is slightly different than XPath */
1999 return(xmlXPtrNewRange(node
, 0, node
,
2000 xmlXPtrGetArity(node
)));
2001 case XML_ELEMENT_NODE
:
2003 case XML_CDATA_SECTION_NODE
:
2004 case XML_ENTITY_REF_NODE
:
2006 case XML_COMMENT_NODE
:
2007 case XML_DOCUMENT_NODE
:
2008 case XML_NOTATION_NODE
:
2009 case XML_HTML_DOCUMENT_NODE
: {
2010 int indx
= xmlXPtrGetIndex(node
);
2012 node
= node
->parent
;
2013 return(xmlXPtrNewRange(node
, indx
- 1,
2022 TODO
/* missed one case ??? */
2028 * xmlXPtrRangeFunction:
2029 * @ctxt: the XPointer Parser context
2030 * @nargs: the number of args
2032 * Function implementing the range() function 5.4.3
2033 * location-set range(location-set )
2035 * The range function returns ranges covering the locations in
2036 * the argument location-set. For each location x in the argument
2037 * location-set, a range location representing the covering range of
2038 * x is added to the result location-set.
2041 xmlXPtrRangeFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
2043 xmlXPathObjectPtr set
;
2044 xmlLocationSetPtr oldset
;
2045 xmlLocationSetPtr newset
;
2048 if ((ctxt
->value
== NULL
) ||
2049 ((ctxt
->value
->type
!= XPATH_LOCATIONSET
) &&
2050 (ctxt
->value
->type
!= XPATH_NODESET
)))
2051 XP_ERROR(XPATH_INVALID_TYPE
)
2053 set
= valuePop(ctxt
);
2054 if (set
->type
== XPATH_NODESET
) {
2055 xmlXPathObjectPtr tmp
;
2058 * First convert to a location set
2060 tmp
= xmlXPtrNewLocationSetNodeSet(set
->nodesetval
);
2061 xmlXPathFreeObject(set
);
2063 XP_ERROR(XPATH_MEMORY_ERROR
)
2066 oldset
= (xmlLocationSetPtr
) set
->user
;
2069 * The loop is to compute the covering range for each item and add it
2071 newset
= xmlXPtrLocationSetCreate(NULL
);
2072 if (newset
== NULL
) {
2073 xmlXPathFreeObject(set
);
2074 XP_ERROR(XPATH_MEMORY_ERROR
);
2076 for (i
= 0;i
< oldset
->locNr
;i
++) {
2077 xmlXPtrLocationSetAdd(newset
,
2078 xmlXPtrCoveringRange(ctxt
, oldset
->locTab
[i
]));
2082 * Save the new value and cleanup
2084 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
2085 xmlXPathFreeObject(set
);
2089 * xmlXPtrInsideRange:
2090 * @ctxt: the XPointer Parser context
2091 * @loc: the location for which the inside range must be computed
2093 * A inside range is a range described in the range-inside() description
2095 * Returns a new location or NULL in case of error
2097 static xmlXPathObjectPtr
2098 xmlXPtrInsideRange(xmlXPathParserContextPtr ctxt
, xmlXPathObjectPtr loc
) {
2101 if ((ctxt
== NULL
) || (ctxt
->context
== NULL
) ||
2102 (ctxt
->context
->doc
== NULL
))
2104 switch (loc
->type
) {
2106 xmlNodePtr node
= (xmlNodePtr
) loc
->user
;
2107 switch (node
->type
) {
2109 case XML_COMMENT_NODE
:
2111 case XML_CDATA_SECTION_NODE
: {
2112 if (node
->content
== NULL
) {
2113 return(xmlXPtrNewRange(node
, 0, node
, 0));
2115 return(xmlXPtrNewRange(node
, 0, node
,
2116 xmlStrlen(node
->content
)));
2119 case XML_ATTRIBUTE_NODE
:
2120 case XML_ELEMENT_NODE
:
2121 case XML_ENTITY_REF_NODE
:
2122 case XML_DOCUMENT_NODE
:
2123 case XML_NOTATION_NODE
:
2124 case XML_HTML_DOCUMENT_NODE
: {
2125 return(xmlXPtrNewRange(node
, 0, node
,
2126 xmlXPtrGetArity(node
)));
2134 xmlNodePtr node
= (xmlNodePtr
) loc
->user
;
2135 if (loc
->user2
!= NULL
) {
2136 return(xmlXPtrNewRange(node
, loc
->index
,
2137 loc
->user2
, loc
->index2
));
2139 switch (node
->type
) {
2141 case XML_COMMENT_NODE
:
2143 case XML_CDATA_SECTION_NODE
: {
2144 if (node
->content
== NULL
) {
2145 return(xmlXPtrNewRange(node
, 0, node
, 0));
2147 return(xmlXPtrNewRange(node
, 0, node
,
2148 xmlStrlen(node
->content
)));
2151 case XML_ATTRIBUTE_NODE
:
2152 case XML_ELEMENT_NODE
:
2153 case XML_ENTITY_REF_NODE
:
2154 case XML_DOCUMENT_NODE
:
2155 case XML_NOTATION_NODE
:
2156 case XML_HTML_DOCUMENT_NODE
: {
2157 return(xmlXPtrNewRange(node
, 0, node
,
2158 xmlXPtrGetArity(node
)));
2167 TODO
/* missed one case ??? */
2173 * xmlXPtrRangeInsideFunction:
2174 * @ctxt: the XPointer Parser context
2175 * @nargs: the number of args
2177 * Function implementing the range-inside() function 5.4.3
2178 * location-set range-inside(location-set )
2180 * The range-inside function returns ranges covering the contents of
2181 * the locations in the argument location-set. For each location x in
2182 * the argument location-set, a range location is added to the result
2183 * location-set. If x is a range location, then x is added to the
2184 * result location-set. If x is not a range location, then x is used
2185 * as the container location of the start and end points of the range
2186 * location to be added; the index of the start point of the range is
2187 * zero; if the end point is a character point then its index is the
2188 * length of the string-value of x, and otherwise is the number of
2189 * location children of x.
2193 xmlXPtrRangeInsideFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
2195 xmlXPathObjectPtr set
;
2196 xmlLocationSetPtr oldset
;
2197 xmlLocationSetPtr newset
;
2200 if ((ctxt
->value
== NULL
) ||
2201 ((ctxt
->value
->type
!= XPATH_LOCATIONSET
) &&
2202 (ctxt
->value
->type
!= XPATH_NODESET
)))
2203 XP_ERROR(XPATH_INVALID_TYPE
)
2205 set
= valuePop(ctxt
);
2206 if (set
->type
== XPATH_NODESET
) {
2207 xmlXPathObjectPtr tmp
;
2210 * First convert to a location set
2212 tmp
= xmlXPtrNewLocationSetNodeSet(set
->nodesetval
);
2213 xmlXPathFreeObject(set
);
2215 XP_ERROR(XPATH_MEMORY_ERROR
)
2218 oldset
= (xmlLocationSetPtr
) set
->user
;
2221 * The loop is to compute the covering range for each item and add it
2223 newset
= xmlXPtrLocationSetCreate(NULL
);
2224 if (newset
== NULL
) {
2225 xmlXPathFreeObject(set
);
2226 XP_ERROR(XPATH_MEMORY_ERROR
);
2228 for (i
= 0;i
< oldset
->locNr
;i
++) {
2229 xmlXPtrLocationSetAdd(newset
,
2230 xmlXPtrInsideRange(ctxt
, oldset
->locTab
[i
]));
2234 * Save the new value and cleanup
2236 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
2237 xmlXPathFreeObject(set
);
2241 * xmlXPtrRangeToFunction:
2242 * @ctxt: the XPointer Parser context
2243 * @nargs: the number of args
2245 * Implement the range-to() XPointer function
2248 xmlXPtrRangeToFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
2249 xmlXPathObjectPtr range
;
2251 xmlXPathObjectPtr res
, obj
;
2252 xmlXPathObjectPtr tmp
;
2253 xmlLocationSetPtr newset
= NULL
;
2254 xmlNodeSetPtr oldset
;
2257 if (ctxt
== NULL
) return;
2260 * Save the expression pointer since we will have to evaluate
2261 * it multiple times. Initialize the new set.
2263 CHECK_TYPE(XPATH_NODESET
);
2264 obj
= valuePop(ctxt
);
2265 oldset
= obj
->nodesetval
;
2266 ctxt
->context
->node
= NULL
;
2269 newset
= xmlXPtrLocationSetCreate(NULL
);
2271 for (i
= 0; i
< oldset
->nodeNr
; i
++) {
2275 * Run the evaluation with a node list made of a single item
2278 ctxt
->context
->node
= oldset
->nodeTab
[i
];
2279 tmp
= xmlXPathNewNodeSet(ctxt
->context
->node
);
2280 valuePush(ctxt
, tmp
);
2282 xmlXPathEvalExpr(ctxt
);
2286 * The result of the evaluation need to be tested to
2287 * decided whether the filter succeeded or not
2289 res
= valuePop(ctxt
);
2290 range
= xmlXPtrNewRangeNodeObject(oldset
->nodeTab
[i
], res
);
2291 if (range
!= NULL
) {
2292 xmlXPtrLocationSetAdd(newset
, range
);
2299 xmlXPathFreeObject(res
);
2300 if (ctxt
->value
== tmp
) {
2301 res
= valuePop(ctxt
);
2302 xmlXPathFreeObject(res
);
2305 ctxt
->context
->node
= NULL
;
2309 * The result is used as the new evaluation set.
2311 xmlXPathFreeObject(obj
);
2312 ctxt
->context
->node
= NULL
;
2313 ctxt
->context
->contextSize
= -1;
2314 ctxt
->context
->proximityPosition
= -1;
2315 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
2319 * xmlXPtrAdvanceNode:
2321 * @level: incremented/decremented to show level in tree
2323 * Advance to the next element or text node in document order
2324 * TODO: add a stack for entering/exiting entities
2326 * Returns -1 in case of failure, 0 otherwise
2329 xmlXPtrAdvanceNode(xmlNodePtr cur
, int *level
) {
2331 if ((cur
== NULL
) || (cur
->type
== XML_NAMESPACE_DECL
))
2333 if (cur
->children
!= NULL
) {
2334 cur
= cur
->children
;
2339 skip
: /* This label should only be needed if something is wrong! */
2340 if (cur
->next
!= NULL
) {
2348 if (cur
== NULL
) return(NULL
);
2349 if (cur
->next
!= NULL
) {
2353 } while (cur
!= NULL
);
2356 if ((cur
->type
!= XML_ELEMENT_NODE
) &&
2357 (cur
->type
!= XML_TEXT_NODE
) &&
2358 (cur
->type
!= XML_DOCUMENT_NODE
) &&
2359 (cur
->type
!= XML_HTML_DOCUMENT_NODE
) &&
2360 (cur
->type
!= XML_CDATA_SECTION_NODE
)) {
2361 if (cur
->type
== XML_ENTITY_REF_NODE
) { /* Shouldn't happen */
2371 * xmlXPtrAdvanceChar:
2374 * @bytes: the number of bytes
2376 * Advance a point of the associated number of bytes (not UTF8 chars)
2378 * Returns -1 in case of failure, 0 otherwise
2381 xmlXPtrAdvanceChar(xmlNodePtr
*node
, int *indx
, int bytes
) {
2386 if ((node
== NULL
) || (indx
== NULL
))
2389 if ((cur
== NULL
) || (cur
->type
== XML_NAMESPACE_DECL
))
2393 while (bytes
>= 0) {
2395 * First position to the beginning of the first text node
2396 * corresponding to this point
2398 while ((cur
!= NULL
) &&
2399 ((cur
->type
== XML_ELEMENT_NODE
) ||
2400 (cur
->type
== XML_DOCUMENT_NODE
) ||
2401 (cur
->type
== XML_HTML_DOCUMENT_NODE
))) {
2403 cur
= xmlXPtrGetNthChild(cur
, pos
);
2406 cur
= xmlXPtrAdvanceNode(cur
, NULL
);
2418 * if there is no move needed return the current value.
2420 if (pos
== 0) pos
= 1;
2427 * We should have a text (or cdata) node ...
2430 if ((cur
->type
!= XML_ELEMENT_NODE
) &&
2431 (cur
->content
!= NULL
)) {
2432 len
= xmlStrlen(cur
->content
);
2435 /* Strange, the indx in the text node is greater than it's len */
2439 if (pos
+ bytes
>= len
) {
2440 bytes
-= (len
- pos
);
2441 cur
= xmlXPtrAdvanceNode(cur
, NULL
);
2443 } else if (pos
+ bytes
< len
) {
2454 * xmlXPtrMatchString:
2455 * @string: the string to search
2456 * @start: the start textnode
2457 * @startindex: the start index
2458 * @end: the end textnode IN/OUT
2459 * @endindex: the end index IN/OUT
2461 * Check whether the document contains @string at the position
2462 * (@start, @startindex) and limited by the (@end, @endindex) point
2464 * Returns -1 in case of failure, 0 if not found, 1 if found in which case
2465 * (@start, @startindex) will indicate the position of the beginning
2466 * of the range and (@end, @endindex) will indicate the end
2470 xmlXPtrMatchString(const xmlChar
*string
, xmlNodePtr start
, int startindex
,
2471 xmlNodePtr
*end
, int *endindex
) {
2473 int pos
; /* 0 based */
2474 int len
; /* in bytes */
2475 int stringlen
; /* in bytes */
2480 if ((start
== NULL
) || (start
->type
== XML_NAMESPACE_DECL
))
2482 if ((end
== NULL
) || (*end
== NULL
) ||
2483 ((*end
)->type
== XML_NAMESPACE_DECL
) || (endindex
== NULL
))
2486 pos
= startindex
- 1;
2487 stringlen
= xmlStrlen(string
);
2489 while (stringlen
> 0) {
2490 if ((cur
== *end
) && (pos
+ stringlen
> *endindex
))
2493 if ((cur
->type
!= XML_ELEMENT_NODE
) && (cur
->content
!= NULL
)) {
2494 len
= xmlStrlen(cur
->content
);
2495 if (len
>= pos
+ stringlen
) {
2496 match
= (!xmlStrncmp(&cur
->content
[pos
], string
, stringlen
));
2499 xmlGenericError(xmlGenericErrorContext
,
2500 "found range %d bytes at index %d of ->",
2501 stringlen
, pos
+ 1);
2502 xmlDebugDumpString(stdout
, cur
->content
);
2503 xmlGenericError(xmlGenericErrorContext
, "\n");
2506 *endindex
= pos
+ stringlen
;
2512 int sub
= len
- pos
;
2513 match
= (!xmlStrncmp(&cur
->content
[pos
], string
, sub
));
2516 xmlGenericError(xmlGenericErrorContext
,
2517 "found subrange %d bytes at index %d of ->",
2519 xmlDebugDumpString(stdout
, cur
->content
);
2520 xmlGenericError(xmlGenericErrorContext
, "\n");
2522 string
= &string
[sub
];
2529 cur
= xmlXPtrAdvanceNode(cur
, NULL
);
2538 * xmlXPtrSearchString:
2539 * @string: the string to search
2540 * @start: the start textnode IN/OUT
2541 * @startindex: the start index IN/OUT
2542 * @end: the end textnode
2543 * @endindex: the end index
2545 * Search the next occurrence of @string within the document content
2546 * until the (@end, @endindex) point is reached
2548 * Returns -1 in case of failure, 0 if not found, 1 if found in which case
2549 * (@start, @startindex) will indicate the position of the beginning
2550 * of the range and (@end, @endindex) will indicate the end
2554 xmlXPtrSearchString(const xmlChar
*string
, xmlNodePtr
*start
, int *startindex
,
2555 xmlNodePtr
*end
, int *endindex
) {
2558 int pos
; /* 0 based */
2559 int len
; /* in bytes */
2564 if ((start
== NULL
) || (*start
== NULL
) ||
2565 ((*start
)->type
== XML_NAMESPACE_DECL
) || (startindex
== NULL
))
2567 if ((end
== NULL
) || (endindex
== NULL
))
2570 pos
= *startindex
- 1;
2573 while (cur
!= NULL
) {
2574 if ((cur
->type
!= XML_ELEMENT_NODE
) && (cur
->content
!= NULL
)) {
2575 len
= xmlStrlen(cur
->content
);
2576 while (pos
<= len
) {
2578 str
= xmlStrchr(&cur
->content
[pos
], first
);
2580 pos
= (str
- (xmlChar
*)(cur
->content
));
2582 xmlGenericError(xmlGenericErrorContext
,
2583 "found '%c' at index %d of ->",
2585 xmlDebugDumpString(stdout
, cur
->content
);
2586 xmlGenericError(xmlGenericErrorContext
, "\n");
2588 if (xmlXPtrMatchString(string
, cur
, pos
+ 1,
2591 *startindex
= pos
+ 1;
2600 * An empty string is considered to match before each
2601 * character of the string-value and after the final
2605 xmlGenericError(xmlGenericErrorContext
,
2606 "found '' at index %d of ->",
2608 xmlDebugDumpString(stdout
, cur
->content
);
2609 xmlGenericError(xmlGenericErrorContext
, "\n");
2612 *startindex
= pos
+ 1;
2614 *endindex
= pos
+ 1;
2619 if ((cur
== *end
) && (pos
>= *endindex
))
2621 cur
= xmlXPtrAdvanceNode(cur
, NULL
);
2630 * xmlXPtrGetLastChar:
2634 * Computes the point coordinates of the last char of this point
2636 * Returns -1 in case of failure, 0 otherwise
2639 xmlXPtrGetLastChar(xmlNodePtr
*node
, int *indx
) {
2643 if ((node
== NULL
) || (*node
== NULL
) ||
2644 ((*node
)->type
== XML_NAMESPACE_DECL
) || (indx
== NULL
))
2649 if ((cur
->type
== XML_ELEMENT_NODE
) ||
2650 (cur
->type
== XML_DOCUMENT_NODE
) ||
2651 (cur
->type
== XML_HTML_DOCUMENT_NODE
)) {
2653 cur
= xmlXPtrGetNthChild(cur
, pos
);
2656 while (cur
!= NULL
) {
2657 if (cur
->last
!= NULL
)
2659 else if ((cur
->type
!= XML_ELEMENT_NODE
) &&
2660 (cur
->content
!= NULL
)) {
2661 len
= xmlStrlen(cur
->content
);
2675 * xmlXPtrGetStartPoint:
2677 * @node: the resulting node
2678 * @indx: the resulting index
2680 * read the object and return the start point coordinates.
2682 * Returns -1 in case of failure, 0 otherwise
2685 xmlXPtrGetStartPoint(xmlXPathObjectPtr obj
, xmlNodePtr
*node
, int *indx
) {
2686 if ((obj
== NULL
) || (node
== NULL
) || (indx
== NULL
))
2689 switch (obj
->type
) {
2692 if (obj
->index
<= 0)
2699 if (obj
->index
<= 0)
2711 * xmlXPtrGetEndPoint:
2713 * @node: the resulting node
2714 * @indx: the resulting indx
2716 * read the object and return the end point coordinates.
2718 * Returns -1 in case of failure, 0 otherwise
2721 xmlXPtrGetEndPoint(xmlXPathObjectPtr obj
, xmlNodePtr
*node
, int *indx
) {
2722 if ((obj
== NULL
) || (node
== NULL
) || (indx
== NULL
))
2725 switch (obj
->type
) {
2728 if (obj
->index
<= 0)
2735 if (obj
->index
<= 0)
2747 * xmlXPtrStringRangeFunction:
2748 * @ctxt: the XPointer Parser context
2749 * @nargs: the number of args
2751 * Function implementing the string-range() function
2752 * range as described in 5.4.2
2754 * ------------------------------
2755 * [Definition: For each location in the location-set argument,
2756 * string-range returns a set of string ranges, a set of substrings in a
2757 * string. Specifically, the string-value of the location is searched for
2758 * substrings that match the string argument, and the resulting location-set
2759 * will contain a range location for each non-overlapping match.]
2760 * An empty string is considered to match before each character of the
2761 * string-value and after the final character. Whitespace in a string
2762 * is matched literally, with no normalization except that provided by
2763 * XML for line ends. The third argument gives the position of the first
2764 * character to be in the resulting range, relative to the start of the
2765 * match. The default value is 1, which makes the range start immediately
2766 * before the first character of the matched string. The fourth argument
2767 * gives the number of characters in the range; the default is that the
2768 * range extends to the end of the matched string.
2770 * Element boundaries, as well as entire embedded nodes such as processing
2771 * instructions and comments, are ignored as defined in [XPath].
2773 * If the string in the second argument is not found in the string-value
2774 * of the location, or if a value in the third or fourth argument indicates
2775 * a string that is beyond the beginning or end of the document, the
2778 * The points of the range-locations in the returned location-set will
2779 * all be character points.
2780 * ------------------------------
2783 xmlXPtrStringRangeFunction(xmlXPathParserContextPtr ctxt
, int nargs
) {
2784 int i
, startindex
, endindex
= 0, fendindex
;
2785 xmlNodePtr start
, end
= 0, fend
;
2786 xmlXPathObjectPtr set
;
2787 xmlLocationSetPtr oldset
;
2788 xmlLocationSetPtr newset
;
2789 xmlXPathObjectPtr string
;
2790 xmlXPathObjectPtr position
= NULL
;
2791 xmlXPathObjectPtr number
= NULL
;
2792 int found
, pos
= 0, num
= 0;
2795 * Grab the arguments
2797 if ((nargs
< 2) || (nargs
> 4))
2798 XP_ERROR(XPATH_INVALID_ARITY
);
2801 CHECK_TYPE(XPATH_NUMBER
);
2802 number
= valuePop(ctxt
);
2804 num
= (int) number
->floatval
;
2807 CHECK_TYPE(XPATH_NUMBER
);
2808 position
= valuePop(ctxt
);
2809 if (position
!= NULL
)
2810 pos
= (int) position
->floatval
;
2812 CHECK_TYPE(XPATH_STRING
);
2813 string
= valuePop(ctxt
);
2814 if ((ctxt
->value
== NULL
) ||
2815 ((ctxt
->value
->type
!= XPATH_LOCATIONSET
) &&
2816 (ctxt
->value
->type
!= XPATH_NODESET
)))
2817 XP_ERROR(XPATH_INVALID_TYPE
)
2819 set
= valuePop(ctxt
);
2820 newset
= xmlXPtrLocationSetCreate(NULL
);
2821 if (newset
== NULL
) {
2822 xmlXPathFreeObject(set
);
2823 XP_ERROR(XPATH_MEMORY_ERROR
);
2825 if (set
->nodesetval
== NULL
) {
2828 if (set
->type
== XPATH_NODESET
) {
2829 xmlXPathObjectPtr tmp
;
2832 * First convert to a location set
2834 tmp
= xmlXPtrNewLocationSetNodeSet(set
->nodesetval
);
2835 xmlXPathFreeObject(set
);
2837 XP_ERROR(XPATH_MEMORY_ERROR
)
2840 oldset
= (xmlLocationSetPtr
) set
->user
;
2843 * The loop is to search for each element in the location set
2844 * the list of location set corresponding to that search
2846 for (i
= 0;i
< oldset
->locNr
;i
++) {
2848 xmlXPathDebugDumpObject(stdout
, oldset
->locTab
[i
], 0);
2851 xmlXPtrGetStartPoint(oldset
->locTab
[i
], &start
, &startindex
);
2852 xmlXPtrGetEndPoint(oldset
->locTab
[i
], &end
, &endindex
);
2853 xmlXPtrAdvanceChar(&start
, &startindex
, 0);
2854 xmlXPtrGetLastChar(&end
, &endindex
);
2857 xmlGenericError(xmlGenericErrorContext
,
2858 "from index %d of ->", startindex
);
2859 xmlDebugDumpString(stdout
, start
->content
);
2860 xmlGenericError(xmlGenericErrorContext
, "\n");
2861 xmlGenericError(xmlGenericErrorContext
,
2862 "to index %d of ->", endindex
);
2863 xmlDebugDumpString(stdout
, end
->content
);
2864 xmlGenericError(xmlGenericErrorContext
, "\n");
2868 fendindex
= endindex
;
2869 found
= xmlXPtrSearchString(string
->stringval
, &start
, &startindex
,
2872 if (position
== NULL
) {
2873 xmlXPtrLocationSetAdd(newset
,
2874 xmlXPtrNewRange(start
, startindex
, fend
, fendindex
));
2875 } else if (xmlXPtrAdvanceChar(&start
, &startindex
,
2877 if ((number
!= NULL
) && (num
> 0)) {
2881 rindx
= startindex
- 1;
2882 if (xmlXPtrAdvanceChar(&rend
, &rindx
,
2884 xmlXPtrLocationSetAdd(newset
,
2885 xmlXPtrNewRange(start
, startindex
,
2888 } else if ((number
!= NULL
) && (num
<= 0)) {
2889 xmlXPtrLocationSetAdd(newset
,
2890 xmlXPtrNewRange(start
, startindex
,
2891 start
, startindex
));
2893 xmlXPtrLocationSetAdd(newset
,
2894 xmlXPtrNewRange(start
, startindex
,
2899 startindex
= fendindex
;
2900 if (string
->stringval
[0] == 0)
2903 } while (found
== 1);
2907 * Save the new value and cleanup
2910 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
2911 xmlXPathFreeObject(set
);
2912 xmlXPathFreeObject(string
);
2913 if (position
) xmlXPathFreeObject(position
);
2914 if (number
) xmlXPathFreeObject(number
);
2918 * xmlXPtrEvalRangePredicate:
2919 * @ctxt: the XPointer Parser context
2921 * [8] Predicate ::= '[' PredicateExpr ']'
2922 * [9] PredicateExpr ::= Expr
2924 * Evaluate a predicate as in xmlXPathEvalPredicate() but for
2925 * a Location Set instead of a node set
2928 xmlXPtrEvalRangePredicate(xmlXPathParserContextPtr ctxt
) {
2930 xmlXPathObjectPtr res
;
2931 xmlXPathObjectPtr obj
, tmp
;
2932 xmlLocationSetPtr newset
= NULL
;
2933 xmlLocationSetPtr oldset
;
2936 if (ctxt
== NULL
) return;
2940 XP_ERROR(XPATH_INVALID_PREDICATE_ERROR
);
2946 * Extract the old set, and then evaluate the result of the
2947 * expression for all the element in the set. use it to grow
2950 CHECK_TYPE(XPATH_LOCATIONSET
);
2951 obj
= valuePop(ctxt
);
2953 ctxt
->context
->node
= NULL
;
2955 if ((oldset
== NULL
) || (oldset
->locNr
== 0)) {
2956 ctxt
->context
->contextSize
= 0;
2957 ctxt
->context
->proximityPosition
= 0;
2958 xmlXPathEvalExpr(ctxt
);
2959 res
= valuePop(ctxt
);
2961 xmlXPathFreeObject(res
);
2962 valuePush(ctxt
, obj
);
2966 * Save the expression pointer since we will have to evaluate
2967 * it multiple times. Initialize the new set.
2970 newset
= xmlXPtrLocationSetCreate(NULL
);
2972 for (i
= 0; i
< oldset
->locNr
; i
++) {
2976 * Run the evaluation with a node list made of a single item
2979 ctxt
->context
->node
= oldset
->locTab
[i
]->user
;
2980 tmp
= xmlXPathNewNodeSet(ctxt
->context
->node
);
2981 valuePush(ctxt
, tmp
);
2982 ctxt
->context
->contextSize
= oldset
->locNr
;
2983 ctxt
->context
->proximityPosition
= i
+ 1;
2985 xmlXPathEvalExpr(ctxt
);
2989 * The result of the evaluation need to be tested to
2990 * decided whether the filter succeeded or not
2992 res
= valuePop(ctxt
);
2993 if (xmlXPathEvaluatePredicateResult(ctxt
, res
)) {
2994 xmlXPtrLocationSetAdd(newset
,
2995 xmlXPathObjectCopy(oldset
->locTab
[i
]));
3002 xmlXPathFreeObject(res
);
3003 if (ctxt
->value
== tmp
) {
3004 res
= valuePop(ctxt
);
3005 xmlXPathFreeObject(res
);
3008 ctxt
->context
->node
= NULL
;
3012 * The result is used as the new evaluation set.
3014 xmlXPathFreeObject(obj
);
3015 ctxt
->context
->node
= NULL
;
3016 ctxt
->context
->contextSize
= -1;
3017 ctxt
->context
->proximityPosition
= -1;
3018 valuePush(ctxt
, xmlXPtrWrapLocationSet(newset
));
3021 XP_ERROR(XPATH_INVALID_PREDICATE_ERROR
);
3028 #define bottom_xpointer
3029 #include "elfgcchack.h"