2 * pattern.c: Implemetation of the template match compilation and lookup
5 * http://www.w3.org/TR/1999/REC-xslt-19991116
7 * See Copyright for the status of this software.
13 * TODO: handle pathological cases like *[*[@a="b"]]
14 * TODO: detect [number] at compilation, optimize accordingly
21 #include <libxml/xmlmemory.h>
22 #include <libxml/tree.h>
23 #include <libxml/valid.h>
24 #include <libxml/hash.h>
25 #include <libxml/xmlerror.h>
26 #include <libxml/parserInternals.h>
28 #include "xsltInternals.h"
29 #include "xsltutils.h"
31 #include "templates.h"
35 #ifdef WITH_XSLT_DEBUG
36 #define WITH_XSLT_DEBUG_PATTERN
63 typedef struct _xsltStepOp xsltStepOp;
64 typedef xsltStepOp *xsltStepOpPtr;
70 xmlXPathCompExprPtr comp;
72 * Optimisations for count
79 struct _xsltCompMatch {
80 struct _xsltCompMatch *next; /* siblings in the name hash */
81 float priority; /* the priority */
82 const xmlChar *pattern; /* the pattern */
83 const xmlChar *mode; /* the mode */
84 const xmlChar *modeURI; /* the mode URI */
85 xsltTemplatePtr template; /* the associated template */
87 /* TODO fix the statically allocated size steps[] */
90 xmlNsPtr *nsList; /* the namespaces in scope */
91 int nsNr; /* the number of namespaces in scope */
92 xsltStepOp steps[40]; /* ops for computation */
95 typedef struct _xsltParserContext xsltParserContext;
96 typedef xsltParserContext *xsltParserContextPtr;
97 struct _xsltParserContext {
98 const xmlChar *cur; /* the current char being parsed */
99 const xmlChar *base; /* the full expression */
100 xmlDocPtr doc; /* the source document */
101 xmlNodePtr elem; /* the source element */
102 int error; /* error code */
103 xsltCompMatchPtr comp; /* the result */
106 /************************************************************************
110 ************************************************************************/
115 * Create a new XSLT CompMatch
117 * Returns the newly allocated xsltCompMatchPtr or NULL in case of error
119 static xsltCompMatchPtr
120 xsltNewCompMatch(void) {
121 xsltCompMatchPtr cur;
123 cur = (xsltCompMatchPtr) xmlMalloc(sizeof(xsltCompMatch));
125 xsltPrintErrorContext(NULL, NULL, NULL);
126 xsltGenericError(xsltGenericErrorContext,
127 "xsltNewCompMatch : malloc failed\n");
130 memset(cur, 0, sizeof(xsltCompMatch));
139 * @comp: an XSLT comp
141 * Free up the memory allocated by @comp
144 xsltFreeCompMatch(xsltCompMatchPtr comp) {
150 if (comp->pattern != NULL)
151 xmlFree((xmlChar *)comp->pattern);
152 if (comp->mode != NULL)
153 xmlFree((xmlChar *)comp->mode);
154 if (comp->modeURI != NULL)
155 xmlFree((xmlChar *)comp->modeURI);
156 if (comp->nsList != NULL)
157 xmlFree(comp->nsList);
158 for (i = 0;i < comp->nbStep;i++) {
159 op = &comp->steps[i];
160 if (op->value != NULL)
162 if (op->value2 != NULL)
164 if (op->value3 != NULL)
166 if (op->comp != NULL)
167 xmlXPathFreeCompExpr(op->comp);
169 memset(comp, -1, sizeof(xsltCompMatch));
174 * xsltFreeCompMatchList:
175 * @comp: an XSLT comp list
177 * Free up the memory allocated by all the elements of @comp
180 xsltFreeCompMatchList(xsltCompMatchPtr comp) {
181 xsltCompMatchPtr cur;
183 while (comp != NULL) {
186 xsltFreeCompMatch(cur);
191 * xsltNewParserContext:
193 * Create a new XSLT ParserContext
195 * Returns the newly allocated xsltParserContextPtr or NULL in case of error
197 static xsltParserContextPtr
198 xsltNewParserContext(void) {
199 xsltParserContextPtr cur;
201 cur = (xsltParserContextPtr) xmlMalloc(sizeof(xsltParserContext));
203 xsltPrintErrorContext(NULL, NULL, NULL);
204 xsltGenericError(xsltGenericErrorContext,
205 "xsltNewParserContext : malloc failed\n");
208 memset(cur, 0, sizeof(xsltParserContext));
213 * xsltFreeParserContext:
214 * @ctxt: an XSLT parser context
216 * Free up the memory allocated by @ctxt
219 xsltFreeParserContext(xsltParserContextPtr ctxt) {
222 memset(ctxt, -1, sizeof(xsltParserContext));
228 * @comp: the compiled match expression
230 * @value: the first value
231 * @value2: the second value
233 * Add an step to an XSLT Compiled Match
235 * Returns -1 in case of failure, 0 otherwise.
238 xsltCompMatchAdd(xsltCompMatchPtr comp, xsltOp op, xmlChar *value,
240 if (comp->nbStep >= 40) {
241 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
242 xsltGenericError(xsltGenericErrorContext,
243 "xsltCompMatchAdd: overflow\n");
246 comp->steps[comp->nbStep].op = op;
247 comp->steps[comp->nbStep].value = value;
248 comp->steps[comp->nbStep].value2 = value2;
254 * xsltSwapTopCompMatch:
255 * @comp: the compiled match expression
257 * reverse the two top steps.
260 xsltSwapTopCompMatch(xsltCompMatchPtr comp) {
262 int j = comp->nbStep - 1;
265 register xmlChar *tmp;
268 tmp = comp->steps[i].value;
269 comp->steps[i].value = comp->steps[j].value;
270 comp->steps[j].value = tmp;
271 tmp = comp->steps[i].value2;
272 comp->steps[i].value2 = comp->steps[j].value2;
273 comp->steps[j].value2 = tmp;
274 op = comp->steps[i].op;
275 comp->steps[i].op = comp->steps[j].op;
276 comp->steps[j].op = op;
281 * xsltReverseCompMatch:
282 * @comp: the compiled match expression
284 * reverse all the stack of expressions
287 xsltReverseCompMatch(xsltCompMatchPtr comp) {
289 int j = comp->nbStep - 1;
292 register xmlChar *tmp;
294 tmp = comp->steps[i].value;
295 comp->steps[i].value = comp->steps[j].value;
296 comp->steps[j].value = tmp;
297 tmp = comp->steps[i].value2;
298 comp->steps[i].value2 = comp->steps[j].value2;
299 comp->steps[j].value2 = tmp;
300 op = comp->steps[i].op;
301 comp->steps[i].op = comp->steps[j].op;
302 comp->steps[j].op = op;
306 comp->steps[comp->nbStep++].op = XSLT_OP_END;
310 * xsltCleanupCompMatch:
311 * @comp: the compiled match expression
313 * remove all computation state from the pattern
316 xsltCleanupCompMatch(xsltCompMatchPtr comp) {
319 for (i = 0;i < comp->nbStep;i++) {
320 comp->steps[i].previous = NULL;
324 /************************************************************************
326 * The interpreter for the precompiled patterns *
328 ************************************************************************/
332 * @ctxt: a XSLT process context
333 * @comp: the precompiled pattern
335 * @mode: the mode name or NULL
336 * @modeURI: the mode URI or NULL
338 * Test wether the node matches the pattern
340 * Returns 1 if it matches, 0 if it doesn't and -1 in case of failure
343 xsltTestCompMatch(xsltTransformContextPtr ctxt, xsltCompMatchPtr comp,
344 xmlNodePtr node, const xmlChar *mode,
345 const xmlChar *modeURI) {
347 xsltStepOpPtr step, select = NULL;
349 if ((comp == NULL) || (node == NULL) || (ctxt == NULL)) {
350 xsltPrintErrorContext(ctxt, NULL, node);
351 xsltGenericError(xsltGenericErrorContext,
352 "xsltTestCompMatch: null arg\n");
356 if (comp->mode == NULL)
358 if ((comp->mode != mode) && (!xmlStrEqual(comp->mode, mode)))
361 if (comp->mode != NULL)
364 if (modeURI != NULL) {
365 if (comp->modeURI == NULL)
367 if ((comp->modeURI != modeURI) &&
368 (!xmlStrEqual(comp->modeURI, modeURI)))
371 if (comp->modeURI != NULL)
374 for (i = 0;i < comp->nbStep;i++) {
375 step = &comp->steps[i];
376 if (step->op != XSLT_OP_PREDICATE)
382 if ((node->type == XML_DOCUMENT_NODE) ||
383 #ifdef LIBXML_DOCB_ENABLED
384 (node->type == XML_DOCB_DOCUMENT_NODE) ||
386 (node->type == XML_HTML_DOCUMENT_NODE))
390 if (node->type != XML_ELEMENT_NODE)
392 if (step->value == NULL)
394 if (!xmlStrEqual(step->value, node->name))
398 if (node->ns == NULL) {
399 if (step->value2 != NULL)
401 } else if (node->ns->href != NULL) {
402 if (step->value2 == NULL)
404 if (!xmlStrEqual(step->value2, node->ns->href))
408 case XSLT_OP_CHILD: {
411 if ((node->type != XML_ELEMENT_NODE) &&
412 (node->type != XML_DOCUMENT_NODE) &&
413 #ifdef LIBXML_DOCB_ENABLED
414 (node->type != XML_DOCB_DOCUMENT_NODE) &&
416 (node->type != XML_HTML_DOCUMENT_NODE))
419 lst = node->children;
421 if (step->value != NULL) {
422 while (lst != NULL) {
423 if ((lst->type == XML_ELEMENT_NODE) &&
424 (xmlStrEqual(step->value, lst->name)))
434 if (node->type != XML_ATTRIBUTE_NODE)
436 if (step->value == NULL)
438 if (!xmlStrEqual(step->value, node->name))
442 if (node->ns == NULL) {
443 if (step->value2 != NULL)
445 } else if (node->ns->href != NULL) {
446 if (step->value2 == NULL)
448 if (!xmlStrEqual(step->value2, node->ns->href))
453 if ((node->type != XML_ELEMENT_NODE) &&
454 (node->type != XML_ATTRIBUTE_NODE))
459 if (step->value == NULL)
461 if (!xmlStrEqual(step->value, node->name))
464 if (node->ns == NULL) {
465 if (step->value2 != NULL)
467 } else if (node->ns->href != NULL) {
468 if (step->value2 == NULL)
470 if (!xmlStrEqual(step->value2, node->ns->href))
474 case XSLT_OP_ANCESTOR:
475 /* TODO: implement coalescing of ANCESTOR/NODE ops */
476 if (step->value == NULL) {
478 step = &comp->steps[i];
479 if (step->op == XSLT_OP_ROOT)
481 if (step->op != XSLT_OP_ELEM)
483 if (step->value == NULL)
489 while (node != NULL) {
492 if (xmlStrEqual(step->value, node->name)) {
494 if (node->ns == NULL) {
495 if (step->value2 == NULL)
497 } else if (node->ns->href != NULL) {
498 if ((step->value2 != NULL) &&
499 (xmlStrEqual(step->value2, node->ns->href)))
509 /* TODO Handle IDs decently, must be done differently */
512 if (node->type != XML_ELEMENT_NODE)
515 id = xmlGetID(node->doc, step->value);
516 if ((id == NULL) || (id->parent != node))
524 list = xsltGetKey(ctxt, step->value,
525 step->value3, step->value2);
528 for (indx = 0;indx < list->nodeNr;indx++)
529 if (list->nodeTab[indx] == node)
531 if (indx >= list->nodeNr)
536 if (node->type != XML_ELEMENT_NODE)
538 if (node->ns == NULL) {
539 if (step->value != NULL)
541 } else if (node->ns->href != NULL) {
542 if (step->value == NULL)
544 if (!xmlStrEqual(step->value, node->ns->href))
549 if (node->type != XML_ELEMENT_NODE)
552 case XSLT_OP_PREDICATE: {
555 int pos = 0, len = 0;
557 * Depending on the last selection, one may need to
558 * recompute contextSize and proximityPosition.
560 * TODO: make this thread safe !
562 oldCS = ctxt->xpathCtxt->contextSize;
563 oldCP = ctxt->xpathCtxt->proximityPosition;
564 if ((select != NULL) &&
565 (select->op == XSLT_OP_ELEM) &&
566 (select->value != NULL) &&
567 (node->type == XML_ELEMENT_NODE) &&
568 (node->parent != NULL)) {
570 if ((select->previous != NULL) &&
571 (select->previous->parent == node->parent)) {
573 * just walk back to adjust the index
576 xmlNodePtr sibling = node;
578 while (sibling != NULL) {
579 if (sibling == select->previous)
581 if (xmlStrEqual(node->name, sibling->name)) {
582 if ((select->value2 == NULL) ||
583 ((sibling->ns != NULL) &&
584 (xmlStrEqual(select->value2,
585 sibling->ns->href))))
588 sibling = sibling->prev;
590 if (sibling == NULL) {
591 /* hum going backward in document order ... */
594 while (sibling != NULL) {
595 if (sibling == select->previous)
597 if ((select->value2 == NULL) ||
598 ((sibling->ns != NULL) &&
599 (xmlStrEqual(select->value2,
600 sibling->ns->href))))
602 sibling = sibling->next;
605 if (sibling != NULL) {
606 pos = select->index + indx;
608 select->previous = node;
614 * recompute the index
616 xmlNodePtr siblings = node->parent->children;
618 while (siblings != NULL) {
619 if (siblings->type == XML_ELEMENT_NODE) {
620 if (siblings == node) {
623 } else if (xmlStrEqual(node->name,
625 if ((select->value2 == NULL) ||
626 ((siblings->ns != NULL) &&
627 (xmlStrEqual(select->value2,
628 siblings->ns->href))))
632 siblings = siblings->next;
636 ctxt->xpathCtxt->contextSize = len;
637 ctxt->xpathCtxt->proximityPosition = pos;
638 select->previous = node;
642 } else if ((select != NULL) && (select->op == XSLT_OP_ALL) &&
643 (node->type == XML_ELEMENT_NODE)) {
644 if ((select->previous != NULL) &&
645 (select->previous->parent == node->parent)) {
647 * just walk back to adjust the index
650 xmlNodePtr sibling = node;
652 while (sibling != NULL) {
653 if (sibling == select->previous)
655 if (sibling->type == XML_ELEMENT_NODE)
657 sibling = sibling->prev;
659 if (sibling == NULL) {
660 /* hum going backward in document order ... */
663 while (sibling != NULL) {
664 if (sibling == select->previous)
666 if (sibling->type == XML_ELEMENT_NODE)
668 sibling = sibling->next;
671 if (sibling != NULL) {
672 pos = select->index + indx;
674 select->previous = node;
680 * recompute the index
682 xmlNodePtr siblings = node->parent->children;
684 while (siblings != NULL) {
685 if (siblings->type == XML_ELEMENT_NODE) {
687 if (siblings == node) {
691 siblings = siblings->next;
695 ctxt->xpathCtxt->contextSize = len;
696 ctxt->xpathCtxt->proximityPosition = pos;
697 select->previous = node;
702 oldNode = ctxt->node;
705 if (step->value == NULL)
708 if (step->comp == NULL) {
709 step->comp = xmlXPathCompile(step->value);
710 if (step->comp == NULL)
713 if (comp->nsList == NULL) {
716 comp->nsList = xmlGetNsList(node->doc, node);
717 if (comp->nsList != NULL) {
718 while (comp->nsList[j] != NULL)
723 if (!xsltEvalXPathPredicate(ctxt, step->comp, comp->nsList,
728 ctxt->xpathCtxt->contextSize = oldCS;
729 ctxt->xpathCtxt->proximityPosition = oldCP;
731 ctxt->node = oldNode;
735 ctxt->xpathCtxt->contextSize = oldCS;
736 ctxt->xpathCtxt->proximityPosition = oldCP;
738 ctxt->node = oldNode;
742 if (node->type != XML_PI_NODE)
744 if (step->value != NULL) {
745 if (!xmlStrEqual(step->value, node->name))
749 case XSLT_OP_COMMENT:
750 if (node->type != XML_COMMENT_NODE)
754 if ((node->type != XML_TEXT_NODE) &&
755 (node->type != XML_CDATA_SECTION_NODE))
759 switch (node->type) {
760 case XML_DOCUMENT_NODE:
761 case XML_HTML_DOCUMENT_NODE:
762 #ifdef LIBXML_DOCB_ENABLED
763 case XML_DOCB_DOCUMENT_NODE:
765 case XML_ELEMENT_NODE:
766 case XML_CDATA_SECTION_NODE:
768 case XML_COMMENT_NODE:
770 case XML_ATTRIBUTE_NODE:
782 * xsltTestCompMatchList:
783 * @ctxt: a XSLT process context
785 * @comp: the precompiled pattern list
787 * Test wether the node matches one of the patterns in the list
789 * Returns 1 if it matches, 0 if it doesn't and -1 in case of failure
792 xsltTestCompMatchList(xsltTransformContextPtr ctxt, xmlNodePtr node,
793 xsltCompMatchPtr comp) {
796 if ((ctxt == NULL) || (node == NULL))
798 while (comp != NULL) {
799 ret = xsltTestCompMatch(ctxt, comp, node, NULL, NULL);
807 /************************************************************************
809 * Dedicated parser for templates *
811 ************************************************************************/
813 #define CUR (*ctxt->cur)
814 #define SKIP(val) ctxt->cur += (val)
815 #define NXT(val) ctxt->cur[(val)]
816 #define CUR_PTR ctxt->cur
818 #define SKIP_BLANKS \
819 while (IS_BLANK(CUR)) NEXT
821 #define CURRENT (*ctxt->cur)
822 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
825 #define PUSH(op, val, val2) \
826 if (xsltCompMatchAdd(ctxt->comp, (op), (val), (val2))) goto error;
829 xsltSwapTopCompMatch(ctxt->comp);
831 #define XSLT_ERROR(X) \
832 { xsltError(ctxt, __FILE__, __LINE__, X); \
833 ctxt->error = (X); return; }
835 #define XSLT_ERROR0(X) \
836 { xsltError(ctxt, __FILE__, __LINE__, X); \
837 ctxt->error = (X); return(0); }
841 * @ctxt: the XPath Parser context
843 * Parse an XPath Litteral:
845 * [29] Literal ::= '"' [^"]* '"'
848 * Returns the Literal parsed or NULL
852 xsltScanLiteral(xsltParserContextPtr ctxt) {
853 const xmlChar *q, *cur;
861 val = xmlStringCurrentChar(NULL, cur, &len);
862 while ((IS_CHAR(val)) && (val != '"')) {
864 val = xmlStringCurrentChar(NULL, cur, &len);
870 ret = xmlStrndup(q, cur - q);
874 } else if (CUR == '\'') {
877 val = xmlStringCurrentChar(NULL, cur, &len);
878 while ((IS_CHAR(val)) && (val != '\'')) {
880 val = xmlStringCurrentChar(NULL, cur, &len);
886 ret = xmlStrndup(q, cur - q);
891 /* XP_ERROR(XPATH_START_LITERAL_ERROR); */
900 * @ctxt: the XPath Parser context
902 * [4] NameChar ::= Letter | Digit | '.' | '-' | '_' |
903 * CombiningChar | Extender
905 * [5] Name ::= (Letter | '_' | ':') (NameChar)*
907 * [6] Names ::= Name (S Name)*
909 * Returns the Name parsed or NULL
913 xsltScanName(xsltParserContextPtr ctxt) {
914 const xmlChar *q, *cur;
921 val = xmlStringCurrentChar(NULL, cur, &len);
922 if (!IS_LETTER(val) && (val != '_') && (val != ':'))
925 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
926 (val == '.') || (val == '-') ||
928 (IS_COMBINING(val)) ||
929 (IS_EXTENDER(val))) {
931 val = xmlStringCurrentChar(NULL, cur, &len);
933 ret = xmlStrndup(q, cur - q);
940 * @ctxt: the XPath Parser context
942 * Parses a non qualified name
944 * Returns the Name parsed or NULL
948 xsltScanNCName(xsltParserContextPtr ctxt) {
949 const xmlChar *q, *cur;
956 val = xmlStringCurrentChar(NULL, cur, &len);
957 if (!IS_LETTER(val) && (val != '_'))
960 while ((IS_LETTER(val)) || (IS_DIGIT(val)) ||
961 (val == '.') || (val == '-') ||
963 (IS_COMBINING(val)) ||
964 (IS_EXTENDER(val))) {
966 val = xmlStringCurrentChar(NULL, cur, &len);
968 ret = xmlStrndup(q, cur - q);
975 * @ctxt: the XPath Parser context
976 * @prefix: the place to store the prefix
978 * Parse a qualified name
980 * Returns the Name parsed or NULL
984 xsltScanQName(xsltParserContextPtr ctxt, xmlChar **prefix) {
988 ret = xsltScanNCName(ctxt);
992 ret = xsltScanNCName(ctxt);
998 * xsltCompileIdKeyPattern:
999 * @ctxt: the compilation context
1000 * @name: a preparsed name
1001 * @aid: whether id/key are allowed there
1003 * Compile the XSLT LocationIdKeyPattern
1004 * [3] IdKeyPattern ::= 'id' '(' Literal ')'
1005 * | 'key' '(' Literal ',' Literal ')'
1007 * also handle NodeType and PI from:
1009 * [7] NodeTest ::= NameTest
1010 * | NodeType '(' ')'
1011 * | 'processing-instruction' '(' Literal ')'
1014 xsltCompileIdKeyPattern(xsltParserContextPtr ctxt, xmlChar *name, int aid) {
1015 xmlChar *lit = NULL;
1016 xmlChar *lit2 = NULL;
1019 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1020 xsltGenericError(xsltGenericErrorContext,
1021 "xsltCompileIdKeyPattern : ( expected\n");
1025 if ((aid) && (xmlStrEqual(name, (const xmlChar *)"id"))) {
1028 lit = xsltScanLiteral(ctxt);
1033 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1034 xsltGenericError(xsltGenericErrorContext,
1035 "xsltCompileIdKeyPattern : ) expected\n");
1040 PUSH(XSLT_OP_ID, lit, NULL);
1041 } else if ((aid) && (xmlStrEqual(name, (const xmlChar *)"key"))) {
1044 lit = xsltScanLiteral(ctxt);
1049 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1050 xsltGenericError(xsltGenericErrorContext,
1051 "xsltCompileIdKeyPattern : , expected\n");
1057 lit2 = xsltScanLiteral(ctxt);
1062 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1063 xsltGenericError(xsltGenericErrorContext,
1064 "xsltCompileIdKeyPattern : ) expected\n");
1069 /* TODO: support namespace in keys */
1070 PUSH(XSLT_OP_KEY, lit, lit2);
1071 } else if (xmlStrEqual(name, (const xmlChar *)"processing-instruction")) {
1075 lit = xsltScanLiteral(ctxt);
1080 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1081 xsltGenericError(xsltGenericErrorContext,
1082 "xsltCompileIdKeyPattern : ) expected\n");
1088 PUSH(XSLT_OP_PI, lit, NULL);
1089 } else if (xmlStrEqual(name, (const xmlChar *)"text")) {
1093 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1094 xsltGenericError(xsltGenericErrorContext,
1095 "xsltCompileIdKeyPattern : ) expected\n");
1100 PUSH(XSLT_OP_TEXT, NULL, NULL);
1101 } else if (xmlStrEqual(name, (const xmlChar *)"comment")) {
1105 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1106 xsltGenericError(xsltGenericErrorContext,
1107 "xsltCompileIdKeyPattern : ) expected\n");
1112 PUSH(XSLT_OP_COMMENT, NULL, NULL);
1113 } else if (xmlStrEqual(name, (const xmlChar *)"node")) {
1117 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1118 xsltGenericError(xsltGenericErrorContext,
1119 "xsltCompileIdKeyPattern : ) expected\n");
1124 PUSH(XSLT_OP_NODE, NULL, NULL);
1126 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1127 xsltGenericError(xsltGenericErrorContext,
1128 "xsltCompileIdKeyPattern : expecting 'key' or 'id' or node type\n");
1132 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1133 xsltGenericError(xsltGenericErrorContext,
1134 "xsltCompileIdKeyPattern : node type\n");
1144 * xsltCompileStepPattern:
1145 * @ctxt: the compilation context
1146 * @token: a posible precompiled name
1148 * Compile the XSLT StepPattern and generates a precompiled
1149 * form suitable for fast matching.
1151 * [5] StepPattern ::= ChildOrAttributeAxisSpecifier NodeTest Predicate*
1152 * [6] ChildOrAttributeAxisSpecifier ::= AbbreviatedAxisSpecifier
1153 * | ('child' | 'attribute') '::'
1155 * [7] NodeTest ::= NameTest
1156 * | NodeType '(' ')'
1157 * | 'processing-instruction' '(' Literal ')'
1158 * [8] Predicate ::= '[' PredicateExpr ']'
1159 * [9] PredicateExpr ::= Expr
1160 * [13] AbbreviatedAxisSpecifier ::= '@'?
1161 * [37] NameTest ::= '*' | NCName ':' '*' | QName
1165 xsltCompileStepPattern(xsltParserContextPtr ctxt, xmlChar *token) {
1166 xmlChar *name = NULL;
1167 const xmlChar *URI = NULL;
1168 xmlChar *URL = NULL;
1172 if ((token == NULL) && (CUR == '@')) {
1173 xmlChar *prefix = NULL;
1178 PUSH(XSLT_OP_ATTR, NULL, NULL);
1181 token = xsltScanQName(ctxt, &prefix);
1182 if (prefix != NULL) {
1185 ns = xmlSearchNs(ctxt->doc, ctxt->elem, prefix);
1187 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1188 xsltGenericError(xsltGenericErrorContext,
1189 "xsltCompileStepPattern : no namespace bound to prefix %s\n",
1192 URL = xmlStrdup(ns->href);
1196 if (token == NULL) {
1199 PUSH(XSLT_OP_ATTR, NULL, URL);
1202 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1203 xsltGenericError(xsltGenericErrorContext,
1204 "xsltCompileStepPattern : Name expected\n");
1208 PUSH(XSLT_OP_ATTR, token, URL);
1212 token = xsltScanName(ctxt);
1213 if (token == NULL) {
1216 PUSH(XSLT_OP_ALL, token, NULL);
1217 goto parse_predicate;
1219 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1220 xsltGenericError(xsltGenericErrorContext,
1221 "xsltCompileStepPattern : Name expected\n");
1230 xsltCompileIdKeyPattern(ctxt, token, 0);
1233 } else if (CUR == ':') {
1236 xmlChar *prefix = token;
1240 * This is a namespace match
1242 token = xsltScanName(ctxt);
1243 ns = xmlSearchNs(ctxt->doc, ctxt->elem, prefix);
1245 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1246 xsltGenericError(xsltGenericErrorContext,
1247 "xsltCompileStepPattern : no namespace bound to prefix %s\n",
1252 URL = xmlStrdup(ns->href);
1255 if (token == NULL) {
1258 PUSH(XSLT_OP_NS, URL, NULL);
1260 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1261 xsltGenericError(xsltGenericErrorContext,
1262 "xsltCompileStepPattern : Name expected\n");
1267 PUSH(XSLT_OP_ELEM, token, URL);
1271 if (xmlStrEqual(token, (const xmlChar *) "child")) {
1273 token = xsltScanName(ctxt);
1274 if (token == NULL) {
1277 PUSH(XSLT_OP_ALL, token, NULL);
1278 goto parse_predicate;
1280 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1281 xsltGenericError(xsltGenericErrorContext,
1282 "xsltCompileStepPattern : QName expected\n");
1287 URI = xsltGetQNameURI(ctxt->elem, &token);
1288 if (token == NULL) {
1292 name = xmlStrdup(token);
1294 URL = xmlStrdup(URI);
1296 PUSH(XSLT_OP_CHILD, name, URL);
1297 } else if (xmlStrEqual(token, (const xmlChar *) "attribute")) {
1299 token = xsltScanName(ctxt);
1300 if (token == NULL) {
1301 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1302 xsltGenericError(xsltGenericErrorContext,
1303 "xsltCompileStepPattern : QName expected\n");
1307 URI = xsltGetQNameURI(ctxt->elem, &token);
1308 if (token == NULL) {
1312 name = xmlStrdup(token);
1314 URL = xmlStrdup(URI);
1316 PUSH(XSLT_OP_ATTR, name, URL);
1318 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1319 xsltGenericError(xsltGenericErrorContext,
1320 "xsltCompileStepPattern : 'child' or 'attribute' expected\n");
1326 } else if (CUR == '*') {
1328 PUSH(XSLT_OP_ALL, token, NULL);
1330 URI = xsltGetQNameURI(ctxt->elem, &token);
1331 if (token == NULL) {
1336 URL = xmlStrdup(URI);
1337 PUSH(XSLT_OP_ELEM, token, URL);
1342 while (CUR == '[') {
1344 xmlChar *ret = NULL;
1349 /* TODO: avoid breaking in strings ... */
1351 /* Skip over nested predicates */
1362 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1363 xsltGenericError(xsltGenericErrorContext,
1364 "xsltCompileStepPattern : ']' expected\n");
1368 ret = xmlStrndup(q, CUR_PTR - q);
1369 PUSH(XSLT_OP_PREDICATE, ret, NULL);
1370 /* push the predicate lower than local test */
1384 * xsltCompileRelativePathPattern:
1385 * @comp: the compilation context
1386 * @token: a posible precompiled name
1388 * Compile the XSLT RelativePathPattern and generates a precompiled
1389 * form suitable for fast matching.
1391 * [4] RelativePathPattern ::= StepPattern
1392 * | RelativePathPattern '/' StepPattern
1393 * | RelativePathPattern '//' StepPattern
1396 xsltCompileRelativePathPattern(xsltParserContextPtr ctxt, xmlChar *token) {
1397 xsltCompileStepPattern(ctxt, token);
1401 while ((CUR != 0) && (CUR != '|')) {
1402 if ((CUR == '/') && (NXT(1) == '/')) {
1403 PUSH(XSLT_OP_ANCESTOR, NULL, NULL);
1407 xsltCompileStepPattern(ctxt, NULL);
1408 } else if (CUR == '/') {
1409 PUSH(XSLT_OP_PARENT, NULL, NULL);
1412 if ((CUR != 0) || (CUR == '|')) {
1413 xsltCompileRelativePathPattern(ctxt, NULL);
1427 * xsltCompileLocationPathPattern:
1428 * @ctxt: the compilation context
1430 * Compile the XSLT LocationPathPattern and generates a precompiled
1431 * form suitable for fast matching.
1433 * [2] LocationPathPattern ::= '/' RelativePathPattern?
1434 * | IdKeyPattern (('/' | '//') RelativePathPattern)?
1435 * | '//'? RelativePathPattern
1438 xsltCompileLocationPathPattern(xsltParserContextPtr ctxt) {
1440 if ((CUR == '/') && (NXT(1) == '/')) {
1442 * since we reverse the query
1443 * a leading // can be safely ignored
1447 xsltCompileRelativePathPattern(ctxt, NULL);
1448 } else if (CUR == '/') {
1450 * We need to find root as the parent
1454 PUSH(XSLT_OP_ROOT, NULL, NULL);
1455 if ((CUR != 0) || (CUR == '|')) {
1456 PUSH(XSLT_OP_PARENT, NULL, NULL);
1457 xsltCompileRelativePathPattern(ctxt, NULL);
1459 } else if (CUR == '*') {
1460 xsltCompileRelativePathPattern(ctxt, NULL);
1461 } else if (CUR == '@') {
1462 xsltCompileRelativePathPattern(ctxt, NULL);
1465 name = xsltScanName(ctxt);
1467 xsltPrintErrorContext(NULL, NULL, NULL); /* TODO */
1468 xsltGenericError(xsltGenericErrorContext,
1469 "xsltCompileLocationPathPattern : Name expected\n");
1474 if ((CUR == '(') && !xmlXPathIsNodeType(name)) {
1475 xsltCompileIdKeyPattern(ctxt, name, 1);
1476 if ((CUR == '/') && (NXT(1) == '/')) {
1477 PUSH(XSLT_OP_ANCESTOR, NULL, NULL);
1481 xsltCompileRelativePathPattern(ctxt, NULL);
1482 } else if (CUR == '/') {
1483 PUSH(XSLT_OP_PARENT, NULL, NULL);
1486 xsltCompileRelativePathPattern(ctxt, NULL);
1490 xsltCompileRelativePathPattern(ctxt, name);
1497 * xsltCompilePattern:
1498 * @pattern: an XSLT pattern
1499 * @doc: the containing document
1500 * @node: the containing element
1502 * Compile the XSLT pattern and generates a list of precompiled form suitable
1503 * for fast matching.
1505 * [1] Pattern ::= LocationPathPattern | Pattern '|' LocationPathPattern
1507 * Returns the generated pattern list or NULL in case of failure
1511 xsltCompilePattern(const xmlChar *pattern, xmlDocPtr doc, xmlNodePtr node) {
1512 xsltParserContextPtr ctxt = NULL;
1513 xsltCompMatchPtr element, first = NULL, previous = NULL;
1514 int current, start, end;
1516 if (pattern == NULL) {
1517 xsltPrintErrorContext(NULL, NULL, node); /* TODO */
1518 xsltGenericError(xsltGenericErrorContext,
1519 "xsltCompilePattern : NULL pattern\n");
1523 ctxt = xsltNewParserContext();
1529 while (pattern[current] != 0) {
1531 while (IS_BLANK(pattern[current]))
1534 while ((pattern[end] != 0) && (pattern[end] != '|'))
1536 if (current == end) {
1537 xsltPrintErrorContext(NULL, NULL, node); /* TODO */
1538 xsltGenericError(xsltGenericErrorContext,
1539 "xsltCompilePattern : NULL pattern\n");
1542 element = xsltNewCompMatch();
1543 if (element == NULL) {
1548 else if (previous != NULL)
1549 previous->next = element;
1552 ctxt->comp = element;
1553 ctxt->base = xmlStrndup(&pattern[start], end - start);
1554 if (ctxt->base == NULL)
1556 ctxt->cur = &(ctxt->base)[current - start];
1557 element->pattern = ctxt->base;
1559 #ifdef WITH_XSLT_DEBUG_PATTERN
1560 xsltGenericDebug(xsltGenericDebugContext,
1561 "xsltCompilePattern : parsing '%s'\n",
1564 xsltCompileLocationPathPattern(ctxt);
1569 * Reverse for faster interpretation.
1571 xsltReverseCompMatch(element);
1574 * Set-up the priority
1576 if (((element->steps[0].op == XSLT_OP_ELEM) ||
1577 (element->steps[0].op == XSLT_OP_ATTR)) &&
1578 (element->steps[0].value != NULL) &&
1579 (element->steps[1].op == XSLT_OP_END)) {
1580 element->priority = 0;
1582 } else if ((element->steps[0].op == XSLT_OP_ROOT) &&
1583 (element->steps[1].op == XSLT_OP_END)) {
1584 element->priority = 0;
1586 } else if ((element->steps[0].op == XSLT_OP_PI) &&
1587 (element->steps[0].value != NULL) &&
1588 (element->steps[1].op == XSLT_OP_END)) {
1589 element->priority = 0;
1590 } else if ((element->steps[0].op == XSLT_OP_ATTR) &&
1591 (element->steps[0].value2 != NULL) &&
1592 (element->steps[1].op == XSLT_OP_END)) {
1593 element->priority = -0.25;
1594 } else if ((element->steps[0].op == XSLT_OP_NS) &&
1595 (element->steps[0].value != NULL) &&
1596 (element->steps[1].op == XSLT_OP_END)) {
1597 element->priority = -0.25;
1598 } else if ((element->steps[0].op == XSLT_OP_ATTR) &&
1599 (element->steps[0].value == NULL) &&
1600 (element->steps[0].value2 == NULL) &&
1601 (element->steps[1].op == XSLT_OP_END)) {
1602 element->priority = -0.5;
1603 } else if (((element->steps[0].op == XSLT_OP_PI) ||
1604 (element->steps[0].op == XSLT_OP_TEXT) ||
1605 (element->steps[0].op == XSLT_OP_ALL) ||
1606 (element->steps[0].op == XSLT_OP_NODE) ||
1607 (element->steps[0].op == XSLT_OP_COMMENT)) &&
1608 (element->steps[1].op == XSLT_OP_END)) {
1609 element->priority = -0.5;
1611 element->priority = 0.5;
1613 #ifdef WITH_XSLT_DEBUG_PATTERN
1614 xsltGenericDebug(xsltGenericDebugContext,
1615 "xsltCompilePattern : parsed %s, default priority %f\n",
1616 element->pattern, element->priority);
1618 if (pattern[end] == '|')
1623 xsltPrintErrorContext(NULL, NULL, node); /* TODO */
1624 xsltGenericError(xsltGenericErrorContext,
1625 "xsltCompilePattern : NULL pattern\n");
1629 xsltFreeParserContext(ctxt);
1634 xsltFreeParserContext(ctxt);
1636 xsltFreeCompMatchList(first);
1640 /************************************************************************
1642 * Module interfaces *
1644 ************************************************************************/
1648 * @style: an XSLT stylesheet
1649 * @cur: an XSLT template
1650 * @mode: the mode name or NULL
1651 * @modeURI: the mode URI or NULL
1653 * Register the XSLT pattern associated to @cur
1655 * Returns -1 in case of error, 0 otherwise
1658 xsltAddTemplate(xsltStylesheetPtr style, xsltTemplatePtr cur,
1659 const xmlChar *mode, const xmlChar *modeURI) {
1660 xsltCompMatchPtr pat, list, *top = NULL, next;
1661 const xmlChar *name = NULL;
1662 float priority; /* the priority */
1664 if ((style == NULL) || (cur == NULL) || (cur->match == NULL))
1667 priority = cur->priority;
1668 pat = xsltCompilePattern(cur->match, style->doc, cur->elem);
1674 pat->template = cur;
1676 pat->mode = xmlStrdup(mode);
1677 if (modeURI != NULL)
1678 pat->modeURI = xmlStrdup(modeURI);
1679 if (priority != XSLT_PAT_NO_PRIORITY)
1680 pat->priority = priority;
1683 * insert it in the hash table list corresponding to its lookup name
1685 switch (pat->steps[0].op) {
1687 if (pat->steps[0].value != NULL)
1688 name = pat->steps[0].value;
1690 top = (xsltCompMatchPtr *) &(style->attrMatch);
1694 case XSLT_OP_PARENT:
1695 case XSLT_OP_ANCESTOR:
1696 top = (xsltCompMatchPtr *) &(style->elemMatch);
1699 top = (xsltCompMatchPtr *) &(style->rootMatch);
1702 top = (xsltCompMatchPtr *) &(style->keyMatch);
1705 /* TODO optimize ID !!! */
1708 top = (xsltCompMatchPtr *) &(style->elemMatch);
1711 case XSLT_OP_PREDICATE:
1712 xsltPrintErrorContext(NULL, style, NULL);
1713 xsltGenericError(xsltGenericErrorContext,
1714 "xsltAddTemplate: invalid compiled pattern\n");
1715 xsltFreeCompMatch(pat);
1718 * TODO: some flags at the top level about type based patterns
1719 * would be faster than inclusion in the hash table.
1722 if (pat->steps[0].value != NULL)
1723 name = pat->steps[0].value;
1725 top = (xsltCompMatchPtr *) &(style->piMatch);
1727 case XSLT_OP_COMMENT:
1728 top = (xsltCompMatchPtr *) &(style->commentMatch);
1731 top = (xsltCompMatchPtr *) &(style->textMatch);
1734 if (pat->steps[0].value != NULL)
1735 name = pat->steps[0].value;
1737 top = (xsltCompMatchPtr *) &(style->elemMatch);
1742 if (style->templatesHash == NULL) {
1743 style->templatesHash = xmlHashCreate(1024);
1744 if (style->templatesHash == NULL) {
1745 xsltFreeCompMatch(pat);
1748 xmlHashAddEntry3(style->templatesHash, name, mode, modeURI, pat);
1750 list = (xsltCompMatchPtr) xmlHashLookup3(style->templatesHash,
1751 name, mode, modeURI);
1753 xmlHashAddEntry3(style->templatesHash, name,
1754 mode, modeURI, pat);
1757 * Note '<=' since one must choose among the matching
1758 * template rules that are left, the one that occurs
1759 * last in the stylesheet
1761 if (list->priority <= pat->priority) {
1763 xmlHashUpdateEntry3(style->templatesHash, name,
1764 mode, modeURI, pat, NULL);
1766 while (list->next != NULL) {
1767 if (list->next->priority <= pat->priority)
1771 pat->next = list->next;
1776 } else if (top != NULL) {
1781 } else if (list->priority <= pat->priority) {
1785 while (list->next != NULL) {
1786 if (list->next->priority <= pat->priority)
1790 pat->next = list->next;
1794 xsltPrintErrorContext(NULL, style, NULL);
1795 xsltGenericError(xsltGenericErrorContext,
1796 "xsltAddTemplate: invalid compiled pattern\n");
1797 xsltFreeCompMatch(pat);
1800 #ifdef WITH_XSLT_DEBUG_PATTERN
1802 xsltGenericDebug(xsltGenericDebugContext,
1803 "added pattern : '%s' mode '%s' priority %f\n",
1804 pat->pattern, pat->mode, pat->priority);
1806 xsltGenericDebug(xsltGenericDebugContext,
1807 "added pattern : '%s' priority %f\n",
1808 pat->pattern, pat->priority);
1818 * @ctxt: a XSLT process context
1819 * @node: the node being processed
1820 * @style: the current style
1822 * Finds the template applying to this node, if @style is non-NULL
1823 * it means one needs to look for the next imported template in scope.
1825 * Returns the xsltTemplatePtr or NULL if not found
1828 xsltGetTemplate(xsltTransformContextPtr ctxt, xmlNodePtr node,
1829 xsltStylesheetPtr style) {
1830 xsltStylesheetPtr curstyle;
1831 xsltTemplatePtr ret = NULL;
1832 const xmlChar *name = NULL;
1833 xsltCompMatchPtr list = NULL;
1836 if ((ctxt == NULL) || (node == NULL))
1839 if (style == NULL) {
1840 curstyle = ctxt->style;
1842 curstyle = xsltNextImport(style);
1845 while ((curstyle != NULL) && (curstyle != style)) {
1846 priority = XSLT_PAT_NO_PRIORITY;
1847 /* TODO : handle IDs/keys here ! */
1848 if (curstyle->templatesHash != NULL) {
1850 * Use the top name as selector
1852 switch (node->type) {
1853 case XML_ELEMENT_NODE:
1854 case XML_ATTRIBUTE_NODE:
1858 case XML_DOCUMENT_NODE:
1859 case XML_HTML_DOCUMENT_NODE:
1861 case XML_CDATA_SECTION_NODE:
1862 case XML_COMMENT_NODE:
1863 case XML_ENTITY_REF_NODE:
1864 case XML_ENTITY_NODE:
1865 case XML_DOCUMENT_TYPE_NODE:
1866 case XML_DOCUMENT_FRAG_NODE:
1867 case XML_NOTATION_NODE:
1869 case XML_ELEMENT_DECL:
1870 case XML_ATTRIBUTE_DECL:
1871 case XML_ENTITY_DECL:
1872 case XML_NAMESPACE_DECL:
1873 case XML_XINCLUDE_START:
1874 case XML_XINCLUDE_END:
1883 * find the list of appliable expressions based on the name
1885 list = (xsltCompMatchPtr) xmlHashLookup3(curstyle->templatesHash,
1886 name, ctxt->mode, ctxt->modeURI);
1889 while (list != NULL) {
1890 if (xsltTestCompMatch(ctxt, list, node,
1891 ctxt->mode, ctxt->modeURI)) {
1892 ret = list->template;
1893 priority = list->priority;
1901 * find alternate generic matches
1903 switch (node->type) {
1904 case XML_ELEMENT_NODE:
1905 list = curstyle->elemMatch;
1907 case XML_ATTRIBUTE_NODE:
1908 list = curstyle->attrMatch;
1911 list = curstyle->piMatch;
1913 case XML_DOCUMENT_NODE:
1914 case XML_HTML_DOCUMENT_NODE:
1915 list = curstyle->rootMatch;
1918 case XML_CDATA_SECTION_NODE:
1919 list = curstyle->textMatch;
1921 case XML_COMMENT_NODE:
1922 list = curstyle->commentMatch;
1924 case XML_ENTITY_REF_NODE:
1925 case XML_ENTITY_NODE:
1926 case XML_DOCUMENT_TYPE_NODE:
1927 case XML_DOCUMENT_FRAG_NODE:
1928 case XML_NOTATION_NODE:
1930 case XML_ELEMENT_DECL:
1931 case XML_ATTRIBUTE_DECL:
1932 case XML_ENTITY_DECL:
1933 case XML_NAMESPACE_DECL:
1934 case XML_XINCLUDE_START:
1935 case XML_XINCLUDE_END:
1941 while ((list != NULL) &&
1942 ((ret == NULL) || (list->priority > priority))) {
1943 if (xsltTestCompMatch(ctxt, list, node,
1944 ctxt->mode, ctxt->modeURI)) {
1945 ret = list->template;
1946 priority = list->priority;
1952 * Some of the tests for elements can also apply to documents
1954 if ((node->type == XML_DOCUMENT_NODE) ||
1955 (node->type == XML_HTML_DOCUMENT_NODE)) {
1956 list = curstyle->elemMatch;
1957 while ((list != NULL) &&
1958 ((ret == NULL) || (list->priority > priority))) {
1959 if (xsltTestCompMatch(ctxt, list, node,
1960 ctxt->mode, ctxt->modeURI)) {
1961 ret = list->template;
1962 priority = list->priority;
1969 if (node->_private != NULL) {
1970 list = curstyle->keyMatch;
1971 while ((list != NULL) &&
1972 ((ret == NULL) || (list->priority > priority))) {
1973 if (xsltTestCompMatch(ctxt, list, node,
1974 ctxt->mode, ctxt->modeURI)) {
1975 ret = list->template;
1976 priority = list->priority;
1986 * Cycle on next curstylesheet import.
1988 curstyle = xsltNextImport(curstyle);
1994 * xsltCleanupTemplates:
1995 * @style: an XSLT stylesheet
1997 * Cleanup the state of the templates used by the stylesheet and
1998 * the ones it imports.
2001 xsltCleanupTemplates(xsltStylesheetPtr style) {
2002 while (style != NULL) {
2003 xmlHashScan((xmlHashTablePtr) style->templatesHash,
2004 (xmlHashScanner) xsltCleanupCompMatch, NULL);
2006 style = xsltNextImport(style);
2011 * xsltFreeTemplateHashes:
2012 * @style: an XSLT stylesheet
2014 * Free up the memory used by xsltAddTemplate/xsltGetTemplate mechanism
2017 xsltFreeTemplateHashes(xsltStylesheetPtr style) {
2018 if (style->templatesHash != NULL)
2019 xmlHashFree((xmlHashTablePtr) style->templatesHash,
2020 (xmlHashDeallocator) xsltFreeCompMatchList);
2021 if (style->rootMatch != NULL)
2022 xsltFreeCompMatchList(style->rootMatch);
2023 if (style->keyMatch != NULL)
2024 xsltFreeCompMatchList(style->keyMatch);
2025 if (style->elemMatch != NULL)
2026 xsltFreeCompMatchList(style->elemMatch);
2027 if (style->attrMatch != NULL)
2028 xsltFreeCompMatchList(style->attrMatch);
2029 if (style->parentMatch != NULL)
2030 xsltFreeCompMatchList(style->parentMatch);
2031 if (style->textMatch != NULL)
2032 xsltFreeCompMatchList(style->textMatch);
2033 if (style->piMatch != NULL)
2034 xsltFreeCompMatchList(style->piMatch);
2035 if (style->commentMatch != NULL)
2036 xsltFreeCompMatchList(style->commentMatch);
2041 * @node: a node in the source tree
2042 * @pattern: an XSLT pattern
2043 * @ctxtdoc: context document (for namespaces)
2044 * @ctxtnode: context node (for namespaces)
2046 * Determine if a node matches a pattern.
2049 xsltMatchPattern(xsltTransformContextPtr context,
2051 const xmlChar *pattern,
2053 xmlNodePtr ctxtnode)
2056 xsltCompMatchPtr first, comp;
2058 if ((context != NULL) && (pattern != NULL)) {
2059 first = xsltCompilePattern(pattern, ctxtdoc, ctxtnode);
2060 for (comp = first; comp != NULL; comp = comp->next) {
2061 match = xsltTestCompMatch(context, comp, node, NULL, NULL);
2066 xsltFreeCompMatchList(first);