fixed implementation for | added a specific regression test Daniel

* pattern.c xmllint.c: fixed implementation for |
* test/pattern/conj.* result/pattern/conj: added a specific regression
  test
Daniel
This commit is contained in:
Daniel Veillard 2005-02-05 23:20:22 +00:00
parent f1f08cf8dc
commit 2b2e02d6bb
6 changed files with 106 additions and 8 deletions

View File

@ -1,3 +1,9 @@
Sun Feb 6 00:17:57 CET 2005 Daniel Veillard <daniel@veillard.com>
* pattern.c xmllint.c: fixed implementation for |
* test/pattern/conj.* result/pattern/conj: added a specific regression
test
Sat Feb 5 18:36:56 CET 2005 Daniel Veillard <daniel@veillard.com> Sat Feb 5 18:36:56 CET 2005 Daniel Veillard <daniel@veillard.com>
* pattern.c: first implementation for | support * pattern.c: first implementation for | support

View File

@ -19,8 +19,6 @@
* currently push(NULL, NULL) means a reset of the streaming context * currently push(NULL, NULL) means a reset of the streaming context
* and indicating we are on / (the document node), probably need * and indicating we are on / (the document node), probably need
* something similar for . * something similar for .
* - handling of disjunction "pattern1 | pattern2" mean needed to build
* and check a list internally
* - get rid of the "compile" starting with lowercase * - get rid of the "compile" starting with lowercase
* - get rid of the Strdup/Strndup in case of dictionary * - get rid of the Strdup/Strndup in case of dictionary
*/ */
@ -1303,10 +1301,14 @@ xmlNewStreamCtxt(xmlStreamCompPtr stream) {
*/ */
void void
xmlFreeStreamCtxt(xmlStreamCtxtPtr stream) { xmlFreeStreamCtxt(xmlStreamCtxtPtr stream) {
if (stream != NULL) { xmlStreamCtxtPtr next;
while (stream != NULL) {
next = stream->next;
if (stream->states != NULL) if (stream->states != NULL)
xmlFree(stream->states); xmlFree(stream->states);
xmlFree(stream); xmlFree(stream);
stream = next;
} }
} }
@ -1367,6 +1369,9 @@ xmlStreamPush(xmlStreamCtxtPtr stream,
const xmlChar *name, const xmlChar *ns) { const xmlChar *name, const xmlChar *ns) {
int ret = 0, err = 0, tmp, i, m, match, step, desc, final; int ret = 0, err = 0, tmp, i, m, match, step, desc, final;
xmlStreamCompPtr comp; xmlStreamCompPtr comp;
#ifdef DEBUG_STREAMING
xmlStreamCtxtPtr orig = stream;
#endif
if ((stream == NULL) || (stream->nbState < 0)) if ((stream == NULL) || (stream->nbState < 0))
return(-1); return(-1);
@ -1382,8 +1387,10 @@ xmlStreamPush(xmlStreamCtxtPtr stream,
err++; err++;
if (comp->steps[tmp].flags & XML_STREAM_STEP_FINAL) if (comp->steps[tmp].flags & XML_STREAM_STEP_FINAL)
ret = 1; ret = 1;
stream = stream->next;
continue; /* while */ continue; /* while */
} }
stream = stream->next;
continue; /* while */ continue; /* while */
} }
/* /*
@ -1486,11 +1493,11 @@ xmlStreamPush(xmlStreamCtxtPtr stream,
stream = stream->next; stream = stream->next;
} /* while stream != NULL */ } /* while stream != NULL */
#ifdef DEBUG_STREAMING
xmlDebugStreamCtxt(stream, ret);
#endif
if (err > 0) if (err > 0)
ret = -1; ret = -1;
#ifdef DEBUG_STREAMING
xmlDebugStreamCtxt(orig, ret);
#endif
return(ret); return(ret);
} }
@ -1560,8 +1567,8 @@ xmlPatterncompile(const xmlChar *pattern, xmlDict *dict,
return(NULL); return(NULL);
start = pattern; start = pattern;
while (*or != 0) {
or = start; or = start;
while (*or != 0) {
tmp = NULL; tmp = NULL;
while ((*or != 0) && (*or != '|')) or++; while ((*or != 0) && (*or != '|')) or++;
if (*or == 0) if (*or == 0)
@ -1591,11 +1598,11 @@ xmlPatterncompile(const xmlChar *pattern, xmlDict *dict,
xmlStreamCompile(cur); xmlStreamCompile(cur);
if (xmlReversePattern(cur) < 0) if (xmlReversePattern(cur) < 0)
goto error; goto error;
start = or;
if (tmp != NULL) { if (tmp != NULL) {
xmlFree(tmp); xmlFree(tmp);
tmp = NULL; tmp = NULL;
} }
start = or;
} }
return(ret); return(ret);
error: error:

47
result/pattern/conj Normal file
View File

@ -0,0 +1,47 @@
Node /a matches pattern a|b
Node /a/b matches pattern a|b
Node /a/b/c[1]/b matches pattern a|b
Node /a/b/c[2]/b matches pattern a|b
Node /a/b/c[2]/c/b matches pattern a|b
Node /a/c/b matches pattern a|b
Node /a matches pattern a|c
Node /a/b/c[1] matches pattern a|c
Node /a/b/c[2] matches pattern a|c
Node /a/b/c[2]/c matches pattern a|c
Node /a/c matches pattern a|c
Node /a/b matches pattern b|c
Node /a/b/c[1] matches pattern b|c
Node /a/b/c[1]/b matches pattern b|c
Node /a/b/c[2] matches pattern b|c
Node /a/b/c[2]/b matches pattern b|c
Node /a/b/c[2]/c matches pattern b|c
Node /a/b/c[2]/c/b matches pattern b|c
Node /a/c matches pattern b|c
Node /a/c/b matches pattern b|c
Node /a matches pattern a|b|c
Node /a/b matches pattern a|b|c
Node /a/b/c[1] matches pattern a|b|c
Node /a/b/c[1]/b matches pattern a|b|c
Node /a/b/c[2] matches pattern a|b|c
Node /a/b/c[2]/b matches pattern a|b|c
Node /a/b/c[2]/c matches pattern a|b|c
Node /a/b/c[2]/c/b matches pattern a|b|c
Node /a/c matches pattern a|b|c
Node /a/c/b matches pattern a|b|c
Node /a matches pattern /a|b
Node /a/b matches pattern /a|b
Node /a/b/c[1]/b matches pattern /a|b
Node /a/b/c[2]/b matches pattern /a|b
Node /a/b/c[2]/c/b matches pattern /a|b
Node /a/c/b matches pattern /a|b
Node /a matches pattern b|/a
Node /a/b matches pattern b|/a
Node /a/b/c[1]/b matches pattern b|/a
Node /a/b/c[2]/b matches pattern b|/a
Node /a/b/c[2]/c/b matches pattern b|/a
Node /a/c/b matches pattern b|/a
Node /a/b/c[1] matches pattern a//c|b//c
Node /a/b/c[2] matches pattern a//c|b//c
Node /a/b/c[2]/c matches pattern a//c|b//c
Node /a/c matches pattern a//c|b//c
Node /a matches pattern d|e|f|g|h|a

8
test/pattern/conj.pat Normal file
View File

@ -0,0 +1,8 @@
a|b
a|c
b|c
a|b|c
/a|b
b|/a
a//c|b//c
d|e|f|g|h|a

13
test/pattern/conj.xml Normal file
View File

@ -0,0 +1,13 @@
<a>
<b>
<c><b/></c>
<c>
<b/>
<c><b/></c>
</c>
</b>
<c>
<b>
</b>
</c>
</a>

View File

@ -1062,6 +1062,17 @@ static void walkDoc(xmlDocPtr doc) {
pattern = NULL; pattern = NULL;
} }
} }
if (patternc != NULL) {
patstream = xmlPatternGetStreamCtxt(patternc);
if (patstream != NULL) {
ret = xmlStreamPush(patstream, NULL, NULL);
if (ret < 0) {
fprintf(stderr, "xmlStreamPush() failure\n");
xmlFreeStreamCtxt(patstream);
patstream = NULL;
}
}
}
#endif /* LIBXML_PATTERN_ENABLED */ #endif /* LIBXML_PATTERN_ENABLED */
reader = xmlReaderWalker(doc); reader = xmlReaderWalker(doc);
if (reader != NULL) { if (reader != NULL) {
@ -1090,6 +1101,12 @@ static void walkDoc(xmlDocPtr doc) {
fprintf(stderr, "Failed to crate a reader from the document\n"); fprintf(stderr, "Failed to crate a reader from the document\n");
progresult = XMLLINT_ERR_UNCLASS; progresult = XMLLINT_ERR_UNCLASS;
} }
#ifdef LIBXML_PATTERN_ENABLED
if (patstream != NULL) {
xmlFreeStreamCtxt(patstream);
patstream = NULL;
}
#endif
} }
#endif /* LIBXML_READER_ENABLED */ #endif /* LIBXML_READER_ENABLED */