blob: b5c6618139b73f9787a80df44ca0081237eba75f [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 */
Daniel Veillardeaecb3e2005-07-31 13:43:14 +0000131 int preserve; /* was the document passed by the user */
Daniel Veillarded6c5492005-07-23 15:00:22 +0000132 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 }
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001092 ctxt->preserve = 0;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001093 } else if (ctxt->buffer != NULL) {
1094 doc = xmlReadMemory(ctxt->buffer, ctxt->size, NULL, NULL,
1095 SCHEMATRON_PARSE_OPTIONS);
1096 if (doc == NULL) {
1097 xmlSchematronPErr(ctxt, NULL,
1098 XML_SCHEMAP_FAILED_PARSE,
1099 "xmlSchematronParse: could not parse.\n",
1100 NULL, NULL);
1101 return (NULL);
1102 }
1103 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
1104 ctxt->URL = xmlDictLookup(ctxt->dict, BAD_CAST "in_memory_buffer", -1);
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001105 ctxt->preserve = 0;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001106 } else if (ctxt->doc != NULL) {
1107 doc = ctxt->doc;
1108 preserve = 1;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001109 ctxt->preserve = 1;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001110 } else {
1111 xmlSchematronPErr(ctxt, NULL,
1112 XML_SCHEMAP_NOTHING_TO_PARSE,
1113 "xmlSchematronParse: could not parse.\n",
1114 NULL, NULL);
1115 return (NULL);
1116 }
1117
1118 /*
1119 * Then extract the root and Schematron parse it
1120 */
1121 root = xmlDocGetRootElement(doc);
1122 if (root == NULL) {
1123 xmlSchematronPErr(ctxt, (xmlNodePtr) doc,
1124 XML_SCHEMAP_NOROOT,
1125 "The schema has no document element.\n", NULL, NULL);
1126 if (!preserve) {
1127 xmlFreeDoc(doc);
1128 }
1129 return (NULL);
1130 }
1131
1132 if (!IS_SCHEMATRON(root, "schema")) {
1133 xmlSchematronPErr(ctxt, root,
1134 XML_SCHEMAP_NOROOT,
1135 "The XML document '%s' is not a XML schematron document",
1136 ctxt->URL, NULL);
1137 goto exit;
1138 }
1139 ret = xmlSchematronNewSchematron(ctxt);
1140 if (ret == NULL)
1141 goto exit;
1142 ctxt->schema = ret;
1143
1144 /*
1145 * scan the schema elements
1146 */
1147 cur = root->children;
1148 NEXT_SCHEMATRON(cur);
1149 if (IS_SCHEMATRON(cur, "title")) {
1150 xmlChar *title = xmlNodeGetContent(cur);
1151 if (title != NULL) {
1152 ret->title = xmlDictLookup(ret->dict, title, -1);
1153 xmlFree(title);
1154 }
1155 cur = cur->next;
1156 NEXT_SCHEMATRON(cur);
1157 }
1158 while (IS_SCHEMATRON(cur, "ns")) {
1159 xmlChar *prefix = xmlGetNoNsProp(cur, BAD_CAST "prefix");
1160 xmlChar *uri = xmlGetNoNsProp(cur, BAD_CAST "uri");
1161 if ((uri == NULL) || (uri[0] == 0)) {
1162 xmlSchematronPErr(ctxt, cur,
1163 XML_SCHEMAP_NOROOT,
1164 "ns element has no uri", NULL, NULL);
1165 }
1166 if ((prefix == NULL) || (prefix[0] == 0)) {
1167 xmlSchematronPErr(ctxt, cur,
1168 XML_SCHEMAP_NOROOT,
1169 "ns element has no prefix", NULL, NULL);
1170 }
1171 if ((prefix) && (uri)) {
1172 xmlXPathRegisterNs(ctxt->xctxt, prefix, uri);
1173 xmlSchematronAddNamespace(ctxt, prefix, uri);
1174 ret->nbNs++;
1175 }
1176 if (uri)
1177 xmlFree(uri);
1178 if (prefix)
1179 xmlFree(prefix);
1180 cur = cur->next;
1181 NEXT_SCHEMATRON(cur);
1182 }
1183 while (cur != NULL) {
1184 if (IS_SCHEMATRON(cur, "pattern")) {
1185 xmlSchematronParsePattern(ctxt, cur);
1186 ret->nbPattern++;
1187 } else {
1188 xmlSchematronPErr(ctxt, cur,
1189 XML_SCHEMAP_NOROOT,
1190 "Expecting a pattern element instead of %s", cur->name, NULL);
1191 }
1192 cur = cur->next;
1193 NEXT_SCHEMATRON(cur);
1194 }
1195 if (ret->nbPattern == 0) {
1196 xmlSchematronPErr(ctxt, root,
1197 XML_SCHEMAP_NOROOT,
1198 "The schematron document '%s' has no pattern",
1199 ctxt->URL, NULL);
1200 goto exit;
1201 }
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001202 /* the original document must be kept for reporting */
1203 ret->doc = doc;
1204 preserve = 1;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001205
1206exit:
1207 if (!preserve) {
1208 xmlFreeDoc(doc);
1209 }
1210 if (ctxt->nberrors != 0) {
1211 xmlSchematronFree(ret);
1212 ret = NULL;
1213 } else {
1214 ret->namespaces = ctxt->namespaces;
1215 ret->nbNamespaces = ctxt->nbNamespaces;
1216 ctxt->namespaces = NULL;
1217 }
1218 return (ret);
1219}
1220
1221/************************************************************************
1222 * *
1223 * Schematrontron Reports handler *
1224 * *
1225 ************************************************************************/
1226
Daniel Veillardd4501d72005-07-24 14:27:16 +00001227/**
1228 * xmlSchematronReportOutput:
1229 * @ctxt: the validation context
1230 * @cur: the current node tested
1231 * @msg: the message output
1232 *
1233 * Output part of the report to whatever channel the user selected
1234 */
1235static void
1236xmlSchematronReportOutput(xmlSchematronValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
1237 xmlNodePtr cur ATTRIBUTE_UNUSED,
Daniel Veillardc740a172005-07-31 12:17:24 +00001238 const char *msg) {
Daniel Veillardd4501d72005-07-24 14:27:16 +00001239 /* TODO */
1240 fprintf(stderr, "%s", msg);
1241}
1242
1243/**
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001244 * xmlSchematronFormatReport:
1245 * @ctxt: the validation context
1246 * @test: the test node
1247 * @cur: the current node tested
1248 *
1249 * Build the string being reported to the user.
1250 *
1251 * Returns a report string or NULL in case of error. The string needs
1252 * to be deallocated by teh caller
1253 */
1254static xmlChar *
1255xmlSchematronFormatReport(xmlSchematronValidCtxtPtr ctxt,
1256 xmlNodePtr test, xmlNodePtr cur) {
1257 xmlChar *ret = NULL;
1258 xmlNodePtr child;
1259
1260 if ((test == NULL) || (cur == NULL))
1261 return(ret);
1262
1263 child = test->children;
1264 while (child != NULL) {
1265 if ((child->type == XML_TEXT_NODE) ||
1266 (child->type == XML_CDATA_SECTION_NODE))
1267 ret = xmlStrcat(ret, child->content);
1268 else if (IS_SCHEMATRON(child, "name")) {
1269 if ((cur->ns == NULL) || (cur->ns->prefix == NULL))
1270 ret = xmlStrcat(ret, cur->name);
1271 else {
1272 ret = xmlStrcat(ret, cur->ns->prefix);
1273 ret = xmlStrcat(ret, BAD_CAST ":");
1274 ret = xmlStrcat(ret, cur->name);
1275 }
1276 } else {
1277 child = child->next;
1278 continue;
1279 }
1280
1281 /*
1282 * remove superfluous \n
1283 */
1284 if (ret != NULL) {
1285 int len = xmlStrlen(ret);
1286 xmlChar c;
1287
1288 if (len > 0) {
1289 c = ret[len - 1];
1290 if ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) {
1291 while ((c == ' ') || (c == '\n') ||
1292 (c == '\r') || (c == '\t')) {
1293 len--;
1294 if (len == 0)
1295 break;
1296 c = ret[len - 1];
1297 }
1298 ret[len] = ' ';
1299 ret[len + 1] = 0;
1300 }
1301 }
1302 }
1303
1304 child = child->next;
1305 }
1306 return(ret);
1307}
1308
1309/**
Daniel Veillardd4501d72005-07-24 14:27:16 +00001310 * xmlSchematronReportSuccess:
1311 * @ctxt: the validation context
1312 * @test: the compiled test
1313 * @cur: the current node tested
1314 * @success: boolean value for the result
1315 *
1316 * called from the validation engine when an assert or report test have
1317 * been done.
1318 */
Daniel Veillarded6c5492005-07-23 15:00:22 +00001319static void
1320xmlSchematronReportSuccess(xmlSchematronValidCtxtPtr ctxt,
Daniel Veillardd4501d72005-07-24 14:27:16 +00001321 xmlSchematronTestPtr test, xmlNodePtr cur, int success) {
1322 if ((ctxt == NULL) || (cur == NULL) || (test == NULL))
1323 return;
1324 /* if quiet and not SVRL report only failures */
1325 if ((ctxt->flags & XML_SCHEMATRON_OUT_QUIET) &&
Daniel Veillarde70375c2005-07-30 21:09:12 +00001326 ((ctxt->flags & XML_SCHEMATRON_OUT_XML) == 0) &&
Daniel Veillardc740a172005-07-31 12:17:24 +00001327 (test->type == XML_SCHEMATRON_REPORT))
Daniel Veillardd4501d72005-07-24 14:27:16 +00001328 return;
1329 if (ctxt->flags & XML_SCHEMATRON_OUT_XML) {
1330 TODO
1331 } else {
1332 xmlChar *path;
1333 char msg[1000];
1334 long line;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001335 const xmlChar *report = NULL;
Daniel Veillardd4501d72005-07-24 14:27:16 +00001336
Daniel Veillarde70375c2005-07-30 21:09:12 +00001337 if (((test->type == XML_SCHEMATRON_REPORT) & (!success)) ||
1338 ((test->type == XML_SCHEMATRON_ASSERT) & (success)))
Daniel Veillardd4501d72005-07-24 14:27:16 +00001339 return;
1340 line = xmlGetLineNo(cur);
1341 path = xmlGetNodePath(cur);
1342 if (path == NULL)
1343 path = (xmlChar *) cur->name;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001344#if 0
Daniel Veillardd4501d72005-07-24 14:27:16 +00001345 if ((test->report != NULL) && (test->report[0] != 0))
1346 report = test->report;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001347#endif
1348 if (test->node != NULL)
1349 report = xmlSchematronFormatReport(ctxt, test->node, cur);
1350 if (report == NULL) {
1351 if (test->type == XML_SCHEMATRON_ASSERT) {
1352 snprintf(msg, 999, "%s line %ld: node failed assert\n",
1353 (const char *) path, line);
1354 } else {
1355 snprintf(msg, 999, "%s line %ld: node failed report\n",
1356 (const char *) path, line);
1357 }
Daniel Veillardd4501d72005-07-24 14:27:16 +00001358 } else {
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001359 snprintf(msg, 999, "%s line %ld: %s\n", (const char *) path,
1360 line, (const char *) report);
1361 xmlFree(report);
Daniel Veillardd4501d72005-07-24 14:27:16 +00001362 }
Daniel Veillardd4501d72005-07-24 14:27:16 +00001363 xmlSchematronReportOutput(ctxt, cur, &msg[0]);
1364 if ((path != NULL) && (path != (xmlChar *) cur->name))
1365 xmlFree(path);
1366 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001367}
1368
Daniel Veillardc740a172005-07-31 12:17:24 +00001369/**
1370 * xmlSchematronReportPattern:
1371 * @ctxt: the validation context
1372 * @pattern: the current pattern
1373 *
1374 * called from the validation engine when starting to check a pattern
1375 */
1376static void
1377xmlSchematronReportPattern(xmlSchematronValidCtxtPtr ctxt,
1378 xmlSchematronPatternPtr pattern) {
1379 if ((ctxt == NULL) || (pattern == NULL))
1380 return;
1381 if (ctxt->flags & XML_SCHEMATRON_OUT_QUIET)
1382 return;
1383 if (ctxt->flags & XML_SCHEMATRON_OUT_XML) {
1384 TODO
1385 } else {
1386 char msg[1000];
1387
1388 if (pattern->name == NULL)
1389 return;
1390 snprintf(msg, 999, "Pattern: %s\n", (const char *) pattern->name);
1391 xmlSchematronReportOutput(ctxt, NULL, &msg[0]);
1392 }
1393}
1394
1395
Daniel Veillarded6c5492005-07-23 15:00:22 +00001396/************************************************************************
1397 * *
1398 * Validation against a Schematrontron *
1399 * *
1400 ************************************************************************/
1401
1402/**
1403 * xmlSchematronNewValidCtxt:
1404 * @schema: a precompiled XML Schematrons
1405 * @options: a set of xmlSchematronValidOptions
1406 *
1407 * Create an XML Schematrons validation context based on the given schema.
1408 *
1409 * Returns the validation context or NULL in case of error
1410 */
1411xmlSchematronValidCtxtPtr
1412xmlSchematronNewValidCtxt(xmlSchematronPtr schema, int options)
1413{
1414 int i;
1415 xmlSchematronValidCtxtPtr ret;
1416
Daniel Veillardc740a172005-07-31 12:17:24 +00001417 ret = (xmlSchematronValidCtxtPtr) xmlMalloc(sizeof(xmlSchematronValidCtxt));
Daniel Veillarded6c5492005-07-23 15:00:22 +00001418 if (ret == NULL) {
1419 xmlSchematronVErrMemory(NULL, "allocating validation context",
1420 NULL);
1421 return (NULL);
1422 }
1423 memset(ret, 0, sizeof(xmlSchematronValidCtxt));
1424 ret->type = XML_STRON_CTXT_VALIDATOR;
1425 ret->schema = schema;
1426 ret->xctxt = xmlXPathNewContext(NULL);
Daniel Veillardd4501d72005-07-24 14:27:16 +00001427 ret->flags = options;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001428 if (ret->xctxt == NULL) {
1429 xmlSchematronPErrMemory(NULL, "allocating schema parser XPath context",
1430 NULL);
1431 xmlSchematronFreeValidCtxt(ret);
1432 return (NULL);
1433 }
1434 for (i = 0;i < schema->nbNamespaces;i++) {
1435 if ((schema->namespaces[2 * i] == NULL) ||
1436 (schema->namespaces[2 * i + 1] == NULL))
1437 break;
1438 xmlXPathRegisterNs(ret->xctxt, schema->namespaces[2 * i + 1],
1439 schema->namespaces[2 * i]);
1440 }
1441 return (ret);
1442}
1443
1444/**
1445 * xmlSchematronFreeValidCtxt:
1446 * @ctxt: the schema validation context
1447 *
1448 * Free the resources associated to the schema validation context
1449 */
1450void
1451xmlSchematronFreeValidCtxt(xmlSchematronValidCtxtPtr ctxt)
1452{
1453 if (ctxt == NULL)
1454 return;
1455 if (ctxt->xctxt != NULL)
1456 xmlXPathFreeContext(ctxt->xctxt);
1457 if (ctxt->dict != NULL)
1458 xmlDictFree(ctxt->dict);
1459 xmlFree(ctxt);
1460}
1461
1462static xmlNodePtr
1463xmlSchematronNextNode(xmlNodePtr cur) {
1464 if (cur->children != NULL) {
1465 /*
1466 * Do not descend on entities declarations
1467 */
1468 if (cur->children->type != XML_ENTITY_DECL) {
1469 cur = cur->children;
1470 /*
1471 * Skip DTDs
1472 */
1473 if (cur->type != XML_DTD_NODE)
1474 return(cur);
1475 }
1476 }
1477
1478 while (cur->next != NULL) {
1479 cur = cur->next;
1480 if ((cur->type != XML_ENTITY_DECL) &&
1481 (cur->type != XML_DTD_NODE))
1482 return(cur);
1483 }
1484
1485 do {
1486 cur = cur->parent;
1487 if (cur == NULL) return(NULL);
1488 if (cur->type == XML_DOCUMENT_NODE) return(NULL);
1489 if (cur->next != NULL) {
1490 cur = cur->next;
1491 return(cur);
1492 }
1493 } while (cur != NULL);
1494 return(cur);
1495}
1496
1497/**
1498 * xmlSchematronRunTest:
1499 * @ctxt: the schema validation context
1500 * @test: the current test
1501 * @instance: the document instace tree
1502 * @cur: the current node in the instance
1503 *
1504 * Validate a rule against a tree instance at a given position
1505 *
1506 * Returns 1 in case of success, 0 if error and -1 in case of internal error
1507 */
1508static int
1509xmlSchematronRunTest(xmlSchematronValidCtxtPtr ctxt,
1510 xmlSchematronTestPtr test, xmlDocPtr instance, xmlNodePtr cur)
1511{
1512 xmlXPathObjectPtr ret;
1513 int failed;
1514
1515 failed = 0;
1516 ctxt->xctxt->doc = instance;
1517 ctxt->xctxt->node = cur;
1518 ret = xmlXPathCompiledEval(test->comp, ctxt->xctxt);
1519 if (ret == NULL) {
1520 failed = 1;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001521 } else {
1522 switch (ret->type) {
1523 case XPATH_XSLT_TREE:
1524 case XPATH_NODESET:
1525 if ((ret->nodesetval == NULL) ||
1526 (ret->nodesetval->nodeNr == 0))
1527 failed = 1;
1528 break;
1529 case XPATH_BOOLEAN:
1530 failed = !ret->boolval;
1531 break;
1532 case XPATH_NUMBER:
1533 if ((xmlXPathIsNaN(ret->floatval)) ||
1534 (ret->floatval == 0.0))
1535 failed = 1;
1536 break;
1537 case XPATH_STRING:
1538 if ((ret->stringval == NULL) ||
1539 (ret->stringval[0] == 0))
1540 failed = 1;
1541 break;
1542 case XPATH_UNDEFINED:
1543 case XPATH_POINT:
1544 case XPATH_RANGE:
1545 case XPATH_LOCATIONSET:
1546 case XPATH_USERS:
Daniel Veillarded6c5492005-07-23 15:00:22 +00001547 failed = 1;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001548 break;
1549 }
1550 xmlXPathFreeObject(ret);
Daniel Veillarded6c5492005-07-23 15:00:22 +00001551 }
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001552 if ((failed) && (test->type == XML_SCHEMATRON_ASSERT))
Daniel Veillardd4501d72005-07-24 14:27:16 +00001553 ctxt->nberrors++;
Daniel Veillardeaecb3e2005-07-31 13:43:14 +00001554 else if ((!failed) && (test->type == XML_SCHEMATRON_REPORT))
1555 ctxt->nberrors++;
1556
Daniel Veillardd4501d72005-07-24 14:27:16 +00001557 xmlSchematronReportSuccess(ctxt, test, cur, !failed);
Daniel Veillarded6c5492005-07-23 15:00:22 +00001558
1559 return(!failed);
1560}
1561
1562/**
1563 * xmlSchematronValidateDoc:
1564 * @ctxt: the schema validation context
1565 * @instance: the document instace tree
1566 *
1567 * Validate a tree instance against the schematron
1568 *
1569 * Returns 0 in case of success, -1 in case of internal error
1570 * and an error count otherwise.
1571 */
1572int
1573xmlSchematronValidateDoc(xmlSchematronValidCtxtPtr ctxt, xmlDocPtr instance)
1574{
Daniel Veillarde70375c2005-07-30 21:09:12 +00001575 xmlNodePtr cur, root;
1576 xmlSchematronPatternPtr pattern;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001577 xmlSchematronRulePtr rule;
1578 xmlSchematronTestPtr test;
1579
1580 if ((ctxt == NULL) || (ctxt->schema == NULL) ||
1581 (ctxt->schema->rules == NULL) || (instance == NULL))
1582 return(-1);
1583 ctxt->nberrors = 0;
Daniel Veillarde70375c2005-07-30 21:09:12 +00001584 root = xmlDocGetRootElement(instance);
1585 if (root == NULL) {
1586 TODO
1587 ctxt->nberrors++;
1588 return(1);
1589 }
1590 if ((ctxt->flags & XML_SCHEMATRON_OUT_QUIET) ||
1591 (ctxt->flags == 0)) {
1592 /*
1593 * we are just trying to assert the validity of the document,
1594 * speed primes over the output, run in a single pass
1595 */
1596 cur = root;
1597 while (cur != NULL) {
1598 rule = ctxt->schema->rules;
1599 while (rule != NULL) {
1600 if (xmlPatternMatch(rule->pattern, cur) == 1) {
1601 test = rule->tests;
1602 while (test != NULL) {
1603 xmlSchematronRunTest(ctxt, test, instance, cur);
1604 test = test->next;
1605 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001606 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001607 rule = rule->next;
Daniel Veillarded6c5492005-07-23 15:00:22 +00001608 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001609
1610 cur = xmlSchematronNextNode(cur);
Daniel Veillarded6c5492005-07-23 15:00:22 +00001611 }
Daniel Veillarde70375c2005-07-30 21:09:12 +00001612 } else {
1613 /*
1614 * Process all contexts one at a time
1615 */
1616 pattern = ctxt->schema->patterns;
1617
1618 while (pattern != NULL) {
Daniel Veillardc740a172005-07-31 12:17:24 +00001619 xmlSchematronReportPattern(ctxt, pattern);
1620
Daniel Veillarde70375c2005-07-30 21:09:12 +00001621 /*
1622 * TODO convert the pattern rule to a direct XPath and
1623 * compute directly instead of using the pattern matching
1624 * over the full document...
1625 * Check the exact semantic
1626 */
1627 cur = root;
1628 while (cur != NULL) {
1629 rule = pattern->rules;
1630 while (rule != NULL) {
1631 if (xmlPatternMatch(rule->pattern, cur) == 1) {
1632 test = rule->tests;
1633 while (test != NULL) {
1634 xmlSchematronRunTest(ctxt, test, instance, cur);
1635 test = test->next;
1636 }
1637 }
1638 rule = rule->patnext;
1639 }
1640
1641 cur = xmlSchematronNextNode(cur);
1642 }
Daniel Veillardc740a172005-07-31 12:17:24 +00001643 pattern = pattern->next;
Daniel Veillarde70375c2005-07-30 21:09:12 +00001644 }
Daniel Veillarded6c5492005-07-23 15:00:22 +00001645 }
1646 return(ctxt->nberrors);
1647}
1648
1649#ifdef STANDALONE
1650int
1651main(void)
1652{
1653 int ret;
1654 xmlDocPtr instance;
1655 xmlSchematronParserCtxtPtr pctxt;
1656 xmlSchematronValidCtxtPtr vctxt;
1657 xmlSchematronPtr schema = NULL;
1658
1659 pctxt = xmlSchematronNewParserCtxt("tst.sct");
1660 if (pctxt == NULL) {
1661 fprintf(stderr, "failed to build schematron parser\n");
1662 } else {
1663 schema = xmlSchematronParse(pctxt);
1664 if (schema == NULL) {
1665 fprintf(stderr, "failed to compile schematron\n");
1666 }
1667 xmlSchematronFreeParserCtxt(pctxt);
1668 }
1669 instance = xmlReadFile("tst.sct", NULL,
1670 XML_PARSE_NOENT | XML_PARSE_NOCDATA);
1671 if (instance == NULL) {
1672 fprintf(stderr, "failed to parse instance\n");
1673 }
1674 if ((schema != NULL) && (instance != NULL)) {
1675 vctxt = xmlSchematronNewValidCtxt(schema);
1676 if (vctxt == NULL) {
1677 fprintf(stderr, "failed to build schematron validator\n");
1678 } else {
1679 ret = xmlSchematronValidateDoc(vctxt, instance);
1680 xmlSchematronFreeValidCtxt(vctxt);
1681 }
1682 }
1683 xmlSchematronFree(schema);
1684 xmlFreeDoc(instance);
1685
1686 xmlCleanupParser();
1687 xmlMemoryDump();
1688
1689 return (0);
1690}
1691#endif
1692#endif /* LIBXML_SCHEMATRON_ENABLED */