blob: 312dfc5ecdb300dccae25bb5a36fbd6725d43a77 [file] [log] [blame]
Daniel Veillarded6c5492005-07-23 15:00:22 +00001/*
Daniel Veillarde70375c2005-07-30 21:09:12 +00002 * schematron.c : implementation of the Schematron schema validity checking
Daniel Veillarded6c5492005-07-23 15:00:22 +00003 *
4 * See Copyright for the status of this software.
5 *
Daniel Veillarde70375c2005-07-30 21:09:12 +00006 * Daniel Veillard <daniel@veillard.com>
7 */
8
9/*
10 * TODO:
11 * + double check the semantic, especially
12 * - multiple rules applying in a single pattern/node
13 * - the semantic of libxml2 patterns vs. XSLT production referenced
14 * by the spec.
15 * + export of results in SVRL
16 * + full parsing and coverage of the spec, conformance of the input to the
17 * spec
18 * + divergences between the draft and the ISO proposed standard :-(
19 * + hook and test include
20 * + try and compare with the XSLT version
Daniel Veillarded6c5492005-07-23 15:00:22 +000021 */
22
23#define IN_LIBXML
24#include "libxml.h"
25
26#ifdef LIBXML_SCHEMATRON_ENABLED
27
28#include <string.h>
29#include <libxml/parser.h>
30#include <libxml/tree.h>
31#include <libxml/uri.h>
32#include <libxml/xpath.h>
33#include <libxml/xpathInternals.h>
34#include <libxml/pattern.h>
35#include <libxml/schematron.h>
36
37#define SCHEMATRON_PARSE_OPTIONS XML_PARSE_NOENT
38
Daniel Veillarde70375c2005-07-30 21:09:12 +000039#define SCT_OLD_NS BAD_CAST "http://www.ascc.net/xml/schematron"
40
41#define XML_SCHEMATRON_NS BAD_CAST "http://purl.oclc.org/dsdl/schematron"
42
43
Daniel Veillarded6c5492005-07-23 15:00:22 +000044static const xmlChar *xmlSchematronNs = XML_SCHEMATRON_NS;
Daniel Veillarde70375c2005-07-30 21:09:12 +000045static const xmlChar *xmlOldSchematronNs = SCT_OLD_NS;
Daniel Veillarded6c5492005-07-23 15:00:22 +000046
47#define IS_SCHEMATRON(node, elem) \
48 ((node != NULL) && (node->type == XML_ELEMENT_NODE ) && \
49 (node->ns != NULL) && \
50 (xmlStrEqual(node->name, (const xmlChar *) elem)) && \
Daniel Veillarde70375c2005-07-30 21:09:12 +000051 ((xmlStrEqual(node->ns->href, xmlSchematronNs)) || \
52 (xmlStrEqual(node->ns->href, xmlOldSchematronNs))))
Daniel Veillarded6c5492005-07-23 15:00:22 +000053
54#define NEXT_SCHEMATRON(node) \
55 while (node != NULL) { \
56 if ((node->type == XML_ELEMENT_NODE ) && (node->ns != NULL) && \
Daniel Veillarde70375c2005-07-30 21:09:12 +000057 ((xmlStrEqual(node->ns->href, xmlSchematronNs)) || \
58 (xmlStrEqual(node->ns->href, xmlOldSchematronNs)))) \
Daniel Veillarded6c5492005-07-23 15:00:22 +000059 break; \
60 node = node->next; \
61 }
62
63/**
64 * TODO:
65 *
66 * macro to flag unimplemented blocks
67 */
68#define TODO \
69 xmlGenericError(xmlGenericErrorContext, \
70 "Unimplemented block at %s:%d\n", \
71 __FILE__, __LINE__);
72
Daniel Veillarde70375c2005-07-30 21:09:12 +000073typedef enum {
74 XML_SCHEMATRON_ASSERT=1,
75 XML_SCHEMATRON_REPORT=2
76} xmlSchematronTestType;
77
Daniel Veillarded6c5492005-07-23 15:00:22 +000078/**
79 * _xmlSchematronTest:
80 *
81 * A Schematrons test, either an assert or a report
82 */
83typedef struct _xmlSchematronTest xmlSchematronTest;
84typedef xmlSchematronTest *xmlSchematronTestPtr;
85struct _xmlSchematronTest {
86 xmlSchematronTestPtr next; /* the next test in the list */
Daniel Veillarde70375c2005-07-30 21:09:12 +000087 xmlSchematronTestType type; /* the test type */
Daniel Veillarded6c5492005-07-23 15:00:22 +000088 xmlNodePtr node; /* the node in the tree */
89 xmlChar *test; /* the expression to test */
90 xmlXPathCompExprPtr comp; /* the compiled expression */
Daniel Veillardd4501d72005-07-24 14:27:16 +000091 xmlChar *report; /* the message to report */
Daniel Veillarded6c5492005-07-23 15:00:22 +000092};
93
94/**
95 * _xmlSchematronRule:
96 *
97 * A Schematrons rule
98 */
99typedef struct _xmlSchematronRule xmlSchematronRule;
100typedef xmlSchematronRule *xmlSchematronRulePtr;
101struct _xmlSchematronRule {
102 xmlSchematronRulePtr next; /* the next rule in the list */
Daniel Veillarde70375c2005-07-30 21:09:12 +0000103 xmlSchematronRulePtr patnext;/* the next rule in the pattern list */
Daniel Veillarded6c5492005-07-23 15:00:22 +0000104 xmlNodePtr node; /* the node in the tree */
105 xmlChar *context; /* the context evaluation rule */
106 xmlSchematronTestPtr tests; /* the list of tests */
107 xmlPatternPtr pattern; /* the compiled pattern associated */
Daniel Veillardd4501d72005-07-24 14:27:16 +0000108 xmlChar *report; /* the message to report */
Daniel Veillarded6c5492005-07-23 15:00:22 +0000109};
110
111/**
Daniel Veillarde70375c2005-07-30 21:09:12 +0000112 * _xmlSchematronPattern:
113 *
114 * A Schematrons pattern
115 */
116typedef struct _xmlSchematronPattern xmlSchematronPattern;
117typedef xmlSchematronPattern *xmlSchematronPatternPtr;
118struct _xmlSchematronPattern {
119 xmlSchematronPatternPtr next;/* the next pattern in the list */
120 xmlSchematronRulePtr rules; /* the list of rules */
121 xmlChar *name; /* the name of the pattern */
122};
123
124/**
Daniel Veillarded6c5492005-07-23 15:00:22 +0000125 * _xmlSchematron:
126 *
127 * A Schematrons definition
128 */
129struct _xmlSchematron {
130 const xmlChar *name; /* schema name */
131 int preserve; /* was the document preserved by the user */
132 xmlDocPtr doc; /* pointer to the parsed document */
133 int flags; /* specific to this schematron */
134
135 void *_private; /* unused by the library */
136 xmlDictPtr dict; /* the dictionnary used internally */
137
138 const xmlChar *title; /* the title if any */
139
140 int nbNs; /* the number of namespaces */
141
142 int nbPattern; /* the number of patterns */
Daniel Veillarde70375c2005-07-30 21:09:12 +0000143 xmlSchematronPatternPtr patterns;/* the patterns found */
Daniel Veillarded6c5492005-07-23 15:00:22 +0000144 xmlSchematronRulePtr rules; /* the rules gathered */
145 int nbNamespaces; /* number of namespaces in the array */
146 int maxNamespaces; /* size of the array */
147 const xmlChar **namespaces; /* the array of namespaces */
148};
149
150/**
151 * xmlSchematronValidCtxt:
152 *
153 * A Schematrons validation context
154 */
155struct _xmlSchematronValidCtxt {
156 int type;
157 int flags; /* an or of xmlSchematronValidOptions */
158
159 xmlDictPtr dict;
160 int nberrors;
161 int err;
162
163 xmlSchematronPtr schema;
164 xmlXPathContextPtr xctxt;
165
166 FILE *outputFile; /* if using XML_SCHEMATRON_OUT_FILE */
167 xmlBufferPtr outputBuffer; /* if using XML_SCHEMATRON_OUT_BUFFER */
168 xmlOutputWriteCallback iowrite; /* if using XML_SCHEMATRON_OUT_IO */
169 xmlOutputCloseCallback ioclose;
170 void *ioctx;
171};
172
173struct _xmlSchematronParserCtxt {
174 int type;
175 const xmlChar *URL;
176 xmlDocPtr doc;
177 int preserve; /* Whether the doc should be freed */
178 const char *buffer;
179 int size;
180
181 xmlDictPtr dict; /* dictionnary for interned string names */
182
183 int nberrors;
184 int err;
185 xmlXPathContextPtr xctxt; /* the XPath context used for compilation */
186 xmlSchematronPtr schema;
187
188 int nbNamespaces; /* number of namespaces in the array */
189 int maxNamespaces; /* size of the array */
190 const xmlChar **namespaces; /* the array of namespaces */
191
192 int nbIncludes; /* number of includes in the array */
193 int maxIncludes; /* size of the array */
194 xmlNodePtr *includes; /* the array of includes */
195
196 /* error rreporting data */
197 void *userData; /* user specific data block */
198 xmlSchematronValidityErrorFunc error;/* the callback in case of errors */
199 xmlSchematronValidityWarningFunc warning;/* callback in case of warning */
200 xmlStructuredErrorFunc serror; /* the structured function */
201
202};
203
204#define XML_STRON_CTXT_PARSER 1
205#define XML_STRON_CTXT_VALIDATOR 2
206
207/************************************************************************
208 * *
209 * Error reporting *
210 * *
211 ************************************************************************/
212
213/**
214 * xmlSchematronPErrMemory:
215 * @node: a context node
216 * @extra: extra informations
217 *
218 * Handle an out of memory condition
219 */
220static void
221xmlSchematronPErrMemory(xmlSchematronParserCtxtPtr ctxt,
222 const char *extra, xmlNodePtr node)
223{
224 if (ctxt != NULL)
225 ctxt->nberrors++;
226 __xmlSimpleError(XML_FROM_SCHEMASP, XML_ERR_NO_MEMORY, node, NULL,
227 extra);
228}
229
230/**
231 * xmlSchematronPErr:
232 * @ctxt: the parsing context
233 * @node: the context node
234 * @error: the error code
235 * @msg: the error message
236 * @str1: extra data
237 * @str2: extra data
238 *
239 * Handle a parser error
240 */
241static void
242xmlSchematronPErr(xmlSchematronParserCtxtPtr ctxt, xmlNodePtr node, int error,
243 const char *msg, const xmlChar * str1, const xmlChar * str2)
244{
245 xmlGenericErrorFunc channel = NULL;
246 xmlStructuredErrorFunc schannel = NULL;
247 void *data = NULL;
248
249 if (ctxt != NULL) {
250 ctxt->nberrors++;
251 channel = ctxt->error;
252 data = ctxt->userData;
253 schannel = ctxt->serror;
254 }
255 __xmlRaiseError(schannel, channel, data, ctxt, node, XML_FROM_SCHEMASP,
256 error, XML_ERR_ERROR, NULL, 0,
257 (const char *) str1, (const char *) str2, NULL, 0, 0,
258 msg, str1, str2);
259}
260
261/**
262 * xmlSchematronVTypeErrMemory:
263 * @node: a context node
264 * @extra: extra informations
265 *
266 * Handle an out of memory condition
267 */
268static void
269xmlSchematronVErrMemory(xmlSchematronValidCtxtPtr ctxt,
270 const char *extra, xmlNodePtr node)
271{
272 if (ctxt != NULL) {
273 ctxt->nberrors++;
274 ctxt->err = XML_SCHEMAV_INTERNAL;
275 }
276 __xmlSimpleError(XML_FROM_SCHEMASV, XML_ERR_NO_MEMORY, node, NULL,
277 extra);
278}
279
280/************************************************************************
281 * *
282 * Parsing and compilation of the Schematrontrons *
283 * *
284 ************************************************************************/
285
286/**
287 * xmlSchematronAddTest:
288 * @ctxt: the schema parsing context
Daniel Veillarde70375c2005-07-30 21:09:12 +0000289 * @type: the type of test
290 * @rule: the parent rule
Daniel Veillarded6c5492005-07-23 15:00:22 +0000291 * @node: the node hosting the test
Daniel Veillarde70375c2005-07-30 21:09:12 +0000292 * @test: the associated test
Daniel Veillardd4501d72005-07-24 14:27:16 +0000293 * @report: the associated report string
Daniel Veillarded6c5492005-07-23 15:00:22 +0000294 *
295 * Add a test to a schematron
296 *
297 * Returns the new pointer or NULL in case of error
298 */
299static xmlSchematronTestPtr
Daniel Veillarde70375c2005-07-30 21:09:12 +0000300xmlSchematronAddTest(xmlSchematronParserCtxtPtr ctxt,
301 xmlSchematronTestType type,
Daniel Veillarded6c5492005-07-23 15:00:22 +0000302 xmlSchematronRulePtr rule,
Daniel Veillardd4501d72005-07-24 14:27:16 +0000303 xmlNodePtr node, xmlChar *test, xmlChar *report)
Daniel Veillarded6c5492005-07-23 15:00:22 +0000304{
305 xmlSchematronTestPtr ret;
306 xmlXPathCompExprPtr comp;
307
308 if ((ctxt == NULL) || (rule == NULL) || (node == NULL) ||
309 (test == NULL))
310 return(NULL);
311
312 /*
313 * try first to compile the test expression
314 */
315 comp = xmlXPathCtxtCompile(ctxt->xctxt, test);
316 if (comp == NULL) {
317 xmlSchematronPErr(ctxt, node,
318 XML_SCHEMAP_NOROOT,
319 "Failed to compile test expression %s",
320 test, NULL);
321 return(NULL);
322 }
323
324 ret = (xmlSchematronTestPtr) xmlMalloc(sizeof(xmlSchematronTest));
325 if (ret == NULL) {
326 xmlSchematronPErrMemory(ctxt, "allocating schema test", node);
327 return (NULL);
328 }
329 memset(ret, 0, sizeof(xmlSchematronTest));
330 ret->type = type;
331 ret->node = node;
332 ret->test = test;
333 ret->comp = comp;
Daniel Veillardd4501d72005-07-24 14:27:16 +0000334 ret->report = report;
Daniel Veillardc740a172005-07-31 12:17:24 +0000335 ret->next = NULL;
336 if (rule->tests == NULL) {
337 rule->tests = ret;
338 } else {
339 xmlSchematronTestPtr prev = rule->tests;
340
341 while (prev->next != NULL)
342 prev = prev->next;
343 prev->next = ret;
344 }
Daniel Veillarded6c5492005-07-23 15:00:22 +0000345 return (ret);
346}
347
348/**
349 * xmlSchematronFreeTests:
350 * @tests: a list of tests
351 *
352 * Free a list of tests.
353 */
354static void
355xmlSchematronFreeTests(xmlSchematronTestPtr tests) {
356 xmlSchematronTestPtr next;
357
358 while (tests != NULL) {
359 next = tests->next;
360 if (tests->test != NULL)
361 xmlFree(tests->test);
362 if (tests->comp != NULL)
363 xmlXPathFreeCompExpr(tests->comp);
Daniel Veillardd4501d72005-07-24 14:27:16 +0000364 if (tests->report != NULL)
365 xmlFree(tests->report);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000366 xmlFree(tests);
367 tests = next;
368 }
369}
370
371/**
372 * xmlSchematronAddRule:
373 * @ctxt: the schema parsing context
374 * @schema: a schema structure
375 * @node: the node hosting the rule
376 * @context: the associated context string
Daniel Veillardd4501d72005-07-24 14:27:16 +0000377 * @report: the associated report string
Daniel Veillarded6c5492005-07-23 15:00:22 +0000378 *
379 * Add a rule to a schematron
380 *
381 * Returns the new pointer or NULL in case of error
382 */
383static xmlSchematronRulePtr
384xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema,
Daniel Veillarde70375c2005-07-30 21:09:12 +0000385 xmlSchematronPatternPtr pat, xmlNodePtr node,
386 xmlChar *context, xmlChar *report)
Daniel Veillarded6c5492005-07-23 15:00:22 +0000387{
388 xmlSchematronRulePtr ret;
389 xmlPatternPtr pattern;
390
391 if ((ctxt == NULL) || (schema == NULL) || (node == NULL) ||
392 (context == NULL))
393 return(NULL);
394
395 /*
396 * Try first to compile the pattern
397 */
398 pattern = xmlPatterncompile(context, ctxt->dict, XML_PATTERN_XPATH,
399 ctxt->namespaces);
400 if (pattern == NULL) {
401 xmlSchematronPErr(ctxt, node,
402 XML_SCHEMAP_NOROOT,
403 "Failed to compile context expression %s",
404 context, NULL);
405 }
406
407 ret = (xmlSchematronRulePtr) xmlMalloc(sizeof(xmlSchematronRule));
408 if (ret == NULL) {
409 xmlSchematronPErrMemory(ctxt, "allocating schema rule", node);
410 return (NULL);
411 }
412 memset(ret, 0, sizeof(xmlSchematronRule));
413 ret->node = node;
414 ret->context = context;
Daniel Veillarded6c5492005-07-23 15:00:22 +0000415 ret->pattern = pattern;
Daniel Veillardd4501d72005-07-24 14:27:16 +0000416 ret->report = report;
Daniel Veillardc740a172005-07-31 12:17:24 +0000417 ret->next = NULL;
418 if (schema->rules == NULL) {
419 schema->rules = ret;
420 } else {
421 xmlSchematronRulePtr prev = schema->rules;
422
423 while (prev->next != NULL)
424 prev = prev->next;
425 prev->next = ret;
426 }
427 ret->patnext = NULL;
428 if (pat->rules == NULL) {
429 pat->rules = ret;
430 } else {
431 xmlSchematronRulePtr prev = pat->rules;
432
433 while (prev->patnext != NULL)
434 prev = prev->patnext;
435 prev->patnext = ret;
436 }
Daniel Veillarded6c5492005-07-23 15:00:22 +0000437 return (ret);
438}
439
440/**
441 * xmlSchematronFreeRules:
442 * @rules: a list of rules
443 *
444 * Free a list of rules.
445 */
446static void
447xmlSchematronFreeRules(xmlSchematronRulePtr rules) {
448 xmlSchematronRulePtr next;
449
450 while (rules != NULL) {
451 next = rules->next;
452 if (rules->tests)
453 xmlSchematronFreeTests(rules->tests);
454 if (rules->context != NULL)
455 xmlFree(rules->context);
456 if (rules->pattern)
457 xmlFreePattern(rules->pattern);
Daniel Veillardd4501d72005-07-24 14:27:16 +0000458 if (rules->report != NULL)
459 xmlFree(rules->report);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000460 xmlFree(rules);
461 rules = next;
462 }
463}
464
465/**
Daniel Veillarde70375c2005-07-30 21:09:12 +0000466 * xmlSchematronAddPattern:
467 * @ctxt: the schema parsing context
468 * @schema: a schema structure
469 * @node: the node hosting the pattern
470 * @id: the id or name of the pattern
471 *
472 * Add a pattern to a schematron
473 *
474 * Returns the new pointer or NULL in case of error
475 */
476static xmlSchematronPatternPtr
477xmlSchematronAddPattern(xmlSchematronParserCtxtPtr ctxt,
478 xmlSchematronPtr schema, xmlNodePtr node, xmlChar *name)
479{
480 xmlSchematronPatternPtr ret;
481
482 if ((ctxt == NULL) || (schema == NULL) || (node == NULL) || (name == NULL))
483 return(NULL);
484
485 ret = (xmlSchematronPatternPtr) xmlMalloc(sizeof(xmlSchematronPattern));
486 if (ret == NULL) {
487 xmlSchematronPErrMemory(ctxt, "allocating schema pattern", node);
488 return (NULL);
489 }
490 memset(ret, 0, sizeof(xmlSchematronPattern));
491 ret->name = name;
Daniel Veillardc740a172005-07-31 12:17:24 +0000492 ret->next = NULL;
493 if (schema->patterns == NULL) {
494 schema->patterns = ret;
495 } else {
496 xmlSchematronPatternPtr prev = schema->patterns;
497
498 while (prev->next != NULL)
499 prev = prev->next;
500 prev->next = ret;
501 }
Daniel Veillarde70375c2005-07-30 21:09:12 +0000502 return (ret);
503}
504
505/**
506 * xmlSchematronFreePatterns:
507 * @patterns: a list of patterns
508 *
509 * Free a list of patterns.
510 */
511static void
512xmlSchematronFreePatterns(xmlSchematronPatternPtr patterns) {
513 xmlSchematronPatternPtr next;
514
515 while (patterns != NULL) {
516 next = patterns->next;
517 if (patterns->name != NULL)
518 xmlFree(patterns->name);
519 xmlFree(patterns);
520 patterns = next;
521 }
522}
523
524/**
Daniel Veillarded6c5492005-07-23 15:00:22 +0000525 * xmlSchematronNewSchematron:
526 * @ctxt: a schema validation context
527 *
528 * Allocate a new Schematron structure.
529 *
530 * Returns the newly allocated structure or NULL in case or error
531 */
532static xmlSchematronPtr
533xmlSchematronNewSchematron(xmlSchematronParserCtxtPtr ctxt)
534{
535 xmlSchematronPtr ret;
536
537 ret = (xmlSchematronPtr) xmlMalloc(sizeof(xmlSchematron));
538 if (ret == NULL) {
539 xmlSchematronPErrMemory(ctxt, "allocating schema", NULL);
540 return (NULL);
541 }
542 memset(ret, 0, sizeof(xmlSchematron));
543 ret->dict = ctxt->dict;
544 xmlDictReference(ret->dict);
545
546 return (ret);
547}
548
549/**
550 * xmlSchematronFree:
551 * @schema: a schema structure
552 *
553 * Deallocate a Schematron structure.
554 */
555void
556xmlSchematronFree(xmlSchematronPtr schema)
557{
558 if (schema == NULL)
559 return;
560
561 if ((schema->doc != NULL) && (!(schema->preserve)))
562 xmlFreeDoc(schema->doc);
563
564 if (schema->namespaces != NULL)
565 xmlFree(schema->namespaces);
566
567 xmlSchematronFreeRules(schema->rules);
Daniel Veillarde70375c2005-07-30 21:09:12 +0000568 xmlSchematronFreePatterns(schema->patterns);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000569 xmlDictFree(schema->dict);
570 xmlFree(schema);
571}
572
573/**
574 * xmlSchematronNewParserCtxt:
575 * @URL: the location of the schema
576 *
577 * Create an XML Schematrons parse context for that file/resource expected
578 * to contain an XML Schematrons file.
579 *
580 * Returns the parser context or NULL in case of error
581 */
582xmlSchematronParserCtxtPtr
583xmlSchematronNewParserCtxt(const char *URL)
584{
585 xmlSchematronParserCtxtPtr ret;
586
587 if (URL == NULL)
588 return (NULL);
589
590 ret =
591 (xmlSchematronParserCtxtPtr)
592 xmlMalloc(sizeof(xmlSchematronParserCtxt));
593 if (ret == NULL) {
594 xmlSchematronPErrMemory(NULL, "allocating schema parser context",
595 NULL);
596 return (NULL);
597 }
598 memset(ret, 0, sizeof(xmlSchematronParserCtxt));
599 ret->type = XML_STRON_CTXT_PARSER;
600 ret->dict = xmlDictCreate();
601 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1);
Daniel Veillard24505b02005-07-28 23:49:35 +0000602 ret->includes = NULL;
Daniel Veillarded6c5492005-07-23 15:00:22 +0000603 ret->xctxt = xmlXPathNewContext(NULL);
604 if (ret->xctxt == NULL) {
605 xmlSchematronPErrMemory(NULL, "allocating schema parser XPath context",
606 NULL);
607 xmlSchematronFreeParserCtxt(ret);
608 return (NULL);
609 }
610 ret->xctxt->flags = XML_XPATH_CHECKNS;
611 return (ret);
612}
613
614/**
615 * xmlSchematronNewMemParserCtxt:
616 * @buffer: a pointer to a char array containing the schemas
617 * @size: the size of the array
618 *
619 * Create an XML Schematrons parse context for that memory buffer expected
620 * to contain an XML Schematrons file.
621 *
622 * Returns the parser context or NULL in case of error
623 */
624xmlSchematronParserCtxtPtr
625xmlSchematronNewMemParserCtxt(const char *buffer, int size)
626{
627 xmlSchematronParserCtxtPtr ret;
628
629 if ((buffer == NULL) || (size <= 0))
630 return (NULL);
631
632 ret =
633 (xmlSchematronParserCtxtPtr)
634 xmlMalloc(sizeof(xmlSchematronParserCtxt));
635 if (ret == NULL) {
636 xmlSchematronPErrMemory(NULL, "allocating schema parser context",
637 NULL);
638 return (NULL);
639 }
640 memset(ret, 0, sizeof(xmlSchematronParserCtxt));
641 ret->buffer = buffer;
642 ret->size = size;
643 ret->dict = xmlDictCreate();
644 ret->xctxt = xmlXPathNewContext(NULL);
645 if (ret->xctxt == NULL) {
646 xmlSchematronPErrMemory(NULL, "allocating schema parser XPath context",
647 NULL);
648 xmlSchematronFreeParserCtxt(ret);
649 return (NULL);
650 }
651 return (ret);
652}
653
654/**
655 * xmlSchematronNewDocParserCtxt:
656 * @doc: a preparsed document tree
657 *
658 * Create an XML Schematrons parse context for that document.
659 * NB. The document may be modified during the parsing process.
660 *
661 * Returns the parser context or NULL in case of error
662 */
663xmlSchematronParserCtxtPtr
664xmlSchematronNewDocParserCtxt(xmlDocPtr doc)
665{
666 xmlSchematronParserCtxtPtr ret;
667
668 if (doc == NULL)
669 return (NULL);
670
671 ret =
672 (xmlSchematronParserCtxtPtr)
673 xmlMalloc(sizeof(xmlSchematronParserCtxt));
674 if (ret == NULL) {
675 xmlSchematronPErrMemory(NULL, "allocating schema parser context",
676 NULL);
677 return (NULL);
678 }
679 memset(ret, 0, sizeof(xmlSchematronParserCtxt));
680 ret->doc = doc;
681 ret->dict = xmlDictCreate();
682 /* The application has responsibility for the document */
683 ret->preserve = 1;
684 ret->xctxt = xmlXPathNewContext(doc);
685 if (ret->xctxt == NULL) {
686 xmlSchematronPErrMemory(NULL, "allocating schema parser XPath context",
687 NULL);
688 xmlSchematronFreeParserCtxt(ret);
689 return (NULL);
690 }
691
692 return (ret);
693}
694
695/**
696 * xmlSchematronFreeParserCtxt:
697 * @ctxt: the schema parser context
698 *
699 * Free the resources associated to the schema parser context
700 */
701void
702xmlSchematronFreeParserCtxt(xmlSchematronParserCtxtPtr ctxt)
703{
704 if (ctxt == NULL)
705 return;
706 if (ctxt->doc != NULL && !ctxt->preserve)
707 xmlFreeDoc(ctxt->doc);
708 if (ctxt->xctxt != NULL) {
709 xmlXPathFreeContext(ctxt->xctxt);
710 }
711 if (ctxt->namespaces != NULL)
712 xmlFree(ctxt->namespaces);
713 xmlDictFree(ctxt->dict);
714 xmlFree(ctxt);
715}
716
717/**
718 * xmlSchematronPushInclude:
719 * @ctxt: the schema parser context
720 * @doc: the included document
721 * @cur: the current include node
722 *
723 * Add an included document
724 */
725static void
726xmlSchematronPushInclude(xmlSchematronParserCtxtPtr ctxt,
727 xmlDocPtr doc, xmlNodePtr cur)
728{
729 if (ctxt->includes == NULL) {
730 ctxt->maxIncludes = 10;
731 ctxt->includes = (xmlNodePtr *)
732 xmlMalloc(ctxt->maxIncludes * 2 * sizeof(xmlNodePtr));
733 if (ctxt->includes == NULL) {
734 xmlSchematronPErrMemory(NULL, "allocating parser includes",
735 NULL);
736 return;
737 }
738 ctxt->nbIncludes = 0;
739 } else if (ctxt->nbIncludes + 2 >= ctxt->maxIncludes) {
740 xmlNodePtr *tmp;
741
742 tmp = (xmlNodePtr *)
743 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
744 sizeof(xmlNodePtr));
745 if (tmp == NULL) {
746 xmlSchematronPErrMemory(NULL, "allocating parser includes",
747 NULL);
748 return;
749 }
750 ctxt->includes = tmp;
751 ctxt->maxIncludes *= 2;
752 }
753 ctxt->includes[2 * ctxt->nbIncludes] = cur;
754 ctxt->includes[2 * ctxt->nbIncludes + 1] = (xmlNodePtr) doc;
755 ctxt->nbIncludes++;
756}
757
758/**
759 * xmlSchematronPopInclude:
760 * @ctxt: the schema parser context
761 *
762 * Pop an include level. The included document is being freed
763 *
764 * Returns the node immediately following the include or NULL if the
765 * include list was empty.
766 */
767static xmlNodePtr
768xmlSchematronPopInclude(xmlSchematronParserCtxtPtr ctxt)
769{
770 xmlDocPtr doc;
771 xmlNodePtr ret;
772
773 if (ctxt->nbIncludes <= 0)
774 return(NULL);
775 ctxt->nbIncludes--;
776 doc = (xmlDocPtr) ctxt->includes[2 * ctxt->nbIncludes + 1];
777 ret = ctxt->includes[2 * ctxt->nbIncludes];
778 xmlFreeDoc(doc);
779 if (ret != NULL)
780 ret = ret->next;
781 if (ret == NULL)
782 return(xmlSchematronPopInclude(ctxt));
783 return(ret);
784}
785
786/**
787 * xmlSchematronAddNamespace:
788 * @ctxt: the schema parser context
789 * @prefix: the namespace prefix
790 * @ns: the namespace name
791 *
792 * Add a namespace definition in the context
793 */
794static void
795xmlSchematronAddNamespace(xmlSchematronParserCtxtPtr ctxt,
796 const xmlChar *prefix, const xmlChar *ns)
797{
798 if (ctxt->namespaces == NULL) {
799 ctxt->maxNamespaces = 10;
800 ctxt->namespaces = (const xmlChar **)
801 xmlMalloc(ctxt->maxNamespaces * 2 * sizeof(const xmlChar *));
802 if (ctxt->namespaces == NULL) {
803 xmlSchematronPErrMemory(NULL, "allocating parser namespaces",
804 NULL);
805 return;
806 }
807 ctxt->nbNamespaces = 0;
808 } else if (ctxt->nbNamespaces + 2 >= ctxt->maxNamespaces) {
809 const xmlChar **tmp;
810
811 tmp = (const xmlChar **)
812 xmlRealloc(ctxt->namespaces, ctxt->maxNamespaces * 4 *
813 sizeof(const xmlChar *));
814 if (tmp == NULL) {
815 xmlSchematronPErrMemory(NULL, "allocating parser namespaces",
816 NULL);
817 return;
818 }
819 ctxt->namespaces = tmp;
820 ctxt->maxNamespaces *= 2;
821 }
822 ctxt->namespaces[2 * ctxt->nbNamespaces] =
823 xmlDictLookup(ctxt->dict, ns, -1);
824 ctxt->namespaces[2 * ctxt->nbNamespaces + 1] =
825 xmlDictLookup(ctxt->dict, prefix, -1);
826 ctxt->nbNamespaces++;
827 ctxt->namespaces[2 * ctxt->nbNamespaces] = NULL;
828 ctxt->namespaces[2 * ctxt->nbNamespaces + 1] = NULL;
829
830}
831
832/**
833 * xmlSchematronParseRule:
834 * @ctxt: a schema validation context
835 * @rule: the rule node
836 *
837 * parse a rule element
838 */
839static void
Daniel Veillarde70375c2005-07-30 21:09:12 +0000840xmlSchematronParseRule(xmlSchematronParserCtxtPtr ctxt,
841 xmlSchematronPatternPtr pattern,
842 xmlNodePtr rule)
Daniel Veillarded6c5492005-07-23 15:00:22 +0000843{
844 xmlNodePtr cur;
845 int nbChecks = 0;
846 xmlChar *test;
847 xmlChar *context;
Daniel Veillardd4501d72005-07-24 14:27:16 +0000848 xmlChar *report;
Daniel Veillarded6c5492005-07-23 15:00:22 +0000849 xmlSchematronRulePtr ruleptr;
850 xmlSchematronTestPtr testptr;
851
852 if ((ctxt == NULL) || (rule == NULL)) return;
853
854 context = xmlGetNoNsProp(rule, BAD_CAST "context");
855 if (context == NULL) {
856 xmlSchematronPErr(ctxt, rule,
857 XML_SCHEMAP_NOROOT,
858 "rule has no context attribute",
859 NULL, NULL);
860 return;
861 } else if (context[0] == 0) {
862 xmlSchematronPErr(ctxt, rule,
863 XML_SCHEMAP_NOROOT,
864 "rule has an empty context attribute",
865 NULL, NULL);
866 xmlFree(context);
867 return;
868 } else {
Daniel Veillarde70375c2005-07-30 21:09:12 +0000869 ruleptr = xmlSchematronAddRule(ctxt, ctxt->schema, pattern,
870 rule, context, NULL);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000871 if (ruleptr == NULL) {
872 xmlFree(context);
873 return;
874 }
875 }
876
877 cur = rule->children;
878 NEXT_SCHEMATRON(cur);
879 while (cur != NULL) {
880 if (IS_SCHEMATRON(cur, "assert")) {
881 nbChecks++;
882 test = xmlGetNoNsProp(cur, BAD_CAST "test");
883 if (test == NULL) {
884 xmlSchematronPErr(ctxt, cur,
885 XML_SCHEMAP_NOROOT,
886 "assert has no test attribute",
887 NULL, NULL);
888 } else if (test[0] == 0) {
889 xmlSchematronPErr(ctxt, cur,
890 XML_SCHEMAP_NOROOT,
891 "assert has an empty test attribute",
892 NULL, NULL);
893 xmlFree(test);
894 } else {
Daniel Veillardd4501d72005-07-24 14:27:16 +0000895 /* TODO will need dynamic processing instead */
896 report = xmlNodeGetContent(cur);
897
Daniel Veillarded6c5492005-07-23 15:00:22 +0000898 testptr = xmlSchematronAddTest(ctxt, XML_SCHEMATRON_ASSERT,
Daniel Veillardd4501d72005-07-24 14:27:16 +0000899 ruleptr, cur, test, report);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000900 if (testptr == NULL)
901 xmlFree(test);
902 }
903 } else if (IS_SCHEMATRON(cur, "report")) {
904 nbChecks++;
905 test = xmlGetNoNsProp(cur, BAD_CAST "test");
906 if (test == NULL) {
907 xmlSchematronPErr(ctxt, cur,
908 XML_SCHEMAP_NOROOT,
909 "assert has no test attribute",
910 NULL, NULL);
911 } else if (test[0] == 0) {
912 xmlSchematronPErr(ctxt, cur,
913 XML_SCHEMAP_NOROOT,
914 "assert has an empty test attribute",
915 NULL, NULL);
916 xmlFree(test);
917 } else {
Daniel Veillardd4501d72005-07-24 14:27:16 +0000918 /* TODO will need dynamic processing instead */
919 report = xmlNodeGetContent(cur);
920
Daniel Veillarded6c5492005-07-23 15:00:22 +0000921 testptr = xmlSchematronAddTest(ctxt, XML_SCHEMATRON_REPORT,
Daniel Veillardd4501d72005-07-24 14:27:16 +0000922 ruleptr, cur, test, report);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000923 if (testptr == NULL)
924 xmlFree(test);
925 }
926 } else {
927 xmlSchematronPErr(ctxt, cur,
928 XML_SCHEMAP_NOROOT,
929 "Expecting an assert or a report element instead of %s",
930 cur->name, NULL);
931 }
932 cur = cur->next;
933 NEXT_SCHEMATRON(cur);
934 }
935 if (nbChecks == 0) {
936 xmlSchematronPErr(ctxt, rule,
937 XML_SCHEMAP_NOROOT,
938 "rule has no assert nor report element", NULL, NULL);
939 }
940}
941
942/**
943 * xmlSchematronParsePattern:
944 * @ctxt: a schema validation context
945 * @pat: the pattern node
946 *
947 * parse a pattern element
948 */
949static void
950xmlSchematronParsePattern(xmlSchematronParserCtxtPtr ctxt, xmlNodePtr pat)
951{
952 xmlNodePtr cur;
Daniel Veillarde70375c2005-07-30 21:09:12 +0000953 xmlSchematronPatternPtr pattern;
Daniel Veillarded6c5492005-07-23 15:00:22 +0000954 int nbRules = 0;
Daniel Veillarde70375c2005-07-30 21:09:12 +0000955 xmlChar *id;
Daniel Veillarded6c5492005-07-23 15:00:22 +0000956
957 if ((ctxt == NULL) || (pat == NULL)) return;
958
Daniel Veillarde70375c2005-07-30 21:09:12 +0000959 id = xmlGetNoNsProp(pat, BAD_CAST "id");
960 if (id == NULL) {
961 id = xmlGetNoNsProp(pat, BAD_CAST "name");
962 }
963 pattern = xmlSchematronAddPattern(ctxt, ctxt->schema, pat, id);
964 if (pattern == NULL) {
965 if (id != NULL)
966 xmlFree(id);
967 return;
968 }
Daniel Veillarded6c5492005-07-23 15:00:22 +0000969 cur = pat->children;
970 NEXT_SCHEMATRON(cur);
971 while (cur != NULL) {
972 if (IS_SCHEMATRON(cur, "rule")) {
Daniel Veillarde70375c2005-07-30 21:09:12 +0000973 xmlSchematronParseRule(ctxt, pattern, cur);
Daniel Veillarded6c5492005-07-23 15:00:22 +0000974 nbRules++;
975 } else {
976 xmlSchematronPErr(ctxt, cur,
977 XML_SCHEMAP_NOROOT,
978 "Expecting a rule element instead of %s", cur->name, NULL);
979 }
980 cur = cur->next;
981 NEXT_SCHEMATRON(cur);
982 }
983 if (nbRules == 0) {
984 xmlSchematronPErr(ctxt, pat,
985 XML_SCHEMAP_NOROOT,
986 "Pattern has no rule element", NULL, NULL);
987 }
988}
989
990/**
991 * xmlSchematronLoadInclude:
992 * @ctxt: a schema validation context
993 * @cur: the include element
994 *
995 * Load the include document, Push the current pointer
996 *
997 * Returns the updated node pointer
998 */
999static xmlNodePtr
1000xmlSchematronLoadInclude(xmlSchematronParserCtxtPtr ctxt, xmlNodePtr cur)
1001{
1002 xmlNodePtr ret = NULL;
1003 xmlDocPtr doc = NULL;
1004 xmlChar *href = NULL;
1005 xmlChar *base = NULL;
1006 xmlChar *URI = NULL;
1007
1008 if ((ctxt == NULL) || (cur == NULL))
1009 return(NULL);
1010
1011 href = xmlGetNoNsProp(cur, BAD_CAST "href");
1012 if (href == NULL) {
1013 xmlSchematronPErr(ctxt, cur,
1014 XML_SCHEMAP_NOROOT,
1015 "Include has no href attribute", NULL, NULL);
1016 return(cur->next);
1017 }
1018
1019 /* do the URI base composition, load and find the root */
1020 base = xmlNodeGetBase(cur->doc, cur);
1021 URI = xmlBuildURI(href, base);
1022 doc = xmlReadFile((const char *) URI, NULL, SCHEMATRON_PARSE_OPTIONS);
1023 if (doc == NULL) {
1024 xmlSchematronPErr(ctxt, cur,
1025 XML_SCHEMAP_FAILED_LOAD,
1026 "could not load include '%s'.\n",
1027 URI, NULL);
1028 goto done;
1029 }
1030 ret = xmlDocGetRootElement(doc);
1031 if (ret == NULL) {
1032 xmlSchematronPErr(ctxt, cur,
1033 XML_SCHEMAP_FAILED_LOAD,
1034 "could not find root from include '%s'.\n",
1035 URI, NULL);
1036 goto done;
1037 }
1038
1039 /* Success, push the include for rollback on exit */
1040 xmlSchematronPushInclude(ctxt, doc, cur);
1041
1042done:
1043 if (ret == NULL) {
1044 if (doc != NULL)
1045 xmlFreeDoc(doc);
1046 }
1047 if (href == NULL)
1048 xmlFree(href);
1049 if (base == NULL)
1050 xmlFree(base);
1051 if (URI == NULL)
1052 xmlFree(URI);
1053 return(ret);
1054}
1055
1056/**
1057 * xmlSchematronParse:
1058 * @ctxt: a schema validation context
1059 *
1060 * parse a schema definition resource and build an internal
1061 * XML Shema struture which can be used to validate instances.
1062 *
1063 * Returns the internal XML Schematron structure built from the resource or
1064 * NULL in case of error
1065 */
1066xmlSchematronPtr
1067xmlSchematronParse(xmlSchematronParserCtxtPtr ctxt)
1068{
1069 xmlSchematronPtr ret = NULL;
1070 xmlDocPtr doc;
1071 xmlNodePtr root, cur;
1072 int preserve = 0;
1073
1074 if (ctxt == NULL)
1075 return (NULL);
1076
1077 ctxt->nberrors = 0;
1078
1079 /*
1080 * First step is to parse the input document into an DOM/Infoset
1081 */
1082 if (ctxt->URL != NULL) {
1083 doc = xmlReadFile((const char *) ctxt->URL, NULL,
1084 SCHEMATRON_PARSE_OPTIONS);
1085 if (doc == NULL) {
1086 xmlSchematronPErr(ctxt, NULL,
1087 XML_SCHEMAP_FAILED_LOAD,
1088 "xmlSchematronParse: could not load '%s'.\n",
1089 ctxt->URL, NULL);
1090 return (NULL);
1091 }
1092 } else if (ctxt->buffer != NULL) {
1093 doc = xmlReadMemory(ctxt->buffer, ctxt->size, NULL, NULL,
1094 SCHEMATRON_PARSE_OPTIONS);
1095 if (doc == NULL) {
1096 xmlSchematronPErr(ctxt, NULL,
1097 XML_SCHEMAP_FAILED_PARSE,
1098 "xmlSchematronParse: could not parse.\n",
1099 NULL, NULL);
1100 return (NULL);
1101 }
1102 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
1103 ctxt->URL = xmlDictLookup(ctxt->dict, BAD_CAST "in_memory_buffer", -1);
1104 } else if (ctxt->doc != NULL) {
1105 doc = ctxt->doc;
1106 preserve = 1;
1107 } else {
1108 xmlSchematronPErr(ctxt, NULL,
1109 XML_SCHEMAP_NOTHING_TO_PARSE,
1110 "xmlSchematronParse: could not parse.\n",
1111 NULL, NULL);
1112 return (NULL);
1113 }
1114
1115 /*
1116 * Then extract the root and Schematron parse it
1117 */
1118 root = xmlDocGetRootElement(doc);
1119 if (root == NULL) {
1120 xmlSchematronPErr(ctxt, (xmlNodePtr) doc,
1121 XML_SCHEMAP_NOROOT,
1122 "The schema has no document element.\n", NULL, NULL);
1123 if (!preserve) {
1124 xmlFreeDoc(doc);
1125 }
1126 return (NULL);
1127 }
1128
1129 if (!IS_SCHEMATRON(root, "schema")) {
1130 xmlSchematronPErr(ctxt, root,
1131 XML_SCHEMAP_NOROOT,
1132 "The XML document '%s' is not a XML schematron document",
1133 ctxt->URL, NULL);
1134 goto exit;
1135 }
1136 ret = xmlSchematronNewSchematron(ctxt);
1137 if (ret == NULL)
1138 goto exit;
1139 ctxt->schema = ret;
1140
1141 /*
1142 * scan the schema elements
1143 */
1144 cur = root->children;
1145 NEXT_SCHEMATRON(cur);
1146 if (IS_SCHEMATRON(cur, "title")) {
1147 xmlChar *title = xmlNodeGetContent(cur);
1148 if (title != NULL) {
1149 ret->title = xmlDictLookup(ret->dict, title, -1);
1150 xmlFree(title);
1151 }
1152 cur = cur->next;
1153 NEXT_SCHEMATRON(cur);
1154 }
1155 while (IS_SCHEMATRON(cur, "ns")) {
1156 xmlChar *prefix = xmlGetNoNsProp(cur, BAD_CAST "prefix");
1157 xmlChar *uri = xmlGetNoNsProp(cur, BAD_CAST "uri");
1158 if ((uri == NULL) || (uri[0] == 0)) {
1159 xmlSchematronPErr(ctxt, cur,
1160 XML_SCHEMAP_NOROOT,
1161 "ns element has no uri", NULL, NULL);
1162 }
1163 if ((prefix == NULL) || (prefix[0] == 0)) {
1164 xmlSchematronPErr(ctxt, cur,
1165 XML_SCHEMAP_NOROOT,
1166 "ns element has no prefix", NULL, NULL);
1167 }
1168 if ((prefix) && (uri)) {
1169 xmlXPathRegisterNs(ctxt->xctxt, prefix, uri);
1170 xmlSchematronAddNamespace(ctxt, prefix, uri);
1171 ret->nbNs++;
1172 }
1173 if (uri)
1174 xmlFree(uri);
1175 if (prefix)
1176 xmlFree(prefix);
1177 cur = cur->next;
1178 NEXT_SCHEMATRON(cur);
1179 }
1180 while (cur != NULL) {
1181 if (IS_SCHEMATRON(cur, "pattern")) {
1182 xmlSchematronParsePattern(ctxt, cur);
1183 ret->nbPattern++;
1184 } else {
1185 xmlSchematronPErr(ctxt, cur,
1186 XML_SCHEMAP_NOROOT,
1187 "Expecting a pattern element instead of %s", cur->name, NULL);
1188 }
1189 cur = cur->next;
1190 NEXT_SCHEMATRON(cur);
1191 }
1192 if (ret->nbPattern == 0) {
1193 xmlSchematronPErr(ctxt, root,
1194 XML_SCHEMAP_NOROOT,
1195 "The schematron document '%s' has no pattern",
1196 ctxt->URL, NULL);
1197 goto exit;
1198 }
1199
1200exit:
1201 if (!preserve) {
1202 xmlFreeDoc(doc);
1203 }
1204 if (ctxt->nberrors != 0) {
1205 xmlSchematronFree(ret);
1206 ret = NULL;
1207 } else {
1208 ret->namespaces = ctxt->namespaces;
1209 ret->nbNamespaces = ctxt->nbNamespaces;
1210 ctxt->namespaces = NULL;
1211 }
1212 return (ret);
1213}
1214
1215/************************************************************************
1216 * *
1217 * Schematrontron Reports handler *
1218 * *
1219 ************************************************************************/
1220
Daniel Veillardd4501d72005-07-24 14:27:16 +00001221/**
1222 * xmlSchematronReportOutput:
1223 * @ctxt: the validation context
1224 * @cur: the current node tested
1225 * @msg: the message output
1226 *
1227 * Output part of the report to whatever channel the user selected
1228 */
1229static void
1230xmlSchematronReportOutput(xmlSchematronValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
1231 xmlNodePtr cur ATTRIBUTE_UNUSED,
Daniel Veillardc740a172005-07-31 12:17:24 +00001232 const char *msg) {
Daniel Veillardd4501d72005-07-24 14:27:16 +00001233 /* TODO */
1234 fprintf(stderr, "%s", msg);
1235}
1236
1237/**
1238 * xmlSchematronReportSuccess:
1239 * @ctxt: the validation context
1240 * @test: the compiled test
1241 * @cur: the current node tested
1242 * @success: boolean value for the result
1243 *
1244 * called from the validation engine when an assert or report test have
1245 * been done.
1246 */
Daniel Veillarded6c5492005-07-23 15:00:22 +00001247static void
1248xmlSchematronReportSuccess(xmlSchematronValidCtxtPtr ctxt,
Daniel Veillardd4501d72005-07-24 14:27:16 +00001249 xmlSchematronTestPtr test, xmlNodePtr cur, int success) {
1250 if ((ctxt == NULL) || (cur == NULL) || (test == NULL))
1251 return;
1252 /* if quiet and not SVRL report only failures */
1253 if ((ctxt->flags & XML_SCHEMATRON_OUT_QUIET) &&
Daniel Veillarde70375c2005-07-30 21:09:12 +00001254 ((ctxt->flags & XML_SCHEMATRON_OUT_XML) == 0) &&
Daniel Veillardc740a172005-07-31 12:17:24 +00001255 (test->type == XML_SCHEMATRON_REPORT))
Daniel Veillardd4501d72005-07-24 14:27:16 +00001256 return;
1257 if (ctxt->flags & XML_SCHEMATRON_OUT_XML) {
1258 TODO
1259 } else {
1260 xmlChar *path;
1261 char msg[1000];
1262 long line;
1263 const xmlChar *report;
1264
Daniel Veillarde70375c2005-07-30 21:09:12 +00001265 if (((test->type == XML_SCHEMATRON_REPORT) & (!success)) ||
1266 ((test->type == XML_SCHEMATRON_ASSERT) & (success)))
Daniel Veillardd4501d72005-07-24 14:27:16 +00001267 return;
1268 line = xmlGetLineNo(cur);
1269 path = xmlGetNodePath(cur);
1270 if (path == NULL)
1271 path = (xmlChar *) cur->name;
1272 if ((test->report != NULL) && (test->report[0] != 0))
1273 report = test->report;
1274 else if (test->type == XML_SCHEMATRON_ASSERT) {
1275 report = BAD_CAST "node failed assert";
1276 } else {
1277 report = BAD_CAST "node failed report";
1278 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001279 snprintf(msg, 999, "%s line %ld: %s\n", (const char *) path,
Daniel Veillardd4501d72005-07-24 14:27:16 +00001280 line, (const char *) report);
1281 xmlSchematronReportOutput(ctxt, cur, &msg[0]);
1282 if ((path != NULL) && (path != (xmlChar *) cur->name))
1283 xmlFree(path);
1284 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001285}
1286
Daniel Veillardc740a172005-07-31 12:17:24 +00001287/**
1288 * xmlSchematronReportPattern:
1289 * @ctxt: the validation context
1290 * @pattern: the current pattern
1291 *
1292 * called from the validation engine when starting to check a pattern
1293 */
1294static void
1295xmlSchematronReportPattern(xmlSchematronValidCtxtPtr ctxt,
1296 xmlSchematronPatternPtr pattern) {
1297 if ((ctxt == NULL) || (pattern == NULL))
1298 return;
1299 if (ctxt->flags & XML_SCHEMATRON_OUT_QUIET)
1300 return;
1301 if (ctxt->flags & XML_SCHEMATRON_OUT_XML) {
1302 TODO
1303 } else {
1304 char msg[1000];
1305
1306 if (pattern->name == NULL)
1307 return;
1308 snprintf(msg, 999, "Pattern: %s\n", (const char *) pattern->name);
1309 xmlSchematronReportOutput(ctxt, NULL, &msg[0]);
1310 }
1311}
1312
1313
Daniel Veillarded6c5492005-07-23 15:00:22 +00001314/************************************************************************
1315 * *
1316 * Validation against a Schematrontron *
1317 * *
1318 ************************************************************************/
1319
1320/**
1321 * xmlSchematronNewValidCtxt:
1322 * @schema: a precompiled XML Schematrons
1323 * @options: a set of xmlSchematronValidOptions
1324 *
1325 * Create an XML Schematrons validation context based on the given schema.
1326 *
1327 * Returns the validation context or NULL in case of error
1328 */
1329xmlSchematronValidCtxtPtr
1330xmlSchematronNewValidCtxt(xmlSchematronPtr schema, int options)
1331{
1332 int i;
1333 xmlSchematronValidCtxtPtr ret;
1334
Daniel Veillardc740a172005-07-31 12:17:24 +00001335 ret = (xmlSchematronValidCtxtPtr) xmlMalloc(sizeof(xmlSchematronValidCtxt));
Daniel Veillarded6c5492005-07-23 15:00:22 +00001336 if (ret == NULL) {
1337 xmlSchematronVErrMemory(NULL, "allocating validation context",
1338 NULL);
1339 return (NULL);
1340 }
1341 memset(ret, 0, sizeof(xmlSchematronValidCtxt));
1342 ret->type = XML_STRON_CTXT_VALIDATOR;
1343 ret->schema = schema;
1344 ret->xctxt = xmlXPathNewContext(NULL);
Daniel Veillardd4501d72005-07-24 14:27:16 +00001345 ret->flags = options;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001346 if (ret->xctxt == NULL) {
1347 xmlSchematronPErrMemory(NULL, "allocating schema parser XPath context",
1348 NULL);
1349 xmlSchematronFreeValidCtxt(ret);
1350 return (NULL);
1351 }
1352 for (i = 0;i < schema->nbNamespaces;i++) {
1353 if ((schema->namespaces[2 * i] == NULL) ||
1354 (schema->namespaces[2 * i + 1] == NULL))
1355 break;
1356 xmlXPathRegisterNs(ret->xctxt, schema->namespaces[2 * i + 1],
1357 schema->namespaces[2 * i]);
1358 }
1359 return (ret);
1360}
1361
1362/**
1363 * xmlSchematronFreeValidCtxt:
1364 * @ctxt: the schema validation context
1365 *
1366 * Free the resources associated to the schema validation context
1367 */
1368void
1369xmlSchematronFreeValidCtxt(xmlSchematronValidCtxtPtr ctxt)
1370{
1371 if (ctxt == NULL)
1372 return;
1373 if (ctxt->xctxt != NULL)
1374 xmlXPathFreeContext(ctxt->xctxt);
1375 if (ctxt->dict != NULL)
1376 xmlDictFree(ctxt->dict);
1377 xmlFree(ctxt);
1378}
1379
1380static xmlNodePtr
1381xmlSchematronNextNode(xmlNodePtr cur) {
1382 if (cur->children != NULL) {
1383 /*
1384 * Do not descend on entities declarations
1385 */
1386 if (cur->children->type != XML_ENTITY_DECL) {
1387 cur = cur->children;
1388 /*
1389 * Skip DTDs
1390 */
1391 if (cur->type != XML_DTD_NODE)
1392 return(cur);
1393 }
1394 }
1395
1396 while (cur->next != NULL) {
1397 cur = cur->next;
1398 if ((cur->type != XML_ENTITY_DECL) &&
1399 (cur->type != XML_DTD_NODE))
1400 return(cur);
1401 }
1402
1403 do {
1404 cur = cur->parent;
1405 if (cur == NULL) return(NULL);
1406 if (cur->type == XML_DOCUMENT_NODE) return(NULL);
1407 if (cur->next != NULL) {
1408 cur = cur->next;
1409 return(cur);
1410 }
1411 } while (cur != NULL);
1412 return(cur);
1413}
1414
1415/**
1416 * xmlSchematronRunTest:
1417 * @ctxt: the schema validation context
1418 * @test: the current test
1419 * @instance: the document instace tree
1420 * @cur: the current node in the instance
1421 *
1422 * Validate a rule against a tree instance at a given position
1423 *
1424 * Returns 1 in case of success, 0 if error and -1 in case of internal error
1425 */
1426static int
1427xmlSchematronRunTest(xmlSchematronValidCtxtPtr ctxt,
1428 xmlSchematronTestPtr test, xmlDocPtr instance, xmlNodePtr cur)
1429{
1430 xmlXPathObjectPtr ret;
1431 int failed;
1432
1433 failed = 0;
1434 ctxt->xctxt->doc = instance;
1435 ctxt->xctxt->node = cur;
1436 ret = xmlXPathCompiledEval(test->comp, ctxt->xctxt);
1437 if (ret == NULL) {
1438 failed = 1;
1439 } else switch (ret->type) {
1440 case XPATH_XSLT_TREE:
1441 case XPATH_NODESET:
1442 if ((ret->nodesetval == NULL) ||
1443 (ret->nodesetval->nodeNr == 0))
1444 failed = 1;
1445 break;
1446 case XPATH_BOOLEAN:
1447 failed = !ret->boolval;
1448 break;
1449 case XPATH_NUMBER:
1450 if ((xmlXPathIsNaN(ret->floatval)) ||
1451 (ret->floatval == 0.0))
1452 failed = 1;
1453 break;
1454 case XPATH_STRING:
1455 if ((ret->stringval == NULL) ||
1456 (ret->stringval[0] == 0))
1457 failed = 1;
1458 break;
1459 case XPATH_UNDEFINED:
1460 case XPATH_POINT:
1461 case XPATH_RANGE:
1462 case XPATH_LOCATIONSET:
1463 case XPATH_USERS:
1464 failed = 1;
1465 break;
1466 }
Daniel Veillardd4501d72005-07-24 14:27:16 +00001467 if (failed)
1468 ctxt->nberrors++;
1469 xmlSchematronReportSuccess(ctxt, test, cur, !failed);
Daniel Veillarded6c5492005-07-23 15:00:22 +00001470
1471 return(!failed);
1472}
1473
1474/**
1475 * xmlSchematronValidateDoc:
1476 * @ctxt: the schema validation context
1477 * @instance: the document instace tree
1478 *
1479 * Validate a tree instance against the schematron
1480 *
1481 * Returns 0 in case of success, -1 in case of internal error
1482 * and an error count otherwise.
1483 */
1484int
1485xmlSchematronValidateDoc(xmlSchematronValidCtxtPtr ctxt, xmlDocPtr instance)
1486{
Daniel Veillarde70375c2005-07-30 21:09:12 +00001487 xmlNodePtr cur, root;
1488 xmlSchematronPatternPtr pattern;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001489 xmlSchematronRulePtr rule;
1490 xmlSchematronTestPtr test;
1491
1492 if ((ctxt == NULL) || (ctxt->schema == NULL) ||
1493 (ctxt->schema->rules == NULL) || (instance == NULL))
1494 return(-1);
1495 ctxt->nberrors = 0;
Daniel Veillarde70375c2005-07-30 21:09:12 +00001496 root = xmlDocGetRootElement(instance);
1497 if (root == NULL) {
1498 TODO
1499 ctxt->nberrors++;
1500 return(1);
1501 }
1502 if ((ctxt->flags & XML_SCHEMATRON_OUT_QUIET) ||
1503 (ctxt->flags == 0)) {
1504 /*
1505 * we are just trying to assert the validity of the document,
1506 * speed primes over the output, run in a single pass
1507 */
1508 cur = root;
1509 while (cur != NULL) {
1510 rule = ctxt->schema->rules;
1511 while (rule != NULL) {
1512 if (xmlPatternMatch(rule->pattern, cur) == 1) {
1513 test = rule->tests;
1514 while (test != NULL) {
1515 xmlSchematronRunTest(ctxt, test, instance, cur);
1516 test = test->next;
1517 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001518 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001519 rule = rule->next;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001520 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001521
1522 cur = xmlSchematronNextNode(cur);
Daniel Veillarded6c5492005-07-23 15:00:22 +00001523 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001524 } else {
1525 /*
1526 * Process all contexts one at a time
1527 */
1528 pattern = ctxt->schema->patterns;
1529
1530 while (pattern != NULL) {
Daniel Veillardc740a172005-07-31 12:17:24 +00001531 xmlSchematronReportPattern(ctxt, pattern);
1532
Daniel Veillarde70375c2005-07-30 21:09:12 +00001533 /*
1534 * TODO convert the pattern rule to a direct XPath and
1535 * compute directly instead of using the pattern matching
1536 * over the full document...
1537 * Check the exact semantic
1538 */
1539 cur = root;
1540 while (cur != NULL) {
1541 rule = pattern->rules;
1542 while (rule != NULL) {
1543 if (xmlPatternMatch(rule->pattern, cur) == 1) {
1544 test = rule->tests;
1545 while (test != NULL) {
1546 xmlSchematronRunTest(ctxt, test, instance, cur);
1547 test = test->next;
1548 }
1549 }
1550 rule = rule->patnext;
1551 }
1552
1553 cur = xmlSchematronNextNode(cur);
1554 }
Daniel Veillardc740a172005-07-31 12:17:24 +00001555 pattern = pattern->next;
Daniel Veillarde70375c2005-07-30 21:09:12 +00001556 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001557 }
1558 return(ctxt->nberrors);
1559}
1560
1561#ifdef STANDALONE
1562int
1563main(void)
1564{
1565 int ret;
1566 xmlDocPtr instance;
1567 xmlSchematronParserCtxtPtr pctxt;
1568 xmlSchematronValidCtxtPtr vctxt;
1569 xmlSchematronPtr schema = NULL;
1570
1571 pctxt = xmlSchematronNewParserCtxt("tst.sct");
1572 if (pctxt == NULL) {
1573 fprintf(stderr, "failed to build schematron parser\n");
1574 } else {
1575 schema = xmlSchematronParse(pctxt);
1576 if (schema == NULL) {
1577 fprintf(stderr, "failed to compile schematron\n");
1578 }
1579 xmlSchematronFreeParserCtxt(pctxt);
1580 }
1581 instance = xmlReadFile("tst.sct", NULL,
1582 XML_PARSE_NOENT | XML_PARSE_NOCDATA);
1583 if (instance == NULL) {
1584 fprintf(stderr, "failed to parse instance\n");
1585 }
1586 if ((schema != NULL) && (instance != NULL)) {
1587 vctxt = xmlSchematronNewValidCtxt(schema);
1588 if (vctxt == NULL) {
1589 fprintf(stderr, "failed to build schematron validator\n");
1590 } else {
1591 ret = xmlSchematronValidateDoc(vctxt, instance);
1592 xmlSchematronFreeValidCtxt(vctxt);
1593 }
1594 }
1595 xmlSchematronFree(schema);
1596 xmlFreeDoc(instance);
1597
1598 xmlCleanupParser();
1599 xmlMemoryDump();
1600
1601 return (0);
1602}
1603#endif
1604#endif /* LIBXML_SCHEMATRON_ENABLED */