blob: 45eef130412a34baffb02f4c3e9169f30f3017ba [file] [log] [blame]
Daniel Veillard6eadf632003-01-23 18:29:16 +00001/*
2 * relaxng.c : implementation of the Relax-NG handling and validity checking
3 *
4 * See Copyright for the status of this software.
5 *
6 * Daniel Veillard <veillard@redhat.com>
7 */
8
Daniel Veillardd41f4f42003-01-29 21:07:52 +00009/**
10 * TODO:
Daniel Veillardf4b4f982003-02-13 11:02:08 +000011 * - add support for DTD compatibility spec
12 * http://www.oasis-open.org/committees/relax-ng/compatibility-20011203.html
Daniel Veillardac297932003-04-17 12:55:35 +000013 * - report better mem allocations pbms at runtime and abort immediately.
Daniel Veillardd41f4f42003-01-29 21:07:52 +000014 */
15
Daniel Veillard6eadf632003-01-23 18:29:16 +000016#define IN_LIBXML
17#include "libxml.h"
18
19#ifdef LIBXML_SCHEMAS_ENABLED
20
21#include <string.h>
22#include <stdio.h>
23#include <libxml/xmlmemory.h>
24#include <libxml/parser.h>
25#include <libxml/parserInternals.h>
26#include <libxml/hash.h>
27#include <libxml/uri.h>
28
29#include <libxml/relaxng.h>
30
31#include <libxml/xmlschemastypes.h>
32#include <libxml/xmlautomata.h>
33#include <libxml/xmlregexp.h>
Daniel Veillardc6e997c2003-01-27 12:35:42 +000034#include <libxml/xmlschemastypes.h>
Daniel Veillard6eadf632003-01-23 18:29:16 +000035
36/*
37 * The Relax-NG namespace
38 */
39static const xmlChar *xmlRelaxNGNs = (const xmlChar *)
40 "http://relaxng.org/ns/structure/1.0";
41
42#define IS_RELAXNG(node, type) \
43 ((node != NULL) && (node->ns != NULL) && \
44 (xmlStrEqual(node->name, (const xmlChar *) type)) && \
45 (xmlStrEqual(node->ns->href, xmlRelaxNGNs)))
46
47
Daniel Veillard87254c82006-02-19 15:27:17 +000048#if 0
49#define DEBUG 1
Daniel Veillard4c004142003-10-07 11:33:24 +000050
Daniel Veillard87254c82006-02-19 15:27:17 +000051#define DEBUG_GRAMMAR 1
Daniel Veillard4c004142003-10-07 11:33:24 +000052
Daniel Veillard87254c82006-02-19 15:27:17 +000053#define DEBUG_CONTENT 1
Daniel Veillard4c004142003-10-07 11:33:24 +000054
Daniel Veillard87254c82006-02-19 15:27:17 +000055#define DEBUG_TYPE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000056
Daniel Veillard87254c82006-02-19 15:27:17 +000057#define DEBUG_VALID 1
Daniel Veillard4c004142003-10-07 11:33:24 +000058
Daniel Veillard87254c82006-02-19 15:27:17 +000059#define DEBUG_INTERLEAVE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000060
Daniel Veillard87254c82006-02-19 15:27:17 +000061#define DEBUG_LIST 1
Daniel Veillard4c004142003-10-07 11:33:24 +000062
Daniel Veillard87254c82006-02-19 15:27:17 +000063#define DEBUG_INCLUDE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000064
Daniel Veillard87254c82006-02-19 15:27:17 +000065#define DEBUG_ERROR 1
Daniel Veillard4c004142003-10-07 11:33:24 +000066
Daniel Veillard87254c82006-02-19 15:27:17 +000067#define DEBUG_COMPILE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000068
Daniel Veillard87254c82006-02-19 15:27:17 +000069#define DEBUG_PROGRESSIVE 1
70#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +000071
Daniel Veillard5f1946a2003-03-31 16:38:16 +000072#define MAX_ERROR 5
73
Daniel Veillard6eadf632003-01-23 18:29:16 +000074#define TODO \
75 xmlGenericError(xmlGenericErrorContext, \
76 "Unimplemented block at %s:%d\n", \
77 __FILE__, __LINE__);
78
79typedef struct _xmlRelaxNGSchema xmlRelaxNGSchema;
80typedef xmlRelaxNGSchema *xmlRelaxNGSchemaPtr;
81
82typedef struct _xmlRelaxNGDefine xmlRelaxNGDefine;
83typedef xmlRelaxNGDefine *xmlRelaxNGDefinePtr;
84
Daniel Veillardd41f4f42003-01-29 21:07:52 +000085typedef struct _xmlRelaxNGDocument xmlRelaxNGDocument;
86typedef xmlRelaxNGDocument *xmlRelaxNGDocumentPtr;
87
Daniel Veillarda9d912d2003-02-01 17:43:10 +000088typedef struct _xmlRelaxNGInclude xmlRelaxNGInclude;
89typedef xmlRelaxNGInclude *xmlRelaxNGIncludePtr;
90
Daniel Veillard6eadf632003-01-23 18:29:16 +000091typedef enum {
Daniel Veillard4c004142003-10-07 11:33:24 +000092 XML_RELAXNG_COMBINE_UNDEFINED = 0, /* undefined */
93 XML_RELAXNG_COMBINE_CHOICE, /* choice */
94 XML_RELAXNG_COMBINE_INTERLEAVE /* interleave */
Daniel Veillard6eadf632003-01-23 18:29:16 +000095} xmlRelaxNGCombine;
96
Daniel Veillard4c5cf702003-02-21 15:40:34 +000097typedef enum {
98 XML_RELAXNG_CONTENT_ERROR = -1,
99 XML_RELAXNG_CONTENT_EMPTY = 0,
100 XML_RELAXNG_CONTENT_SIMPLE,
101 XML_RELAXNG_CONTENT_COMPLEX
102} xmlRelaxNGContentType;
103
Daniel Veillard6eadf632003-01-23 18:29:16 +0000104typedef struct _xmlRelaxNGGrammar xmlRelaxNGGrammar;
105typedef xmlRelaxNGGrammar *xmlRelaxNGGrammarPtr;
106
107struct _xmlRelaxNGGrammar {
Daniel Veillard4c004142003-10-07 11:33:24 +0000108 xmlRelaxNGGrammarPtr parent; /* the parent grammar if any */
109 xmlRelaxNGGrammarPtr children; /* the children grammar if any */
110 xmlRelaxNGGrammarPtr next; /* the next grammar if any */
111 xmlRelaxNGDefinePtr start; /* <start> content */
112 xmlRelaxNGCombine combine; /* the default combine value */
113 xmlRelaxNGDefinePtr startList; /* list of <start> definitions */
114 xmlHashTablePtr defs; /* define* */
115 xmlHashTablePtr refs; /* references */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000116};
117
118
Daniel Veillard6eadf632003-01-23 18:29:16 +0000119typedef enum {
Daniel Veillard4c004142003-10-07 11:33:24 +0000120 XML_RELAXNG_NOOP = -1, /* a no operation from simplification */
121 XML_RELAXNG_EMPTY = 0, /* an empty pattern */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000122 XML_RELAXNG_NOT_ALLOWED, /* not allowed top */
Daniel Veillard4c004142003-10-07 11:33:24 +0000123 XML_RELAXNG_EXCEPT, /* except present in nameclass defs */
124 XML_RELAXNG_TEXT, /* textual content */
125 XML_RELAXNG_ELEMENT, /* an element */
126 XML_RELAXNG_DATATYPE, /* extenal data type definition */
127 XML_RELAXNG_PARAM, /* extenal data type parameter */
128 XML_RELAXNG_VALUE, /* value from an extenal data type definition */
129 XML_RELAXNG_LIST, /* a list of patterns */
130 XML_RELAXNG_ATTRIBUTE, /* an attrbute following a pattern */
131 XML_RELAXNG_DEF, /* a definition */
132 XML_RELAXNG_REF, /* reference to a definition */
133 XML_RELAXNG_EXTERNALREF, /* reference to an external def */
134 XML_RELAXNG_PARENTREF, /* reference to a def in the parent grammar */
135 XML_RELAXNG_OPTIONAL, /* optional patterns */
136 XML_RELAXNG_ZEROORMORE, /* zero or more non empty patterns */
137 XML_RELAXNG_ONEORMORE, /* one or more non empty patterns */
138 XML_RELAXNG_CHOICE, /* a choice between non empty patterns */
139 XML_RELAXNG_GROUP, /* a pair/group of non empty patterns */
140 XML_RELAXNG_INTERLEAVE, /* interleaving choice of non-empty patterns */
141 XML_RELAXNG_START /* Used to keep track of starts on grammars */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000142} xmlRelaxNGType;
143
Daniel Veillard52b48c72003-04-13 19:53:42 +0000144#define IS_NULLABLE (1 << 0)
145#define IS_NOT_NULLABLE (1 << 1)
146#define IS_INDETERMINIST (1 << 2)
147#define IS_MIXED (1 << 3)
148#define IS_TRIABLE (1 << 4)
149#define IS_PROCESSED (1 << 5)
150#define IS_COMPILABLE (1 << 6)
151#define IS_NOT_COMPILABLE (1 << 7)
Daniel Veillard1564e6e2003-03-15 21:30:25 +0000152
Daniel Veillard6eadf632003-01-23 18:29:16 +0000153struct _xmlRelaxNGDefine {
Daniel Veillard4c004142003-10-07 11:33:24 +0000154 xmlRelaxNGType type; /* the type of definition */
155 xmlNodePtr node; /* the node in the source */
156 xmlChar *name; /* the element local name if present */
157 xmlChar *ns; /* the namespace local name if present */
158 xmlChar *value; /* value when available */
159 void *data; /* data lib or specific pointer */
160 xmlRelaxNGDefinePtr content; /* the expected content */
161 xmlRelaxNGDefinePtr parent; /* the parent definition, if any */
162 xmlRelaxNGDefinePtr next; /* list within grouping sequences */
163 xmlRelaxNGDefinePtr attrs; /* list of attributes for elements */
164 xmlRelaxNGDefinePtr nameClass; /* the nameClass definition if any */
165 xmlRelaxNGDefinePtr nextHash; /* next define in defs/refs hash tables */
166 short depth; /* used for the cycle detection */
167 short dflags; /* define related flags */
168 xmlRegexpPtr contModel; /* a compiled content model if available */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000169};
170
171/**
172 * _xmlRelaxNG:
173 *
174 * A RelaxNGs definition
175 */
176struct _xmlRelaxNG {
Daniel Veillard4c004142003-10-07 11:33:24 +0000177 void *_private; /* unused by the library for users or bindings */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000178 xmlRelaxNGGrammarPtr topgrammar;
179 xmlDocPtr doc;
180
Daniel Veillard4c004142003-10-07 11:33:24 +0000181 int idref; /* requires idref checking */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000182
Daniel Veillard4c004142003-10-07 11:33:24 +0000183 xmlHashTablePtr defs; /* define */
184 xmlHashTablePtr refs; /* references */
185 xmlRelaxNGDocumentPtr documents; /* all the documents loaded */
186 xmlRelaxNGIncludePtr includes; /* all the includes loaded */
187 int defNr; /* number of defines used */
188 xmlRelaxNGDefinePtr *defTab; /* pointer to the allocated definitions */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000189
Daniel Veillard6eadf632003-01-23 18:29:16 +0000190};
191
Daniel Veillard77648bb2003-02-20 15:03:22 +0000192#define XML_RELAXNG_IN_ATTRIBUTE (1 << 0)
193#define XML_RELAXNG_IN_ONEORMORE (1 << 1)
194#define XML_RELAXNG_IN_LIST (1 << 2)
195#define XML_RELAXNG_IN_DATAEXCEPT (1 << 3)
196#define XML_RELAXNG_IN_START (1 << 4)
197#define XML_RELAXNG_IN_OOMGROUP (1 << 5)
198#define XML_RELAXNG_IN_OOMINTERLEAVE (1 << 6)
199#define XML_RELAXNG_IN_EXTERNALREF (1 << 7)
Daniel Veillardc5312d72003-02-21 17:14:10 +0000200#define XML_RELAXNG_IN_ANYEXCEPT (1 << 8)
201#define XML_RELAXNG_IN_NSEXCEPT (1 << 9)
Daniel Veillard6eadf632003-01-23 18:29:16 +0000202
203struct _xmlRelaxNGParserCtxt {
Daniel Veillard4c004142003-10-07 11:33:24 +0000204 void *userData; /* user specific data block */
205 xmlRelaxNGValidityErrorFunc error; /* the callback in case of errors */
206 xmlRelaxNGValidityWarningFunc warning; /* the callback in case of warning */
Daniel Veillard659e71e2003-10-10 14:10:40 +0000207 xmlStructuredErrorFunc serror;
Daniel Veillard42f12e92003-03-07 18:32:59 +0000208 xmlRelaxNGValidErr err;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000209
Daniel Veillard4c004142003-10-07 11:33:24 +0000210 xmlRelaxNGPtr schema; /* The schema in use */
211 xmlRelaxNGGrammarPtr grammar; /* the current grammar */
212 xmlRelaxNGGrammarPtr parentgrammar; /* the parent grammar */
213 int flags; /* parser flags */
214 int nbErrors; /* number of errors at parse time */
215 int nbWarnings; /* number of warnings at parse time */
216 const xmlChar *define; /* the current define scope */
217 xmlRelaxNGDefinePtr def; /* the current define */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000218
Daniel Veillard4c004142003-10-07 11:33:24 +0000219 int nbInterleaves;
220 xmlHashTablePtr interleaves; /* keep track of all the interleaves */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000221
Daniel Veillard4c004142003-10-07 11:33:24 +0000222 xmlRelaxNGDocumentPtr documents; /* all the documents loaded */
223 xmlRelaxNGIncludePtr includes; /* all the includes loaded */
224 xmlChar *URL;
225 xmlDocPtr document;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000226
Daniel Veillard4c004142003-10-07 11:33:24 +0000227 int defNr; /* number of defines used */
228 int defMax; /* number of defines aloocated */
229 xmlRelaxNGDefinePtr *defTab; /* pointer to the allocated definitions */
Daniel Veillard419a7682003-02-03 23:22:49 +0000230
Daniel Veillard4c004142003-10-07 11:33:24 +0000231 const char *buffer;
232 int size;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000233
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000234 /* the document stack */
Daniel Veillard4c004142003-10-07 11:33:24 +0000235 xmlRelaxNGDocumentPtr doc; /* Current parsed external ref */
236 int docNr; /* Depth of the parsing stack */
237 int docMax; /* Max depth of the parsing stack */
238 xmlRelaxNGDocumentPtr *docTab; /* array of docs */
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000239
240 /* the include stack */
Daniel Veillard4c004142003-10-07 11:33:24 +0000241 xmlRelaxNGIncludePtr inc; /* Current parsed include */
242 int incNr; /* Depth of the include parsing stack */
243 int incMax; /* Max depth of the parsing stack */
244 xmlRelaxNGIncludePtr *incTab; /* array of incs */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000245
Daniel Veillard4c004142003-10-07 11:33:24 +0000246 int idref; /* requires idref checking */
Daniel Veillard52b48c72003-04-13 19:53:42 +0000247
248 /* used to compile content models */
Daniel Veillard4c004142003-10-07 11:33:24 +0000249 xmlAutomataPtr am; /* the automata */
250 xmlAutomataStatePtr state; /* used to build the automata */
Daniel Veillard03c2f0a2004-01-25 19:54:59 +0000251
252 int crng; /* compact syntax and other flags */
Daniel Veillard42595322004-11-08 10:52:06 +0000253 int freedoc; /* need to free the document */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000254};
255
256#define FLAGS_IGNORABLE 1
257#define FLAGS_NEGATIVE 2
Daniel Veillard249d7bb2003-03-19 21:02:29 +0000258#define FLAGS_MIXED_CONTENT 4
Daniel Veillardb30ca312005-09-04 13:50:03 +0000259#define FLAGS_NOERROR 8
Daniel Veillard6eadf632003-01-23 18:29:16 +0000260
261/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000262 * xmlRelaxNGInterleaveGroup:
263 *
264 * A RelaxNGs partition set associated to lists of definitions
265 */
266typedef struct _xmlRelaxNGInterleaveGroup xmlRelaxNGInterleaveGroup;
267typedef xmlRelaxNGInterleaveGroup *xmlRelaxNGInterleaveGroupPtr;
268struct _xmlRelaxNGInterleaveGroup {
Daniel Veillard4c004142003-10-07 11:33:24 +0000269 xmlRelaxNGDefinePtr rule; /* the rule to satisfy */
270 xmlRelaxNGDefinePtr *defs; /* the array of element definitions */
271 xmlRelaxNGDefinePtr *attrs; /* the array of attributes definitions */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000272};
273
Daniel Veillardbbb78b52003-03-21 01:24:45 +0000274#define IS_DETERMINIST 1
275#define IS_NEEDCHECK 2
Daniel Veillard4c004142003-10-07 11:33:24 +0000276
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000277/**
278 * xmlRelaxNGPartitions:
279 *
280 * A RelaxNGs partition associated to an interleave group
281 */
282typedef struct _xmlRelaxNGPartition xmlRelaxNGPartition;
283typedef xmlRelaxNGPartition *xmlRelaxNGPartitionPtr;
284struct _xmlRelaxNGPartition {
Daniel Veillard4c004142003-10-07 11:33:24 +0000285 int nbgroups; /* number of groups in the partitions */
286 xmlHashTablePtr triage; /* hash table used to direct nodes to the
287 * right group when possible */
288 int flags; /* determinist ? */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000289 xmlRelaxNGInterleaveGroupPtr *groups;
290};
291
292/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000293 * xmlRelaxNGValidState:
294 *
295 * A RelaxNGs validation state
296 */
297#define MAX_ATTR 20
298typedef struct _xmlRelaxNGValidState xmlRelaxNGValidState;
299typedef xmlRelaxNGValidState *xmlRelaxNGValidStatePtr;
300struct _xmlRelaxNGValidState {
Daniel Veillard4c004142003-10-07 11:33:24 +0000301 xmlNodePtr node; /* the current node */
302 xmlNodePtr seq; /* the sequence of children left to validate */
303 int nbAttrs; /* the number of attributes */
304 int maxAttrs; /* the size of attrs */
305 int nbAttrLeft; /* the number of attributes left to validate */
306 xmlChar *value; /* the value when operating on string */
307 xmlChar *endvalue; /* the end value when operating on string */
308 xmlAttrPtr *attrs; /* the array of attributes */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000309};
310
311/**
Daniel Veillardfd573f12003-03-16 17:52:32 +0000312 * xmlRelaxNGStates:
313 *
314 * A RelaxNGs container for validation state
315 */
316typedef struct _xmlRelaxNGStates xmlRelaxNGStates;
317typedef xmlRelaxNGStates *xmlRelaxNGStatesPtr;
318struct _xmlRelaxNGStates {
Daniel Veillard4c004142003-10-07 11:33:24 +0000319 int nbState; /* the number of states */
320 int maxState; /* the size of the array */
Daniel Veillardfd573f12003-03-16 17:52:32 +0000321 xmlRelaxNGValidStatePtr *tabState;
322};
323
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000324#define ERROR_IS_DUP 1
Daniel Veillard4c004142003-10-07 11:33:24 +0000325
Daniel Veillardfd573f12003-03-16 17:52:32 +0000326/**
Daniel Veillard42f12e92003-03-07 18:32:59 +0000327 * xmlRelaxNGValidError:
328 *
329 * A RelaxNGs validation error
330 */
331typedef struct _xmlRelaxNGValidError xmlRelaxNGValidError;
332typedef xmlRelaxNGValidError *xmlRelaxNGValidErrorPtr;
333struct _xmlRelaxNGValidError {
Daniel Veillard4c004142003-10-07 11:33:24 +0000334 xmlRelaxNGValidErr err; /* the error number */
335 int flags; /* flags */
336 xmlNodePtr node; /* the current node */
337 xmlNodePtr seq; /* the current child */
338 const xmlChar *arg1; /* first arg */
339 const xmlChar *arg2; /* second arg */
Daniel Veillard42f12e92003-03-07 18:32:59 +0000340};
341
342/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000343 * xmlRelaxNGValidCtxt:
344 *
345 * A RelaxNGs validation context
346 */
347
348struct _xmlRelaxNGValidCtxt {
Daniel Veillard4c004142003-10-07 11:33:24 +0000349 void *userData; /* user specific data block */
350 xmlRelaxNGValidityErrorFunc error; /* the callback in case of errors */
351 xmlRelaxNGValidityWarningFunc warning; /* the callback in case of warning */
Daniel Veillard659e71e2003-10-10 14:10:40 +0000352 xmlStructuredErrorFunc serror;
Daniel Veillard4c004142003-10-07 11:33:24 +0000353 int nbErrors; /* number of errors in validation */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000354
Daniel Veillard4c004142003-10-07 11:33:24 +0000355 xmlRelaxNGPtr schema; /* The schema in use */
356 xmlDocPtr doc; /* the document being validated */
357 int flags; /* validation flags */
358 int depth; /* validation depth */
359 int idref; /* requires idref checking */
360 int errNo; /* the first error found */
Daniel Veillard42f12e92003-03-07 18:32:59 +0000361
362 /*
363 * Errors accumulated in branches may have to be stacked to be
364 * provided back when it's sure they affect validation.
365 */
366 xmlRelaxNGValidErrorPtr err; /* Last error */
Daniel Veillard4c004142003-10-07 11:33:24 +0000367 int errNr; /* Depth of the error stack */
368 int errMax; /* Max depth of the error stack */
369 xmlRelaxNGValidErrorPtr errTab; /* stack of errors */
Daniel Veillard1564e6e2003-03-15 21:30:25 +0000370
Daniel Veillard4c004142003-10-07 11:33:24 +0000371 xmlRelaxNGValidStatePtr state; /* the current validation state */
372 xmlRelaxNGStatesPtr states; /* the accumulated state list */
Daniel Veillard798024a2003-03-19 10:36:09 +0000373
Daniel Veillard4c004142003-10-07 11:33:24 +0000374 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
375 int freeStatesNr;
376 int freeStatesMax;
377 xmlRelaxNGStatesPtr *freeStates; /* the pool of free state groups */
Daniel Veillardf4e55762003-04-15 23:32:22 +0000378
379 /*
380 * This is used for "progressive" validation
381 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000382 xmlRegExecCtxtPtr elem; /* the current element regexp */
383 int elemNr; /* the number of element validated */
384 int elemMax; /* the max depth of elements */
385 xmlRegExecCtxtPtr *elemTab; /* the stack of regexp runtime */
386 int pstate; /* progressive state */
387 xmlNodePtr pnode; /* the current node */
388 xmlRelaxNGDefinePtr pdef; /* the non-streamable definition */
389 int perr; /* signal error in content model
390 * outside the regexp */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000391};
392
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000393/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000394 * xmlRelaxNGInclude:
395 *
396 * Structure associated to a RelaxNGs document element
397 */
398struct _xmlRelaxNGInclude {
Daniel Veillard4c004142003-10-07 11:33:24 +0000399 xmlRelaxNGIncludePtr next; /* keep a chain of includes */
400 xmlChar *href; /* the normalized href value */
401 xmlDocPtr doc; /* the associated XML document */
402 xmlRelaxNGDefinePtr content; /* the definitions */
403 xmlRelaxNGPtr schema; /* the schema */
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000404};
405
406/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000407 * xmlRelaxNGDocument:
408 *
409 * Structure associated to a RelaxNGs document element
410 */
411struct _xmlRelaxNGDocument {
Daniel Veillardc482e262003-02-26 14:48:48 +0000412 xmlRelaxNGDocumentPtr next; /* keep a chain of documents */
Daniel Veillard4c004142003-10-07 11:33:24 +0000413 xmlChar *href; /* the normalized href value */
414 xmlDocPtr doc; /* the associated XML document */
415 xmlRelaxNGDefinePtr content; /* the definitions */
416 xmlRelaxNGPtr schema; /* the schema */
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000417};
418
Daniel Veillard3ebc7d42003-02-24 17:17:58 +0000419
Daniel Veillard6eadf632003-01-23 18:29:16 +0000420/************************************************************************
Daniel Veillard4c004142003-10-07 11:33:24 +0000421 * *
422 * Some factorized error routines *
423 * *
424 ************************************************************************/
425
426/**
427 * xmlRngPErrMemory:
428 * @ctxt: an Relax-NG parser context
429 * @extra: extra informations
430 *
431 * Handle a redefinition of attribute error
432 */
433static void
434xmlRngPErrMemory(xmlRelaxNGParserCtxtPtr ctxt, const char *extra)
435{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000436 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000437 xmlGenericErrorFunc channel = NULL;
438 void *data = NULL;
439
440 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000441 if (ctxt->serror != NULL)
442 schannel = ctxt->serror;
443 else
444 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000445 data = ctxt->userData;
446 ctxt->nbErrors++;
447 }
448 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000449 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000450 NULL, NULL, XML_FROM_RELAXNGP,
451 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
452 NULL, NULL, 0, 0,
453 "Memory allocation failed : %s\n", extra);
454 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000455 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000456 NULL, NULL, XML_FROM_RELAXNGP,
457 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
458 NULL, NULL, 0, 0, "Memory allocation failed\n");
459}
460
461/**
462 * xmlRngVErrMemory:
463 * @ctxt: a Relax-NG validation context
464 * @extra: extra informations
465 *
466 * Handle a redefinition of attribute error
467 */
468static void
469xmlRngVErrMemory(xmlRelaxNGValidCtxtPtr ctxt, const char *extra)
470{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000471 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000472 xmlGenericErrorFunc channel = NULL;
473 void *data = NULL;
474
475 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000476 if (ctxt->serror != NULL)
477 schannel = ctxt->serror;
478 else
479 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000480 data = ctxt->userData;
481 ctxt->nbErrors++;
482 }
483 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000484 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000485 NULL, NULL, XML_FROM_RELAXNGV,
486 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
487 NULL, NULL, 0, 0,
488 "Memory allocation failed : %s\n", extra);
489 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000490 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000491 NULL, NULL, XML_FROM_RELAXNGV,
492 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
493 NULL, NULL, 0, 0, "Memory allocation failed\n");
494}
495
496/**
497 * xmlRngPErr:
498 * @ctxt: a Relax-NG parser context
499 * @node: the node raising the error
500 * @error: the error code
501 * @msg: message
502 * @str1: extra info
503 * @str2: extra info
504 *
505 * Handle a Relax NG Parsing error
506 */
507static void
508xmlRngPErr(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node, int error,
509 const char *msg, const xmlChar * str1, const xmlChar * str2)
510{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000511 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000512 xmlGenericErrorFunc channel = NULL;
513 void *data = NULL;
514
515 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000516 if (ctxt->serror != NULL)
517 schannel = ctxt->serror;
518 else
519 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000520 data = ctxt->userData;
521 ctxt->nbErrors++;
522 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000523 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000524 NULL, node, XML_FROM_RELAXNGP,
525 error, XML_ERR_ERROR, NULL, 0,
526 (const char *) str1, (const char *) str2, NULL, 0, 0,
527 msg, str1, str2);
528}
529
530/**
531 * xmlRngVErr:
532 * @ctxt: a Relax-NG validation context
533 * @node: the node raising the error
534 * @error: the error code
535 * @msg: message
536 * @str1: extra info
537 * @str2: extra info
538 *
539 * Handle a Relax NG Validation error
540 */
541static void
542xmlRngVErr(xmlRelaxNGValidCtxtPtr ctxt, xmlNodePtr node, int error,
543 const char *msg, const xmlChar * str1, const xmlChar * str2)
544{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000545 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000546 xmlGenericErrorFunc channel = NULL;
547 void *data = NULL;
548
549 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000550 if (ctxt->serror != NULL)
551 schannel = ctxt->serror;
552 else
553 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000554 data = ctxt->userData;
555 ctxt->nbErrors++;
556 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000557 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000558 NULL, node, XML_FROM_RELAXNGV,
559 error, XML_ERR_ERROR, NULL, 0,
560 (const char *) str1, (const char *) str2, NULL, 0, 0,
561 msg, str1, str2);
562}
563
564/************************************************************************
Daniel Veillard6eadf632003-01-23 18:29:16 +0000565 * *
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000566 * Preliminary type checking interfaces *
567 * *
568 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +0000569
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000570/**
571 * xmlRelaxNGTypeHave:
572 * @data: data needed for the library
573 * @type: the type name
574 * @value: the value to check
575 *
576 * Function provided by a type library to check if a type is exported
577 *
578 * Returns 1 if yes, 0 if no and -1 in case of error.
579 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000580typedef int (*xmlRelaxNGTypeHave) (void *data, const xmlChar * type);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000581
582/**
583 * xmlRelaxNGTypeCheck:
584 * @data: data needed for the library
585 * @type: the type name
586 * @value: the value to check
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000587 * @result: place to store the result if needed
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000588 *
589 * Function provided by a type library to check if a value match a type
590 *
591 * Returns 1 if yes, 0 if no and -1 in case of error.
592 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000593typedef int (*xmlRelaxNGTypeCheck) (void *data, const xmlChar * type,
594 const xmlChar * value, void **result,
595 xmlNodePtr node);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000596
597/**
598 * xmlRelaxNGFacetCheck:
599 * @data: data needed for the library
600 * @type: the type name
601 * @facet: the facet name
602 * @val: the facet value
603 * @strval: the string value
604 * @value: the value to check
605 *
606 * Function provided by a type library to check a value facet
607 *
608 * Returns 1 if yes, 0 if no and -1 in case of error.
609 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000610typedef int (*xmlRelaxNGFacetCheck) (void *data, const xmlChar * type,
611 const xmlChar * facet,
612 const xmlChar * val,
613 const xmlChar * strval, void *value);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000614
615/**
616 * xmlRelaxNGTypeFree:
617 * @data: data needed for the library
618 * @result: the value to free
619 *
620 * Function provided by a type library to free a returned result
621 */
622typedef void (*xmlRelaxNGTypeFree) (void *data, void *result);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000623
624/**
625 * xmlRelaxNGTypeCompare:
626 * @data: data needed for the library
627 * @type: the type name
628 * @value1: the first value
629 * @value2: the second value
630 *
631 * Function provided by a type library to compare two values accordingly
632 * to a type.
633 *
634 * Returns 1 if yes, 0 if no and -1 in case of error.
635 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000636typedef int (*xmlRelaxNGTypeCompare) (void *data, const xmlChar * type,
637 const xmlChar * value1,
638 xmlNodePtr ctxt1,
639 void *comp1,
640 const xmlChar * value2,
641 xmlNodePtr ctxt2);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000642typedef struct _xmlRelaxNGTypeLibrary xmlRelaxNGTypeLibrary;
643typedef xmlRelaxNGTypeLibrary *xmlRelaxNGTypeLibraryPtr;
644struct _xmlRelaxNGTypeLibrary {
Daniel Veillard4c004142003-10-07 11:33:24 +0000645 const xmlChar *namespace; /* the datatypeLibrary value */
646 void *data; /* data needed for the library */
647 xmlRelaxNGTypeHave have; /* the export function */
648 xmlRelaxNGTypeCheck check; /* the checking function */
649 xmlRelaxNGTypeCompare comp; /* the compare function */
650 xmlRelaxNGFacetCheck facet; /* the facet check function */
651 xmlRelaxNGTypeFree freef; /* the freeing function */
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000652};
653
654/************************************************************************
655 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +0000656 * Allocation functions *
657 * *
658 ************************************************************************/
Daniel Veillard6eadf632003-01-23 18:29:16 +0000659static void xmlRelaxNGFreeGrammar(xmlRelaxNGGrammarPtr grammar);
660static void xmlRelaxNGFreeDefine(xmlRelaxNGDefinePtr define);
Daniel Veillard4c004142003-10-07 11:33:24 +0000661static void xmlRelaxNGNormExtSpace(xmlChar * value);
Daniel Veillardc482e262003-02-26 14:48:48 +0000662static void xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema);
Daniel Veillard4c004142003-10-07 11:33:24 +0000663static int xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt
664 ATTRIBUTE_UNUSED,
665 xmlRelaxNGValidStatePtr state1,
666 xmlRelaxNGValidStatePtr state2);
Daniel Veillard798024a2003-03-19 10:36:09 +0000667static void xmlRelaxNGFreeValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +0000668 xmlRelaxNGValidStatePtr state);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000669
670/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000671 * xmlRelaxNGFreeDocument:
672 * @docu: a document structure
673 *
674 * Deallocate a RelaxNG document structure.
675 */
676static void
677xmlRelaxNGFreeDocument(xmlRelaxNGDocumentPtr docu)
678{
679 if (docu == NULL)
680 return;
681
682 if (docu->href != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000683 xmlFree(docu->href);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000684 if (docu->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000685 xmlFreeDoc(docu->doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000686 if (docu->schema != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000687 xmlRelaxNGFreeInnerSchema(docu->schema);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000688 xmlFree(docu);
689}
690
691/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000692 * xmlRelaxNGFreeDocumentList:
693 * @docu: a list of document structure
694 *
695 * Deallocate a RelaxNG document structures.
696 */
697static void
698xmlRelaxNGFreeDocumentList(xmlRelaxNGDocumentPtr docu)
699{
700 xmlRelaxNGDocumentPtr next;
Daniel Veillard4c004142003-10-07 11:33:24 +0000701
Daniel Veillardc482e262003-02-26 14:48:48 +0000702 while (docu != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000703 next = docu->next;
704 xmlRelaxNGFreeDocument(docu);
705 docu = next;
Daniel Veillardc482e262003-02-26 14:48:48 +0000706 }
707}
708
709/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000710 * xmlRelaxNGFreeInclude:
711 * @incl: a include structure
712 *
713 * Deallocate a RelaxNG include structure.
714 */
715static void
716xmlRelaxNGFreeInclude(xmlRelaxNGIncludePtr incl)
717{
718 if (incl == NULL)
719 return;
720
721 if (incl->href != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000722 xmlFree(incl->href);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000723 if (incl->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000724 xmlFreeDoc(incl->doc);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000725 if (incl->schema != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000726 xmlRelaxNGFree(incl->schema);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000727 xmlFree(incl);
728}
729
730/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000731 * xmlRelaxNGFreeIncludeList:
732 * @incl: a include structure list
733 *
734 * Deallocate a RelaxNG include structure.
735 */
736static void
737xmlRelaxNGFreeIncludeList(xmlRelaxNGIncludePtr incl)
738{
739 xmlRelaxNGIncludePtr next;
Daniel Veillard4c004142003-10-07 11:33:24 +0000740
Daniel Veillardc482e262003-02-26 14:48:48 +0000741 while (incl != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000742 next = incl->next;
743 xmlRelaxNGFreeInclude(incl);
744 incl = next;
Daniel Veillardc482e262003-02-26 14:48:48 +0000745 }
746}
747
748/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000749 * xmlRelaxNGNewRelaxNG:
750 * @ctxt: a Relax-NG validation context (optional)
751 *
752 * Allocate a new RelaxNG structure.
753 *
754 * Returns the newly allocated structure or NULL in case or error
755 */
756static xmlRelaxNGPtr
757xmlRelaxNGNewRelaxNG(xmlRelaxNGParserCtxtPtr ctxt)
758{
759 xmlRelaxNGPtr ret;
760
761 ret = (xmlRelaxNGPtr) xmlMalloc(sizeof(xmlRelaxNG));
762 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000763 xmlRngPErrMemory(ctxt, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000764 return (NULL);
765 }
766 memset(ret, 0, sizeof(xmlRelaxNG));
767
768 return (ret);
769}
770
771/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000772 * xmlRelaxNGFreeInnerSchema:
773 * @schema: a schema structure
774 *
775 * Deallocate a RelaxNG schema structure.
776 */
777static void
778xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema)
779{
780 if (schema == NULL)
781 return;
782
783 if (schema->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000784 xmlFreeDoc(schema->doc);
Daniel Veillardc482e262003-02-26 14:48:48 +0000785 if (schema->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000786 int i;
Daniel Veillardc482e262003-02-26 14:48:48 +0000787
Daniel Veillard4c004142003-10-07 11:33:24 +0000788 for (i = 0; i < schema->defNr; i++)
789 xmlRelaxNGFreeDefine(schema->defTab[i]);
790 xmlFree(schema->defTab);
Daniel Veillardc482e262003-02-26 14:48:48 +0000791 }
792
793 xmlFree(schema);
794}
795
796/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000797 * xmlRelaxNGFree:
798 * @schema: a schema structure
799 *
800 * Deallocate a RelaxNG structure.
801 */
802void
803xmlRelaxNGFree(xmlRelaxNGPtr schema)
804{
805 if (schema == NULL)
806 return;
807
Daniel Veillard6eadf632003-01-23 18:29:16 +0000808 if (schema->topgrammar != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000809 xmlRelaxNGFreeGrammar(schema->topgrammar);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000810 if (schema->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000811 xmlFreeDoc(schema->doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000812 if (schema->documents != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000813 xmlRelaxNGFreeDocumentList(schema->documents);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000814 if (schema->includes != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000815 xmlRelaxNGFreeIncludeList(schema->includes);
Daniel Veillard419a7682003-02-03 23:22:49 +0000816 if (schema->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000817 int i;
Daniel Veillard419a7682003-02-03 23:22:49 +0000818
Daniel Veillard4c004142003-10-07 11:33:24 +0000819 for (i = 0; i < schema->defNr; i++)
820 xmlRelaxNGFreeDefine(schema->defTab[i]);
821 xmlFree(schema->defTab);
Daniel Veillard419a7682003-02-03 23:22:49 +0000822 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000823
824 xmlFree(schema);
825}
826
827/**
828 * xmlRelaxNGNewGrammar:
829 * @ctxt: a Relax-NG validation context (optional)
830 *
831 * Allocate a new RelaxNG grammar.
832 *
833 * Returns the newly allocated structure or NULL in case or error
834 */
835static xmlRelaxNGGrammarPtr
836xmlRelaxNGNewGrammar(xmlRelaxNGParserCtxtPtr ctxt)
837{
838 xmlRelaxNGGrammarPtr ret;
839
840 ret = (xmlRelaxNGGrammarPtr) xmlMalloc(sizeof(xmlRelaxNGGrammar));
841 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000842 xmlRngPErrMemory(ctxt, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000843 return (NULL);
844 }
845 memset(ret, 0, sizeof(xmlRelaxNGGrammar));
846
847 return (ret);
848}
849
850/**
851 * xmlRelaxNGFreeGrammar:
852 * @grammar: a grammar structure
853 *
854 * Deallocate a RelaxNG grammar structure.
855 */
856static void
857xmlRelaxNGFreeGrammar(xmlRelaxNGGrammarPtr grammar)
858{
859 if (grammar == NULL)
860 return;
861
Daniel Veillardc482e262003-02-26 14:48:48 +0000862 if (grammar->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000863 xmlRelaxNGFreeGrammar(grammar->children);
Daniel Veillardc482e262003-02-26 14:48:48 +0000864 }
Daniel Veillard419a7682003-02-03 23:22:49 +0000865 if (grammar->next != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000866 xmlRelaxNGFreeGrammar(grammar->next);
Daniel Veillard419a7682003-02-03 23:22:49 +0000867 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000868 if (grammar->refs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000869 xmlHashFree(grammar->refs, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000870 }
871 if (grammar->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000872 xmlHashFree(grammar->defs, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000873 }
874
875 xmlFree(grammar);
876}
877
878/**
879 * xmlRelaxNGNewDefine:
880 * @ctxt: a Relax-NG validation context
881 * @node: the node in the input document.
882 *
883 * Allocate a new RelaxNG define.
884 *
885 * Returns the newly allocated structure or NULL in case or error
886 */
887static xmlRelaxNGDefinePtr
Daniel Veillardfd573f12003-03-16 17:52:32 +0000888xmlRelaxNGNewDefine(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
Daniel Veillard6eadf632003-01-23 18:29:16 +0000889{
890 xmlRelaxNGDefinePtr ret;
891
Daniel Veillard419a7682003-02-03 23:22:49 +0000892 if (ctxt->defMax == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000893 ctxt->defMax = 16;
894 ctxt->defNr = 0;
895 ctxt->defTab = (xmlRelaxNGDefinePtr *)
896 xmlMalloc(ctxt->defMax * sizeof(xmlRelaxNGDefinePtr));
897 if (ctxt->defTab == NULL) {
898 xmlRngPErrMemory(ctxt, "allocating define\n");
899 return (NULL);
900 }
Daniel Veillard419a7682003-02-03 23:22:49 +0000901 } else if (ctxt->defMax <= ctxt->defNr) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000902 xmlRelaxNGDefinePtr *tmp;
903
904 ctxt->defMax *= 2;
905 tmp = (xmlRelaxNGDefinePtr *) xmlRealloc(ctxt->defTab,
906 ctxt->defMax *
907 sizeof
908 (xmlRelaxNGDefinePtr));
909 if (tmp == NULL) {
910 xmlRngPErrMemory(ctxt, "allocating define\n");
911 return (NULL);
912 }
913 ctxt->defTab = tmp;
Daniel Veillard419a7682003-02-03 23:22:49 +0000914 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000915 ret = (xmlRelaxNGDefinePtr) xmlMalloc(sizeof(xmlRelaxNGDefine));
916 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000917 xmlRngPErrMemory(ctxt, "allocating define\n");
918 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000919 }
920 memset(ret, 0, sizeof(xmlRelaxNGDefine));
Daniel Veillard419a7682003-02-03 23:22:49 +0000921 ctxt->defTab[ctxt->defNr++] = ret;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000922 ret->node = node;
Daniel Veillardd4310742003-02-18 21:12:46 +0000923 ret->depth = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000924 return (ret);
925}
926
927/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000928 * xmlRelaxNGFreePartition:
929 * @partitions: a partition set structure
930 *
931 * Deallocate RelaxNG partition set structures.
932 */
933static void
Daniel Veillard4c004142003-10-07 11:33:24 +0000934xmlRelaxNGFreePartition(xmlRelaxNGPartitionPtr partitions)
935{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000936 xmlRelaxNGInterleaveGroupPtr group;
937 int j;
938
939 if (partitions != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000940 if (partitions->groups != NULL) {
941 for (j = 0; j < partitions->nbgroups; j++) {
942 group = partitions->groups[j];
943 if (group != NULL) {
944 if (group->defs != NULL)
945 xmlFree(group->defs);
946 if (group->attrs != NULL)
947 xmlFree(group->attrs);
948 xmlFree(group);
949 }
950 }
951 xmlFree(partitions->groups);
952 }
953 if (partitions->triage != NULL) {
954 xmlHashFree(partitions->triage, NULL);
955 }
956 xmlFree(partitions);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000957 }
958}
Daniel Veillard4c004142003-10-07 11:33:24 +0000959
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000960/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000961 * xmlRelaxNGFreeDefine:
962 * @define: a define structure
963 *
964 * Deallocate a RelaxNG define structure.
965 */
966static void
967xmlRelaxNGFreeDefine(xmlRelaxNGDefinePtr define)
968{
969 if (define == NULL)
970 return;
971
Daniel Veillard4c004142003-10-07 11:33:24 +0000972 if ((define->type == XML_RELAXNG_VALUE) && (define->attrs != NULL)) {
973 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillarde637c4a2003-03-30 21:10:09 +0000974
Daniel Veillard4c004142003-10-07 11:33:24 +0000975 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
976 if ((lib != NULL) && (lib->freef != NULL))
977 lib->freef(lib->data, (void *) define->attrs);
Daniel Veillarde637c4a2003-03-30 21:10:09 +0000978 }
Daniel Veillard4c004142003-10-07 11:33:24 +0000979 if ((define->data != NULL) && (define->type == XML_RELAXNG_INTERLEAVE))
980 xmlRelaxNGFreePartition((xmlRelaxNGPartitionPtr) define->data);
981 if ((define->data != NULL) && (define->type == XML_RELAXNG_CHOICE))
982 xmlHashFree((xmlHashTablePtr) define->data, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000983 if (define->name != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000984 xmlFree(define->name);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000985 if (define->ns != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000986 xmlFree(define->ns);
Daniel Veillardedc91922003-01-26 00:52:04 +0000987 if (define->value != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000988 xmlFree(define->value);
Daniel Veillard52b48c72003-04-13 19:53:42 +0000989 if (define->contModel != NULL)
990 xmlRegFreeRegexp(define->contModel);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000991 xmlFree(define);
992}
993
994/**
Daniel Veillardfd573f12003-03-16 17:52:32 +0000995 * xmlRelaxNGNewStates:
996 * @ctxt: a Relax-NG validation context
997 * @size: the default size for the container
998 *
999 * Allocate a new RelaxNG validation state container
Daniel Veillardfd573f12003-03-16 17:52:32 +00001000 *
1001 * Returns the newly allocated structure or NULL in case or error
1002 */
1003static xmlRelaxNGStatesPtr
1004xmlRelaxNGNewStates(xmlRelaxNGValidCtxtPtr ctxt, int size)
1005{
1006 xmlRelaxNGStatesPtr ret;
1007
Daniel Veillard798024a2003-03-19 10:36:09 +00001008 if ((ctxt != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00001009 (ctxt->freeState != NULL) && (ctxt->freeStatesNr > 0)) {
1010 ctxt->freeStatesNr--;
1011 ret = ctxt->freeStates[ctxt->freeStatesNr];
1012 ret->nbState = 0;
1013 return (ret);
Daniel Veillard798024a2003-03-19 10:36:09 +00001014 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001015 if (size < 16)
1016 size = 16;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001017
1018 ret = (xmlRelaxNGStatesPtr) xmlMalloc(sizeof(xmlRelaxNGStates) +
Daniel Veillard4c004142003-10-07 11:33:24 +00001019 (size -
1020 1) *
1021 sizeof(xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001022 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001023 xmlRngVErrMemory(ctxt, "allocating states\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00001024 return (NULL);
1025 }
1026 ret->nbState = 0;
1027 ret->maxState = size;
Daniel Veillard4c004142003-10-07 11:33:24 +00001028 ret->tabState = (xmlRelaxNGValidStatePtr *) xmlMalloc((size) *
1029 sizeof
1030 (xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001031 if (ret->tabState == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001032 xmlRngVErrMemory(ctxt, "allocating states\n");
1033 xmlFree(ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001034 return (NULL);
1035 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001036 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001037}
1038
1039/**
Daniel Veillard798024a2003-03-19 10:36:09 +00001040 * xmlRelaxNGAddStateUniq:
1041 * @ctxt: a Relax-NG validation context
1042 * @states: the states container
1043 * @state: the validation state
1044 *
1045 * Add a RelaxNG validation state to the container without checking
1046 * for unicity.
1047 *
1048 * Return 1 in case of success and 0 if this is a duplicate and -1 on error
1049 */
1050static int
1051xmlRelaxNGAddStatesUniq(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001052 xmlRelaxNGStatesPtr states,
1053 xmlRelaxNGValidStatePtr state)
Daniel Veillard798024a2003-03-19 10:36:09 +00001054{
1055 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001056 return (-1);
Daniel Veillard798024a2003-03-19 10:36:09 +00001057 }
1058 if (states->nbState >= states->maxState) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001059 xmlRelaxNGValidStatePtr *tmp;
1060 int size;
Daniel Veillard798024a2003-03-19 10:36:09 +00001061
Daniel Veillard4c004142003-10-07 11:33:24 +00001062 size = states->maxState * 2;
1063 tmp = (xmlRelaxNGValidStatePtr *) xmlRealloc(states->tabState,
1064 (size) *
1065 sizeof
1066 (xmlRelaxNGValidStatePtr));
Daniel Veillard798024a2003-03-19 10:36:09 +00001067 if (tmp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001068 xmlRngVErrMemory(ctxt, "adding states\n");
1069 return (-1);
1070 }
1071 states->tabState = tmp;
1072 states->maxState = size;
Daniel Veillard798024a2003-03-19 10:36:09 +00001073 }
1074 states->tabState[states->nbState++] = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00001075 return (1);
Daniel Veillard798024a2003-03-19 10:36:09 +00001076}
1077
1078/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00001079 * xmlRelaxNGAddState:
1080 * @ctxt: a Relax-NG validation context
1081 * @states: the states container
1082 * @state: the validation state
1083 *
1084 * Add a RelaxNG validation state to the container
1085 *
1086 * Return 1 in case of success and 0 if this is a duplicate and -1 on error
1087 */
1088static int
Daniel Veillard4c004142003-10-07 11:33:24 +00001089xmlRelaxNGAddStates(xmlRelaxNGValidCtxtPtr ctxt,
1090 xmlRelaxNGStatesPtr states,
1091 xmlRelaxNGValidStatePtr state)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001092{
1093 int i;
1094
1095 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001096 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001097 }
1098 if (states->nbState >= states->maxState) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001099 xmlRelaxNGValidStatePtr *tmp;
1100 int size;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001101
Daniel Veillard4c004142003-10-07 11:33:24 +00001102 size = states->maxState * 2;
1103 tmp = (xmlRelaxNGValidStatePtr *) xmlRealloc(states->tabState,
1104 (size) *
1105 sizeof
1106 (xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001107 if (tmp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001108 xmlRngVErrMemory(ctxt, "adding states\n");
1109 return (-1);
1110 }
1111 states->tabState = tmp;
1112 states->maxState = size;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001113 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001114 for (i = 0; i < states->nbState; i++) {
1115 if (xmlRelaxNGEqualValidState(ctxt, state, states->tabState[i])) {
1116 xmlRelaxNGFreeValidState(ctxt, state);
1117 return (0);
1118 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00001119 }
1120 states->tabState[states->nbState++] = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00001121 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001122}
1123
1124/**
1125 * xmlRelaxNGFreeStates:
1126 * @ctxt: a Relax-NG validation context
1127 * @states: teh container
1128 *
1129 * Free a RelaxNG validation state container
Daniel Veillardfd573f12003-03-16 17:52:32 +00001130 */
1131static void
Daniel Veillard798024a2003-03-19 10:36:09 +00001132xmlRelaxNGFreeStates(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001133 xmlRelaxNGStatesPtr states)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001134{
Daniel Veillard798024a2003-03-19 10:36:09 +00001135 if (states == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001136 return;
Daniel Veillard798024a2003-03-19 10:36:09 +00001137 if ((ctxt != NULL) && (ctxt->freeStates == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001138 ctxt->freeStatesMax = 40;
1139 ctxt->freeStatesNr = 0;
1140 ctxt->freeStates = (xmlRelaxNGStatesPtr *)
1141 xmlMalloc(ctxt->freeStatesMax * sizeof(xmlRelaxNGStatesPtr));
1142 if (ctxt->freeStates == NULL) {
1143 xmlRngVErrMemory(ctxt, "storing states\n");
1144 }
1145 } else if ((ctxt != NULL)
1146 && (ctxt->freeStatesNr >= ctxt->freeStatesMax)) {
1147 xmlRelaxNGStatesPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001148
Daniel Veillard4c004142003-10-07 11:33:24 +00001149 tmp = (xmlRelaxNGStatesPtr *) xmlRealloc(ctxt->freeStates,
1150 2 * ctxt->freeStatesMax *
1151 sizeof
1152 (xmlRelaxNGStatesPtr));
1153 if (tmp == NULL) {
1154 xmlRngVErrMemory(ctxt, "storing states\n");
1155 xmlFree(states->tabState);
1156 xmlFree(states);
1157 return;
1158 }
1159 ctxt->freeStates = tmp;
1160 ctxt->freeStatesMax *= 2;
Daniel Veillard798024a2003-03-19 10:36:09 +00001161 }
Daniel Veillard14b56432006-03-09 18:41:40 +00001162 if ((ctxt == NULL) || (ctxt->freeStates == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001163 xmlFree(states->tabState);
1164 xmlFree(states);
Daniel Veillard798024a2003-03-19 10:36:09 +00001165 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001166 ctxt->freeStates[ctxt->freeStatesNr++] = states;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001167 }
1168}
1169
1170/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00001171 * xmlRelaxNGNewValidState:
1172 * @ctxt: a Relax-NG validation context
1173 * @node: the current node or NULL for the document
1174 *
1175 * Allocate a new RelaxNG validation state
1176 *
1177 * Returns the newly allocated structure or NULL in case or error
1178 */
1179static xmlRelaxNGValidStatePtr
1180xmlRelaxNGNewValidState(xmlRelaxNGValidCtxtPtr ctxt, xmlNodePtr node)
1181{
1182 xmlRelaxNGValidStatePtr ret;
1183 xmlAttrPtr attr;
1184 xmlAttrPtr attrs[MAX_ATTR];
1185 int nbAttrs = 0;
1186 xmlNodePtr root = NULL;
1187
1188 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001189 root = xmlDocGetRootElement(ctxt->doc);
1190 if (root == NULL)
1191 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00001192 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001193 attr = node->properties;
1194 while (attr != NULL) {
1195 if (nbAttrs < MAX_ATTR)
1196 attrs[nbAttrs++] = attr;
1197 else
1198 nbAttrs++;
1199 attr = attr->next;
1200 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001201 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001202 if ((ctxt->freeState != NULL) && (ctxt->freeState->nbState > 0)) {
1203 ctxt->freeState->nbState--;
1204 ret = ctxt->freeState->tabState[ctxt->freeState->nbState];
Daniel Veillard798024a2003-03-19 10:36:09 +00001205 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001206 ret =
1207 (xmlRelaxNGValidStatePtr)
1208 xmlMalloc(sizeof(xmlRelaxNGValidState));
1209 if (ret == NULL) {
1210 xmlRngVErrMemory(ctxt, "allocating states\n");
1211 return (NULL);
1212 }
1213 memset(ret, 0, sizeof(xmlRelaxNGValidState));
Daniel Veillard6eadf632003-01-23 18:29:16 +00001214 }
Daniel Veillarde5b110b2003-02-04 14:43:39 +00001215 ret->value = NULL;
1216 ret->endvalue = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001217 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001218 ret->node = (xmlNodePtr) ctxt->doc;
1219 ret->seq = root;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001220 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001221 ret->node = node;
1222 ret->seq = node->children;
Daniel Veillard798024a2003-03-19 10:36:09 +00001223 }
1224 ret->nbAttrs = 0;
1225 if (nbAttrs > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001226 if (ret->attrs == NULL) {
1227 if (nbAttrs < 4)
1228 ret->maxAttrs = 4;
1229 else
1230 ret->maxAttrs = nbAttrs;
1231 ret->attrs = (xmlAttrPtr *) xmlMalloc(ret->maxAttrs *
1232 sizeof(xmlAttrPtr));
1233 if (ret->attrs == NULL) {
1234 xmlRngVErrMemory(ctxt, "allocating states\n");
1235 return (ret);
1236 }
1237 } else if (ret->maxAttrs < nbAttrs) {
1238 xmlAttrPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001239
Daniel Veillard4c004142003-10-07 11:33:24 +00001240 tmp = (xmlAttrPtr *) xmlRealloc(ret->attrs, nbAttrs *
1241 sizeof(xmlAttrPtr));
1242 if (tmp == NULL) {
1243 xmlRngVErrMemory(ctxt, "allocating states\n");
1244 return (ret);
1245 }
1246 ret->attrs = tmp;
1247 ret->maxAttrs = nbAttrs;
1248 }
1249 ret->nbAttrs = nbAttrs;
1250 if (nbAttrs < MAX_ATTR) {
1251 memcpy(ret->attrs, attrs, sizeof(xmlAttrPtr) * nbAttrs);
1252 } else {
1253 attr = node->properties;
1254 nbAttrs = 0;
1255 while (attr != NULL) {
1256 ret->attrs[nbAttrs++] = attr;
1257 attr = attr->next;
1258 }
1259 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001260 }
Daniel Veillard1ed7f362003-02-03 10:57:45 +00001261 ret->nbAttrLeft = ret->nbAttrs;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001262 return (ret);
1263}
1264
1265/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00001266 * xmlRelaxNGCopyValidState:
1267 * @ctxt: a Relax-NG validation context
1268 * @state: a validation state
1269 *
1270 * Copy the validation state
1271 *
1272 * Returns the newly allocated structure or NULL in case or error
1273 */
1274static xmlRelaxNGValidStatePtr
1275xmlRelaxNGCopyValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001276 xmlRelaxNGValidStatePtr state)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001277{
1278 xmlRelaxNGValidStatePtr ret;
Daniel Veillard798024a2003-03-19 10:36:09 +00001279 unsigned int maxAttrs;
1280 xmlAttrPtr *attrs;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001281
1282 if (state == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001283 return (NULL);
1284 if ((ctxt->freeState != NULL) && (ctxt->freeState->nbState > 0)) {
1285 ctxt->freeState->nbState--;
1286 ret = ctxt->freeState->tabState[ctxt->freeState->nbState];
Daniel Veillard798024a2003-03-19 10:36:09 +00001287 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001288 ret =
1289 (xmlRelaxNGValidStatePtr)
1290 xmlMalloc(sizeof(xmlRelaxNGValidState));
1291 if (ret == NULL) {
1292 xmlRngVErrMemory(ctxt, "allocating states\n");
1293 return (NULL);
1294 }
1295 memset(ret, 0, sizeof(xmlRelaxNGValidState));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001296 }
Daniel Veillard798024a2003-03-19 10:36:09 +00001297 attrs = ret->attrs;
1298 maxAttrs = ret->maxAttrs;
1299 memcpy(ret, state, sizeof(xmlRelaxNGValidState));
1300 ret->attrs = attrs;
1301 ret->maxAttrs = maxAttrs;
1302 if (state->nbAttrs > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001303 if (ret->attrs == NULL) {
1304 ret->maxAttrs = state->maxAttrs;
1305 ret->attrs = (xmlAttrPtr *) xmlMalloc(ret->maxAttrs *
1306 sizeof(xmlAttrPtr));
1307 if (ret->attrs == NULL) {
1308 xmlRngVErrMemory(ctxt, "allocating states\n");
1309 ret->nbAttrs = 0;
1310 return (ret);
1311 }
1312 } else if (ret->maxAttrs < state->nbAttrs) {
1313 xmlAttrPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001314
Daniel Veillard4c004142003-10-07 11:33:24 +00001315 tmp = (xmlAttrPtr *) xmlRealloc(ret->attrs, state->maxAttrs *
1316 sizeof(xmlAttrPtr));
1317 if (tmp == NULL) {
1318 xmlRngVErrMemory(ctxt, "allocating states\n");
1319 ret->nbAttrs = 0;
1320 return (ret);
1321 }
1322 ret->maxAttrs = state->maxAttrs;
1323 ret->attrs = tmp;
1324 }
1325 memcpy(ret->attrs, state->attrs,
1326 state->nbAttrs * sizeof(xmlAttrPtr));
Daniel Veillard798024a2003-03-19 10:36:09 +00001327 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001328 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001329}
1330
1331/**
1332 * xmlRelaxNGEqualValidState:
1333 * @ctxt: a Relax-NG validation context
1334 * @state1: a validation state
1335 * @state2: a validation state
1336 *
1337 * Compare the validation states for equality
1338 *
1339 * Returns 1 if equald, 0 otherwise
1340 */
1341static int
1342xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00001343 xmlRelaxNGValidStatePtr state1,
1344 xmlRelaxNGValidStatePtr state2)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001345{
1346 int i;
1347
1348 if ((state1 == NULL) || (state2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00001349 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001350 if (state1 == state2)
Daniel Veillard4c004142003-10-07 11:33:24 +00001351 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001352 if (state1->node != state2->node)
Daniel Veillard4c004142003-10-07 11:33:24 +00001353 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001354 if (state1->seq != state2->seq)
Daniel Veillard4c004142003-10-07 11:33:24 +00001355 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001356 if (state1->nbAttrLeft != state2->nbAttrLeft)
Daniel Veillard4c004142003-10-07 11:33:24 +00001357 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001358 if (state1->nbAttrs != state2->nbAttrs)
Daniel Veillard4c004142003-10-07 11:33:24 +00001359 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001360 if (state1->endvalue != state2->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00001361 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001362 if ((state1->value != state2->value) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00001363 (!xmlStrEqual(state1->value, state2->value)))
1364 return (0);
1365 for (i = 0; i < state1->nbAttrs; i++) {
1366 if (state1->attrs[i] != state2->attrs[i])
1367 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001368 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001369 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001370}
1371
1372/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00001373 * xmlRelaxNGFreeValidState:
1374 * @state: a validation state structure
1375 *
1376 * Deallocate a RelaxNG validation state structure.
1377 */
1378static void
Daniel Veillard798024a2003-03-19 10:36:09 +00001379xmlRelaxNGFreeValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001380 xmlRelaxNGValidStatePtr state)
Daniel Veillard6eadf632003-01-23 18:29:16 +00001381{
1382 if (state == NULL)
1383 return;
1384
Daniel Veillard798024a2003-03-19 10:36:09 +00001385 if ((ctxt != NULL) && (ctxt->freeState == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001386 ctxt->freeState = xmlRelaxNGNewStates(ctxt, 40);
Daniel Veillard798024a2003-03-19 10:36:09 +00001387 }
1388 if ((ctxt == NULL) || (ctxt->freeState == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001389 if (state->attrs != NULL)
1390 xmlFree(state->attrs);
1391 xmlFree(state);
Daniel Veillard798024a2003-03-19 10:36:09 +00001392 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001393 xmlRelaxNGAddStatesUniq(ctxt, ctxt->freeState, state);
Daniel Veillard798024a2003-03-19 10:36:09 +00001394 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001395}
1396
1397/************************************************************************
1398 * *
Daniel Veillard03c2f0a2004-01-25 19:54:59 +00001399 * Semi internal functions *
1400 * *
1401 ************************************************************************/
1402
1403/**
1404 * xmlRelaxParserSetFlag:
1405 * @ctxt: a RelaxNG parser context
1406 * @flags: a set of flags values
1407 *
1408 * Semi private function used to pass informations to a parser context
1409 * which are a combination of xmlRelaxNGParserFlag .
1410 *
1411 * Returns 0 if success and -1 in case of error
1412 */
1413int
1414xmlRelaxParserSetFlag(xmlRelaxNGParserCtxtPtr ctxt, int flags)
1415{
1416 if (ctxt == NULL) return(-1);
1417 if (flags & XML_RELAXNGP_FREE_DOC) {
1418 ctxt->crng |= XML_RELAXNGP_FREE_DOC;
1419 flags -= XML_RELAXNGP_FREE_DOC;
1420 }
1421 if (flags & XML_RELAXNGP_CRNG) {
1422 ctxt->crng |= XML_RELAXNGP_CRNG;
1423 flags -= XML_RELAXNGP_CRNG;
1424 }
1425 if (flags != 0) return(-1);
1426 return(0);
1427}
1428
1429/************************************************************************
1430 * *
1431 * Document functions *
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001432 * *
1433 ************************************************************************/
1434static xmlDocPtr xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001435 xmlDocPtr doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001436
1437/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001438 * xmlRelaxNGIncludePush:
1439 * @ctxt: the parser context
1440 * @value: the element doc
1441 *
1442 * Pushes a new include on top of the include stack
1443 *
1444 * Returns 0 in case of error, the index in the stack otherwise
1445 */
1446static int
1447xmlRelaxNGIncludePush(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001448 xmlRelaxNGIncludePtr value)
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001449{
1450 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001451 ctxt->incMax = 4;
1452 ctxt->incNr = 0;
1453 ctxt->incTab =
1454 (xmlRelaxNGIncludePtr *) xmlMalloc(ctxt->incMax *
1455 sizeof(ctxt->incTab[0]));
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001456 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001457 xmlRngPErrMemory(ctxt, "allocating include\n");
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001458 return (0);
1459 }
1460 }
1461 if (ctxt->incNr >= ctxt->incMax) {
1462 ctxt->incMax *= 2;
1463 ctxt->incTab =
1464 (xmlRelaxNGIncludePtr *) xmlRealloc(ctxt->incTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001465 ctxt->incMax *
1466 sizeof(ctxt->incTab[0]));
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001467 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001468 xmlRngPErrMemory(ctxt, "allocating include\n");
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001469 return (0);
1470 }
1471 }
1472 ctxt->incTab[ctxt->incNr] = value;
1473 ctxt->inc = value;
1474 return (ctxt->incNr++);
1475}
1476
1477/**
1478 * xmlRelaxNGIncludePop:
1479 * @ctxt: the parser context
1480 *
1481 * Pops the top include from the include stack
1482 *
1483 * Returns the include just removed
1484 */
1485static xmlRelaxNGIncludePtr
1486xmlRelaxNGIncludePop(xmlRelaxNGParserCtxtPtr ctxt)
1487{
1488 xmlRelaxNGIncludePtr ret;
1489
1490 if (ctxt->incNr <= 0)
Daniel Veillard24505b02005-07-28 23:49:35 +00001491 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001492 ctxt->incNr--;
1493 if (ctxt->incNr > 0)
1494 ctxt->inc = ctxt->incTab[ctxt->incNr - 1];
1495 else
1496 ctxt->inc = NULL;
1497 ret = ctxt->incTab[ctxt->incNr];
Daniel Veillard24505b02005-07-28 23:49:35 +00001498 ctxt->incTab[ctxt->incNr] = NULL;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001499 return (ret);
1500}
1501
1502/**
Daniel Veillard5add8682003-03-10 13:13:58 +00001503 * xmlRelaxNGRemoveRedefine:
1504 * @ctxt: the parser context
1505 * @URL: the normalized URL
1506 * @target: the included target
1507 * @name: the define name to eliminate
1508 *
1509 * Applies the elimination algorithm of 4.7
1510 *
1511 * Returns 0 in case of error, 1 in case of success.
1512 */
1513static int
1514xmlRelaxNGRemoveRedefine(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001515 const xmlChar * URL ATTRIBUTE_UNUSED,
1516 xmlNodePtr target, const xmlChar * name)
1517{
Daniel Veillard5add8682003-03-10 13:13:58 +00001518 int found = 0;
1519 xmlNodePtr tmp, tmp2;
1520 xmlChar *name2;
1521
1522#ifdef DEBUG_INCLUDE
Daniel Veillard952379b2003-03-17 15:37:12 +00001523 if (name == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001524 xmlGenericError(xmlGenericErrorContext,
1525 "Elimination of <include> start from %s\n", URL);
Daniel Veillard952379b2003-03-17 15:37:12 +00001526 else
Daniel Veillard4c004142003-10-07 11:33:24 +00001527 xmlGenericError(xmlGenericErrorContext,
1528 "Elimination of <include> define %s from %s\n",
1529 name, URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001530#endif
1531 tmp = target;
1532 while (tmp != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001533 tmp2 = tmp->next;
1534 if ((name == NULL) && (IS_RELAXNG(tmp, "start"))) {
1535 found = 1;
1536 xmlUnlinkNode(tmp);
1537 xmlFreeNode(tmp);
1538 } else if ((name != NULL) && (IS_RELAXNG(tmp, "define"))) {
1539 name2 = xmlGetProp(tmp, BAD_CAST "name");
1540 xmlRelaxNGNormExtSpace(name2);
1541 if (name2 != NULL) {
1542 if (xmlStrEqual(name, name2)) {
1543 found = 1;
1544 xmlUnlinkNode(tmp);
1545 xmlFreeNode(tmp);
1546 }
1547 xmlFree(name2);
1548 }
1549 } else if (IS_RELAXNG(tmp, "include")) {
1550 xmlChar *href = NULL;
Daniel Veillard807daf82004-02-22 22:13:27 +00001551 xmlRelaxNGDocumentPtr inc = tmp->psvi;
Daniel Veillard5add8682003-03-10 13:13:58 +00001552
Daniel Veillard4c004142003-10-07 11:33:24 +00001553 if ((inc != NULL) && (inc->doc != NULL) &&
1554 (inc->doc->children != NULL)) {
Daniel Veillard5add8682003-03-10 13:13:58 +00001555
Daniel Veillard4c004142003-10-07 11:33:24 +00001556 if (xmlStrEqual
1557 (inc->doc->children->name, BAD_CAST "grammar")) {
Daniel Veillard5add8682003-03-10 13:13:58 +00001558#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001559 href = xmlGetProp(tmp, BAD_CAST "href");
Daniel Veillard5add8682003-03-10 13:13:58 +00001560#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00001561 if (xmlRelaxNGRemoveRedefine(ctxt, href,
1562 inc->doc->children->
1563 children, name) == 1) {
1564 found = 1;
1565 }
Daniel Veillard14b56432006-03-09 18:41:40 +00001566#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001567 if (href != NULL)
1568 xmlFree(href);
Daniel Veillard14b56432006-03-09 18:41:40 +00001569#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00001570 }
1571 }
1572 }
1573 tmp = tmp2;
Daniel Veillard5add8682003-03-10 13:13:58 +00001574 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001575 return (found);
Daniel Veillard5add8682003-03-10 13:13:58 +00001576}
1577
1578/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001579 * xmlRelaxNGLoadInclude:
1580 * @ctxt: the parser context
1581 * @URL: the normalized URL
1582 * @node: the include node.
Daniel Veillard416589a2003-02-17 17:25:42 +00001583 * @ns: the namespace passed from the context.
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001584 *
1585 * First lookup if the document is already loaded into the parser context,
1586 * check against recursion. If not found the resource is loaded and
1587 * the content is preprocessed before being returned back to the caller.
1588 *
1589 * Returns the xmlRelaxNGIncludePtr or NULL in case of error
1590 */
1591static xmlRelaxNGIncludePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00001592xmlRelaxNGLoadInclude(xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * URL,
1593 xmlNodePtr node, const xmlChar * ns)
1594{
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001595 xmlRelaxNGIncludePtr ret = NULL;
1596 xmlDocPtr doc;
1597 int i;
Daniel Veillard5add8682003-03-10 13:13:58 +00001598 xmlNodePtr root, cur;
1599
1600#ifdef DEBUG_INCLUDE
1601 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00001602 "xmlRelaxNGLoadInclude(%s)\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001603#endif
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001604
1605 /*
1606 * check against recursion in the stack
1607 */
Daniel Veillard4c004142003-10-07 11:33:24 +00001608 for (i = 0; i < ctxt->incNr; i++) {
1609 if (xmlStrEqual(ctxt->incTab[i]->href, URL)) {
1610 xmlRngPErr(ctxt, NULL, XML_RNGP_INCLUDE_RECURSE,
1611 "Detected an Include recursion for %s\n", URL,
1612 NULL);
1613 return (NULL);
1614 }
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001615 }
1616
1617 /*
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001618 * load the document
1619 */
Daniel Veillard87247e82004-01-13 20:42:02 +00001620 doc = xmlReadFile((const char *) URL,NULL,0);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001621 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001622 xmlRngPErr(ctxt, node, XML_RNGP_PARSE_ERROR,
1623 "xmlRelaxNG: could not load %s\n", URL, NULL);
1624 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001625 }
Daniel Veillard5add8682003-03-10 13:13:58 +00001626#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001627 xmlGenericError(xmlGenericErrorContext, "Parsed %s Okay\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001628#endif
1629
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001630 /*
1631 * Allocate the document structures and register it first.
1632 */
1633 ret = (xmlRelaxNGIncludePtr) xmlMalloc(sizeof(xmlRelaxNGInclude));
1634 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001635 xmlRngPErrMemory(ctxt, "allocating include\n");
1636 xmlFreeDoc(doc);
1637 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001638 }
1639 memset(ret, 0, sizeof(xmlRelaxNGInclude));
1640 ret->doc = doc;
1641 ret->href = xmlStrdup(URL);
Daniel Veillardc482e262003-02-26 14:48:48 +00001642 ret->next = ctxt->includes;
1643 ctxt->includes = ret;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001644
1645 /*
Daniel Veillard416589a2003-02-17 17:25:42 +00001646 * transmit the ns if needed
1647 */
1648 if (ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001649 root = xmlDocGetRootElement(doc);
1650 if (root != NULL) {
1651 if (xmlHasProp(root, BAD_CAST "ns") == NULL) {
1652 xmlSetProp(root, BAD_CAST "ns", ns);
1653 }
1654 }
Daniel Veillard416589a2003-02-17 17:25:42 +00001655 }
1656
1657 /*
Daniel Veillardc482e262003-02-26 14:48:48 +00001658 * push it on the stack
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001659 */
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001660 xmlRelaxNGIncludePush(ctxt, ret);
1661
1662 /*
1663 * Some preprocessing of the document content, this include recursing
1664 * in the include stack.
1665 */
Daniel Veillard5add8682003-03-10 13:13:58 +00001666#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001667 xmlGenericError(xmlGenericErrorContext, "cleanup of %s\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001668#endif
1669
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001670 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
1671 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001672 ctxt->inc = NULL;
1673 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001674 }
1675
1676 /*
1677 * Pop up the include from the stack
1678 */
1679 xmlRelaxNGIncludePop(ctxt);
1680
Daniel Veillard5add8682003-03-10 13:13:58 +00001681#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001682 xmlGenericError(xmlGenericErrorContext, "Checking of %s\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001683#endif
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001684 /*
1685 * Check that the top element is a grammar
1686 */
1687 root = xmlDocGetRootElement(doc);
1688 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001689 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY,
1690 "xmlRelaxNG: included document is empty %s\n", URL,
1691 NULL);
1692 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001693 }
1694 if (!IS_RELAXNG(root, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001695 xmlRngPErr(ctxt, node, XML_RNGP_GRAMMAR_MISSING,
1696 "xmlRelaxNG: included document %s root is not a grammar\n",
1697 URL, NULL);
1698 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001699 }
1700
1701 /*
1702 * Elimination of redefined rules in the include.
1703 */
1704 cur = node->children;
1705 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001706 if (IS_RELAXNG(cur, "start")) {
1707 int found = 0;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001708
Daniel Veillard4c004142003-10-07 11:33:24 +00001709 found =
1710 xmlRelaxNGRemoveRedefine(ctxt, URL, root->children, NULL);
1711 if (!found) {
1712 xmlRngPErr(ctxt, node, XML_RNGP_START_MISSING,
1713 "xmlRelaxNG: include %s has a start but not the included grammar\n",
1714 URL, NULL);
1715 }
1716 } else if (IS_RELAXNG(cur, "define")) {
1717 xmlChar *name;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001718
Daniel Veillard4c004142003-10-07 11:33:24 +00001719 name = xmlGetProp(cur, BAD_CAST "name");
1720 if (name == NULL) {
1721 xmlRngPErr(ctxt, node, XML_RNGP_NAME_MISSING,
1722 "xmlRelaxNG: include %s has define without name\n",
1723 URL, NULL);
1724 } else {
1725 int found;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001726
Daniel Veillard4c004142003-10-07 11:33:24 +00001727 xmlRelaxNGNormExtSpace(name);
1728 found = xmlRelaxNGRemoveRedefine(ctxt, URL,
1729 root->children, name);
1730 if (!found) {
1731 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_MISSING,
1732 "xmlRelaxNG: include %s has a define %s but not the included grammar\n",
1733 URL, name);
1734 }
1735 xmlFree(name);
1736 }
1737 }
1738 cur = cur->next;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001739 }
1740
1741
Daniel Veillard4c004142003-10-07 11:33:24 +00001742 return (ret);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001743}
1744
1745/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00001746 * xmlRelaxNGValidErrorPush:
1747 * @ctxt: the validation context
1748 * @err: the error code
1749 * @arg1: the first string argument
1750 * @arg2: the second string argument
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001751 * @dup: arg need to be duplicated
Daniel Veillard42f12e92003-03-07 18:32:59 +00001752 *
1753 * Pushes a new error on top of the error stack
1754 *
1755 * Returns 0 in case of error, the index in the stack otherwise
1756 */
1757static int
Daniel Veillard4c004142003-10-07 11:33:24 +00001758xmlRelaxNGValidErrorPush(xmlRelaxNGValidCtxtPtr ctxt,
1759 xmlRelaxNGValidErr err, const xmlChar * arg1,
1760 const xmlChar * arg2, int dup)
Daniel Veillard42f12e92003-03-07 18:32:59 +00001761{
1762 xmlRelaxNGValidErrorPtr cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00001763
Daniel Veillarda507fbf2003-03-31 16:09:37 +00001764#ifdef DEBUG_ERROR
1765 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00001766 "Pushing error %d at %d on stack\n", err, ctxt->errNr);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00001767#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00001768 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001769 ctxt->errMax = 8;
1770 ctxt->errNr = 0;
1771 ctxt->errTab =
1772 (xmlRelaxNGValidErrorPtr) xmlMalloc(ctxt->errMax *
1773 sizeof
1774 (xmlRelaxNGValidError));
Daniel Veillard42f12e92003-03-07 18:32:59 +00001775 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001776 xmlRngVErrMemory(ctxt, "pushing error\n");
Daniel Veillard42f12e92003-03-07 18:32:59 +00001777 return (0);
1778 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001779 ctxt->err = NULL;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001780 }
1781 if (ctxt->errNr >= ctxt->errMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001782 ctxt->errMax *= 2;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001783 ctxt->errTab =
1784 (xmlRelaxNGValidErrorPtr) xmlRealloc(ctxt->errTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001785 ctxt->errMax *
1786 sizeof
1787 (xmlRelaxNGValidError));
Daniel Veillard42f12e92003-03-07 18:32:59 +00001788 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001789 xmlRngVErrMemory(ctxt, "pushing error\n");
Daniel Veillard42f12e92003-03-07 18:32:59 +00001790 return (0);
1791 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001792 ctxt->err = &ctxt->errTab[ctxt->errNr - 1];
Daniel Veillard42f12e92003-03-07 18:32:59 +00001793 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00001794 if ((ctxt->err != NULL) && (ctxt->state != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00001795 (ctxt->err->node == ctxt->state->node) && (ctxt->err->err == err))
1796 return (ctxt->errNr);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001797 cur = &ctxt->errTab[ctxt->errNr];
1798 cur->err = err;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001799 if (dup) {
1800 cur->arg1 = xmlStrdup(arg1);
1801 cur->arg2 = xmlStrdup(arg2);
Daniel Veillard4c004142003-10-07 11:33:24 +00001802 cur->flags = ERROR_IS_DUP;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001803 } else {
1804 cur->arg1 = arg1;
1805 cur->arg2 = arg2;
Daniel Veillard4c004142003-10-07 11:33:24 +00001806 cur->flags = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001807 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001808 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001809 cur->node = ctxt->state->node;
1810 cur->seq = ctxt->state->seq;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001811 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001812 cur->node = NULL;
1813 cur->seq = NULL;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001814 }
1815 ctxt->err = cur;
1816 return (ctxt->errNr++);
1817}
1818
1819/**
1820 * xmlRelaxNGValidErrorPop:
1821 * @ctxt: the validation context
1822 *
1823 * Pops the top error from the error stack
Daniel Veillard42f12e92003-03-07 18:32:59 +00001824 */
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001825static void
Daniel Veillard42f12e92003-03-07 18:32:59 +00001826xmlRelaxNGValidErrorPop(xmlRelaxNGValidCtxtPtr ctxt)
1827{
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001828 xmlRelaxNGValidErrorPtr cur;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001829
Daniel Veillard580ced82003-03-21 21:22:48 +00001830 if (ctxt->errNr <= 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001831 ctxt->err = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001832 return;
Daniel Veillard580ced82003-03-21 21:22:48 +00001833 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001834 ctxt->errNr--;
1835 if (ctxt->errNr > 0)
1836 ctxt->err = &ctxt->errTab[ctxt->errNr - 1];
1837 else
1838 ctxt->err = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001839 cur = &ctxt->errTab[ctxt->errNr];
1840 if (cur->flags & ERROR_IS_DUP) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001841 if (cur->arg1 != NULL)
1842 xmlFree((xmlChar *) cur->arg1);
1843 cur->arg1 = NULL;
1844 if (cur->arg2 != NULL)
1845 xmlFree((xmlChar *) cur->arg2);
1846 cur->arg2 = NULL;
1847 cur->flags = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001848 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001849}
1850
Daniel Veillard42f12e92003-03-07 18:32:59 +00001851/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001852 * xmlRelaxNGDocumentPush:
1853 * @ctxt: the parser context
1854 * @value: the element doc
1855 *
1856 * Pushes a new doc on top of the doc stack
1857 *
1858 * Returns 0 in case of error, the index in the stack otherwise
1859 */
1860static int
1861xmlRelaxNGDocumentPush(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001862 xmlRelaxNGDocumentPtr value)
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001863{
1864 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001865 ctxt->docMax = 4;
1866 ctxt->docNr = 0;
1867 ctxt->docTab =
1868 (xmlRelaxNGDocumentPtr *) xmlMalloc(ctxt->docMax *
1869 sizeof(ctxt->docTab[0]));
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001870 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001871 xmlRngPErrMemory(ctxt, "adding document\n");
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001872 return (0);
1873 }
1874 }
1875 if (ctxt->docNr >= ctxt->docMax) {
1876 ctxt->docMax *= 2;
1877 ctxt->docTab =
1878 (xmlRelaxNGDocumentPtr *) xmlRealloc(ctxt->docTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001879 ctxt->docMax *
1880 sizeof(ctxt->docTab[0]));
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001881 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001882 xmlRngPErrMemory(ctxt, "adding document\n");
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001883 return (0);
1884 }
1885 }
1886 ctxt->docTab[ctxt->docNr] = value;
1887 ctxt->doc = value;
1888 return (ctxt->docNr++);
1889}
1890
1891/**
1892 * xmlRelaxNGDocumentPop:
1893 * @ctxt: the parser context
1894 *
1895 * Pops the top doc from the doc stack
1896 *
1897 * Returns the doc just removed
1898 */
1899static xmlRelaxNGDocumentPtr
1900xmlRelaxNGDocumentPop(xmlRelaxNGParserCtxtPtr ctxt)
1901{
1902 xmlRelaxNGDocumentPtr ret;
1903
1904 if (ctxt->docNr <= 0)
Daniel Veillard24505b02005-07-28 23:49:35 +00001905 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001906 ctxt->docNr--;
1907 if (ctxt->docNr > 0)
1908 ctxt->doc = ctxt->docTab[ctxt->docNr - 1];
1909 else
1910 ctxt->doc = NULL;
1911 ret = ctxt->docTab[ctxt->docNr];
Daniel Veillard24505b02005-07-28 23:49:35 +00001912 ctxt->docTab[ctxt->docNr] = NULL;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001913 return (ret);
1914}
1915
1916/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001917 * xmlRelaxNGLoadExternalRef:
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001918 * @ctxt: the parser context
1919 * @URL: the normalized URL
1920 * @ns: the inherited ns if any
1921 *
1922 * First lookup if the document is already loaded into the parser context,
1923 * check against recursion. If not found the resource is loaded and
1924 * the content is preprocessed before being returned back to the caller.
1925 *
1926 * Returns the xmlRelaxNGDocumentPtr or NULL in case of error
1927 */
1928static xmlRelaxNGDocumentPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00001929xmlRelaxNGLoadExternalRef(xmlRelaxNGParserCtxtPtr ctxt,
1930 const xmlChar * URL, const xmlChar * ns)
1931{
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001932 xmlRelaxNGDocumentPtr ret = NULL;
1933 xmlDocPtr doc;
1934 xmlNodePtr root;
1935 int i;
1936
1937 /*
1938 * check against recursion in the stack
1939 */
Daniel Veillard4c004142003-10-07 11:33:24 +00001940 for (i = 0; i < ctxt->docNr; i++) {
1941 if (xmlStrEqual(ctxt->docTab[i]->href, URL)) {
1942 xmlRngPErr(ctxt, NULL, XML_RNGP_EXTERNALREF_RECURSE,
1943 "Detected an externalRef recursion for %s\n", URL,
1944 NULL);
1945 return (NULL);
1946 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001947 }
1948
1949 /*
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001950 * load the document
1951 */
Daniel Veillard87247e82004-01-13 20:42:02 +00001952 doc = xmlReadFile((const char *) URL,NULL,0);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001953 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001954 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
1955 "xmlRelaxNG: could not load %s\n", URL, NULL);
1956 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001957 }
1958
1959 /*
1960 * Allocate the document structures and register it first.
1961 */
1962 ret = (xmlRelaxNGDocumentPtr) xmlMalloc(sizeof(xmlRelaxNGDocument));
1963 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001964 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_ERR_NO_MEMORY,
1965 "xmlRelaxNG: allocate memory for doc %s\n", URL, NULL);
1966 xmlFreeDoc(doc);
1967 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001968 }
1969 memset(ret, 0, sizeof(xmlRelaxNGDocument));
1970 ret->doc = doc;
1971 ret->href = xmlStrdup(URL);
Daniel Veillardc482e262003-02-26 14:48:48 +00001972 ret->next = ctxt->documents;
1973 ctxt->documents = ret;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001974
1975 /*
1976 * transmit the ns if needed
1977 */
1978 if (ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001979 root = xmlDocGetRootElement(doc);
1980 if (root != NULL) {
1981 if (xmlHasProp(root, BAD_CAST "ns") == NULL) {
1982 xmlSetProp(root, BAD_CAST "ns", ns);
1983 }
1984 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001985 }
1986
1987 /*
1988 * push it on the stack and register it in the hash table
1989 */
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001990 xmlRelaxNGDocumentPush(ctxt, ret);
1991
1992 /*
1993 * Some preprocessing of the document content
1994 */
1995 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
1996 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001997 ctxt->doc = NULL;
1998 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001999 }
2000
2001 xmlRelaxNGDocumentPop(ctxt);
2002
Daniel Veillard4c004142003-10-07 11:33:24 +00002003 return (ret);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00002004}
2005
2006/************************************************************************
2007 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00002008 * Error functions *
2009 * *
2010 ************************************************************************/
2011
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002012#define VALID_ERR(a) xmlRelaxNGAddValidError(ctxt, a, NULL, NULL, 0);
2013#define VALID_ERR2(a, b) xmlRelaxNGAddValidError(ctxt, a, b, NULL, 0);
2014#define VALID_ERR3(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 0);
2015#define VALID_ERR2P(a, b) xmlRelaxNGAddValidError(ctxt, a, b, NULL, 1);
2016#define VALID_ERR3P(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002017
Daniel Veillard231d7912003-02-09 14:22:17 +00002018static const char *
Daniel Veillard4c004142003-10-07 11:33:24 +00002019xmlRelaxNGDefName(xmlRelaxNGDefinePtr def)
2020{
Daniel Veillard231d7912003-02-09 14:22:17 +00002021 if (def == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002022 return ("none");
2023 switch (def->type) {
2024 case XML_RELAXNG_EMPTY:
2025 return ("empty");
2026 case XML_RELAXNG_NOT_ALLOWED:
2027 return ("notAllowed");
2028 case XML_RELAXNG_EXCEPT:
2029 return ("except");
2030 case XML_RELAXNG_TEXT:
2031 return ("text");
2032 case XML_RELAXNG_ELEMENT:
2033 return ("element");
2034 case XML_RELAXNG_DATATYPE:
2035 return ("datatype");
2036 case XML_RELAXNG_VALUE:
2037 return ("value");
2038 case XML_RELAXNG_LIST:
2039 return ("list");
2040 case XML_RELAXNG_ATTRIBUTE:
2041 return ("attribute");
2042 case XML_RELAXNG_DEF:
2043 return ("def");
2044 case XML_RELAXNG_REF:
2045 return ("ref");
2046 case XML_RELAXNG_EXTERNALREF:
2047 return ("externalRef");
2048 case XML_RELAXNG_PARENTREF:
2049 return ("parentRef");
2050 case XML_RELAXNG_OPTIONAL:
2051 return ("optional");
2052 case XML_RELAXNG_ZEROORMORE:
2053 return ("zeroOrMore");
2054 case XML_RELAXNG_ONEORMORE:
2055 return ("oneOrMore");
2056 case XML_RELAXNG_CHOICE:
2057 return ("choice");
2058 case XML_RELAXNG_GROUP:
2059 return ("group");
2060 case XML_RELAXNG_INTERLEAVE:
2061 return ("interleave");
2062 case XML_RELAXNG_START:
2063 return ("start");
2064 case XML_RELAXNG_NOOP:
2065 return ("noop");
2066 case XML_RELAXNG_PARAM:
2067 return ("param");
Daniel Veillard231d7912003-02-09 14:22:17 +00002068 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002069 return ("unknown");
Daniel Veillard231d7912003-02-09 14:22:17 +00002070}
Daniel Veillardd2298792003-02-14 16:54:11 +00002071
Daniel Veillard6eadf632003-01-23 18:29:16 +00002072/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002073 * xmlRelaxNGGetErrorString:
2074 * @err: the error code
2075 * @arg1: the first string argument
2076 * @arg2: the second string argument
Daniel Veillard6eadf632003-01-23 18:29:16 +00002077 *
Daniel Veillard42f12e92003-03-07 18:32:59 +00002078 * computes a formatted error string for the given error code and args
2079 *
2080 * Returns the error string, it must be deallocated by the caller
2081 */
2082static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00002083xmlRelaxNGGetErrorString(xmlRelaxNGValidErr err, const xmlChar * arg1,
2084 const xmlChar * arg2)
2085{
Daniel Veillard42f12e92003-03-07 18:32:59 +00002086 char msg[1000];
2087
2088 if (arg1 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002089 arg1 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002090 if (arg2 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002091 arg2 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002092
2093 msg[0] = 0;
2094 switch (err) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002095 case XML_RELAXNG_OK:
2096 return (NULL);
2097 case XML_RELAXNG_ERR_MEMORY:
2098 return (xmlCharStrdup("out of memory\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002099 case XML_RELAXNG_ERR_TYPE:
Daniel Veillard4c004142003-10-07 11:33:24 +00002100 snprintf(msg, 1000, "failed to validate type %s\n", arg1);
2101 break;
2102 case XML_RELAXNG_ERR_TYPEVAL:
2103 snprintf(msg, 1000, "Type %s doesn't allow value '%s'\n", arg1,
2104 arg2);
2105 break;
2106 case XML_RELAXNG_ERR_DUPID:
2107 snprintf(msg, 1000, "ID %s redefined\n", arg1);
2108 break;
2109 case XML_RELAXNG_ERR_TYPECMP:
2110 snprintf(msg, 1000, "failed to compare type %s\n", arg1);
2111 break;
2112 case XML_RELAXNG_ERR_NOSTATE:
2113 return (xmlCharStrdup("Internal error: no state\n"));
2114 case XML_RELAXNG_ERR_NODEFINE:
2115 return (xmlCharStrdup("Internal error: no define\n"));
2116 case XML_RELAXNG_ERR_INTERNAL:
2117 snprintf(msg, 1000, "Internal error: %s\n", arg1);
2118 break;
2119 case XML_RELAXNG_ERR_LISTEXTRA:
2120 snprintf(msg, 1000, "Extra data in list: %s\n", arg1);
2121 break;
2122 case XML_RELAXNG_ERR_INTERNODATA:
2123 return (xmlCharStrdup
2124 ("Internal: interleave block has no data\n"));
2125 case XML_RELAXNG_ERR_INTERSEQ:
2126 return (xmlCharStrdup("Invalid sequence in interleave\n"));
2127 case XML_RELAXNG_ERR_INTEREXTRA:
2128 snprintf(msg, 1000, "Extra element %s in interleave\n", arg1);
2129 break;
2130 case XML_RELAXNG_ERR_ELEMNAME:
2131 snprintf(msg, 1000, "Expecting element %s, got %s\n", arg1,
2132 arg2);
2133 break;
2134 case XML_RELAXNG_ERR_ELEMNONS:
2135 snprintf(msg, 1000, "Expecting a namespace for element %s\n",
2136 arg1);
2137 break;
2138 case XML_RELAXNG_ERR_ELEMWRONGNS:
2139 snprintf(msg, 1000,
2140 "Element %s has wrong namespace: expecting %s\n", arg1,
2141 arg2);
2142 break;
2143 case XML_RELAXNG_ERR_ELEMWRONG:
2144 snprintf(msg, 1000, "Did not expect element %s there\n", arg1);
2145 break;
2146 case XML_RELAXNG_ERR_TEXTWRONG:
2147 snprintf(msg, 1000,
2148 "Did not expect text in element %s content\n", arg1);
2149 break;
2150 case XML_RELAXNG_ERR_ELEMEXTRANS:
2151 snprintf(msg, 1000, "Expecting no namespace for element %s\n",
2152 arg1);
2153 break;
2154 case XML_RELAXNG_ERR_ELEMNOTEMPTY:
2155 snprintf(msg, 1000, "Expecting element %s to be empty\n", arg1);
2156 break;
2157 case XML_RELAXNG_ERR_NOELEM:
2158 snprintf(msg, 1000, "Expecting an element %s, got nothing\n",
2159 arg1);
2160 break;
2161 case XML_RELAXNG_ERR_NOTELEM:
2162 return (xmlCharStrdup("Expecting an element got text\n"));
2163 case XML_RELAXNG_ERR_ATTRVALID:
2164 snprintf(msg, 1000, "Element %s failed to validate attributes\n",
2165 arg1);
2166 break;
2167 case XML_RELAXNG_ERR_CONTENTVALID:
2168 snprintf(msg, 1000, "Element %s failed to validate content\n",
2169 arg1);
2170 break;
2171 case XML_RELAXNG_ERR_EXTRACONTENT:
2172 snprintf(msg, 1000, "Element %s has extra content: %s\n",
2173 arg1, arg2);
2174 break;
2175 case XML_RELAXNG_ERR_INVALIDATTR:
2176 snprintf(msg, 1000, "Invalid attribute %s for element %s\n",
2177 arg1, arg2);
2178 break;
2179 case XML_RELAXNG_ERR_LACKDATA:
2180 snprintf(msg, 1000, "Datatype element %s contains no data\n",
2181 arg1);
2182 break;
2183 case XML_RELAXNG_ERR_DATAELEM:
2184 snprintf(msg, 1000, "Datatype element %s has child elements\n",
2185 arg1);
2186 break;
2187 case XML_RELAXNG_ERR_VALELEM:
2188 snprintf(msg, 1000, "Value element %s has child elements\n",
2189 arg1);
2190 break;
2191 case XML_RELAXNG_ERR_LISTELEM:
2192 snprintf(msg, 1000, "List element %s has child elements\n",
2193 arg1);
2194 break;
2195 case XML_RELAXNG_ERR_DATATYPE:
2196 snprintf(msg, 1000, "Error validating datatype %s\n", arg1);
2197 break;
2198 case XML_RELAXNG_ERR_VALUE:
2199 snprintf(msg, 1000, "Error validating value %s\n", arg1);
2200 break;
2201 case XML_RELAXNG_ERR_LIST:
2202 return (xmlCharStrdup("Error validating list\n"));
2203 case XML_RELAXNG_ERR_NOGRAMMAR:
2204 return (xmlCharStrdup("No top grammar defined\n"));
2205 case XML_RELAXNG_ERR_EXTRADATA:
2206 return (xmlCharStrdup("Extra data in the document\n"));
2207 default:
2208 return (xmlCharStrdup("Unknown error !\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002209 }
2210 if (msg[0] == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002211 snprintf(msg, 1000, "Unknown error code %d\n", err);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002212 }
Daniel Veillardadbb0e62003-05-10 20:02:45 +00002213 msg[1000 - 1] = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00002214 return (xmlStrdup((xmlChar *) msg));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002215}
2216
2217/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002218 * xmlRelaxNGShowValidError:
2219 * @ctxt: the validation context
2220 * @err: the error number
2221 * @node: the node
2222 * @child: the node child generating the problem.
2223 * @arg1: the first argument
2224 * @arg2: the second argument
2225 *
2226 * Show a validation error.
2227 */
2228static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002229xmlRelaxNGShowValidError(xmlRelaxNGValidCtxtPtr ctxt,
2230 xmlRelaxNGValidErr err, xmlNodePtr node,
2231 xmlNodePtr child, const xmlChar * arg1,
2232 const xmlChar * arg2)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002233{
2234 xmlChar *msg;
2235
Daniel Veillardb30ca312005-09-04 13:50:03 +00002236 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillardf03a8cd2005-09-04 12:01:57 +00002237 return;
2238
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002239#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002240 xmlGenericError(xmlGenericErrorContext, "Show error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002241#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002242 msg = xmlRelaxNGGetErrorString(err, arg1, arg2);
2243 if (msg == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002244 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002245
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002246 if (ctxt->errNo == XML_RELAXNG_OK)
Daniel Veillard4c004142003-10-07 11:33:24 +00002247 ctxt->errNo = err;
2248 xmlRngVErr(ctxt, (child == NULL ? node : child), err,
2249 (const char *) msg, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002250 xmlFree(msg);
2251}
2252
2253/**
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002254 * xmlRelaxNGPopErrors:
2255 * @ctxt: the validation context
2256 * @level: the error level in the stack
2257 *
2258 * pop and discard all errors until the given level is reached
2259 */
2260static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002261xmlRelaxNGPopErrors(xmlRelaxNGValidCtxtPtr ctxt, int level)
2262{
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002263 int i;
2264 xmlRelaxNGValidErrorPtr err;
2265
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002266#ifdef DEBUG_ERROR
2267 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002268 "Pop errors till level %d\n", level);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002269#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002270 for (i = level; i < ctxt->errNr; i++) {
2271 err = &ctxt->errTab[i];
2272 if (err->flags & ERROR_IS_DUP) {
2273 if (err->arg1 != NULL)
2274 xmlFree((xmlChar *) err->arg1);
2275 err->arg1 = NULL;
2276 if (err->arg2 != NULL)
2277 xmlFree((xmlChar *) err->arg2);
2278 err->arg2 = NULL;
2279 err->flags = 0;
2280 }
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002281 }
2282 ctxt->errNr = level;
Daniel Veillard580ced82003-03-21 21:22:48 +00002283 if (ctxt->errNr <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002284 ctxt->err = NULL;
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002285}
Daniel Veillard4c004142003-10-07 11:33:24 +00002286
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002287/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002288 * xmlRelaxNGDumpValidError:
2289 * @ctxt: the validation context
2290 *
2291 * Show all validation error over a given index.
2292 */
2293static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002294xmlRelaxNGDumpValidError(xmlRelaxNGValidCtxtPtr ctxt)
2295{
Daniel Veillard5f1946a2003-03-31 16:38:16 +00002296 int i, j, k;
Daniel Veillard580ced82003-03-21 21:22:48 +00002297 xmlRelaxNGValidErrorPtr err, dup;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002298
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002299#ifdef DEBUG_ERROR
2300 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002301 "Dumping error stack %d errors\n", ctxt->errNr);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002302#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002303 for (i = 0, k = 0; i < ctxt->errNr; i++) {
2304 err = &ctxt->errTab[i];
2305 if (k < MAX_ERROR) {
2306 for (j = 0; j < i; j++) {
2307 dup = &ctxt->errTab[j];
2308 if ((err->err == dup->err) && (err->node == dup->node) &&
2309 (xmlStrEqual(err->arg1, dup->arg1)) &&
2310 (xmlStrEqual(err->arg2, dup->arg2))) {
2311 goto skip;
2312 }
2313 }
2314 xmlRelaxNGShowValidError(ctxt, err->err, err->node, err->seq,
2315 err->arg1, err->arg2);
2316 k++;
2317 }
2318 skip:
2319 if (err->flags & ERROR_IS_DUP) {
2320 if (err->arg1 != NULL)
2321 xmlFree((xmlChar *) err->arg1);
2322 err->arg1 = NULL;
2323 if (err->arg2 != NULL)
2324 xmlFree((xmlChar *) err->arg2);
2325 err->arg2 = NULL;
2326 err->flags = 0;
2327 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00002328 }
2329 ctxt->errNr = 0;
2330}
Daniel Veillard4c004142003-10-07 11:33:24 +00002331
Daniel Veillard42f12e92003-03-07 18:32:59 +00002332/**
2333 * xmlRelaxNGAddValidError:
2334 * @ctxt: the validation context
2335 * @err: the error number
2336 * @arg1: the first argument
2337 * @arg2: the second argument
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002338 * @dup: need to dup the args
Daniel Veillard42f12e92003-03-07 18:32:59 +00002339 *
2340 * Register a validation error, either generating it if it's sure
2341 * or stacking it for later handling if unsure.
2342 */
2343static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002344xmlRelaxNGAddValidError(xmlRelaxNGValidCtxtPtr ctxt,
2345 xmlRelaxNGValidErr err, const xmlChar * arg1,
2346 const xmlChar * arg2, int dup)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002347{
Daniel Veillardb30ca312005-09-04 13:50:03 +00002348 if (ctxt == NULL)
2349 return;
2350 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillard4c004142003-10-07 11:33:24 +00002351 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002352
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002353#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002354 xmlGenericError(xmlGenericErrorContext, "Adding error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002355#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002356 /*
2357 * generate the error directly
2358 */
William M. Brack60929622004-03-27 17:54:18 +00002359 if (((ctxt->flags & FLAGS_IGNORABLE) == 0) ||
2360 (ctxt->flags & FLAGS_NEGATIVE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002361 xmlNodePtr node, seq;
2362
2363 /*
2364 * Flush first any stacked error which might be the
2365 * real cause of the problem.
2366 */
2367 if (ctxt->errNr != 0)
2368 xmlRelaxNGDumpValidError(ctxt);
2369 if (ctxt->state != NULL) {
2370 node = ctxt->state->node;
2371 seq = ctxt->state->seq;
2372 } else {
2373 node = seq = NULL;
2374 }
2375 xmlRelaxNGShowValidError(ctxt, err, node, seq, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002376 }
2377 /*
2378 * Stack the error for later processing if needed
2379 */
2380 else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002381 xmlRelaxNGValidErrorPush(ctxt, err, arg1, arg2, dup);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002382 }
2383}
2384
Daniel Veillard6eadf632003-01-23 18:29:16 +00002385
2386/************************************************************************
2387 * *
2388 * Type library hooks *
2389 * *
2390 ************************************************************************/
Daniel Veillardea3f3982003-01-26 19:45:18 +00002391static xmlChar *xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00002392 const xmlChar * str);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002393
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002394/**
2395 * xmlRelaxNGSchemaTypeHave:
2396 * @data: data needed for the library
2397 * @type: the type name
2398 *
2399 * Check if the given type is provided by
2400 * the W3C XMLSchema Datatype library.
2401 *
2402 * Returns 1 if yes, 0 if no and -1 in case of error.
2403 */
2404static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002405xmlRelaxNGSchemaTypeHave(void *data ATTRIBUTE_UNUSED, const xmlChar * type)
2406{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002407 xmlSchemaTypePtr typ;
2408
2409 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002410 return (-1);
2411 typ = xmlSchemaGetPredefinedType(type,
2412 BAD_CAST
2413 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002414 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002415 return (0);
2416 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002417}
2418
2419/**
2420 * xmlRelaxNGSchemaTypeCheck:
2421 * @data: data needed for the library
2422 * @type: the type name
2423 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002424 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002425 *
2426 * Check if the given type and value are validated by
2427 * the W3C XMLSchema Datatype library.
2428 *
2429 * Returns 1 if yes, 0 if no and -1 in case of error.
2430 */
2431static int
2432xmlRelaxNGSchemaTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002433 const xmlChar * type,
2434 const xmlChar * value,
2435 void **result, xmlNodePtr node)
2436{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002437 xmlSchemaTypePtr typ;
2438 int ret;
2439
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002440 if ((type == NULL) || (value == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002441 return (-1);
2442 typ = xmlSchemaGetPredefinedType(type,
2443 BAD_CAST
2444 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002445 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002446 return (-1);
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002447 ret = xmlSchemaValPredefTypeNode(typ, value,
Daniel Veillard4c004142003-10-07 11:33:24 +00002448 (xmlSchemaValPtr *) result, node);
2449 if (ret == 2) /* special ID error code */
2450 return (2);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002451 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002452 return (1);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002453 if (ret > 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002454 return (0);
2455 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002456}
2457
2458/**
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002459 * xmlRelaxNGSchemaFacetCheck:
2460 * @data: data needed for the library
2461 * @type: the type name
2462 * @facet: the facet name
2463 * @val: the facet value
2464 * @strval: the string value
2465 * @value: the value to check
2466 *
2467 * Function provided by a type library to check a value facet
2468 *
2469 * Returns 1 if yes, 0 if no and -1 in case of error.
2470 */
2471static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002472xmlRelaxNGSchemaFacetCheck(void *data ATTRIBUTE_UNUSED,
2473 const xmlChar * type, const xmlChar * facetname,
2474 const xmlChar * val, const xmlChar * strval,
2475 void *value)
2476{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002477 xmlSchemaFacetPtr facet;
2478 xmlSchemaTypePtr typ;
2479 int ret;
2480
2481 if ((type == NULL) || (strval == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002482 return (-1);
2483 typ = xmlSchemaGetPredefinedType(type,
2484 BAD_CAST
2485 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002486 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002487 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002488
2489 facet = xmlSchemaNewFacet();
2490 if (facet == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002491 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002492
Daniel Veillard4c004142003-10-07 11:33:24 +00002493 if (xmlStrEqual(facetname, BAD_CAST "minInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002494 facet->type = XML_SCHEMA_FACET_MININCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002495 } else if (xmlStrEqual(facetname, BAD_CAST "minExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002496 facet->type = XML_SCHEMA_FACET_MINEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002497 } else if (xmlStrEqual(facetname, BAD_CAST "maxInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002498 facet->type = XML_SCHEMA_FACET_MAXINCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002499 } else if (xmlStrEqual(facetname, BAD_CAST "maxExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002500 facet->type = XML_SCHEMA_FACET_MAXEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002501 } else if (xmlStrEqual(facetname, BAD_CAST "totalDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002502 facet->type = XML_SCHEMA_FACET_TOTALDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002503 } else if (xmlStrEqual(facetname, BAD_CAST "fractionDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002504 facet->type = XML_SCHEMA_FACET_FRACTIONDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002505 } else if (xmlStrEqual(facetname, BAD_CAST "pattern")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002506 facet->type = XML_SCHEMA_FACET_PATTERN;
Daniel Veillard4c004142003-10-07 11:33:24 +00002507 } else if (xmlStrEqual(facetname, BAD_CAST "enumeration")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002508 facet->type = XML_SCHEMA_FACET_ENUMERATION;
Daniel Veillard4c004142003-10-07 11:33:24 +00002509 } else if (xmlStrEqual(facetname, BAD_CAST "whiteSpace")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002510 facet->type = XML_SCHEMA_FACET_WHITESPACE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002511 } else if (xmlStrEqual(facetname, BAD_CAST "length")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002512 facet->type = XML_SCHEMA_FACET_LENGTH;
Daniel Veillard4c004142003-10-07 11:33:24 +00002513 } else if (xmlStrEqual(facetname, BAD_CAST "maxLength")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002514 facet->type = XML_SCHEMA_FACET_MAXLENGTH;
2515 } else if (xmlStrEqual(facetname, BAD_CAST "minLength")) {
2516 facet->type = XML_SCHEMA_FACET_MINLENGTH;
2517 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002518 xmlSchemaFreeFacet(facet);
2519 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002520 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00002521 facet->value = val;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002522 ret = xmlSchemaCheckFacet(facet, typ, NULL, type);
2523 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002524 xmlSchemaFreeFacet(facet);
2525 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002526 }
2527 ret = xmlSchemaValidateFacet(typ, facet, strval, value);
2528 xmlSchemaFreeFacet(facet);
2529 if (ret != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002530 return (-1);
2531 return (0);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002532}
2533
2534/**
Daniel Veillard80b19092003-03-28 13:29:53 +00002535 * xmlRelaxNGSchemaFreeValue:
2536 * @data: data needed for the library
2537 * @value: the value to free
2538 *
2539 * Function provided by a type library to free a Schemas value
2540 *
2541 * Returns 1 if yes, 0 if no and -1 in case of error.
2542 */
2543static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002544xmlRelaxNGSchemaFreeValue(void *data ATTRIBUTE_UNUSED, void *value)
2545{
Daniel Veillard80b19092003-03-28 13:29:53 +00002546 xmlSchemaFreeValue(value);
2547}
2548
2549/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002550 * xmlRelaxNGSchemaTypeCompare:
2551 * @data: data needed for the library
2552 * @type: the type name
2553 * @value1: the first value
2554 * @value2: the second value
2555 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002556 * Compare two values for equality accordingly a type from the W3C XMLSchema
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002557 * Datatype library.
2558 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002559 * Returns 1 if equal, 0 if no and -1 in case of error.
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002560 */
2561static int
2562xmlRelaxNGSchemaTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002563 const xmlChar * type,
2564 const xmlChar * value1,
2565 xmlNodePtr ctxt1,
2566 void *comp1,
2567 const xmlChar * value2, xmlNodePtr ctxt2)
2568{
Daniel Veillard80b19092003-03-28 13:29:53 +00002569 int ret;
2570 xmlSchemaTypePtr typ;
2571 xmlSchemaValPtr res1 = NULL, res2 = NULL;
2572
2573 if ((type == NULL) || (value1 == NULL) || (value2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002574 return (-1);
2575 typ = xmlSchemaGetPredefinedType(type,
2576 BAD_CAST
2577 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard80b19092003-03-28 13:29:53 +00002578 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002579 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002580 if (comp1 == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002581 ret = xmlSchemaValPredefTypeNode(typ, value1, &res1, ctxt1);
2582 if (ret != 0)
2583 return (-1);
2584 if (res1 == NULL)
2585 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002586 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002587 res1 = (xmlSchemaValPtr) comp1;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002588 }
2589 ret = xmlSchemaValPredefTypeNode(typ, value2, &res2, ctxt2);
Daniel Veillard80b19092003-03-28 13:29:53 +00002590 if (ret != 0) {
Daniel Veillardf4644032005-06-13 11:41:31 +00002591 if ((comp1 == NULL) && (res1 != NULL))
2592 xmlSchemaFreeValue(res1);
Daniel Veillard4c004142003-10-07 11:33:24 +00002593 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002594 }
2595 if (res1 == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002596 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002597 }
2598 ret = xmlSchemaCompareValues(res1, res2);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002599 if (res1 != (xmlSchemaValPtr) comp1)
Daniel Veillard4c004142003-10-07 11:33:24 +00002600 xmlSchemaFreeValue(res1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002601 xmlSchemaFreeValue(res2);
2602 if (ret == -2)
Daniel Veillard4c004142003-10-07 11:33:24 +00002603 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002604 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002605 return (1);
2606 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002607}
Daniel Veillard4c004142003-10-07 11:33:24 +00002608
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002609/**
2610 * xmlRelaxNGDefaultTypeHave:
2611 * @data: data needed for the library
2612 * @type: the type name
2613 *
2614 * Check if the given type is provided by
2615 * the default datatype library.
2616 *
2617 * Returns 1 if yes, 0 if no and -1 in case of error.
2618 */
2619static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002620xmlRelaxNGDefaultTypeHave(void *data ATTRIBUTE_UNUSED,
2621 const xmlChar * type)
2622{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002623 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002624 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002625 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002626 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002627 if (xmlStrEqual(type, BAD_CAST "token"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002628 return (1);
2629 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002630}
2631
2632/**
2633 * xmlRelaxNGDefaultTypeCheck:
2634 * @data: data needed for the library
2635 * @type: the type name
2636 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002637 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002638 *
2639 * Check if the given type and value are validated by
2640 * the default datatype library.
2641 *
2642 * Returns 1 if yes, 0 if no and -1 in case of error.
2643 */
2644static int
2645xmlRelaxNGDefaultTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002646 const xmlChar * type ATTRIBUTE_UNUSED,
2647 const xmlChar * value ATTRIBUTE_UNUSED,
2648 void **result ATTRIBUTE_UNUSED,
2649 xmlNodePtr node ATTRIBUTE_UNUSED)
2650{
Daniel Veillardd4310742003-02-18 21:12:46 +00002651 if (value == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002652 return (-1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002653 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002654 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002655 if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002656 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002657 }
2658
Daniel Veillard4c004142003-10-07 11:33:24 +00002659 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002660}
2661
2662/**
2663 * xmlRelaxNGDefaultTypeCompare:
2664 * @data: data needed for the library
2665 * @type: the type name
2666 * @value1: the first value
2667 * @value2: the second value
2668 *
2669 * Compare two values accordingly a type from the default
2670 * datatype library.
2671 *
2672 * Returns 1 if yes, 0 if no and -1 in case of error.
2673 */
2674static int
2675xmlRelaxNGDefaultTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002676 const xmlChar * type,
2677 const xmlChar * value1,
2678 xmlNodePtr ctxt1 ATTRIBUTE_UNUSED,
2679 void *comp1 ATTRIBUTE_UNUSED,
2680 const xmlChar * value2,
2681 xmlNodePtr ctxt2 ATTRIBUTE_UNUSED)
2682{
Daniel Veillardea3f3982003-01-26 19:45:18 +00002683 int ret = -1;
2684
2685 if (xmlStrEqual(type, BAD_CAST "string")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002686 ret = xmlStrEqual(value1, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002687 } else if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002688 if (!xmlStrEqual(value1, value2)) {
2689 xmlChar *nval, *nvalue;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002690
Daniel Veillard4c004142003-10-07 11:33:24 +00002691 /*
2692 * TODO: trivial optimizations are possible by
2693 * computing at compile-time
2694 */
2695 nval = xmlRelaxNGNormalize(NULL, value1);
2696 nvalue = xmlRelaxNGNormalize(NULL, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002697
Daniel Veillard4c004142003-10-07 11:33:24 +00002698 if ((nval == NULL) || (nvalue == NULL))
2699 ret = -1;
2700 else if (xmlStrEqual(nval, nvalue))
2701 ret = 1;
2702 else
2703 ret = 0;
2704 if (nval != NULL)
2705 xmlFree(nval);
2706 if (nvalue != NULL)
2707 xmlFree(nvalue);
2708 } else
2709 ret = 1;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002710 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002711 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002712}
Daniel Veillard4c004142003-10-07 11:33:24 +00002713
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002714static int xmlRelaxNGTypeInitialized = 0;
2715static xmlHashTablePtr xmlRelaxNGRegisteredTypes = NULL;
2716
2717/**
2718 * xmlRelaxNGFreeTypeLibrary:
2719 * @lib: the type library structure
2720 * @namespace: the URI bound to the library
2721 *
2722 * Free the structure associated to the type library
2723 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00002724static void
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002725xmlRelaxNGFreeTypeLibrary(xmlRelaxNGTypeLibraryPtr lib,
Daniel Veillard4c004142003-10-07 11:33:24 +00002726 const xmlChar * namespace ATTRIBUTE_UNUSED)
2727{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002728 if (lib == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002729 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002730 if (lib->namespace != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002731 xmlFree((xmlChar *) lib->namespace);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002732 xmlFree(lib);
2733}
2734
2735/**
2736 * xmlRelaxNGRegisterTypeLibrary:
2737 * @namespace: the URI bound to the library
2738 * @data: data associated to the library
2739 * @have: the provide function
2740 * @check: the checking function
2741 * @comp: the comparison function
2742 *
2743 * Register a new type library
2744 *
2745 * Returns 0 in case of success and -1 in case of error.
2746 */
2747static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002748xmlRelaxNGRegisterTypeLibrary(const xmlChar * namespace, void *data,
2749 xmlRelaxNGTypeHave have,
2750 xmlRelaxNGTypeCheck check,
2751 xmlRelaxNGTypeCompare comp,
2752 xmlRelaxNGFacetCheck facet,
2753 xmlRelaxNGTypeFree freef)
2754{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002755 xmlRelaxNGTypeLibraryPtr lib;
2756 int ret;
2757
2758 if ((xmlRelaxNGRegisteredTypes == NULL) || (namespace == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00002759 (check == NULL) || (comp == NULL))
2760 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002761 if (xmlHashLookup(xmlRelaxNGRegisteredTypes, namespace) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002762 xmlGenericError(xmlGenericErrorContext,
2763 "Relax-NG types library '%s' already registered\n",
2764 namespace);
2765 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002766 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002767 lib =
2768 (xmlRelaxNGTypeLibraryPtr)
2769 xmlMalloc(sizeof(xmlRelaxNGTypeLibrary));
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002770 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002771 xmlRngVErrMemory(NULL, "adding types library\n");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002772 return (-1);
2773 }
2774 memset(lib, 0, sizeof(xmlRelaxNGTypeLibrary));
2775 lib->namespace = xmlStrdup(namespace);
2776 lib->data = data;
2777 lib->have = have;
2778 lib->comp = comp;
2779 lib->check = check;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002780 lib->facet = facet;
2781 lib->freef = freef;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002782 ret = xmlHashAddEntry(xmlRelaxNGRegisteredTypes, namespace, lib);
2783 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002784 xmlGenericError(xmlGenericErrorContext,
2785 "Relax-NG types library failed to register '%s'\n",
2786 namespace);
2787 xmlRelaxNGFreeTypeLibrary(lib, namespace);
2788 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002789 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002790 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002791}
2792
2793/**
2794 * xmlRelaxNGInitTypes:
2795 *
2796 * Initilize the default type libraries.
2797 *
2798 * Returns 0 in case of success and -1 in case of error.
2799 */
Daniel Veillarddd6d3002004-11-03 14:20:29 +00002800int
Daniel Veillard4c004142003-10-07 11:33:24 +00002801xmlRelaxNGInitTypes(void)
2802{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002803 if (xmlRelaxNGTypeInitialized != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002804 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002805 xmlRelaxNGRegisteredTypes = xmlHashCreate(10);
2806 if (xmlRelaxNGRegisteredTypes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002807 xmlGenericError(xmlGenericErrorContext,
2808 "Failed to allocate sh table for Relax-NG types\n");
2809 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002810 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002811 xmlRelaxNGRegisterTypeLibrary(BAD_CAST
2812 "http://www.w3.org/2001/XMLSchema-datatypes",
2813 NULL, xmlRelaxNGSchemaTypeHave,
2814 xmlRelaxNGSchemaTypeCheck,
2815 xmlRelaxNGSchemaTypeCompare,
2816 xmlRelaxNGSchemaFacetCheck,
2817 xmlRelaxNGSchemaFreeValue);
2818 xmlRelaxNGRegisterTypeLibrary(xmlRelaxNGNs, NULL,
2819 xmlRelaxNGDefaultTypeHave,
2820 xmlRelaxNGDefaultTypeCheck,
2821 xmlRelaxNGDefaultTypeCompare, NULL,
2822 NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002823 xmlRelaxNGTypeInitialized = 1;
Daniel Veillard4c004142003-10-07 11:33:24 +00002824 return (0);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002825}
2826
2827/**
2828 * xmlRelaxNGCleanupTypes:
2829 *
2830 * Cleanup the default Schemas type library associated to RelaxNG
2831 */
Daniel Veillard4c004142003-10-07 11:33:24 +00002832void
2833xmlRelaxNGCleanupTypes(void)
2834{
Daniel Veillarda84c0b32003-06-02 16:58:46 +00002835 xmlSchemaCleanupTypes();
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002836 if (xmlRelaxNGTypeInitialized == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002837 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002838 xmlHashFree(xmlRelaxNGRegisteredTypes, (xmlHashDeallocator)
Daniel Veillard4c004142003-10-07 11:33:24 +00002839 xmlRelaxNGFreeTypeLibrary);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002840 xmlRelaxNGTypeInitialized = 0;
Daniel Veillard6eadf632003-01-23 18:29:16 +00002841}
2842
2843/************************************************************************
2844 * *
Daniel Veillard952379b2003-03-17 15:37:12 +00002845 * Compiling element content into regexp *
2846 * *
2847 * Sometime the element content can be compiled into a pure regexp, *
2848 * This allows a faster execution and streamability at that level *
2849 * *
2850 ************************************************************************/
2851
Daniel Veillard52b48c72003-04-13 19:53:42 +00002852static int xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt,
2853 xmlRelaxNGDefinePtr def);
2854
Daniel Veillard952379b2003-03-17 15:37:12 +00002855/**
2856 * xmlRelaxNGIsCompileable:
2857 * @define: the definition to check
2858 *
2859 * Check if a definition is nullable.
2860 *
2861 * Returns 1 if yes, 0 if no and -1 in case of error
2862 */
2863static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002864xmlRelaxNGIsCompileable(xmlRelaxNGDefinePtr def)
2865{
Daniel Veillard52b48c72003-04-13 19:53:42 +00002866 int ret = -1;
2867
Daniel Veillard952379b2003-03-17 15:37:12 +00002868 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002869 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00002870 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00002871 if ((def->type != XML_RELAXNG_ELEMENT) &&
2872 (def->dflags & IS_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002873 return (1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00002874 if ((def->type != XML_RELAXNG_ELEMENT) &&
2875 (def->dflags & IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002876 return (0);
2877 switch (def->type) {
Daniel Veillard952379b2003-03-17 15:37:12 +00002878 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002879 ret = xmlRelaxNGIsCompileable(def->content);
2880 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002881 case XML_RELAXNG_TEXT:
Daniel Veillard952379b2003-03-17 15:37:12 +00002882 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00002883 ret = 1;
2884 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002885 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00002886 /*
2887 * Check if the element content is compileable
2888 */
2889 if (((def->dflags & IS_NOT_COMPILABLE) == 0) &&
2890 ((def->dflags & IS_COMPILABLE) == 0)) {
2891 xmlRelaxNGDefinePtr list;
2892
2893 list = def->content;
2894 while (list != NULL) {
2895 ret = xmlRelaxNGIsCompileable(list);
2896 if (ret != 1)
2897 break;
2898 list = list->next;
2899 }
William M. Brack60929622004-03-27 17:54:18 +00002900 /*
2901 * Because the routine is recursive, we must guard against
2902 * discovering both COMPILABLE and NOT_COMPILABLE
2903 */
2904 if (ret == 0) {
2905 def->dflags &= ~IS_COMPILABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002906 def->dflags |= IS_NOT_COMPILABLE;
William M. Brack60929622004-03-27 17:54:18 +00002907 }
2908 if ((ret == 1) && !(def->dflags &= IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002909 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002910#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00002911 if (ret == 1) {
2912 xmlGenericError(xmlGenericErrorContext,
2913 "element content for %s is compilable\n",
2914 def->name);
2915 } else if (ret == 0) {
2916 xmlGenericError(xmlGenericErrorContext,
2917 "element content for %s is not compilable\n",
2918 def->name);
2919 } else {
2920 xmlGenericError(xmlGenericErrorContext,
2921 "Problem in RelaxNGIsCompileable for element %s\n",
2922 def->name);
2923 }
Daniel Veillardd94849b2003-07-28 13:02:24 +00002924#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002925 }
2926 /*
2927 * All elements return a compileable status unless they
2928 * are generic like anyName
2929 */
2930 if ((def->nameClass != NULL) || (def->name == NULL))
2931 ret = 0;
2932 else
2933 ret = 1;
2934 return (ret);
Daniel Veillard2134ab12003-07-23 19:56:29 +00002935 case XML_RELAXNG_REF:
2936 case XML_RELAXNG_EXTERNALREF:
2937 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00002938 if (def->depth == -20) {
2939 return (1);
2940 } else {
2941 xmlRelaxNGDefinePtr list;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002942
Daniel Veillard4c004142003-10-07 11:33:24 +00002943 def->depth = -20;
2944 list = def->content;
2945 while (list != NULL) {
2946 ret = xmlRelaxNGIsCompileable(list);
2947 if (ret != 1)
2948 break;
2949 list = list->next;
2950 }
2951 }
2952 break;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002953 case XML_RELAXNG_START:
Daniel Veillard952379b2003-03-17 15:37:12 +00002954 case XML_RELAXNG_OPTIONAL:
2955 case XML_RELAXNG_ZEROORMORE:
2956 case XML_RELAXNG_ONEORMORE:
2957 case XML_RELAXNG_CHOICE:
2958 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002959 case XML_RELAXNG_DEF:{
2960 xmlRelaxNGDefinePtr list;
Daniel Veillard952379b2003-03-17 15:37:12 +00002961
Daniel Veillard4c004142003-10-07 11:33:24 +00002962 list = def->content;
2963 while (list != NULL) {
2964 ret = xmlRelaxNGIsCompileable(list);
2965 if (ret != 1)
2966 break;
2967 list = list->next;
2968 }
2969 break;
2970 }
Daniel Veillard952379b2003-03-17 15:37:12 +00002971 case XML_RELAXNG_EXCEPT:
2972 case XML_RELAXNG_ATTRIBUTE:
2973 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard52b48c72003-04-13 19:53:42 +00002974 case XML_RELAXNG_DATATYPE:
2975 case XML_RELAXNG_LIST:
2976 case XML_RELAXNG_PARAM:
2977 case XML_RELAXNG_VALUE:
Daniel Veillard952379b2003-03-17 15:37:12 +00002978 case XML_RELAXNG_NOT_ALLOWED:
William M. Brack7e29c0a2004-04-02 09:07:22 +00002979 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00002980 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002981 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002982 if (ret == 0)
2983 def->dflags |= IS_NOT_COMPILABLE;
2984 if (ret == 1)
2985 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002986#ifdef DEBUG_COMPILE
2987 if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002988 xmlGenericError(xmlGenericErrorContext,
2989 "RelaxNGIsCompileable %s : true\n",
2990 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00002991 } else if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002992 xmlGenericError(xmlGenericErrorContext,
2993 "RelaxNGIsCompileable %s : false\n",
2994 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00002995 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002996 xmlGenericError(xmlGenericErrorContext,
2997 "Problem in RelaxNGIsCompileable %s\n",
2998 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00002999 }
3000#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003001 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003002}
3003
3004/**
3005 * xmlRelaxNGCompile:
3006 * ctxt: the RelaxNG parser context
3007 * @define: the definition tree to compile
3008 *
3009 * Compile the set of definitions, it works recursively, till the
3010 * element boundaries, where it tries to compile the content if possible
3011 *
3012 * Returns 0 if success and -1 in case of error
3013 */
3014static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003015xmlRelaxNGCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3016{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003017 int ret = 0;
3018 xmlRelaxNGDefinePtr list;
3019
Daniel Veillard4c004142003-10-07 11:33:24 +00003020 if ((ctxt == NULL) || (def == NULL))
3021 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003022
Daniel Veillard4c004142003-10-07 11:33:24 +00003023 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003024 case XML_RELAXNG_START:
3025 if ((xmlRelaxNGIsCompileable(def) == 1) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003026 xmlAutomataPtr oldam = ctxt->am;
3027 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003028
3029 def->depth = -25;
3030
Daniel Veillard4c004142003-10-07 11:33:24 +00003031 list = def->content;
3032 ctxt->am = xmlNewAutomata();
3033 if (ctxt->am == NULL)
3034 return (-1);
3035 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3036 while (list != NULL) {
3037 xmlRelaxNGCompile(ctxt, list);
3038 list = list->next;
3039 }
3040 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
3041 def->contModel = xmlAutomataCompile(ctxt->am);
3042 xmlRegexpIsDeterminist(def->contModel);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003043
Daniel Veillard4c004142003-10-07 11:33:24 +00003044 xmlFreeAutomata(ctxt->am);
3045 ctxt->state = oldstate;
3046 ctxt->am = oldam;
3047 }
3048 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003049 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003050 if ((ctxt->am != NULL) && (def->name != NULL)) {
3051 ctxt->state = xmlAutomataNewTransition2(ctxt->am,
3052 ctxt->state, NULL,
3053 def->name, def->ns,
3054 def);
3055 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003056 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003057 xmlAutomataPtr oldam = ctxt->am;
3058 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003059
3060 def->depth = -25;
3061
Daniel Veillard4c004142003-10-07 11:33:24 +00003062 list = def->content;
3063 ctxt->am = xmlNewAutomata();
3064 if (ctxt->am == NULL)
3065 return (-1);
3066 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3067 while (list != NULL) {
3068 xmlRelaxNGCompile(ctxt, list);
3069 list = list->next;
3070 }
3071 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
3072 def->contModel = xmlAutomataCompile(ctxt->am);
3073 if (!xmlRegexpIsDeterminist(def->contModel)) {
3074 /*
3075 * we can only use the automata if it is determinist
3076 */
3077 xmlRegFreeRegexp(def->contModel);
3078 def->contModel = NULL;
3079 }
3080 xmlFreeAutomata(ctxt->am);
3081 ctxt->state = oldstate;
3082 ctxt->am = oldam;
3083 } else {
3084 xmlAutomataPtr oldam = ctxt->am;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003085
Daniel Veillard4c004142003-10-07 11:33:24 +00003086 /*
3087 * we can't build the content model for this element content
3088 * but it still might be possible to build it for some of its
3089 * children, recurse.
3090 */
3091 ret = xmlRelaxNGTryCompile(ctxt, def);
3092 ctxt->am = oldam;
3093 }
3094 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003095 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003096 ret = xmlRelaxNGCompile(ctxt, def->content);
3097 break;
3098 case XML_RELAXNG_OPTIONAL:{
3099 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003100
Daniel Veillard4c004142003-10-07 11:33:24 +00003101 xmlRelaxNGCompile(ctxt, def->content);
3102 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
3103 break;
3104 }
3105 case XML_RELAXNG_ZEROORMORE:{
3106 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003107
Daniel Veillard4c004142003-10-07 11:33:24 +00003108 ctxt->state =
3109 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3110 oldstate = ctxt->state;
3111 list = def->content;
3112 while (list != NULL) {
3113 xmlRelaxNGCompile(ctxt, list);
3114 list = list->next;
3115 }
3116 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3117 ctxt->state =
3118 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3119 break;
3120 }
3121 case XML_RELAXNG_ONEORMORE:{
3122 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003123
Daniel Veillard4c004142003-10-07 11:33:24 +00003124 list = def->content;
3125 while (list != NULL) {
3126 xmlRelaxNGCompile(ctxt, list);
3127 list = list->next;
3128 }
3129 oldstate = ctxt->state;
3130 list = def->content;
3131 while (list != NULL) {
3132 xmlRelaxNGCompile(ctxt, list);
3133 list = list->next;
3134 }
3135 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3136 ctxt->state =
3137 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3138 break;
3139 }
3140 case XML_RELAXNG_CHOICE:{
3141 xmlAutomataStatePtr target = NULL;
3142 xmlAutomataStatePtr oldstate = ctxt->state;
3143
3144 list = def->content;
3145 while (list != NULL) {
3146 ctxt->state = oldstate;
3147 ret = xmlRelaxNGCompile(ctxt, list);
3148 if (ret != 0)
3149 break;
3150 if (target == NULL)
3151 target = ctxt->state;
3152 else {
3153 xmlAutomataNewEpsilon(ctxt->am, ctxt->state,
3154 target);
3155 }
3156 list = list->next;
3157 }
3158 ctxt->state = target;
3159
3160 break;
3161 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003162 case XML_RELAXNG_REF:
3163 case XML_RELAXNG_EXTERNALREF:
3164 case XML_RELAXNG_PARENTREF:
Daniel Veillard52b48c72003-04-13 19:53:42 +00003165 case XML_RELAXNG_GROUP:
3166 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003167 list = def->content;
3168 while (list != NULL) {
3169 ret = xmlRelaxNGCompile(ctxt, list);
3170 if (ret != 0)
3171 break;
3172 list = list->next;
3173 }
3174 break;
3175 case XML_RELAXNG_TEXT:{
3176 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003177
Daniel Veillard4c004142003-10-07 11:33:24 +00003178 ctxt->state =
3179 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3180 oldstate = ctxt->state;
3181 xmlRelaxNGCompile(ctxt, def->content);
3182 xmlAutomataNewTransition(ctxt->am, ctxt->state,
3183 ctxt->state, BAD_CAST "#text",
3184 NULL);
3185 ctxt->state =
3186 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3187 break;
3188 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003189 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00003190 ctxt->state =
3191 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3192 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003193 case XML_RELAXNG_EXCEPT:
3194 case XML_RELAXNG_ATTRIBUTE:
3195 case XML_RELAXNG_INTERLEAVE:
3196 case XML_RELAXNG_NOT_ALLOWED:
3197 case XML_RELAXNG_DATATYPE:
3198 case XML_RELAXNG_LIST:
3199 case XML_RELAXNG_PARAM:
3200 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003201 /* This should not happen and generate an internal error */
3202 fprintf(stderr, "RNG internal error trying to compile %s\n",
3203 xmlRelaxNGDefName(def));
3204 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003205 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003206 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003207}
3208
3209/**
3210 * xmlRelaxNGTryCompile:
3211 * ctxt: the RelaxNG parser context
3212 * @define: the definition tree to compile
3213 *
3214 * Try to compile the set of definitions, it works recursively,
3215 * possibly ignoring parts which cannot be compiled.
3216 *
3217 * Returns 0 if success and -1 in case of error
3218 */
3219static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003220xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3221{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003222 int ret = 0;
3223 xmlRelaxNGDefinePtr list;
3224
Daniel Veillard4c004142003-10-07 11:33:24 +00003225 if ((ctxt == NULL) || (def == NULL))
3226 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003227
3228 if ((def->type == XML_RELAXNG_START) ||
3229 (def->type == XML_RELAXNG_ELEMENT)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003230 ret = xmlRelaxNGIsCompileable(def);
3231 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
3232 ctxt->am = NULL;
3233 ret = xmlRelaxNGCompile(ctxt, def);
Daniel Veillard2134ab12003-07-23 19:56:29 +00003234#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00003235 if (ret == 0) {
3236 if (def->type == XML_RELAXNG_START)
3237 xmlGenericError(xmlGenericErrorContext,
3238 "compiled the start\n");
3239 else
3240 xmlGenericError(xmlGenericErrorContext,
3241 "compiled element %s\n", def->name);
3242 } else {
3243 if (def->type == XML_RELAXNG_START)
3244 xmlGenericError(xmlGenericErrorContext,
3245 "failed to compile the start\n");
3246 else
3247 xmlGenericError(xmlGenericErrorContext,
3248 "failed to compile element %s\n",
3249 def->name);
3250 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003251#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003252 return (ret);
3253 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003254 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003255 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003256 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003257 ret = xmlRelaxNGTryCompile(ctxt, def->content);
3258 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003259 case XML_RELAXNG_TEXT:
3260 case XML_RELAXNG_DATATYPE:
3261 case XML_RELAXNG_LIST:
3262 case XML_RELAXNG_PARAM:
3263 case XML_RELAXNG_VALUE:
3264 case XML_RELAXNG_EMPTY:
3265 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003266 ret = 0;
3267 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003268 case XML_RELAXNG_OPTIONAL:
3269 case XML_RELAXNG_ZEROORMORE:
3270 case XML_RELAXNG_ONEORMORE:
3271 case XML_RELAXNG_CHOICE:
3272 case XML_RELAXNG_GROUP:
3273 case XML_RELAXNG_DEF:
Daniel Veillard2134ab12003-07-23 19:56:29 +00003274 case XML_RELAXNG_START:
3275 case XML_RELAXNG_REF:
3276 case XML_RELAXNG_EXTERNALREF:
3277 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003278 list = def->content;
3279 while (list != NULL) {
3280 ret = xmlRelaxNGTryCompile(ctxt, list);
3281 if (ret != 0)
3282 break;
3283 list = list->next;
3284 }
3285 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003286 case XML_RELAXNG_EXCEPT:
3287 case XML_RELAXNG_ATTRIBUTE:
3288 case XML_RELAXNG_INTERLEAVE:
3289 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00003290 ret = 0;
3291 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003292 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003293 return (ret);
Daniel Veillard952379b2003-03-17 15:37:12 +00003294}
3295
3296/************************************************************************
3297 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00003298 * Parsing functions *
3299 * *
3300 ************************************************************************/
3301
Daniel Veillard4c004142003-10-07 11:33:24 +00003302static xmlRelaxNGDefinePtr xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr
3303 ctxt, xmlNodePtr node);
3304static xmlRelaxNGDefinePtr xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr
3305 ctxt, xmlNodePtr node);
3306static xmlRelaxNGDefinePtr xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr
3307 ctxt, xmlNodePtr nodes,
3308 int group);
3309static xmlRelaxNGDefinePtr xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr
3310 ctxt, xmlNodePtr node);
3311static xmlRelaxNGPtr xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt,
3312 xmlNodePtr node);
3313static int xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
3314 xmlNodePtr nodes);
3315static xmlRelaxNGDefinePtr xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr
3316 ctxt, xmlNodePtr node,
3317 xmlRelaxNGDefinePtr
3318 def);
3319static xmlRelaxNGGrammarPtr xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr
3320 ctxt, xmlNodePtr nodes);
3321static int xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
3322 xmlRelaxNGDefinePtr define,
3323 xmlNodePtr elem);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003324
3325
Daniel Veillard249d7bb2003-03-19 21:02:29 +00003326#define IS_BLANK_NODE(n) (xmlRelaxNGIsBlank((n)->content))
Daniel Veillard6eadf632003-01-23 18:29:16 +00003327
3328/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00003329 * xmlRelaxNGIsNullable:
3330 * @define: the definition to verify
3331 *
3332 * Check if a definition is nullable.
3333 *
3334 * Returns 1 if yes, 0 if no and -1 in case of error
3335 */
3336static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003337xmlRelaxNGIsNullable(xmlRelaxNGDefinePtr define)
3338{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003339 int ret;
Daniel Veillard4c004142003-10-07 11:33:24 +00003340
Daniel Veillardfd573f12003-03-16 17:52:32 +00003341 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003342 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003343
Daniel Veillarde063f482003-03-21 16:53:17 +00003344 if (define->dflags & IS_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003345 return (1);
Daniel Veillarde063f482003-03-21 16:53:17 +00003346 if (define->dflags & IS_NOT_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003347 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003348 switch (define->type) {
3349 case XML_RELAXNG_EMPTY:
3350 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003351 ret = 1;
3352 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003353 case XML_RELAXNG_NOOP:
3354 case XML_RELAXNG_DEF:
3355 case XML_RELAXNG_REF:
3356 case XML_RELAXNG_EXTERNALREF:
3357 case XML_RELAXNG_PARENTREF:
3358 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003359 ret = xmlRelaxNGIsNullable(define->content);
3360 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003361 case XML_RELAXNG_EXCEPT:
3362 case XML_RELAXNG_NOT_ALLOWED:
3363 case XML_RELAXNG_ELEMENT:
3364 case XML_RELAXNG_DATATYPE:
3365 case XML_RELAXNG_PARAM:
3366 case XML_RELAXNG_VALUE:
3367 case XML_RELAXNG_LIST:
3368 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003369 ret = 0;
3370 break;
3371 case XML_RELAXNG_CHOICE:{
3372 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003373
Daniel Veillard4c004142003-10-07 11:33:24 +00003374 while (list != NULL) {
3375 ret = xmlRelaxNGIsNullable(list);
3376 if (ret != 0)
3377 goto done;
3378 list = list->next;
3379 }
3380 ret = 0;
3381 break;
3382 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003383 case XML_RELAXNG_START:
3384 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003385 case XML_RELAXNG_GROUP:{
3386 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003387
Daniel Veillard4c004142003-10-07 11:33:24 +00003388 while (list != NULL) {
3389 ret = xmlRelaxNGIsNullable(list);
3390 if (ret != 1)
3391 goto done;
3392 list = list->next;
3393 }
3394 return (1);
3395 }
3396 default:
3397 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003398 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003399 done:
Daniel Veillardfd573f12003-03-16 17:52:32 +00003400 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003401 define->dflags |= IS_NOT_NULLABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003402 if (ret == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00003403 define->dflags |= IS_NULLABLE;
3404 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003405}
3406
3407/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00003408 * xmlRelaxNGIsBlank:
3409 * @str: a string
3410 *
3411 * Check if a string is ignorable c.f. 4.2. Whitespace
3412 *
3413 * Returns 1 if the string is NULL or made of blanks chars, 0 otherwise
3414 */
3415static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003416xmlRelaxNGIsBlank(xmlChar * str)
3417{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003418 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003419 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003420 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00003421 if (!(IS_BLANK_CH(*str)))
Daniel Veillard4c004142003-10-07 11:33:24 +00003422 return (0);
3423 str++;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003424 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003425 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003426}
3427
Daniel Veillard6eadf632003-01-23 18:29:16 +00003428/**
3429 * xmlRelaxNGGetDataTypeLibrary:
3430 * @ctxt: a Relax-NG parser context
3431 * @node: the current data or value element
3432 *
3433 * Applies algorithm from 4.3. datatypeLibrary attribute
3434 *
3435 * Returns the datatypeLibary value or NULL if not found
3436 */
3437static xmlChar *
3438xmlRelaxNGGetDataTypeLibrary(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00003439 xmlNodePtr node)
3440{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003441 xmlChar *ret, *escape;
3442
Daniel Veillard6eadf632003-01-23 18:29:16 +00003443 if ((IS_RELAXNG(node, "data")) || (IS_RELAXNG(node, "value"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003444 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3445 if (ret != NULL) {
3446 if (ret[0] == 0) {
3447 xmlFree(ret);
3448 return (NULL);
3449 }
3450 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3451 if (escape == NULL) {
3452 return (ret);
3453 }
3454 xmlFree(ret);
3455 return (escape);
3456 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00003457 }
3458 node = node->parent;
3459 while ((node != NULL) && (node->type == XML_ELEMENT_NODE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003460 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3461 if (ret != NULL) {
3462 if (ret[0] == 0) {
3463 xmlFree(ret);
3464 return (NULL);
3465 }
3466 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3467 if (escape == NULL) {
3468 return (ret);
3469 }
3470 xmlFree(ret);
3471 return (escape);
3472 }
3473 node = node->parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003474 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003475 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003476}
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003477
3478/**
Daniel Veillardedc91922003-01-26 00:52:04 +00003479 * xmlRelaxNGParseValue:
3480 * @ctxt: a Relax-NG parser context
3481 * @node: the data node.
3482 *
3483 * parse the content of a RelaxNG value node.
3484 *
3485 * Returns the definition pointer or NULL in case of error
3486 */
3487static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003488xmlRelaxNGParseValue(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3489{
Daniel Veillardedc91922003-01-26 00:52:04 +00003490 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillard5f1946a2003-03-31 16:38:16 +00003491 xmlRelaxNGTypeLibraryPtr lib = NULL;
Daniel Veillardedc91922003-01-26 00:52:04 +00003492 xmlChar *type;
3493 xmlChar *library;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003494 int success = 0;
Daniel Veillardedc91922003-01-26 00:52:04 +00003495
Daniel Veillardfd573f12003-03-16 17:52:32 +00003496 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00003497 if (def == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003498 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003499 def->type = XML_RELAXNG_VALUE;
Daniel Veillardedc91922003-01-26 00:52:04 +00003500
3501 type = xmlGetProp(node, BAD_CAST "type");
3502 if (type != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003503 xmlRelaxNGNormExtSpace(type);
3504 if (xmlValidateNCName(type, 0)) {
3505 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3506 "value type '%s' is not an NCName\n", type, NULL);
3507 }
3508 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3509 if (library == NULL)
3510 library =
3511 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillardedc91922003-01-26 00:52:04 +00003512
Daniel Veillard4c004142003-10-07 11:33:24 +00003513 def->name = type;
3514 def->ns = library;
Daniel Veillardedc91922003-01-26 00:52:04 +00003515
Daniel Veillard4c004142003-10-07 11:33:24 +00003516 lib = (xmlRelaxNGTypeLibraryPtr)
3517 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
3518 if (lib == NULL) {
3519 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3520 "Use of unregistered type library '%s'\n", library,
3521 NULL);
3522 def->data = NULL;
3523 } else {
3524 def->data = lib;
3525 if (lib->have == NULL) {
3526 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3527 "Internal error with type library '%s': no 'have'\n",
3528 library, NULL);
3529 } else {
3530 success = lib->have(lib->data, def->name);
3531 if (success != 1) {
3532 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3533 "Error type '%s' is not exported by type library '%s'\n",
3534 def->name, library);
3535 }
3536 }
3537 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003538 }
3539 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003540 def->value = xmlStrdup(BAD_CAST "");
Daniel Veillard39eb88b2003-03-11 11:21:28 +00003541 } else if (((node->children->type != XML_TEXT_NODE) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00003542 (node->children->type != XML_CDATA_SECTION_NODE)) ||
3543 (node->children->next != NULL)) {
3544 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_EXPECTED,
3545 "Expecting a single text value for <value>content\n",
3546 NULL, NULL);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003547 } else if (def != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003548 def->value = xmlNodeGetContent(node);
3549 if (def->value == NULL) {
3550 xmlRngPErr(ctxt, node, XML_RNGP_VALUE_NO_CONTENT,
3551 "Element <value> has no content\n", NULL, NULL);
3552 } else if ((lib != NULL) && (lib->check != NULL) && (success == 1)) {
3553 void *val = NULL;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003554
Daniel Veillard4c004142003-10-07 11:33:24 +00003555 success =
3556 lib->check(lib->data, def->name, def->value, &val, node);
3557 if (success != 1) {
3558 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_VALUE,
3559 "Value '%s' is not acceptable for type '%s'\n",
3560 def->value, def->name);
3561 } else {
3562 if (val != NULL)
3563 def->attrs = val;
3564 }
3565 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003566 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003567 return (def);
Daniel Veillardedc91922003-01-26 00:52:04 +00003568}
3569
3570/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003571 * xmlRelaxNGParseData:
3572 * @ctxt: a Relax-NG parser context
3573 * @node: the data node.
3574 *
3575 * parse the content of a RelaxNG data node.
3576 *
3577 * Returns the definition pointer or NULL in case of error
3578 */
3579static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003580xmlRelaxNGParseData(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3581{
Daniel Veillard14b56432006-03-09 18:41:40 +00003582 xmlRelaxNGDefinePtr def = NULL, except;
Daniel Veillard8fe98712003-02-19 00:19:14 +00003583 xmlRelaxNGDefinePtr param, lastparam = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003584 xmlRelaxNGTypeLibraryPtr lib;
3585 xmlChar *type;
3586 xmlChar *library;
3587 xmlNodePtr content;
3588 int tmp;
3589
3590 type = xmlGetProp(node, BAD_CAST "type");
3591 if (type == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003592 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_MISSING, "data has no type\n", NULL,
3593 NULL);
3594 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003595 }
Daniel Veillardd2298792003-02-14 16:54:11 +00003596 xmlRelaxNGNormExtSpace(type);
3597 if (xmlValidateNCName(type, 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003598 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3599 "data type '%s' is not an NCName\n", type, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00003600 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003601 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3602 if (library == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003603 library =
3604 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003605
Daniel Veillardfd573f12003-03-16 17:52:32 +00003606 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003607 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003608 xmlFree(type);
3609 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003610 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003611 def->type = XML_RELAXNG_DATATYPE;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003612 def->name = type;
3613 def->ns = library;
3614
3615 lib = (xmlRelaxNGTypeLibraryPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00003616 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003617 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003618 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3619 "Use of unregistered type library '%s'\n", library,
3620 NULL);
3621 def->data = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003622 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003623 def->data = lib;
3624 if (lib->have == NULL) {
3625 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3626 "Internal error with type library '%s': no 'have'\n",
3627 library, NULL);
3628 } else {
3629 tmp = lib->have(lib->data, def->name);
3630 if (tmp != 1) {
3631 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3632 "Error type '%s' is not exported by type library '%s'\n",
3633 def->name, library);
3634 } else
3635 if ((xmlStrEqual
3636 (library,
3637 BAD_CAST
3638 "http://www.w3.org/2001/XMLSchema-datatypes"))
3639 && ((xmlStrEqual(def->name, BAD_CAST "IDREF"))
3640 || (xmlStrEqual(def->name, BAD_CAST "IDREFS")))) {
3641 ctxt->idref = 1;
3642 }
3643 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003644 }
3645 content = node->children;
Daniel Veillard416589a2003-02-17 17:25:42 +00003646
3647 /*
3648 * Handle optional params
3649 */
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003650 while (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003651 if (!xmlStrEqual(content->name, BAD_CAST "param"))
3652 break;
3653 if (xmlStrEqual(library,
3654 BAD_CAST "http://relaxng.org/ns/structure/1.0")) {
3655 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_FORBIDDEN,
3656 "Type library '%s' does not allow type parameters\n",
3657 library, NULL);
3658 content = content->next;
3659 while ((content != NULL) &&
3660 (xmlStrEqual(content->name, BAD_CAST "param")))
3661 content = content->next;
3662 } else {
3663 param = xmlRelaxNGNewDefine(ctxt, node);
3664 if (param != NULL) {
3665 param->type = XML_RELAXNG_PARAM;
3666 param->name = xmlGetProp(content, BAD_CAST "name");
3667 if (param->name == NULL) {
3668 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_NAME_MISSING,
3669 "param has no name\n", NULL, NULL);
3670 }
3671 param->value = xmlNodeGetContent(content);
3672 if (lastparam == NULL) {
3673 def->attrs = lastparam = param;
3674 } else {
3675 lastparam->next = param;
3676 lastparam = param;
3677 }
3678 if (lib != NULL) {
3679 }
3680 }
3681 content = content->next;
3682 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003683 }
Daniel Veillard416589a2003-02-17 17:25:42 +00003684 /*
3685 * Handle optional except
3686 */
Daniel Veillard4c004142003-10-07 11:33:24 +00003687 if ((content != NULL)
3688 && (xmlStrEqual(content->name, BAD_CAST "except"))) {
3689 xmlNodePtr child;
Daniel Veillard14b56432006-03-09 18:41:40 +00003690 xmlRelaxNGDefinePtr tmp2, last = NULL;
Daniel Veillard416589a2003-02-17 17:25:42 +00003691
Daniel Veillard4c004142003-10-07 11:33:24 +00003692 except = xmlRelaxNGNewDefine(ctxt, node);
3693 if (except == NULL) {
3694 return (def);
3695 }
3696 except->type = XML_RELAXNG_EXCEPT;
3697 child = content->children;
Daniel Veillard14b56432006-03-09 18:41:40 +00003698 def->content = except;
Daniel Veillard4c004142003-10-07 11:33:24 +00003699 if (child == NULL) {
3700 xmlRngPErr(ctxt, content, XML_RNGP_EXCEPT_NO_CONTENT,
3701 "except has no content\n", NULL, NULL);
3702 }
3703 while (child != NULL) {
3704 tmp2 = xmlRelaxNGParsePattern(ctxt, child);
3705 if (tmp2 != NULL) {
Daniel Veillard14b56432006-03-09 18:41:40 +00003706 if (last == NULL) {
3707 except->content = last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003708 } else {
Daniel Veillard14b56432006-03-09 18:41:40 +00003709 last->next = tmp2;
3710 last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003711 }
3712 }
3713 child = child->next;
3714 }
3715 content = content->next;
Daniel Veillard416589a2003-02-17 17:25:42 +00003716 }
3717 /*
3718 * Check there is no unhandled data
3719 */
3720 if (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003721 xmlRngPErr(ctxt, content, XML_RNGP_DATA_CONTENT,
3722 "Element data has unexpected content %s\n",
3723 content->name, NULL);
Daniel Veillard416589a2003-02-17 17:25:42 +00003724 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003725
Daniel Veillard4c004142003-10-07 11:33:24 +00003726 return (def);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003727}
3728
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003729static const xmlChar *invalidName = BAD_CAST "\1";
3730
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003731/**
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003732 * xmlRelaxNGCompareNameClasses:
3733 * @defs1: the first element/attribute defs
3734 * @defs2: the second element/attribute defs
3735 * @name: the restriction on the name
3736 * @ns: the restriction on the namespace
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003737 *
3738 * Compare the 2 lists of element definitions. The comparison is
3739 * that if both lists do not accept the same QNames, it returns 1
3740 * If the 2 lists can accept the same QName the comparison returns 0
3741 *
3742 * Returns 1 disttinct, 0 if equal
3743 */
3744static int
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003745xmlRelaxNGCompareNameClasses(xmlRelaxNGDefinePtr def1,
Daniel Veillard4c004142003-10-07 11:33:24 +00003746 xmlRelaxNGDefinePtr def2)
3747{
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003748 int ret = 1;
3749 xmlNode node;
3750 xmlNs ns;
3751 xmlRelaxNGValidCtxt ctxt;
Daniel Veillard4c004142003-10-07 11:33:24 +00003752
Daniel Veillard42f12e92003-03-07 18:32:59 +00003753 memset(&ctxt, 0, sizeof(xmlRelaxNGValidCtxt));
3754
Daniel Veillardb30ca312005-09-04 13:50:03 +00003755 ctxt.flags = FLAGS_IGNORABLE | FLAGS_NOERROR;
3756
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003757 if ((def1->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003758 (def1->type == XML_RELAXNG_ATTRIBUTE)) {
3759 if (def2->type == XML_RELAXNG_TEXT)
3760 return (1);
3761 if (def1->name != NULL) {
3762 node.name = def1->name;
3763 } else {
3764 node.name = invalidName;
3765 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003766 if (def1->ns != NULL) {
3767 if (def1->ns[0] == 0) {
3768 node.ns = NULL;
3769 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003770 node.ns = &ns;
Daniel Veillard4c004142003-10-07 11:33:24 +00003771 ns.href = def1->ns;
3772 }
3773 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003774 node.ns = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00003775 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003776 if (xmlRelaxNGElementMatch(&ctxt, def2, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003777 if (def1->nameClass != NULL) {
3778 ret = xmlRelaxNGCompareNameClasses(def1->nameClass, def2);
3779 } else {
3780 ret = 0;
3781 }
3782 } else {
3783 ret = 1;
3784 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003785 } else if (def1->type == XML_RELAXNG_TEXT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003786 if (def2->type == XML_RELAXNG_TEXT)
3787 return (0);
3788 return (1);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003789 } else if (def1->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003790 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003791 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003792 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003793 }
3794 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003795 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003796 if ((def2->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003797 (def2->type == XML_RELAXNG_ATTRIBUTE)) {
3798 if (def2->name != NULL) {
3799 node.name = def2->name;
3800 } else {
3801 node.name = invalidName;
3802 }
3803 node.ns = &ns;
3804 if (def2->ns != NULL) {
3805 if (def2->ns[0] == 0) {
3806 node.ns = NULL;
3807 } else {
3808 ns.href = def2->ns;
3809 }
3810 } else {
3811 ns.href = invalidName;
3812 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003813 if (xmlRelaxNGElementMatch(&ctxt, def1, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003814 if (def2->nameClass != NULL) {
3815 ret = xmlRelaxNGCompareNameClasses(def2->nameClass, def1);
3816 } else {
3817 ret = 0;
3818 }
3819 } else {
3820 ret = 1;
3821 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003822 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003823 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003824 }
3825
Daniel Veillard4c004142003-10-07 11:33:24 +00003826 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003827}
3828
3829/**
3830 * xmlRelaxNGCompareElemDefLists:
3831 * @ctxt: a Relax-NG parser context
3832 * @defs1: the first list of element/attribute defs
3833 * @defs2: the second list of element/attribute defs
3834 *
3835 * Compare the 2 lists of element or attribute definitions. The comparison
3836 * is that if both lists do not accept the same QNames, it returns 1
3837 * If the 2 lists can accept the same QName the comparison returns 0
3838 *
3839 * Returns 1 disttinct, 0 if equal
3840 */
3841static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003842xmlRelaxNGCompareElemDefLists(xmlRelaxNGParserCtxtPtr ctxt
3843 ATTRIBUTE_UNUSED, xmlRelaxNGDefinePtr * def1,
3844 xmlRelaxNGDefinePtr * def2)
3845{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003846 xmlRelaxNGDefinePtr *basedef2 = def2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003847
Daniel Veillard154877e2003-01-30 12:17:05 +00003848 if ((def1 == NULL) || (def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003849 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003850 if ((*def1 == NULL) || (*def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003851 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003852 while (*def1 != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003853 while ((*def2) != NULL) {
3854 if (xmlRelaxNGCompareNameClasses(*def1, *def2) == 0)
3855 return (0);
3856 def2++;
3857 }
3858 def2 = basedef2;
3859 def1++;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003860 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003861 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003862}
3863
3864/**
Daniel Veillardce192eb2003-04-16 15:58:05 +00003865 * xmlRelaxNGGenerateAttributes:
3866 * @ctxt: a Relax-NG parser context
3867 * @def: the definition definition
3868 *
3869 * Check if the definition can only generate attributes
3870 *
3871 * Returns 1 if yes, 0 if no and -1 in case of error.
3872 */
3873static int
3874xmlRelaxNGGenerateAttributes(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003875 xmlRelaxNGDefinePtr def)
3876{
Daniel Veillardce192eb2003-04-16 15:58:05 +00003877 xmlRelaxNGDefinePtr parent, cur, tmp;
3878
3879 /*
3880 * Don't run that check in case of error. Infinite recursion
3881 * becomes possible.
3882 */
3883 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003884 return (-1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003885
3886 parent = NULL;
3887 cur = def;
3888 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003889 if ((cur->type == XML_RELAXNG_ELEMENT) ||
3890 (cur->type == XML_RELAXNG_TEXT) ||
3891 (cur->type == XML_RELAXNG_DATATYPE) ||
3892 (cur->type == XML_RELAXNG_PARAM) ||
3893 (cur->type == XML_RELAXNG_LIST) ||
3894 (cur->type == XML_RELAXNG_VALUE) ||
3895 (cur->type == XML_RELAXNG_EMPTY))
3896 return (0);
3897 if ((cur->type == XML_RELAXNG_CHOICE) ||
3898 (cur->type == XML_RELAXNG_INTERLEAVE) ||
3899 (cur->type == XML_RELAXNG_GROUP) ||
3900 (cur->type == XML_RELAXNG_ONEORMORE) ||
3901 (cur->type == XML_RELAXNG_ZEROORMORE) ||
3902 (cur->type == XML_RELAXNG_OPTIONAL) ||
3903 (cur->type == XML_RELAXNG_PARENTREF) ||
3904 (cur->type == XML_RELAXNG_EXTERNALREF) ||
3905 (cur->type == XML_RELAXNG_REF) ||
3906 (cur->type == XML_RELAXNG_DEF)) {
3907 if (cur->content != NULL) {
3908 parent = cur;
3909 cur = cur->content;
3910 tmp = cur;
3911 while (tmp != NULL) {
3912 tmp->parent = parent;
3913 tmp = tmp->next;
3914 }
3915 continue;
3916 }
3917 }
3918 if (cur == def)
3919 break;
3920 if (cur->next != NULL) {
3921 cur = cur->next;
3922 continue;
3923 }
3924 do {
3925 cur = cur->parent;
3926 if (cur == NULL)
3927 break;
3928 if (cur == def)
3929 return (1);
3930 if (cur->next != NULL) {
3931 cur = cur->next;
3932 break;
3933 }
3934 } while (cur != NULL);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003935 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003936 return (1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003937}
Daniel Veillard4c004142003-10-07 11:33:24 +00003938
Daniel Veillardce192eb2003-04-16 15:58:05 +00003939/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003940 * xmlRelaxNGGetElements:
3941 * @ctxt: a Relax-NG parser context
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003942 * @def: the definition definition
3943 * @eora: gather elements (0) or attributes (1)
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003944 *
3945 * Compute the list of top elements a definition can generate
3946 *
3947 * Returns a list of elements or NULL if none was found.
3948 */
3949static xmlRelaxNGDefinePtr *
3950xmlRelaxNGGetElements(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003951 xmlRelaxNGDefinePtr def, int eora)
3952{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003953 xmlRelaxNGDefinePtr *ret = NULL, parent, cur, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003954 int len = 0;
3955 int max = 0;
3956
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003957 /*
3958 * Don't run that check in case of error. Infinite recursion
3959 * becomes possible.
3960 */
3961 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003962 return (NULL);
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003963
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003964 parent = NULL;
3965 cur = def;
3966 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003967 if (((eora == 0) && ((cur->type == XML_RELAXNG_ELEMENT) ||
3968 (cur->type == XML_RELAXNG_TEXT))) ||
3969 ((eora == 1) && (cur->type == XML_RELAXNG_ATTRIBUTE))) {
3970 if (ret == NULL) {
3971 max = 10;
3972 ret = (xmlRelaxNGDefinePtr *)
3973 xmlMalloc((max + 1) * sizeof(xmlRelaxNGDefinePtr));
3974 if (ret == NULL) {
3975 xmlRngPErrMemory(ctxt, "getting element list\n");
3976 return (NULL);
3977 }
3978 } else if (max <= len) {
Daniel Veillard079f6a72004-09-23 13:15:03 +00003979 xmlRelaxNGDefinePtr *temp;
3980
Daniel Veillard4c004142003-10-07 11:33:24 +00003981 max *= 2;
Daniel Veillard079f6a72004-09-23 13:15:03 +00003982 temp = xmlRealloc(ret,
Daniel Veillard4c004142003-10-07 11:33:24 +00003983 (max + 1) * sizeof(xmlRelaxNGDefinePtr));
Daniel Veillard079f6a72004-09-23 13:15:03 +00003984 if (temp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003985 xmlRngPErrMemory(ctxt, "getting element list\n");
Daniel Veillard079f6a72004-09-23 13:15:03 +00003986 xmlFree(ret);
Daniel Veillard4c004142003-10-07 11:33:24 +00003987 return (NULL);
3988 }
Daniel Veillard079f6a72004-09-23 13:15:03 +00003989 ret = temp;
Daniel Veillard4c004142003-10-07 11:33:24 +00003990 }
3991 ret[len++] = cur;
3992 ret[len] = NULL;
3993 } else if ((cur->type == XML_RELAXNG_CHOICE) ||
3994 (cur->type == XML_RELAXNG_INTERLEAVE) ||
3995 (cur->type == XML_RELAXNG_GROUP) ||
3996 (cur->type == XML_RELAXNG_ONEORMORE) ||
3997 (cur->type == XML_RELAXNG_ZEROORMORE) ||
3998 (cur->type == XML_RELAXNG_OPTIONAL) ||
3999 (cur->type == XML_RELAXNG_PARENTREF) ||
4000 (cur->type == XML_RELAXNG_REF) ||
William M. Brack236c8c02004-03-20 11:32:36 +00004001 (cur->type == XML_RELAXNG_DEF) ||
4002 (cur->type == XML_RELAXNG_EXTERNALREF)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004003 /*
4004 * Don't go within elements or attributes or string values.
4005 * Just gather the element top list
4006 */
4007 if (cur->content != NULL) {
4008 parent = cur;
4009 cur = cur->content;
4010 tmp = cur;
4011 while (tmp != NULL) {
4012 tmp->parent = parent;
4013 tmp = tmp->next;
4014 }
4015 continue;
4016 }
4017 }
4018 if (cur == def)
4019 break;
4020 if (cur->next != NULL) {
4021 cur = cur->next;
4022 continue;
4023 }
4024 do {
4025 cur = cur->parent;
4026 if (cur == NULL)
4027 break;
4028 if (cur == def)
4029 return (ret);
4030 if (cur->next != NULL) {
4031 cur = cur->next;
4032 break;
4033 }
4034 } while (cur != NULL);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004035 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004036 return (ret);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004037}
Daniel Veillard4c004142003-10-07 11:33:24 +00004038
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004039/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004040 * xmlRelaxNGCheckChoiceDeterminism:
4041 * @ctxt: a Relax-NG parser context
4042 * @def: the choice definition
4043 *
4044 * Also used to find indeterministic pattern in choice
4045 */
4046static void
4047xmlRelaxNGCheckChoiceDeterminism(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004048 xmlRelaxNGDefinePtr def)
4049{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004050 xmlRelaxNGDefinePtr **list;
4051 xmlRelaxNGDefinePtr cur;
4052 int nbchild = 0, i, j, ret;
4053 int is_nullable = 0;
4054 int is_indeterminist = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004055 xmlHashTablePtr triage = NULL;
4056 int is_triable = 1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004057
Daniel Veillard4c004142003-10-07 11:33:24 +00004058 if ((def == NULL) || (def->type != XML_RELAXNG_CHOICE))
4059 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004060
Daniel Veillarde063f482003-03-21 16:53:17 +00004061 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004062 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004063
Daniel Veillardfd573f12003-03-16 17:52:32 +00004064 /*
4065 * Don't run that check in case of error. Infinite recursion
4066 * becomes possible.
4067 */
4068 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004069 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004070
4071 is_nullable = xmlRelaxNGIsNullable(def);
4072
4073 cur = def->content;
4074 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004075 nbchild++;
4076 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004077 }
4078
4079 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004080 sizeof(xmlRelaxNGDefinePtr
4081 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004082 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004083 xmlRngPErrMemory(ctxt, "building choice\n");
4084 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004085 }
4086 i = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004087 /*
4088 * a bit strong but safe
4089 */
4090 if (is_nullable == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004091 triage = xmlHashCreate(10);
Daniel Veillarde063f482003-03-21 16:53:17 +00004092 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004093 is_triable = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004094 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004095 cur = def->content;
4096 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004097 list[i] = xmlRelaxNGGetElements(ctxt, cur, 0);
4098 if ((list[i] == NULL) || (list[i][0] == NULL)) {
4099 is_triable = 0;
4100 } else if (is_triable == 1) {
4101 xmlRelaxNGDefinePtr *tmp;
4102 int res;
Daniel Veillarde063f482003-03-21 16:53:17 +00004103
Daniel Veillard4c004142003-10-07 11:33:24 +00004104 tmp = list[i];
4105 while ((*tmp != NULL) && (is_triable == 1)) {
4106 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4107 res = xmlHashAddEntry2(triage,
4108 BAD_CAST "#text", NULL,
4109 (void *) cur);
4110 if (res != 0)
4111 is_triable = -1;
4112 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4113 ((*tmp)->name != NULL)) {
4114 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4115 res = xmlHashAddEntry2(triage,
4116 (*tmp)->name, NULL,
4117 (void *) cur);
4118 else
4119 res = xmlHashAddEntry2(triage,
4120 (*tmp)->name, (*tmp)->ns,
4121 (void *) cur);
4122 if (res != 0)
4123 is_triable = -1;
4124 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4125 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4126 res = xmlHashAddEntry2(triage,
4127 BAD_CAST "#any", NULL,
4128 (void *) cur);
4129 else
4130 res = xmlHashAddEntry2(triage,
4131 BAD_CAST "#any", (*tmp)->ns,
4132 (void *) cur);
4133 if (res != 0)
4134 is_triable = -1;
4135 } else {
4136 is_triable = -1;
4137 }
4138 tmp++;
4139 }
4140 }
4141 i++;
4142 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004143 }
4144
Daniel Veillard4c004142003-10-07 11:33:24 +00004145 for (i = 0; i < nbchild; i++) {
4146 if (list[i] == NULL)
4147 continue;
4148 for (j = 0; j < i; j++) {
4149 if (list[j] == NULL)
4150 continue;
4151 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4152 if (ret == 0) {
4153 is_indeterminist = 1;
4154 }
4155 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004156 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004157 for (i = 0; i < nbchild; i++) {
4158 if (list[i] != NULL)
4159 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004160 }
4161
4162 xmlFree(list);
4163 if (is_indeterminist) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004164 def->dflags |= IS_INDETERMINIST;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004165 }
Daniel Veillarde063f482003-03-21 16:53:17 +00004166 if (is_triable == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004167 def->dflags |= IS_TRIABLE;
4168 def->data = triage;
Daniel Veillarde063f482003-03-21 16:53:17 +00004169 } else if (triage != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004170 xmlHashFree(triage, NULL);
Daniel Veillarde063f482003-03-21 16:53:17 +00004171 }
4172 def->dflags |= IS_PROCESSED;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004173}
4174
4175/**
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004176 * xmlRelaxNGCheckGroupAttrs:
4177 * @ctxt: a Relax-NG parser context
4178 * @def: the group definition
4179 *
4180 * Detects violations of rule 7.3
4181 */
4182static void
4183xmlRelaxNGCheckGroupAttrs(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004184 xmlRelaxNGDefinePtr def)
4185{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004186 xmlRelaxNGDefinePtr **list;
4187 xmlRelaxNGDefinePtr cur;
4188 int nbchild = 0, i, j, ret;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004189
4190 if ((def == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00004191 ((def->type != XML_RELAXNG_GROUP) &&
4192 (def->type != XML_RELAXNG_ELEMENT)))
4193 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004194
Daniel Veillarde063f482003-03-21 16:53:17 +00004195 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004196 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004197
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004198 /*
4199 * Don't run that check in case of error. Infinite recursion
4200 * becomes possible.
4201 */
4202 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004203 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004204
Daniel Veillardfd573f12003-03-16 17:52:32 +00004205 cur = def->attrs;
4206 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004207 nbchild++;
4208 cur = cur->next;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004209 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004210 cur = def->content;
4211 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004212 nbchild++;
4213 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004214 }
4215
4216 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004217 sizeof(xmlRelaxNGDefinePtr
4218 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004219 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004220 xmlRngPErrMemory(ctxt, "building group\n");
4221 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004222 }
4223 i = 0;
4224 cur = def->attrs;
4225 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004226 list[i] = xmlRelaxNGGetElements(ctxt, cur, 1);
4227 i++;
4228 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004229 }
4230 cur = def->content;
4231 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004232 list[i] = xmlRelaxNGGetElements(ctxt, cur, 1);
4233 i++;
4234 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004235 }
4236
Daniel Veillard4c004142003-10-07 11:33:24 +00004237 for (i = 0; i < nbchild; i++) {
4238 if (list[i] == NULL)
4239 continue;
4240 for (j = 0; j < i; j++) {
4241 if (list[j] == NULL)
4242 continue;
4243 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4244 if (ret == 0) {
4245 xmlRngPErr(ctxt, def->node, XML_RNGP_GROUP_ATTR_CONFLICT,
4246 "Attributes conflicts in group\n", NULL, NULL);
4247 }
4248 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004249 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004250 for (i = 0; i < nbchild; i++) {
4251 if (list[i] != NULL)
4252 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004253 }
4254
4255 xmlFree(list);
Daniel Veillarde063f482003-03-21 16:53:17 +00004256 def->dflags |= IS_PROCESSED;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004257}
4258
4259/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004260 * xmlRelaxNGComputeInterleaves:
4261 * @def: the interleave definition
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004262 * @ctxt: a Relax-NG parser context
Daniel Veillardfd573f12003-03-16 17:52:32 +00004263 * @name: the definition name
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004264 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00004265 * A lot of work for preprocessing interleave definitions
4266 * is potentially needed to get a decent execution speed at runtime
4267 * - trying to get a total order on the element nodes generated
4268 * by the interleaves, order the list of interleave definitions
4269 * following that order.
4270 * - if <text/> is used to handle mixed content, it is better to
4271 * flag this in the define and simplify the runtime checking
4272 * algorithm
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004273 */
4274static void
Daniel Veillardfd573f12003-03-16 17:52:32 +00004275xmlRelaxNGComputeInterleaves(xmlRelaxNGDefinePtr def,
Daniel Veillard4c004142003-10-07 11:33:24 +00004276 xmlRelaxNGParserCtxtPtr ctxt,
4277 xmlChar * name ATTRIBUTE_UNUSED)
4278{
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004279 xmlRelaxNGDefinePtr cur, *tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004280
Daniel Veillardfd573f12003-03-16 17:52:32 +00004281 xmlRelaxNGPartitionPtr partitions = NULL;
4282 xmlRelaxNGInterleaveGroupPtr *groups = NULL;
4283 xmlRelaxNGInterleaveGroupPtr group;
Daniel Veillard4c004142003-10-07 11:33:24 +00004284 int i, j, ret, res;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004285 int nbgroups = 0;
4286 int nbchild = 0;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004287 int is_mixed = 0;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004288 int is_determinist = 1;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004289
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004290 /*
4291 * Don't run that check in case of error. Infinite recursion
4292 * becomes possible.
4293 */
4294 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004295 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004296
Daniel Veillardfd573f12003-03-16 17:52:32 +00004297#ifdef DEBUG_INTERLEAVE
4298 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00004299 "xmlRelaxNGComputeInterleaves(%s)\n", name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004300#endif
4301 cur = def->content;
4302 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004303 nbchild++;
4304 cur = cur->next;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004305 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004306
Daniel Veillardfd573f12003-03-16 17:52:32 +00004307#ifdef DEBUG_INTERLEAVE
4308 xmlGenericError(xmlGenericErrorContext, " %d child\n", nbchild);
4309#endif
4310 groups = (xmlRelaxNGInterleaveGroupPtr *)
Daniel Veillard4c004142003-10-07 11:33:24 +00004311 xmlMalloc(nbchild * sizeof(xmlRelaxNGInterleaveGroupPtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004312 if (groups == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004313 goto error;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004314 cur = def->content;
4315 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004316 groups[nbgroups] = (xmlRelaxNGInterleaveGroupPtr)
4317 xmlMalloc(sizeof(xmlRelaxNGInterleaveGroup));
4318 if (groups[nbgroups] == NULL)
4319 goto error;
4320 if (cur->type == XML_RELAXNG_TEXT)
4321 is_mixed++;
4322 groups[nbgroups]->rule = cur;
4323 groups[nbgroups]->defs = xmlRelaxNGGetElements(ctxt, cur, 0);
4324 groups[nbgroups]->attrs = xmlRelaxNGGetElements(ctxt, cur, 1);
4325 nbgroups++;
4326 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004327 }
4328#ifdef DEBUG_INTERLEAVE
4329 xmlGenericError(xmlGenericErrorContext, " %d groups\n", nbgroups);
4330#endif
4331
4332 /*
4333 * Let's check that all rules makes a partitions according to 7.4
4334 */
4335 partitions = (xmlRelaxNGPartitionPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00004336 xmlMalloc(sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004337 if (partitions == NULL)
4338 goto error;
Daniel Veillard20863822003-03-22 17:51:47 +00004339 memset(partitions, 0, sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004340 partitions->nbgroups = nbgroups;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004341 partitions->triage = xmlHashCreate(nbgroups);
Daniel Veillard4c004142003-10-07 11:33:24 +00004342 for (i = 0; i < nbgroups; i++) {
4343 group = groups[i];
4344 for (j = i + 1; j < nbgroups; j++) {
4345 if (groups[j] == NULL)
4346 continue;
4347
4348 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->defs,
4349 groups[j]->defs);
4350 if (ret == 0) {
4351 xmlRngPErr(ctxt, def->node, XML_RNGP_ELEM_TEXT_CONFLICT,
4352 "Element or text conflicts in interleave\n",
4353 NULL, NULL);
4354 }
4355 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->attrs,
4356 groups[j]->attrs);
4357 if (ret == 0) {
4358 xmlRngPErr(ctxt, def->node, XML_RNGP_ATTR_CONFLICT,
4359 "Attributes conflicts in interleave\n", NULL,
4360 NULL);
4361 }
4362 }
4363 tmp = group->defs;
4364 if ((tmp != NULL) && (*tmp != NULL)) {
4365 while (*tmp != NULL) {
4366 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4367 res = xmlHashAddEntry2(partitions->triage,
4368 BAD_CAST "#text", NULL,
4369 (void *) (long) (i + 1));
4370 if (res != 0)
4371 is_determinist = -1;
4372 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4373 ((*tmp)->name != NULL)) {
4374 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4375 res = xmlHashAddEntry2(partitions->triage,
4376 (*tmp)->name, NULL,
4377 (void *) (long) (i + 1));
4378 else
4379 res = xmlHashAddEntry2(partitions->triage,
4380 (*tmp)->name, (*tmp)->ns,
4381 (void *) (long) (i + 1));
4382 if (res != 0)
4383 is_determinist = -1;
4384 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4385 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4386 res = xmlHashAddEntry2(partitions->triage,
4387 BAD_CAST "#any", NULL,
4388 (void *) (long) (i + 1));
4389 else
4390 res = xmlHashAddEntry2(partitions->triage,
4391 BAD_CAST "#any", (*tmp)->ns,
4392 (void *) (long) (i + 1));
4393 if ((*tmp)->nameClass != NULL)
4394 is_determinist = 2;
4395 if (res != 0)
4396 is_determinist = -1;
4397 } else {
4398 is_determinist = -1;
4399 }
4400 tmp++;
4401 }
4402 } else {
4403 is_determinist = 0;
4404 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004405 }
4406 partitions->groups = groups;
4407
4408 /*
4409 * and save the partition list back in the def
4410 */
4411 def->data = partitions;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004412 if (is_mixed != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004413 def->dflags |= IS_MIXED;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004414 if (is_determinist == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00004415 partitions->flags = IS_DETERMINIST;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004416 if (is_determinist == 2)
Daniel Veillard4c004142003-10-07 11:33:24 +00004417 partitions->flags = IS_DETERMINIST | IS_NEEDCHECK;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004418 return;
4419
Daniel Veillard4c004142003-10-07 11:33:24 +00004420 error:
4421 xmlRngPErrMemory(ctxt, "in interleave computation\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004422 if (groups != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004423 for (i = 0; i < nbgroups; i++)
4424 if (groups[i] != NULL) {
4425 if (groups[i]->defs != NULL)
4426 xmlFree(groups[i]->defs);
4427 xmlFree(groups[i]);
4428 }
4429 xmlFree(groups);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004430 }
4431 xmlRelaxNGFreePartition(partitions);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004432}
4433
4434/**
4435 * xmlRelaxNGParseInterleave:
4436 * @ctxt: a Relax-NG parser context
4437 * @node: the data node.
4438 *
4439 * parse the content of a RelaxNG interleave node.
4440 *
4441 * Returns the definition pointer or NULL in case of error
4442 */
4443static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004444xmlRelaxNGParseInterleave(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4445{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004446 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004447 xmlRelaxNGDefinePtr last = NULL, cur;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004448 xmlNodePtr child;
4449
Daniel Veillardfd573f12003-03-16 17:52:32 +00004450 def = xmlRelaxNGNewDefine(ctxt, node);
4451 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004452 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004453 }
4454 def->type = XML_RELAXNG_INTERLEAVE;
4455
4456 if (ctxt->interleaves == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004457 ctxt->interleaves = xmlHashCreate(10);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004458 if (ctxt->interleaves == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004459 xmlRngPErrMemory(ctxt, "create interleaves\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004460 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004461 char name[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00004462
Daniel Veillard4c004142003-10-07 11:33:24 +00004463 snprintf(name, 32, "interleave%d", ctxt->nbInterleaves++);
4464 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST name, def) < 0) {
4465 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_ADD,
4466 "Failed to add %s to hash table\n",
4467 (const xmlChar *) name, NULL);
4468 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004469 }
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004470 child = node->children;
Daniel Veillardd2298792003-02-14 16:54:11 +00004471 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004472 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_NO_CONTENT,
4473 "Element interleave is empty\n", NULL, NULL);
Daniel Veillard1564e6e2003-03-15 21:30:25 +00004474 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004475 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004476 if (IS_RELAXNG(child, "element")) {
4477 cur = xmlRelaxNGParseElement(ctxt, child);
4478 } else {
4479 cur = xmlRelaxNGParsePattern(ctxt, child);
4480 }
4481 if (cur != NULL) {
4482 cur->parent = def;
4483 if (last == NULL) {
4484 def->content = last = cur;
4485 } else {
4486 last->next = cur;
4487 last = cur;
4488 }
4489 }
4490 child = child->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004491 }
4492
Daniel Veillard4c004142003-10-07 11:33:24 +00004493 return (def);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004494}
Daniel Veillard6eadf632003-01-23 18:29:16 +00004495
4496/**
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004497 * xmlRelaxNGParseInclude:
4498 * @ctxt: a Relax-NG parser context
4499 * @node: the include node
4500 *
4501 * Integrate the content of an include node in the current grammar
4502 *
4503 * Returns 0 in case of success or -1 in case of error
4504 */
4505static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004506xmlRelaxNGParseInclude(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4507{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004508 xmlRelaxNGIncludePtr incl;
4509 xmlNodePtr root;
4510 int ret = 0, tmp;
4511
Daniel Veillard807daf82004-02-22 22:13:27 +00004512 incl = node->psvi;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004513 if (incl == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004514 xmlRngPErr(ctxt, node, XML_RNGP_INCLUDE_EMPTY,
4515 "Include node has no data\n", NULL, NULL);
4516 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004517 }
4518 root = xmlDocGetRootElement(incl->doc);
4519 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004520 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY, "Include document is empty\n",
4521 NULL, NULL);
4522 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004523 }
4524 if (!xmlStrEqual(root->name, BAD_CAST "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004525 xmlRngPErr(ctxt, node, XML_RNGP_GRAMMAR_MISSING,
4526 "Include document root is not a grammar\n", NULL, NULL);
4527 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004528 }
4529
4530 /*
4531 * Merge the definition from both the include and the internal list
4532 */
4533 if (root->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004534 tmp = xmlRelaxNGParseGrammarContent(ctxt, root->children);
4535 if (tmp != 0)
4536 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004537 }
4538 if (node->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004539 tmp = xmlRelaxNGParseGrammarContent(ctxt, node->children);
4540 if (tmp != 0)
4541 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004542 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004543 return (ret);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004544}
4545
4546/**
Daniel Veillard276be4a2003-01-24 01:03:34 +00004547 * xmlRelaxNGParseDefine:
4548 * @ctxt: a Relax-NG parser context
4549 * @node: the define node
4550 *
4551 * parse the content of a RelaxNG define element node.
4552 *
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004553 * Returns 0 in case of success or -1 in case of error
Daniel Veillard276be4a2003-01-24 01:03:34 +00004554 */
4555static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004556xmlRelaxNGParseDefine(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4557{
Daniel Veillard276be4a2003-01-24 01:03:34 +00004558 xmlChar *name;
4559 int ret = 0, tmp;
4560 xmlRelaxNGDefinePtr def;
4561 const xmlChar *olddefine;
4562
4563 name = xmlGetProp(node, BAD_CAST "name");
4564 if (name == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004565 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_NAME_MISSING,
4566 "define has no name\n", NULL, NULL);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004567 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004568 xmlRelaxNGNormExtSpace(name);
4569 if (xmlValidateNCName(name, 0)) {
4570 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_DEFINE_NAME,
4571 "define name '%s' is not an NCName\n", name, NULL);
4572 }
4573 def = xmlRelaxNGNewDefine(ctxt, node);
4574 if (def == NULL) {
4575 xmlFree(name);
4576 return (-1);
4577 }
4578 def->type = XML_RELAXNG_DEF;
4579 def->name = name;
4580 if (node->children == NULL) {
4581 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_EMPTY,
4582 "define has no children\n", NULL, NULL);
4583 } else {
4584 olddefine = ctxt->define;
4585 ctxt->define = name;
4586 def->content =
4587 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4588 ctxt->define = olddefine;
4589 }
4590 if (ctxt->grammar->defs == NULL)
4591 ctxt->grammar->defs = xmlHashCreate(10);
4592 if (ctxt->grammar->defs == NULL) {
4593 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4594 "Could not create definition hash\n", NULL, NULL);
4595 ret = -1;
4596 } else {
4597 tmp = xmlHashAddEntry(ctxt->grammar->defs, name, def);
4598 if (tmp < 0) {
4599 xmlRelaxNGDefinePtr prev;
Daniel Veillard154877e2003-01-30 12:17:05 +00004600
Daniel Veillard4c004142003-10-07 11:33:24 +00004601 prev = xmlHashLookup(ctxt->grammar->defs, name);
4602 if (prev == NULL) {
4603 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4604 "Internal error on define aggregation of %s\n",
4605 name, NULL);
4606 ret = -1;
4607 } else {
4608 while (prev->nextHash != NULL)
4609 prev = prev->nextHash;
4610 prev->nextHash = def;
4611 }
4612 }
4613 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00004614 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004615 return (ret);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004616}
4617
4618/**
Daniel Veillardfebcca42003-02-16 15:44:18 +00004619 * xmlRelaxNGProcessExternalRef:
4620 * @ctxt: the parser context
4621 * @node: the externlRef node
4622 *
4623 * Process and compile an externlRef node
4624 *
4625 * Returns the xmlRelaxNGDefinePtr or NULL in case of error
4626 */
4627static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004628xmlRelaxNGProcessExternalRef(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4629{
Daniel Veillardfebcca42003-02-16 15:44:18 +00004630 xmlRelaxNGDocumentPtr docu;
4631 xmlNodePtr root, tmp;
4632 xmlChar *ns;
Daniel Veillard77648bb2003-02-20 15:03:22 +00004633 int newNs = 0, oldflags;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004634 xmlRelaxNGDefinePtr def;
4635
Daniel Veillard807daf82004-02-22 22:13:27 +00004636 docu = node->psvi;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004637 if (docu != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004638 def = xmlRelaxNGNewDefine(ctxt, node);
4639 if (def == NULL)
4640 return (NULL);
4641 def->type = XML_RELAXNG_EXTERNALREF;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004642
Daniel Veillard4c004142003-10-07 11:33:24 +00004643 if (docu->content == NULL) {
4644 /*
4645 * Then do the parsing for good
4646 */
4647 root = xmlDocGetRootElement(docu->doc);
4648 if (root == NULL) {
4649 xmlRngPErr(ctxt, node, XML_RNGP_EXTERNALREF_EMTPY,
4650 "xmlRelaxNGParse: %s is empty\n", ctxt->URL,
4651 NULL);
4652 return (NULL);
4653 }
4654 /*
4655 * ns transmission rules
4656 */
4657 ns = xmlGetProp(root, BAD_CAST "ns");
4658 if (ns == NULL) {
4659 tmp = node;
4660 while ((tmp != NULL) && (tmp->type == XML_ELEMENT_NODE)) {
4661 ns = xmlGetProp(tmp, BAD_CAST "ns");
4662 if (ns != NULL) {
4663 break;
4664 }
4665 tmp = tmp->parent;
4666 }
4667 if (ns != NULL) {
4668 xmlSetProp(root, BAD_CAST "ns", ns);
4669 newNs = 1;
4670 xmlFree(ns);
4671 }
4672 } else {
4673 xmlFree(ns);
4674 }
Daniel Veillardfebcca42003-02-16 15:44:18 +00004675
Daniel Veillard4c004142003-10-07 11:33:24 +00004676 /*
4677 * Parsing to get a precompiled schemas.
4678 */
4679 oldflags = ctxt->flags;
4680 ctxt->flags |= XML_RELAXNG_IN_EXTERNALREF;
4681 docu->schema = xmlRelaxNGParseDocument(ctxt, root);
4682 ctxt->flags = oldflags;
4683 if ((docu->schema != NULL) &&
4684 (docu->schema->topgrammar != NULL)) {
4685 docu->content = docu->schema->topgrammar->start;
4686 }
4687
4688 /*
4689 * the externalRef may be reused in a different ns context
4690 */
4691 if (newNs == 1) {
4692 xmlUnsetProp(root, BAD_CAST "ns");
4693 }
4694 }
4695 def->content = docu->content;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004696 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004697 def = NULL;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004698 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004699 return (def);
Daniel Veillardfebcca42003-02-16 15:44:18 +00004700}
4701
4702/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00004703 * xmlRelaxNGParsePattern:
4704 * @ctxt: a Relax-NG parser context
4705 * @node: the pattern node.
4706 *
4707 * parse the content of a RelaxNG pattern node.
4708 *
Daniel Veillard276be4a2003-01-24 01:03:34 +00004709 * Returns the definition pointer or NULL in case of error or if no
4710 * pattern is generated.
Daniel Veillard6eadf632003-01-23 18:29:16 +00004711 */
4712static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004713xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4714{
Daniel Veillard6eadf632003-01-23 18:29:16 +00004715 xmlRelaxNGDefinePtr def = NULL;
4716
Daniel Veillardd2298792003-02-14 16:54:11 +00004717 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004718 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00004719 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004720 if (IS_RELAXNG(node, "element")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004721 def = xmlRelaxNGParseElement(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004722 } else if (IS_RELAXNG(node, "attribute")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004723 def = xmlRelaxNGParseAttribute(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004724 } else if (IS_RELAXNG(node, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004725 def = xmlRelaxNGNewDefine(ctxt, node);
4726 if (def == NULL)
4727 return (NULL);
4728 def->type = XML_RELAXNG_EMPTY;
4729 if (node->children != NULL) {
4730 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_NOT_EMPTY,
4731 "empty: had a child node\n", NULL, NULL);
4732 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004733 } else if (IS_RELAXNG(node, "text")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004734 def = xmlRelaxNGNewDefine(ctxt, node);
4735 if (def == NULL)
4736 return (NULL);
4737 def->type = XML_RELAXNG_TEXT;
4738 if (node->children != NULL) {
4739 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_HAS_CHILD,
4740 "text: had a child node\n", NULL, NULL);
4741 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004742 } else if (IS_RELAXNG(node, "zeroOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004743 def = xmlRelaxNGNewDefine(ctxt, node);
4744 if (def == NULL)
4745 return (NULL);
4746 def->type = XML_RELAXNG_ZEROORMORE;
4747 if (node->children == NULL) {
4748 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4749 "Element %s is empty\n", node->name, NULL);
4750 } else {
4751 def->content =
4752 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4753 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004754 } else if (IS_RELAXNG(node, "oneOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004755 def = xmlRelaxNGNewDefine(ctxt, node);
4756 if (def == NULL)
4757 return (NULL);
4758 def->type = XML_RELAXNG_ONEORMORE;
4759 if (node->children == NULL) {
4760 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4761 "Element %s is empty\n", node->name, NULL);
4762 } else {
4763 def->content =
4764 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4765 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004766 } else if (IS_RELAXNG(node, "optional")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004767 def = xmlRelaxNGNewDefine(ctxt, node);
4768 if (def == NULL)
4769 return (NULL);
4770 def->type = XML_RELAXNG_OPTIONAL;
4771 if (node->children == NULL) {
4772 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4773 "Element %s is empty\n", node->name, NULL);
4774 } else {
4775 def->content =
4776 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4777 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004778 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004779 def = xmlRelaxNGNewDefine(ctxt, node);
4780 if (def == NULL)
4781 return (NULL);
4782 def->type = XML_RELAXNG_CHOICE;
4783 if (node->children == NULL) {
4784 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4785 "Element %s is empty\n", node->name, NULL);
4786 } else {
4787 def->content =
4788 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4789 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004790 } else if (IS_RELAXNG(node, "group")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004791 def = xmlRelaxNGNewDefine(ctxt, node);
4792 if (def == NULL)
4793 return (NULL);
4794 def->type = XML_RELAXNG_GROUP;
4795 if (node->children == NULL) {
4796 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4797 "Element %s is empty\n", node->name, NULL);
4798 } else {
4799 def->content =
4800 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4801 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004802 } else if (IS_RELAXNG(node, "ref")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004803 def = xmlRelaxNGNewDefine(ctxt, node);
4804 if (def == NULL)
4805 return (NULL);
4806 def->type = XML_RELAXNG_REF;
4807 def->name = xmlGetProp(node, BAD_CAST "name");
4808 if (def->name == NULL) {
4809 xmlRngPErr(ctxt, node, XML_RNGP_REF_NO_NAME, "ref has no name\n",
4810 NULL, NULL);
4811 } else {
4812 xmlRelaxNGNormExtSpace(def->name);
4813 if (xmlValidateNCName(def->name, 0)) {
4814 xmlRngPErr(ctxt, node, XML_RNGP_REF_NAME_INVALID,
4815 "ref name '%s' is not an NCName\n", def->name,
4816 NULL);
4817 }
4818 }
4819 if (node->children != NULL) {
4820 xmlRngPErr(ctxt, node, XML_RNGP_REF_NOT_EMPTY, "ref is not empty\n",
4821 NULL, NULL);
4822 }
4823 if (ctxt->grammar->refs == NULL)
4824 ctxt->grammar->refs = xmlHashCreate(10);
4825 if (ctxt->grammar->refs == NULL) {
4826 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4827 "Could not create references hash\n", NULL, NULL);
4828 def = NULL;
4829 } else {
4830 int tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004831
Daniel Veillard4c004142003-10-07 11:33:24 +00004832 tmp = xmlHashAddEntry(ctxt->grammar->refs, def->name, def);
4833 if (tmp < 0) {
4834 xmlRelaxNGDefinePtr prev;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004835
Daniel Veillard4c004142003-10-07 11:33:24 +00004836 prev = (xmlRelaxNGDefinePtr)
4837 xmlHashLookup(ctxt->grammar->refs, def->name);
4838 if (prev == NULL) {
4839 if (def->name != NULL) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004840 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4841 "Error refs definitions '%s'\n",
4842 def->name, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004843 } else {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004844 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4845 "Error refs definitions\n",
4846 NULL, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004847 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004848 def = NULL;
4849 } else {
4850 def->nextHash = prev->nextHash;
4851 prev->nextHash = def;
4852 }
4853 }
4854 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00004855 } else if (IS_RELAXNG(node, "data")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004856 def = xmlRelaxNGParseData(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00004857 } else if (IS_RELAXNG(node, "value")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004858 def = xmlRelaxNGParseValue(ctxt, node);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00004859 } else if (IS_RELAXNG(node, "list")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004860 def = xmlRelaxNGNewDefine(ctxt, node);
4861 if (def == NULL)
4862 return (NULL);
4863 def->type = XML_RELAXNG_LIST;
4864 if (node->children == NULL) {
4865 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4866 "Element %s is empty\n", node->name, NULL);
4867 } else {
4868 def->content =
4869 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4870 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004871 } else if (IS_RELAXNG(node, "interleave")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004872 def = xmlRelaxNGParseInterleave(ctxt, node);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00004873 } else if (IS_RELAXNG(node, "externalRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004874 def = xmlRelaxNGProcessExternalRef(ctxt, node);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004875 } else if (IS_RELAXNG(node, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004876 def = xmlRelaxNGNewDefine(ctxt, node);
4877 if (def == NULL)
4878 return (NULL);
4879 def->type = XML_RELAXNG_NOT_ALLOWED;
4880 if (node->children != NULL) {
4881 xmlRngPErr(ctxt, node, XML_RNGP_NOTALLOWED_NOT_EMPTY,
4882 "xmlRelaxNGParse: notAllowed element is not empty\n",
4883 NULL, NULL);
4884 }
Daniel Veillard419a7682003-02-03 23:22:49 +00004885 } else if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004886 xmlRelaxNGGrammarPtr grammar, old;
4887 xmlRelaxNGGrammarPtr oldparent;
Daniel Veillard419a7682003-02-03 23:22:49 +00004888
Daniel Veillardc482e262003-02-26 14:48:48 +00004889#ifdef DEBUG_GRAMMAR
Daniel Veillard4c004142003-10-07 11:33:24 +00004890 xmlGenericError(xmlGenericErrorContext,
4891 "Found <grammar> pattern\n");
Daniel Veillardc482e262003-02-26 14:48:48 +00004892#endif
4893
Daniel Veillard4c004142003-10-07 11:33:24 +00004894 oldparent = ctxt->parentgrammar;
4895 old = ctxt->grammar;
4896 ctxt->parentgrammar = old;
4897 grammar = xmlRelaxNGParseGrammar(ctxt, node->children);
4898 if (old != NULL) {
4899 ctxt->grammar = old;
4900 ctxt->parentgrammar = oldparent;
Daniel Veillardc482e262003-02-26 14:48:48 +00004901#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00004902 if (grammar != NULL) {
4903 grammar->next = old->next;
4904 old->next = grammar;
4905 }
Daniel Veillardc482e262003-02-26 14:48:48 +00004906#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00004907 }
4908 if (grammar != NULL)
4909 def = grammar->start;
4910 else
4911 def = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00004912 } else if (IS_RELAXNG(node, "parentRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004913 if (ctxt->parentgrammar == NULL) {
4914 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_PARENT,
4915 "Use of parentRef without a parent grammar\n", NULL,
4916 NULL);
4917 return (NULL);
4918 }
4919 def = xmlRelaxNGNewDefine(ctxt, node);
4920 if (def == NULL)
4921 return (NULL);
4922 def->type = XML_RELAXNG_PARENTREF;
4923 def->name = xmlGetProp(node, BAD_CAST "name");
4924 if (def->name == NULL) {
4925 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_NAME,
4926 "parentRef has no name\n", NULL, NULL);
4927 } else {
4928 xmlRelaxNGNormExtSpace(def->name);
4929 if (xmlValidateNCName(def->name, 0)) {
4930 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NAME_INVALID,
4931 "parentRef name '%s' is not an NCName\n",
4932 def->name, NULL);
4933 }
4934 }
4935 if (node->children != NULL) {
4936 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NOT_EMPTY,
4937 "parentRef is not empty\n", NULL, NULL);
4938 }
4939 if (ctxt->parentgrammar->refs == NULL)
4940 ctxt->parentgrammar->refs = xmlHashCreate(10);
4941 if (ctxt->parentgrammar->refs == NULL) {
4942 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
4943 "Could not create references hash\n", NULL, NULL);
4944 def = NULL;
4945 } else if (def->name != NULL) {
4946 int tmp;
Daniel Veillard419a7682003-02-03 23:22:49 +00004947
Daniel Veillard4c004142003-10-07 11:33:24 +00004948 tmp =
4949 xmlHashAddEntry(ctxt->parentgrammar->refs, def->name, def);
4950 if (tmp < 0) {
4951 xmlRelaxNGDefinePtr prev;
Daniel Veillard419a7682003-02-03 23:22:49 +00004952
Daniel Veillard4c004142003-10-07 11:33:24 +00004953 prev = (xmlRelaxNGDefinePtr)
4954 xmlHashLookup(ctxt->parentgrammar->refs, def->name);
4955 if (prev == NULL) {
4956 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
4957 "Internal error parentRef definitions '%s'\n",
4958 def->name, NULL);
4959 def = NULL;
4960 } else {
4961 def->nextHash = prev->nextHash;
4962 prev->nextHash = def;
4963 }
4964 }
4965 }
Daniel Veillardd2298792003-02-14 16:54:11 +00004966 } else if (IS_RELAXNG(node, "mixed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004967 if (node->children == NULL) {
4968 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT, "Mixed is empty\n",
4969 NULL, NULL);
4970 def = NULL;
4971 } else {
4972 def = xmlRelaxNGParseInterleave(ctxt, node);
4973 if (def != NULL) {
4974 xmlRelaxNGDefinePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004975
Daniel Veillard4c004142003-10-07 11:33:24 +00004976 if ((def->content != NULL) && (def->content->next != NULL)) {
4977 tmp = xmlRelaxNGNewDefine(ctxt, node);
4978 if (tmp != NULL) {
4979 tmp->type = XML_RELAXNG_GROUP;
4980 tmp->content = def->content;
4981 def->content = tmp;
4982 }
4983 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004984
Daniel Veillard4c004142003-10-07 11:33:24 +00004985 tmp = xmlRelaxNGNewDefine(ctxt, node);
4986 if (tmp == NULL)
4987 return (def);
4988 tmp->type = XML_RELAXNG_TEXT;
4989 tmp->next = def->content;
4990 def->content = tmp;
4991 }
4992 }
Daniel Veillardd2298792003-02-14 16:54:11 +00004993 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004994 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_CONSTRUCT,
4995 "Unexpected node %s is not a pattern\n", node->name,
4996 NULL);
4997 def = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004998 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004999 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005000}
5001
5002/**
5003 * xmlRelaxNGParseAttribute:
5004 * @ctxt: a Relax-NG parser context
5005 * @node: the element node
5006 *
5007 * parse the content of a RelaxNG attribute node.
5008 *
5009 * Returns the definition pointer or NULL in case of error.
5010 */
5011static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005012xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5013{
Daniel Veillardd2298792003-02-14 16:54:11 +00005014 xmlRelaxNGDefinePtr ret, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005015 xmlNodePtr child;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005016 int old_flags;
5017
Daniel Veillardfd573f12003-03-16 17:52:32 +00005018 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005019 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005020 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005021 ret->type = XML_RELAXNG_ATTRIBUTE;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005022 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005023 child = node->children;
5024 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005025 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_EMPTY,
5026 "xmlRelaxNGParseattribute: attribute has no children\n",
5027 NULL, NULL);
5028 return (ret);
5029 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005030 old_flags = ctxt->flags;
5031 ctxt->flags |= XML_RELAXNG_IN_ATTRIBUTE;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005032 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5033 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005034 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005035
Daniel Veillardd2298792003-02-14 16:54:11 +00005036 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005037 cur = xmlRelaxNGParsePattern(ctxt, child);
5038 if (cur != NULL) {
5039 switch (cur->type) {
5040 case XML_RELAXNG_EMPTY:
5041 case XML_RELAXNG_NOT_ALLOWED:
5042 case XML_RELAXNG_TEXT:
5043 case XML_RELAXNG_ELEMENT:
5044 case XML_RELAXNG_DATATYPE:
5045 case XML_RELAXNG_VALUE:
5046 case XML_RELAXNG_LIST:
5047 case XML_RELAXNG_REF:
5048 case XML_RELAXNG_PARENTREF:
5049 case XML_RELAXNG_EXTERNALREF:
5050 case XML_RELAXNG_DEF:
5051 case XML_RELAXNG_ONEORMORE:
5052 case XML_RELAXNG_ZEROORMORE:
5053 case XML_RELAXNG_OPTIONAL:
5054 case XML_RELAXNG_CHOICE:
5055 case XML_RELAXNG_GROUP:
5056 case XML_RELAXNG_INTERLEAVE:
5057 case XML_RELAXNG_ATTRIBUTE:
5058 ret->content = cur;
5059 cur->parent = ret;
5060 break;
5061 case XML_RELAXNG_START:
5062 case XML_RELAXNG_PARAM:
5063 case XML_RELAXNG_EXCEPT:
5064 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CONTENT,
5065 "attribute has invalid content\n", NULL,
5066 NULL);
5067 break;
5068 case XML_RELAXNG_NOOP:
5069 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_NOOP,
5070 "RNG Internal error, noop found in attribute\n",
5071 NULL, NULL);
5072 break;
5073 }
5074 }
5075 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005076 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005077 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005078 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CHILDREN,
5079 "attribute has multiple children\n", NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005080 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005081 ctxt->flags = old_flags;
Daniel Veillard4c004142003-10-07 11:33:24 +00005082 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005083}
5084
5085/**
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005086 * xmlRelaxNGParseExceptNameClass:
5087 * @ctxt: a Relax-NG parser context
5088 * @node: the except node
Daniel Veillard144fae12003-02-03 13:17:57 +00005089 * @attr: 1 if within an attribute, 0 if within an element
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005090 *
5091 * parse the content of a RelaxNG nameClass node.
5092 *
5093 * Returns the definition pointer or NULL in case of error.
5094 */
5095static xmlRelaxNGDefinePtr
Daniel Veillard144fae12003-02-03 13:17:57 +00005096xmlRelaxNGParseExceptNameClass(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005097 xmlNodePtr node, int attr)
5098{
Daniel Veillard144fae12003-02-03 13:17:57 +00005099 xmlRelaxNGDefinePtr ret, cur, last = NULL;
5100 xmlNodePtr child;
5101
Daniel Veillardd2298792003-02-14 16:54:11 +00005102 if (!IS_RELAXNG(node, "except")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005103 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MISSING,
5104 "Expecting an except node\n", NULL, NULL);
5105 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005106 }
5107 if (node->next != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005108 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MULTIPLE,
5109 "exceptNameClass allows only a single except node\n",
5110 NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005111 }
Daniel Veillard144fae12003-02-03 13:17:57 +00005112 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005113 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_EMPTY, "except has no content\n",
5114 NULL, NULL);
5115 return (NULL);
Daniel Veillard144fae12003-02-03 13:17:57 +00005116 }
5117
Daniel Veillardfd573f12003-03-16 17:52:32 +00005118 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard144fae12003-02-03 13:17:57 +00005119 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005120 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005121 ret->type = XML_RELAXNG_EXCEPT;
Daniel Veillard144fae12003-02-03 13:17:57 +00005122 child = node->children;
5123 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005124 cur = xmlRelaxNGNewDefine(ctxt, child);
5125 if (cur == NULL)
5126 break;
5127 if (attr)
5128 cur->type = XML_RELAXNG_ATTRIBUTE;
5129 else
5130 cur->type = XML_RELAXNG_ELEMENT;
5131
Daniel Veillard419a7682003-02-03 23:22:49 +00005132 if (xmlRelaxNGParseNameClass(ctxt, child, cur) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005133 if (last == NULL) {
5134 ret->content = cur;
5135 } else {
5136 last->next = cur;
5137 }
5138 last = cur;
5139 }
5140 child = child->next;
Daniel Veillard144fae12003-02-03 13:17:57 +00005141 }
5142
Daniel Veillard4c004142003-10-07 11:33:24 +00005143 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005144}
5145
5146/**
5147 * xmlRelaxNGParseNameClass:
5148 * @ctxt: a Relax-NG parser context
5149 * @node: the nameClass node
5150 * @def: the current definition
5151 *
5152 * parse the content of a RelaxNG nameClass node.
5153 *
5154 * Returns the definition pointer or NULL in case of error.
5155 */
5156static xmlRelaxNGDefinePtr
5157xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node,
Daniel Veillard4c004142003-10-07 11:33:24 +00005158 xmlRelaxNGDefinePtr def)
5159{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005160 xmlRelaxNGDefinePtr ret, tmp;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005161 xmlChar *val;
5162
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005163 ret = def;
Daniel Veillard4c004142003-10-07 11:33:24 +00005164 if ((IS_RELAXNG(node, "name")) || (IS_RELAXNG(node, "anyName")) ||
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005165 (IS_RELAXNG(node, "nsName"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005166 if ((def->type != XML_RELAXNG_ELEMENT) &&
5167 (def->type != XML_RELAXNG_ATTRIBUTE)) {
5168 ret = xmlRelaxNGNewDefine(ctxt, node);
5169 if (ret == NULL)
5170 return (NULL);
5171 ret->parent = def;
5172 if (ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE)
5173 ret->type = XML_RELAXNG_ATTRIBUTE;
5174 else
5175 ret->type = XML_RELAXNG_ELEMENT;
5176 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005177 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005178 if (IS_RELAXNG(node, "name")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005179 val = xmlNodeGetContent(node);
5180 xmlRelaxNGNormExtSpace(val);
5181 if (xmlValidateNCName(val, 0)) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005182 if (node->parent != NULL)
5183 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5184 "Element %s name '%s' is not an NCName\n",
5185 node->parent->name, val);
5186 else
5187 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5188 "name '%s' is not an NCName\n",
5189 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005190 }
5191 ret->name = val;
5192 val = xmlGetProp(node, BAD_CAST "ns");
5193 ret->ns = val;
5194 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5195 (val != NULL) &&
5196 (xmlStrEqual(val, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005197 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
Daniel Veillard4c004142003-10-07 11:33:24 +00005198 "Attribute with namespace '%s' is not allowed\n",
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005199 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005200 }
5201 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5202 (val != NULL) &&
5203 (val[0] == 0) && (xmlStrEqual(ret->name, BAD_CAST "xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005204 xmlRngPErr(ctxt, node, XML_RNGP_XMLNS_NAME,
5205 "Attribute with QName 'xmlns' is not allowed\n",
5206 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005207 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005208 } else if (IS_RELAXNG(node, "anyName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005209 ret->name = NULL;
5210 ret->ns = NULL;
5211 if (node->children != NULL) {
5212 ret->nameClass =
5213 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5214 (def->type ==
5215 XML_RELAXNG_ATTRIBUTE));
5216 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005217 } else if (IS_RELAXNG(node, "nsName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005218 ret->name = NULL;
5219 ret->ns = xmlGetProp(node, BAD_CAST "ns");
5220 if (ret->ns == NULL) {
5221 xmlRngPErr(ctxt, node, XML_RNGP_NSNAME_NO_NS,
5222 "nsName has no ns attribute\n", NULL, NULL);
5223 }
5224 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5225 (ret->ns != NULL) &&
5226 (xmlStrEqual
5227 (ret->ns, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
5228 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
5229 "Attribute with namespace '%s' is not allowed\n",
5230 ret->ns, NULL);
5231 }
5232 if (node->children != NULL) {
5233 ret->nameClass =
5234 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5235 (def->type ==
5236 XML_RELAXNG_ATTRIBUTE));
5237 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005238 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005239 xmlNodePtr child;
5240 xmlRelaxNGDefinePtr last = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005241
Daniel Veillard4c004142003-10-07 11:33:24 +00005242 ret = xmlRelaxNGNewDefine(ctxt, node);
5243 if (ret == NULL)
5244 return (NULL);
5245 ret->parent = def;
5246 ret->type = XML_RELAXNG_CHOICE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005247
Daniel Veillard4c004142003-10-07 11:33:24 +00005248 if (node->children == NULL) {
5249 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_EMPTY,
5250 "Element choice is empty\n", NULL, NULL);
5251 } else {
Daniel Veillardfd573f12003-03-16 17:52:32 +00005252
Daniel Veillard4c004142003-10-07 11:33:24 +00005253 child = node->children;
5254 while (child != NULL) {
5255 tmp = xmlRelaxNGParseNameClass(ctxt, child, ret);
5256 if (tmp != NULL) {
5257 if (last == NULL) {
5258 last = ret->nameClass = tmp;
5259 } else {
5260 last->next = tmp;
5261 last = tmp;
5262 }
5263 }
5264 child = child->next;
5265 }
5266 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005267 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005268 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_CONTENT,
5269 "expecting name, anyName, nsName or choice : got %s\n",
5270 node->name, NULL);
5271 return (NULL);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005272 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005273 if (ret != def) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005274 if (def->nameClass == NULL) {
5275 def->nameClass = ret;
5276 } else {
5277 tmp = def->nameClass;
5278 while (tmp->next != NULL) {
5279 tmp = tmp->next;
5280 }
5281 tmp->next = ret;
5282 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005283 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005284 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005285}
5286
5287/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00005288 * xmlRelaxNGParseElement:
5289 * @ctxt: a Relax-NG parser context
5290 * @node: the element node
5291 *
5292 * parse the content of a RelaxNG element node.
5293 *
5294 * Returns the definition pointer or NULL in case of error.
5295 */
5296static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005297xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5298{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005299 xmlRelaxNGDefinePtr ret, cur, last;
5300 xmlNodePtr child;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005301 const xmlChar *olddefine;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005302
Daniel Veillardfd573f12003-03-16 17:52:32 +00005303 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005304 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005305 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005306 ret->type = XML_RELAXNG_ELEMENT;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005307 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005308 child = node->children;
5309 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005310 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_EMPTY,
5311 "xmlRelaxNGParseElement: element has no children\n",
5312 NULL, NULL);
5313 return (ret);
5314 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005315 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5316 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005317 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005318
Daniel Veillard6eadf632003-01-23 18:29:16 +00005319 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005320 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NO_CONTENT,
5321 "xmlRelaxNGParseElement: element has no content\n",
5322 NULL, NULL);
5323 return (ret);
5324 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005325 olddefine = ctxt->define;
5326 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005327 last = NULL;
5328 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005329 cur = xmlRelaxNGParsePattern(ctxt, child);
5330 if (cur != NULL) {
5331 cur->parent = ret;
5332 switch (cur->type) {
5333 case XML_RELAXNG_EMPTY:
5334 case XML_RELAXNG_NOT_ALLOWED:
5335 case XML_RELAXNG_TEXT:
5336 case XML_RELAXNG_ELEMENT:
5337 case XML_RELAXNG_DATATYPE:
5338 case XML_RELAXNG_VALUE:
5339 case XML_RELAXNG_LIST:
5340 case XML_RELAXNG_REF:
5341 case XML_RELAXNG_PARENTREF:
5342 case XML_RELAXNG_EXTERNALREF:
5343 case XML_RELAXNG_DEF:
5344 case XML_RELAXNG_ZEROORMORE:
5345 case XML_RELAXNG_ONEORMORE:
5346 case XML_RELAXNG_OPTIONAL:
5347 case XML_RELAXNG_CHOICE:
5348 case XML_RELAXNG_GROUP:
5349 case XML_RELAXNG_INTERLEAVE:
5350 if (last == NULL) {
5351 ret->content = last = cur;
5352 } else {
5353 if ((last->type == XML_RELAXNG_ELEMENT) &&
5354 (ret->content == last)) {
5355 ret->content = xmlRelaxNGNewDefine(ctxt, node);
5356 if (ret->content != NULL) {
5357 ret->content->type = XML_RELAXNG_GROUP;
5358 ret->content->content = last;
5359 } else {
5360 ret->content = last;
5361 }
5362 }
5363 last->next = cur;
5364 last = cur;
5365 }
5366 break;
5367 case XML_RELAXNG_ATTRIBUTE:
5368 cur->next = ret->attrs;
5369 ret->attrs = cur;
5370 break;
5371 case XML_RELAXNG_START:
5372 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5373 "RNG Internal error, start found in element\n",
5374 NULL, NULL);
5375 break;
5376 case XML_RELAXNG_PARAM:
5377 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5378 "RNG Internal error, param found in element\n",
5379 NULL, NULL);
5380 break;
5381 case XML_RELAXNG_EXCEPT:
5382 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5383 "RNG Internal error, except found in element\n",
5384 NULL, NULL);
5385 break;
5386 case XML_RELAXNG_NOOP:
5387 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5388 "RNG Internal error, noop found in element\n",
5389 NULL, NULL);
5390 break;
5391 }
5392 }
5393 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005394 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005395 ctxt->define = olddefine;
Daniel Veillard4c004142003-10-07 11:33:24 +00005396 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005397}
5398
5399/**
5400 * xmlRelaxNGParsePatterns:
5401 * @ctxt: a Relax-NG parser context
5402 * @nodes: list of nodes
Daniel Veillard154877e2003-01-30 12:17:05 +00005403 * @group: use an implicit <group> for elements
Daniel Veillard6eadf632003-01-23 18:29:16 +00005404 *
5405 * parse the content of a RelaxNG start node.
5406 *
5407 * Returns the definition pointer or NULL in case of error.
5408 */
5409static xmlRelaxNGDefinePtr
Daniel Veillard154877e2003-01-30 12:17:05 +00005410xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes,
Daniel Veillard4c004142003-10-07 11:33:24 +00005411 int group)
5412{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005413 xmlRelaxNGDefinePtr def = NULL, last = NULL, cur, parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005414
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005415 parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005416 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005417 if (IS_RELAXNG(nodes, "element")) {
5418 cur = xmlRelaxNGParseElement(ctxt, nodes);
5419 if (def == NULL) {
5420 def = last = cur;
5421 } else {
5422 if ((group == 1) && (def->type == XML_RELAXNG_ELEMENT) &&
5423 (def == last)) {
5424 def = xmlRelaxNGNewDefine(ctxt, nodes);
5425 def->type = XML_RELAXNG_GROUP;
5426 def->content = last;
5427 }
5428 last->next = cur;
5429 last = cur;
5430 }
5431 cur->parent = parent;
5432 } else {
5433 cur = xmlRelaxNGParsePattern(ctxt, nodes);
5434 if (cur != NULL) {
5435 if (def == NULL) {
5436 def = last = cur;
5437 } else {
5438 last->next = cur;
5439 last = cur;
5440 }
5441 }
5442 }
5443 nodes = nodes->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005444 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005445 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005446}
5447
5448/**
5449 * xmlRelaxNGParseStart:
5450 * @ctxt: a Relax-NG parser context
5451 * @nodes: start children nodes
5452 *
5453 * parse the content of a RelaxNG start node.
5454 *
5455 * Returns 0 in case of success, -1 in case of error
5456 */
5457static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005458xmlRelaxNGParseStart(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
5459{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005460 int ret = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005461 xmlRelaxNGDefinePtr def = NULL, last;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005462
Daniel Veillardd2298792003-02-14 16:54:11 +00005463 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005464 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY, "start has no children\n",
5465 NULL, NULL);
5466 return (-1);
Daniel Veillardd2298792003-02-14 16:54:11 +00005467 }
5468 if (IS_RELAXNG(nodes, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005469 def = xmlRelaxNGNewDefine(ctxt, nodes);
5470 if (def == NULL)
5471 return (-1);
5472 def->type = XML_RELAXNG_EMPTY;
5473 if (nodes->children != NULL) {
5474 xmlRngPErr(ctxt, nodes, XML_RNGP_EMPTY_CONTENT,
5475 "element empty is not empty\n", NULL, NULL);
5476 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005477 } else if (IS_RELAXNG(nodes, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005478 def = xmlRelaxNGNewDefine(ctxt, nodes);
5479 if (def == NULL)
5480 return (-1);
5481 def->type = XML_RELAXNG_NOT_ALLOWED;
5482 if (nodes->children != NULL) {
5483 xmlRngPErr(ctxt, nodes, XML_RNGP_NOTALLOWED_NOT_EMPTY,
5484 "element notAllowed is not empty\n", NULL, NULL);
5485 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005486 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005487 def = xmlRelaxNGParsePatterns(ctxt, nodes, 1);
Daniel Veillard2df2de22003-02-17 23:34:33 +00005488 }
5489 if (ctxt->grammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005490 last = ctxt->grammar->start;
5491 while (last->next != NULL)
5492 last = last->next;
5493 last->next = def;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005494 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005495 ctxt->grammar->start = def;
Daniel Veillardd2298792003-02-14 16:54:11 +00005496 }
5497 nodes = nodes->next;
5498 if (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005499 xmlRngPErr(ctxt, nodes, XML_RNGP_START_CONTENT,
5500 "start more than one children\n", NULL, NULL);
5501 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005502 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005503 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005504}
5505
5506/**
5507 * xmlRelaxNGParseGrammarContent:
5508 * @ctxt: a Relax-NG parser context
5509 * @nodes: grammar children nodes
5510 *
5511 * parse the content of a RelaxNG grammar node.
5512 *
5513 * Returns 0 in case of success, -1 in case of error
5514 */
5515static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005516xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
5517 xmlNodePtr nodes)
Daniel Veillard6eadf632003-01-23 18:29:16 +00005518{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00005519 int ret = 0, tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005520
5521 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005522 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_EMPTY,
5523 "grammar has no children\n", NULL, NULL);
5524 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005525 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005526 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005527 if (IS_RELAXNG(nodes, "start")) {
5528 if (nodes->children == NULL) {
5529 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY,
5530 "start has no children\n", NULL, NULL);
5531 } else {
5532 tmp = xmlRelaxNGParseStart(ctxt, nodes->children);
5533 if (tmp != 0)
5534 ret = -1;
5535 }
5536 } else if (IS_RELAXNG(nodes, "define")) {
5537 tmp = xmlRelaxNGParseDefine(ctxt, nodes);
5538 if (tmp != 0)
5539 ret = -1;
5540 } else if (IS_RELAXNG(nodes, "include")) {
5541 tmp = xmlRelaxNGParseInclude(ctxt, nodes);
5542 if (tmp != 0)
5543 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005544 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005545 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
5546 "grammar has unexpected child %s\n", nodes->name,
5547 NULL);
5548 ret = -1;
5549 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005550 nodes = nodes->next;
5551 }
5552 return (ret);
5553}
5554
5555/**
5556 * xmlRelaxNGCheckReference:
5557 * @ref: the ref
5558 * @ctxt: a Relax-NG parser context
5559 * @name: the name associated to the defines
5560 *
5561 * Applies the 4.17. combine attribute rule for all the define
5562 * element of a given grammar using the same name.
5563 */
5564static void
5565xmlRelaxNGCheckReference(xmlRelaxNGDefinePtr ref,
Daniel Veillard4c004142003-10-07 11:33:24 +00005566 xmlRelaxNGParserCtxtPtr ctxt,
5567 const xmlChar * name)
5568{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005569 xmlRelaxNGGrammarPtr grammar;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005570 xmlRelaxNGDefinePtr def, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005571
5572 grammar = ctxt->grammar;
5573 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005574 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5575 "Internal error: no grammar in CheckReference %s\n",
5576 name, NULL);
5577 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005578 }
5579 if (ref->content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005580 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5581 "Internal error: reference has content in CheckReference %s\n",
5582 name, NULL);
5583 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005584 }
5585 if (grammar->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005586 def = xmlHashLookup(grammar->defs, name);
5587 if (def != NULL) {
5588 cur = ref;
5589 while (cur != NULL) {
5590 cur->content = def;
5591 cur = cur->nextHash;
5592 }
5593 } else {
5594 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5595 "Reference %s has no matching definition\n", name,
5596 NULL);
5597 }
Daniel Veillardd4310742003-02-18 21:12:46 +00005598 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005599 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5600 "Reference %s has no matching definition\n", name,
5601 NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005602 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005603}
5604
5605/**
5606 * xmlRelaxNGCheckCombine:
5607 * @define: the define(s) list
5608 * @ctxt: a Relax-NG parser context
5609 * @name: the name associated to the defines
5610 *
5611 * Applies the 4.17. combine attribute rule for all the define
5612 * element of a given grammar using the same name.
5613 */
5614static void
5615xmlRelaxNGCheckCombine(xmlRelaxNGDefinePtr define,
Daniel Veillard4c004142003-10-07 11:33:24 +00005616 xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * name)
5617{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005618 xmlChar *combine;
5619 int choiceOrInterleave = -1;
5620 int missing = 0;
5621 xmlRelaxNGDefinePtr cur, last, tmp, tmp2;
5622
5623 if (define->nextHash == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005624 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005625 cur = define;
5626 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005627 combine = xmlGetProp(cur->node, BAD_CAST "combine");
5628 if (combine != NULL) {
5629 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5630 if (choiceOrInterleave == -1)
5631 choiceOrInterleave = 1;
5632 else if (choiceOrInterleave == 0) {
5633 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5634 "Defines for %s use both 'choice' and 'interleave'\n",
5635 name, NULL);
5636 }
5637 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5638 if (choiceOrInterleave == -1)
5639 choiceOrInterleave = 0;
5640 else if (choiceOrInterleave == 1) {
5641 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5642 "Defines for %s use both 'choice' and 'interleave'\n",
5643 name, NULL);
5644 }
5645 } else {
5646 xmlRngPErr(ctxt, define->node, XML_RNGP_UNKNOWN_COMBINE,
5647 "Defines for %s use unknown combine value '%s''\n",
5648 name, combine);
5649 }
5650 xmlFree(combine);
5651 } else {
5652 if (missing == 0)
5653 missing = 1;
5654 else {
5655 xmlRngPErr(ctxt, define->node, XML_RNGP_NEED_COMBINE,
5656 "Some defines for %s needs the combine attribute\n",
5657 name, NULL);
5658 }
5659 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005660
Daniel Veillard4c004142003-10-07 11:33:24 +00005661 cur = cur->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005662 }
5663#ifdef DEBUG
5664 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005665 "xmlRelaxNGCheckCombine(): merging %s defines: %d\n",
5666 name, choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005667#endif
5668 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005669 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005670 cur = xmlRelaxNGNewDefine(ctxt, define->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005671 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005672 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005673 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005674 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005675 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005676 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005677 tmp = define;
5678 last = NULL;
5679 while (tmp != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005680 if (tmp->content != NULL) {
5681 if (tmp->content->next != NULL) {
5682 /*
5683 * we need first to create a wrapper.
5684 */
5685 tmp2 = xmlRelaxNGNewDefine(ctxt, tmp->content->node);
5686 if (tmp2 == NULL)
5687 break;
5688 tmp2->type = XML_RELAXNG_GROUP;
5689 tmp2->content = tmp->content;
5690 } else {
5691 tmp2 = tmp->content;
5692 }
5693 if (last == NULL) {
5694 cur->content = tmp2;
5695 } else {
5696 last->next = tmp2;
5697 }
5698 last = tmp2;
5699 }
5700 tmp->content = cur;
5701 tmp = tmp->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005702 }
5703 define->content = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005704 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005705 if (ctxt->interleaves == NULL)
5706 ctxt->interleaves = xmlHashCreate(10);
5707 if (ctxt->interleaves == NULL) {
5708 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5709 "Failed to create interleaves hash table\n", NULL,
5710 NULL);
5711 } else {
5712 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005713
Daniel Veillard4c004142003-10-07 11:33:24 +00005714 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5715 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5716 0) {
5717 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5718 "Failed to add %s to hash table\n",
5719 (const xmlChar *) tmpname, NULL);
5720 }
5721 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005722 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005723}
5724
5725/**
5726 * xmlRelaxNGCombineStart:
5727 * @ctxt: a Relax-NG parser context
5728 * @grammar: the grammar
5729 *
5730 * Applies the 4.17. combine rule for all the start
5731 * element of a given grammar.
5732 */
5733static void
5734xmlRelaxNGCombineStart(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005735 xmlRelaxNGGrammarPtr grammar)
5736{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005737 xmlRelaxNGDefinePtr starts;
5738 xmlChar *combine;
5739 int choiceOrInterleave = -1;
5740 int missing = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005741 xmlRelaxNGDefinePtr cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005742
Daniel Veillard2df2de22003-02-17 23:34:33 +00005743 starts = grammar->start;
5744 if ((starts == NULL) || (starts->next == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00005745 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005746 cur = starts;
5747 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005748 if ((cur->node == NULL) || (cur->node->parent == NULL) ||
5749 (!xmlStrEqual(cur->node->parent->name, BAD_CAST "start"))) {
5750 combine = NULL;
5751 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_MISSING,
5752 "Internal error: start element not found\n", NULL,
5753 NULL);
5754 } else {
5755 combine = xmlGetProp(cur->node->parent, BAD_CAST "combine");
5756 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005757
Daniel Veillard4c004142003-10-07 11:33:24 +00005758 if (combine != NULL) {
5759 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5760 if (choiceOrInterleave == -1)
5761 choiceOrInterleave = 1;
5762 else if (choiceOrInterleave == 0) {
5763 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5764 "<start> use both 'choice' and 'interleave'\n",
5765 NULL, NULL);
5766 }
5767 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5768 if (choiceOrInterleave == -1)
5769 choiceOrInterleave = 0;
5770 else if (choiceOrInterleave == 1) {
5771 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5772 "<start> use both 'choice' and 'interleave'\n",
5773 NULL, NULL);
5774 }
5775 } else {
5776 xmlRngPErr(ctxt, cur->node, XML_RNGP_UNKNOWN_COMBINE,
5777 "<start> uses unknown combine value '%s''\n",
5778 combine, NULL);
5779 }
5780 xmlFree(combine);
5781 } else {
5782 if (missing == 0)
5783 missing = 1;
5784 else {
5785 xmlRngPErr(ctxt, cur->node, XML_RNGP_NEED_COMBINE,
5786 "Some <start> element miss the combine attribute\n",
5787 NULL, NULL);
5788 }
5789 }
5790
5791 cur = cur->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005792 }
5793#ifdef DEBUG
5794 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005795 "xmlRelaxNGCombineStart(): merging <start>: %d\n",
5796 choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005797#endif
5798 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005799 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005800 cur = xmlRelaxNGNewDefine(ctxt, starts->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005801 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005802 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005803 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005804 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005805 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005806 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005807 cur->content = grammar->start;
5808 grammar->start = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005809 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005810 if (ctxt->interleaves == NULL)
5811 ctxt->interleaves = xmlHashCreate(10);
5812 if (ctxt->interleaves == NULL) {
5813 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5814 "Failed to create interleaves hash table\n", NULL,
5815 NULL);
5816 } else {
5817 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005818
Daniel Veillard4c004142003-10-07 11:33:24 +00005819 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5820 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5821 0) {
5822 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5823 "Failed to add %s to hash table\n",
5824 (const xmlChar *) tmpname, NULL);
5825 }
5826 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005827 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005828}
5829
5830/**
Daniel Veillardd4310742003-02-18 21:12:46 +00005831 * xmlRelaxNGCheckCycles:
5832 * @ctxt: a Relax-NG parser context
5833 * @nodes: grammar children nodes
5834 * @depth: the counter
5835 *
5836 * Check for cycles.
5837 *
5838 * Returns 0 if check passed, and -1 in case of error
5839 */
5840static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005841xmlRelaxNGCheckCycles(xmlRelaxNGParserCtxtPtr ctxt,
5842 xmlRelaxNGDefinePtr cur, int depth)
5843{
Daniel Veillardd4310742003-02-18 21:12:46 +00005844 int ret = 0;
5845
5846 while ((ret == 0) && (cur != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005847 if ((cur->type == XML_RELAXNG_REF) ||
5848 (cur->type == XML_RELAXNG_PARENTREF)) {
5849 if (cur->depth == -1) {
5850 cur->depth = depth;
5851 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5852 cur->depth = -2;
5853 } else if (depth == cur->depth) {
5854 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_CYCLE,
5855 "Detected a cycle in %s references\n",
5856 cur->name, NULL);
5857 return (-1);
5858 }
5859 } else if (cur->type == XML_RELAXNG_ELEMENT) {
5860 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth + 1);
5861 } else {
5862 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5863 }
5864 cur = cur->next;
Daniel Veillardd4310742003-02-18 21:12:46 +00005865 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005866 return (ret);
Daniel Veillardd4310742003-02-18 21:12:46 +00005867}
5868
5869/**
Daniel Veillard77648bb2003-02-20 15:03:22 +00005870 * xmlRelaxNGTryUnlink:
5871 * @ctxt: a Relax-NG parser context
5872 * @cur: the definition to unlink
5873 * @parent: the parent definition
5874 * @prev: the previous sibling definition
5875 *
5876 * Try to unlink a definition. If not possble make it a NOOP
5877 *
5878 * Returns the new prev definition
5879 */
5880static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005881xmlRelaxNGTryUnlink(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
5882 xmlRelaxNGDefinePtr cur,
5883 xmlRelaxNGDefinePtr parent, xmlRelaxNGDefinePtr prev)
5884{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005885 if (prev != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005886 prev->next = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005887 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005888 if (parent != NULL) {
5889 if (parent->content == cur)
5890 parent->content = cur->next;
5891 else if (parent->attrs == cur)
5892 parent->attrs = cur->next;
5893 else if (parent->nameClass == cur)
5894 parent->nameClass = cur->next;
5895 } else {
5896 cur->type = XML_RELAXNG_NOOP;
5897 prev = cur;
5898 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005899 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005900 return (prev);
Daniel Veillard77648bb2003-02-20 15:03:22 +00005901}
5902
5903/**
Daniel Veillard4c5cf702003-02-21 15:40:34 +00005904 * xmlRelaxNGSimplify:
Daniel Veillard1c745ad2003-02-20 00:11:02 +00005905 * @ctxt: a Relax-NG parser context
5906 * @nodes: grammar children nodes
5907 *
5908 * Check for simplification of empty and notAllowed
5909 */
5910static void
Daniel Veillard4c004142003-10-07 11:33:24 +00005911xmlRelaxNGSimplify(xmlRelaxNGParserCtxtPtr ctxt,
5912 xmlRelaxNGDefinePtr cur, xmlRelaxNGDefinePtr parent)
5913{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005914 xmlRelaxNGDefinePtr prev = NULL;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00005915
Daniel Veillardfd573f12003-03-16 17:52:32 +00005916 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005917 if ((cur->type == XML_RELAXNG_REF) ||
5918 (cur->type == XML_RELAXNG_PARENTREF)) {
5919 if (cur->depth != -3) {
5920 cur->depth = -3;
5921 xmlRelaxNGSimplify(ctxt, cur->content, cur);
5922 }
5923 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
5924 cur->parent = parent;
5925 if ((parent != NULL) &&
5926 ((parent->type == XML_RELAXNG_ATTRIBUTE) ||
5927 (parent->type == XML_RELAXNG_LIST) ||
5928 (parent->type == XML_RELAXNG_GROUP) ||
5929 (parent->type == XML_RELAXNG_INTERLEAVE) ||
5930 (parent->type == XML_RELAXNG_ONEORMORE) ||
5931 (parent->type == XML_RELAXNG_ZEROORMORE))) {
5932 parent->type = XML_RELAXNG_NOT_ALLOWED;
5933 break;
5934 }
5935 if ((parent != NULL) && (parent->type == XML_RELAXNG_CHOICE)) {
5936 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
5937 } else
5938 prev = cur;
5939 } else if (cur->type == XML_RELAXNG_EMPTY) {
5940 cur->parent = parent;
5941 if ((parent != NULL) &&
5942 ((parent->type == XML_RELAXNG_ONEORMORE) ||
5943 (parent->type == XML_RELAXNG_ZEROORMORE))) {
5944 parent->type = XML_RELAXNG_EMPTY;
5945 break;
5946 }
5947 if ((parent != NULL) &&
5948 ((parent->type == XML_RELAXNG_GROUP) ||
5949 (parent->type == XML_RELAXNG_INTERLEAVE))) {
5950 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
5951 } else
5952 prev = cur;
5953 } else {
5954 cur->parent = parent;
5955 if (cur->content != NULL)
5956 xmlRelaxNGSimplify(ctxt, cur->content, cur);
5957 if ((cur->type != XML_RELAXNG_VALUE) && (cur->attrs != NULL))
5958 xmlRelaxNGSimplify(ctxt, cur->attrs, cur);
5959 if (cur->nameClass != NULL)
5960 xmlRelaxNGSimplify(ctxt, cur->nameClass, cur);
5961 /*
5962 * On Elements, try to move attribute only generating rules on
5963 * the attrs rules.
5964 */
5965 if (cur->type == XML_RELAXNG_ELEMENT) {
5966 int attronly;
5967 xmlRelaxNGDefinePtr tmp, pre;
Daniel Veillardce192eb2003-04-16 15:58:05 +00005968
Daniel Veillard4c004142003-10-07 11:33:24 +00005969 while (cur->content != NULL) {
5970 attronly =
5971 xmlRelaxNGGenerateAttributes(ctxt, cur->content);
5972 if (attronly == 1) {
5973 /*
5974 * migrate cur->content to attrs
5975 */
5976 tmp = cur->content;
5977 cur->content = tmp->next;
5978 tmp->next = cur->attrs;
5979 cur->attrs = tmp;
5980 } else {
5981 /*
5982 * cur->content can generate elements or text
5983 */
5984 break;
5985 }
5986 }
5987 pre = cur->content;
5988 while ((pre != NULL) && (pre->next != NULL)) {
5989 tmp = pre->next;
5990 attronly = xmlRelaxNGGenerateAttributes(ctxt, tmp);
5991 if (attronly == 1) {
5992 /*
5993 * migrate tmp to attrs
5994 */
5995 pre->next = tmp->next;
5996 tmp->next = cur->attrs;
5997 cur->attrs = tmp;
5998 } else {
5999 pre = tmp;
6000 }
6001 }
6002 }
6003 /*
6004 * This may result in a simplification
6005 */
6006 if ((cur->type == XML_RELAXNG_GROUP) ||
6007 (cur->type == XML_RELAXNG_INTERLEAVE)) {
6008 if (cur->content == NULL)
6009 cur->type = XML_RELAXNG_EMPTY;
6010 else if (cur->content->next == NULL) {
6011 if ((parent == NULL) && (prev == NULL)) {
6012 cur->type = XML_RELAXNG_NOOP;
6013 } else if (prev == NULL) {
6014 parent->content = cur->content;
6015 cur->content->next = cur->next;
6016 cur = cur->content;
6017 } else {
6018 cur->content->next = cur->next;
6019 prev->next = cur->content;
6020 cur = cur->content;
6021 }
6022 }
6023 }
6024 /*
6025 * the current node may have been transformed back
6026 */
6027 if ((cur->type == XML_RELAXNG_EXCEPT) &&
6028 (cur->content != NULL) &&
6029 (cur->content->type == XML_RELAXNG_NOT_ALLOWED)) {
6030 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6031 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
6032 if ((parent != NULL) &&
6033 ((parent->type == XML_RELAXNG_ATTRIBUTE) ||
6034 (parent->type == XML_RELAXNG_LIST) ||
6035 (parent->type == XML_RELAXNG_GROUP) ||
6036 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6037 (parent->type == XML_RELAXNG_ONEORMORE) ||
6038 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6039 parent->type = XML_RELAXNG_NOT_ALLOWED;
6040 break;
6041 }
6042 if ((parent != NULL) &&
6043 (parent->type == XML_RELAXNG_CHOICE)) {
6044 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6045 } else
6046 prev = cur;
6047 } else if (cur->type == XML_RELAXNG_EMPTY) {
6048 if ((parent != NULL) &&
6049 ((parent->type == XML_RELAXNG_ONEORMORE) ||
6050 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6051 parent->type = XML_RELAXNG_EMPTY;
6052 break;
6053 }
6054 if ((parent != NULL) &&
6055 ((parent->type == XML_RELAXNG_GROUP) ||
6056 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6057 (parent->type == XML_RELAXNG_CHOICE))) {
6058 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6059 } else
6060 prev = cur;
6061 } else {
6062 prev = cur;
6063 }
6064 }
6065 cur = cur->next;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006066 }
6067}
6068
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006069/**
6070 * xmlRelaxNGGroupContentType:
6071 * @ct1: the first content type
6072 * @ct2: the second content type
6073 *
6074 * Try to group 2 content types
6075 *
6076 * Returns the content type
6077 */
6078static xmlRelaxNGContentType
6079xmlRelaxNGGroupContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006080 xmlRelaxNGContentType ct2)
6081{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006082 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006083 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6084 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006085 if (ct1 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006086 return (ct2);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006087 if (ct2 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006088 return (ct1);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006089 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00006090 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6091 return (XML_RELAXNG_CONTENT_COMPLEX);
6092 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006093}
6094
6095/**
6096 * xmlRelaxNGMaxContentType:
6097 * @ct1: the first content type
6098 * @ct2: the second content type
6099 *
6100 * Compute the max content-type
6101 *
6102 * Returns the content type
6103 */
6104static xmlRelaxNGContentType
6105xmlRelaxNGMaxContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006106 xmlRelaxNGContentType ct2)
6107{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006108 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006109 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6110 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006111 if ((ct1 == XML_RELAXNG_CONTENT_SIMPLE) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006112 (ct2 == XML_RELAXNG_CONTENT_SIMPLE))
6113 return (XML_RELAXNG_CONTENT_SIMPLE);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006114 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006115 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6116 return (XML_RELAXNG_CONTENT_COMPLEX);
6117 return (XML_RELAXNG_CONTENT_EMPTY);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006118}
Daniel Veillard77648bb2003-02-20 15:03:22 +00006119
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006120/**
6121 * xmlRelaxNGCheckRules:
6122 * @ctxt: a Relax-NG parser context
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006123 * @cur: the current definition
Daniel Veillard77648bb2003-02-20 15:03:22 +00006124 * @flags: some accumulated flags
Daniel Veillardfd573f12003-03-16 17:52:32 +00006125 * @ptype: the parent type
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006126 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006127 * Check for rules in section 7.1 and 7.2
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006128 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006129 * Returns the content type of @cur
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006130 */
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006131static xmlRelaxNGContentType
Daniel Veillard4c004142003-10-07 11:33:24 +00006132xmlRelaxNGCheckRules(xmlRelaxNGParserCtxtPtr ctxt,
6133 xmlRelaxNGDefinePtr cur, int flags,
6134 xmlRelaxNGType ptype)
6135{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006136 int nflags = flags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006137 xmlRelaxNGContentType ret, tmp, val = XML_RELAXNG_CONTENT_EMPTY;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006138
Daniel Veillardfd573f12003-03-16 17:52:32 +00006139 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006140 ret = XML_RELAXNG_CONTENT_EMPTY;
6141 if ((cur->type == XML_RELAXNG_REF) ||
6142 (cur->type == XML_RELAXNG_PARENTREF)) {
Daniel Veillard63d68a32005-03-31 13:50:00 +00006143 /*
6144 * This should actually be caught by list//element(ref) at the
6145 * element boundaries, c.f. Bug #159968 local refs are dropped
6146 * in step 4.19.
6147 */
6148#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00006149 if (flags & XML_RELAXNG_IN_LIST) {
6150 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_REF,
6151 "Found forbidden pattern list//ref\n", NULL,
6152 NULL);
6153 }
Daniel Veillard63d68a32005-03-31 13:50:00 +00006154#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00006155 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6156 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_REF,
6157 "Found forbidden pattern data/except//ref\n",
6158 NULL, NULL);
6159 }
6160 if (cur->depth > -4) {
6161 cur->depth = -4;
6162 ret = xmlRelaxNGCheckRules(ctxt, cur->content,
6163 flags, cur->type);
6164 cur->depth = ret - 15;
6165 } else if (cur->depth == -4) {
6166 ret = XML_RELAXNG_CONTENT_COMPLEX;
6167 } else {
6168 ret = (xmlRelaxNGContentType) (cur->depth + 15);
6169 }
6170 } else if (cur->type == XML_RELAXNG_ELEMENT) {
6171 /*
6172 * The 7.3 Attribute derivation rule for groups is plugged there
6173 */
6174 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6175 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6176 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ELEM,
6177 "Found forbidden pattern data/except//element(ref)\n",
6178 NULL, NULL);
6179 }
6180 if (flags & XML_RELAXNG_IN_LIST) {
6181 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ELEM,
6182 "Found forbidden pattern list//element(ref)\n",
6183 NULL, NULL);
6184 }
6185 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6186 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6187 "Found forbidden pattern attribute//element(ref)\n",
6188 NULL, NULL);
6189 }
6190 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6191 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6192 "Found forbidden pattern attribute//element(ref)\n",
6193 NULL, NULL);
6194 }
6195 /*
6196 * reset since in the simple form elements are only child
6197 * of grammar/define
6198 */
6199 nflags = 0;
6200 ret =
6201 xmlRelaxNGCheckRules(ctxt, cur->attrs, nflags, cur->type);
6202 if (ret != XML_RELAXNG_CONTENT_EMPTY) {
6203 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_EMPTY,
6204 "Element %s attributes have a content type error\n",
6205 cur->name, NULL);
6206 }
6207 ret =
6208 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6209 cur->type);
6210 if (ret == XML_RELAXNG_CONTENT_ERROR) {
6211 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_ERROR,
6212 "Element %s has a content type error\n",
6213 cur->name, NULL);
6214 } else {
6215 ret = XML_RELAXNG_CONTENT_COMPLEX;
6216 }
6217 } else if (cur->type == XML_RELAXNG_ATTRIBUTE) {
6218 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6219 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ATTR,
6220 "Found forbidden pattern attribute//attribute\n",
6221 NULL, NULL);
6222 }
6223 if (flags & XML_RELAXNG_IN_LIST) {
6224 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ATTR,
6225 "Found forbidden pattern list//attribute\n",
6226 NULL, NULL);
6227 }
6228 if (flags & XML_RELAXNG_IN_OOMGROUP) {
6229 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_GROUP_ATTR,
6230 "Found forbidden pattern oneOrMore//group//attribute\n",
6231 NULL, NULL);
6232 }
6233 if (flags & XML_RELAXNG_IN_OOMINTERLEAVE) {
6234 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR,
6235 "Found forbidden pattern oneOrMore//interleave//attribute\n",
6236 NULL, NULL);
6237 }
6238 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6239 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ATTR,
6240 "Found forbidden pattern data/except//attribute\n",
6241 NULL, NULL);
6242 }
6243 if (flags & XML_RELAXNG_IN_START) {
6244 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ATTR,
6245 "Found forbidden pattern start//attribute\n",
6246 NULL, NULL);
6247 }
6248 if ((!(flags & XML_RELAXNG_IN_ONEORMORE))
6249 && (cur->name == NULL)) {
6250 if (cur->ns == NULL) {
6251 xmlRngPErr(ctxt, cur->node, XML_RNGP_ANYNAME_ATTR_ANCESTOR,
6252 "Found anyName attribute without oneOrMore ancestor\n",
6253 NULL, NULL);
6254 } else {
6255 xmlRngPErr(ctxt, cur->node, XML_RNGP_NSNAME_ATTR_ANCESTOR,
6256 "Found nsName attribute without oneOrMore ancestor\n",
6257 NULL, NULL);
6258 }
6259 }
6260 nflags = flags | XML_RELAXNG_IN_ATTRIBUTE;
6261 xmlRelaxNGCheckRules(ctxt, cur->content, nflags, cur->type);
6262 ret = XML_RELAXNG_CONTENT_EMPTY;
6263 } else if ((cur->type == XML_RELAXNG_ONEORMORE) ||
6264 (cur->type == XML_RELAXNG_ZEROORMORE)) {
6265 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6266 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ONEMORE,
6267 "Found forbidden pattern data/except//oneOrMore\n",
6268 NULL, NULL);
6269 }
6270 if (flags & XML_RELAXNG_IN_START) {
6271 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ONEMORE,
6272 "Found forbidden pattern start//oneOrMore\n",
6273 NULL, NULL);
6274 }
6275 nflags = flags | XML_RELAXNG_IN_ONEORMORE;
6276 ret =
6277 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6278 cur->type);
6279 ret = xmlRelaxNGGroupContentType(ret, ret);
6280 } else if (cur->type == XML_RELAXNG_LIST) {
6281 if (flags & XML_RELAXNG_IN_LIST) {
6282 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_LIST,
6283 "Found forbidden pattern list//list\n", NULL,
6284 NULL);
6285 }
6286 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6287 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_LIST,
6288 "Found forbidden pattern data/except//list\n",
6289 NULL, NULL);
6290 }
6291 if (flags & XML_RELAXNG_IN_START) {
6292 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_LIST,
6293 "Found forbidden pattern start//list\n", NULL,
6294 NULL);
6295 }
6296 nflags = flags | XML_RELAXNG_IN_LIST;
6297 ret =
6298 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6299 cur->type);
6300 } else if (cur->type == XML_RELAXNG_GROUP) {
6301 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6302 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_GROUP,
6303 "Found forbidden pattern data/except//group\n",
6304 NULL, NULL);
6305 }
6306 if (flags & XML_RELAXNG_IN_START) {
6307 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_GROUP,
6308 "Found forbidden pattern start//group\n", NULL,
6309 NULL);
6310 }
6311 if (flags & XML_RELAXNG_IN_ONEORMORE)
6312 nflags = flags | XML_RELAXNG_IN_OOMGROUP;
6313 else
6314 nflags = flags;
6315 ret =
6316 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6317 cur->type);
6318 /*
6319 * The 7.3 Attribute derivation rule for groups is plugged there
6320 */
6321 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6322 } else if (cur->type == XML_RELAXNG_INTERLEAVE) {
6323 if (flags & XML_RELAXNG_IN_LIST) {
6324 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_INTERLEAVE,
6325 "Found forbidden pattern list//interleave\n",
6326 NULL, NULL);
6327 }
6328 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6329 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6330 "Found forbidden pattern data/except//interleave\n",
6331 NULL, NULL);
6332 }
6333 if (flags & XML_RELAXNG_IN_START) {
6334 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6335 "Found forbidden pattern start//interleave\n",
6336 NULL, NULL);
6337 }
6338 if (flags & XML_RELAXNG_IN_ONEORMORE)
6339 nflags = flags | XML_RELAXNG_IN_OOMINTERLEAVE;
6340 else
6341 nflags = flags;
6342 ret =
6343 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6344 cur->type);
6345 } else if (cur->type == XML_RELAXNG_EXCEPT) {
6346 if ((cur->parent != NULL) &&
6347 (cur->parent->type == XML_RELAXNG_DATATYPE))
6348 nflags = flags | XML_RELAXNG_IN_DATAEXCEPT;
6349 else
6350 nflags = flags;
6351 ret =
6352 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6353 cur->type);
6354 } else if (cur->type == XML_RELAXNG_DATATYPE) {
6355 if (flags & XML_RELAXNG_IN_START) {
6356 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_DATA,
6357 "Found forbidden pattern start//data\n", NULL,
6358 NULL);
6359 }
6360 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6361 ret = XML_RELAXNG_CONTENT_SIMPLE;
6362 } else if (cur->type == XML_RELAXNG_VALUE) {
6363 if (flags & XML_RELAXNG_IN_START) {
6364 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_VALUE,
6365 "Found forbidden pattern start//value\n", NULL,
6366 NULL);
6367 }
6368 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6369 ret = XML_RELAXNG_CONTENT_SIMPLE;
6370 } else if (cur->type == XML_RELAXNG_TEXT) {
6371 if (flags & XML_RELAXNG_IN_LIST) {
6372 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_TEXT,
6373 "Found forbidden pattern list//text\n", NULL,
6374 NULL);
6375 }
6376 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6377 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_TEXT,
6378 "Found forbidden pattern data/except//text\n",
6379 NULL, NULL);
6380 }
6381 if (flags & XML_RELAXNG_IN_START) {
6382 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_TEXT,
6383 "Found forbidden pattern start//text\n", NULL,
6384 NULL);
6385 }
6386 ret = XML_RELAXNG_CONTENT_COMPLEX;
6387 } else if (cur->type == XML_RELAXNG_EMPTY) {
6388 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6389 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_EMPTY,
6390 "Found forbidden pattern data/except//empty\n",
6391 NULL, NULL);
6392 }
6393 if (flags & XML_RELAXNG_IN_START) {
6394 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_EMPTY,
6395 "Found forbidden pattern start//empty\n", NULL,
6396 NULL);
6397 }
6398 ret = XML_RELAXNG_CONTENT_EMPTY;
6399 } else if (cur->type == XML_RELAXNG_CHOICE) {
6400 xmlRelaxNGCheckChoiceDeterminism(ctxt, cur);
6401 ret =
6402 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6403 } else {
6404 ret =
6405 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6406 }
6407 cur = cur->next;
6408 if (ptype == XML_RELAXNG_GROUP) {
6409 val = xmlRelaxNGGroupContentType(val, ret);
6410 } else if (ptype == XML_RELAXNG_INTERLEAVE) {
6411 tmp = xmlRelaxNGGroupContentType(val, ret);
6412 if (tmp != XML_RELAXNG_CONTENT_ERROR)
6413 tmp = xmlRelaxNGMaxContentType(val, ret);
6414 } else if (ptype == XML_RELAXNG_CHOICE) {
6415 val = xmlRelaxNGMaxContentType(val, ret);
6416 } else if (ptype == XML_RELAXNG_LIST) {
6417 val = XML_RELAXNG_CONTENT_SIMPLE;
6418 } else if (ptype == XML_RELAXNG_EXCEPT) {
6419 if (ret == XML_RELAXNG_CONTENT_ERROR)
6420 val = XML_RELAXNG_CONTENT_ERROR;
6421 else
6422 val = XML_RELAXNG_CONTENT_SIMPLE;
6423 } else {
6424 val = xmlRelaxNGGroupContentType(val, ret);
6425 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00006426
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006427 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006428 return (val);
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006429}
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006430
6431/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006432 * xmlRelaxNGParseGrammar:
6433 * @ctxt: a Relax-NG parser context
6434 * @nodes: grammar children nodes
6435 *
6436 * parse a Relax-NG <grammar> node
6437 *
6438 * Returns the internal xmlRelaxNGGrammarPtr built or
6439 * NULL in case of error
6440 */
6441static xmlRelaxNGGrammarPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006442xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
6443{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006444 xmlRelaxNGGrammarPtr ret, tmp, old;
6445
Daniel Veillardc482e262003-02-26 14:48:48 +00006446#ifdef DEBUG_GRAMMAR
6447 xmlGenericError(xmlGenericErrorContext, "Parsing a new grammar\n");
6448#endif
6449
Daniel Veillard6eadf632003-01-23 18:29:16 +00006450 ret = xmlRelaxNGNewGrammar(ctxt);
6451 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006452 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006453
6454 /*
6455 * Link the new grammar in the tree
6456 */
6457 ret->parent = ctxt->grammar;
6458 if (ctxt->grammar != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006459 tmp = ctxt->grammar->children;
6460 if (tmp == NULL) {
6461 ctxt->grammar->children = ret;
6462 } else {
6463 while (tmp->next != NULL)
6464 tmp = tmp->next;
6465 tmp->next = ret;
6466 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006467 }
6468
6469 old = ctxt->grammar;
6470 ctxt->grammar = ret;
6471 xmlRelaxNGParseGrammarContent(ctxt, nodes);
6472 ctxt->grammar = ret;
Daniel Veillard2df2de22003-02-17 23:34:33 +00006473 if (ctxt->grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006474 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
6475 "Failed to parse <grammar> content\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006476 } else if (ctxt->grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006477 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_NO_START,
6478 "Element <grammar> has no <start>\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006479 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006480
6481 /*
6482 * Apply 4.17 mergingd rules to defines and starts
6483 */
6484 xmlRelaxNGCombineStart(ctxt, ret);
6485 if (ret->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006486 xmlHashScan(ret->defs, (xmlHashScanner) xmlRelaxNGCheckCombine,
6487 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006488 }
6489
6490 /*
6491 * link together defines and refs in this grammar
6492 */
6493 if (ret->refs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006494 xmlHashScan(ret->refs, (xmlHashScanner) xmlRelaxNGCheckReference,
6495 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006496 }
Daniel Veillard952379b2003-03-17 15:37:12 +00006497
Daniel Veillard6eadf632003-01-23 18:29:16 +00006498 ctxt->grammar = old;
Daniel Veillard4c004142003-10-07 11:33:24 +00006499 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006500}
6501
6502/**
6503 * xmlRelaxNGParseDocument:
6504 * @ctxt: a Relax-NG parser context
6505 * @node: the root node of the RelaxNG schema
6506 *
6507 * parse a Relax-NG definition resource and build an internal
6508 * xmlRelaxNG struture which can be used to validate instances.
6509 *
6510 * Returns the internal XML RelaxNG structure built or
6511 * NULL in case of error
6512 */
6513static xmlRelaxNGPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006514xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6515{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006516 xmlRelaxNGPtr schema = NULL;
Daniel Veillard276be4a2003-01-24 01:03:34 +00006517 const xmlChar *olddefine;
Daniel Veillarde431a272003-01-29 23:02:33 +00006518 xmlRelaxNGGrammarPtr old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006519
6520 if ((ctxt == NULL) || (node == NULL))
6521 return (NULL);
6522
6523 schema = xmlRelaxNGNewRelaxNG(ctxt);
6524 if (schema == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006525 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006526
Daniel Veillard276be4a2003-01-24 01:03:34 +00006527 olddefine = ctxt->define;
6528 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006529 if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006530 schema->topgrammar = xmlRelaxNGParseGrammar(ctxt, node->children);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006531 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006532 xmlRelaxNGGrammarPtr tmp, ret;
Daniel Veillardc482e262003-02-26 14:48:48 +00006533
Daniel Veillard4c004142003-10-07 11:33:24 +00006534 schema->topgrammar = ret = xmlRelaxNGNewGrammar(ctxt);
6535 if (schema->topgrammar == NULL) {
6536 return (schema);
6537 }
6538 /*
6539 * Link the new grammar in the tree
6540 */
6541 ret->parent = ctxt->grammar;
6542 if (ctxt->grammar != NULL) {
6543 tmp = ctxt->grammar->children;
6544 if (tmp == NULL) {
6545 ctxt->grammar->children = ret;
6546 } else {
6547 while (tmp->next != NULL)
6548 tmp = tmp->next;
6549 tmp->next = ret;
6550 }
6551 }
6552 old = ctxt->grammar;
6553 ctxt->grammar = ret;
6554 xmlRelaxNGParseStart(ctxt, node);
6555 if (old != NULL)
6556 ctxt->grammar = old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006557 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00006558 ctxt->define = olddefine;
Daniel Veillardd4310742003-02-18 21:12:46 +00006559 if (schema->topgrammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006560 xmlRelaxNGCheckCycles(ctxt, schema->topgrammar->start, 0);
6561 if ((ctxt->flags & XML_RELAXNG_IN_EXTERNALREF) == 0) {
6562 xmlRelaxNGSimplify(ctxt, schema->topgrammar->start, NULL);
6563 while ((schema->topgrammar->start != NULL) &&
6564 (schema->topgrammar->start->type == XML_RELAXNG_NOOP) &&
6565 (schema->topgrammar->start->next != NULL))
6566 schema->topgrammar->start =
6567 schema->topgrammar->start->content;
6568 xmlRelaxNGCheckRules(ctxt, schema->topgrammar->start,
6569 XML_RELAXNG_IN_START, XML_RELAXNG_NOOP);
6570 }
Daniel Veillardd4310742003-02-18 21:12:46 +00006571 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006572#ifdef DEBUG
6573 if (schema == NULL)
6574 xmlGenericError(xmlGenericErrorContext,
6575 "xmlRelaxNGParseDocument() failed\n");
6576#endif
6577
6578 return (schema);
6579}
6580
6581/************************************************************************
6582 * *
6583 * Reading RelaxNGs *
6584 * *
6585 ************************************************************************/
6586
6587/**
6588 * xmlRelaxNGNewParserCtxt:
6589 * @URL: the location of the schema
6590 *
6591 * Create an XML RelaxNGs parse context for that file/resource expected
6592 * to contain an XML RelaxNGs file.
6593 *
6594 * Returns the parser context or NULL in case of error
6595 */
6596xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006597xmlRelaxNGNewParserCtxt(const char *URL)
6598{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006599 xmlRelaxNGParserCtxtPtr ret;
6600
6601 if (URL == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006602 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006603
Daniel Veillard4c004142003-10-07 11:33:24 +00006604 ret =
6605 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006606 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006607 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006608 return (NULL);
6609 }
6610 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard4c004142003-10-07 11:33:24 +00006611 ret->URL = xmlStrdup((const xmlChar *) URL);
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006612 ret->error = xmlGenericError;
6613 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006614 return (ret);
6615}
6616
6617/**
6618 * xmlRelaxNGNewMemParserCtxt:
6619 * @buffer: a pointer to a char array containing the schemas
6620 * @size: the size of the array
6621 *
6622 * Create an XML RelaxNGs parse context for that memory buffer expected
6623 * to contain an XML RelaxNGs file.
6624 *
6625 * Returns the parser context or NULL in case of error
6626 */
6627xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006628xmlRelaxNGNewMemParserCtxt(const char *buffer, int size)
6629{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006630 xmlRelaxNGParserCtxtPtr ret;
6631
6632 if ((buffer == NULL) || (size <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00006633 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006634
Daniel Veillard4c004142003-10-07 11:33:24 +00006635 ret =
6636 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006637 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006638 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006639 return (NULL);
6640 }
6641 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6642 ret->buffer = buffer;
6643 ret->size = size;
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006644 ret->error = xmlGenericError;
6645 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006646 return (ret);
6647}
6648
6649/**
Daniel Veillard33300b42003-04-17 09:09:19 +00006650 * xmlRelaxNGNewDocParserCtxt:
6651 * @doc: a preparsed document tree
6652 *
6653 * Create an XML RelaxNGs parser context for that document.
6654 * Note: since the process of compiling a RelaxNG schemas modifies the
6655 * document, the @doc parameter is duplicated internally.
6656 *
6657 * Returns the parser context or NULL in case of error
6658 */
6659xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006660xmlRelaxNGNewDocParserCtxt(xmlDocPtr doc)
6661{
Daniel Veillard33300b42003-04-17 09:09:19 +00006662 xmlRelaxNGParserCtxtPtr ret;
6663 xmlDocPtr copy;
6664
6665 if (doc == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006666 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006667 copy = xmlCopyDoc(doc, 1);
6668 if (copy == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006669 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006670
Daniel Veillard4c004142003-10-07 11:33:24 +00006671 ret =
6672 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard33300b42003-04-17 09:09:19 +00006673 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006674 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard33300b42003-04-17 09:09:19 +00006675 return (NULL);
6676 }
6677 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6678 ret->document = copy;
Daniel Veillard42595322004-11-08 10:52:06 +00006679 ret->freedoc = 1;
Daniel Veillard33300b42003-04-17 09:09:19 +00006680 ret->userData = xmlGenericErrorContext;
6681 return (ret);
6682}
6683
6684/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006685 * xmlRelaxNGFreeParserCtxt:
6686 * @ctxt: the schema parser context
6687 *
6688 * Free the resources associated to the schema parser context
6689 */
6690void
Daniel Veillard4c004142003-10-07 11:33:24 +00006691xmlRelaxNGFreeParserCtxt(xmlRelaxNGParserCtxtPtr ctxt)
6692{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006693 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006694 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006695 if (ctxt->URL != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006696 xmlFree(ctxt->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006697 if (ctxt->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006698 xmlRelaxNGFreeDocument(ctxt->doc);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00006699 if (ctxt->interleaves != NULL)
6700 xmlHashFree(ctxt->interleaves, NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006701 if (ctxt->documents != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006702 xmlRelaxNGFreeDocumentList(ctxt->documents);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00006703 if (ctxt->includes != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006704 xmlRelaxNGFreeIncludeList(ctxt->includes);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006705 if (ctxt->docTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006706 xmlFree(ctxt->docTab);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00006707 if (ctxt->incTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006708 xmlFree(ctxt->incTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006709 if (ctxt->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006710 int i;
Daniel Veillard419a7682003-02-03 23:22:49 +00006711
Daniel Veillard4c004142003-10-07 11:33:24 +00006712 for (i = 0; i < ctxt->defNr; i++)
6713 xmlRelaxNGFreeDefine(ctxt->defTab[i]);
6714 xmlFree(ctxt->defTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006715 }
Daniel Veillard42595322004-11-08 10:52:06 +00006716 if ((ctxt->document != NULL) && (ctxt->freedoc))
6717 xmlFreeDoc(ctxt->document);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006718 xmlFree(ctxt);
6719}
6720
Daniel Veillard6eadf632003-01-23 18:29:16 +00006721/**
Daniel Veillardd2298792003-02-14 16:54:11 +00006722 * xmlRelaxNGNormExtSpace:
6723 * @value: a value
6724 *
6725 * Removes the leading and ending spaces of the value
6726 * The string is modified "in situ"
6727 */
6728static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006729xmlRelaxNGNormExtSpace(xmlChar * value)
6730{
Daniel Veillardd2298792003-02-14 16:54:11 +00006731 xmlChar *start = value;
6732 xmlChar *cur = value;
Daniel Veillardd2298792003-02-14 16:54:11 +00006733
Daniel Veillard4c004142003-10-07 11:33:24 +00006734 if (value == NULL)
6735 return;
6736
William M. Brack76e95df2003-10-18 16:20:14 +00006737 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006738 cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +00006739 if (cur == start) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006740 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006741 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006742 cur++;
6743 if (*cur == 0)
6744 return;
6745 start = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00006746 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006747 cur++;
6748 if (*cur == 0) {
6749 *start = 0;
6750 return;
6751 }
6752 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006753 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006754 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006755 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006756 *start++ = *cur++;
6757 if (*cur == 0) {
6758 *start = 0;
6759 return;
6760 }
6761 /* don't try to normalize the inner spaces */
William M. Brack76e95df2003-10-18 16:20:14 +00006762 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006763 cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006764 if (*cur == 0) {
6765 *start = 0;
6766 return;
6767 }
Daniel Veillard4aede2e2003-10-17 12:43:59 +00006768 *start++ = *cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006769 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006770 }
6771}
6772
6773/**
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00006774 * xmlRelaxNGCleanupAttributes:
Daniel Veillardd2298792003-02-14 16:54:11 +00006775 * @ctxt: a Relax-NG parser context
6776 * @node: a Relax-NG node
6777 *
6778 * Check all the attributes on the given node
6779 */
6780static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006781xmlRelaxNGCleanupAttributes(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6782{
Daniel Veillardd2298792003-02-14 16:54:11 +00006783 xmlAttrPtr cur, next;
6784
6785 cur = node->properties;
6786 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006787 next = cur->next;
6788 if ((cur->ns == NULL) ||
6789 (xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
6790 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
6791 if ((!xmlStrEqual(node->name, BAD_CAST "element")) &&
6792 (!xmlStrEqual(node->name, BAD_CAST "attribute")) &&
6793 (!xmlStrEqual(node->name, BAD_CAST "ref")) &&
6794 (!xmlStrEqual(node->name, BAD_CAST "parentRef")) &&
6795 (!xmlStrEqual(node->name, BAD_CAST "param")) &&
6796 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6797 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6798 "Attribute %s is not allowed on %s\n",
6799 cur->name, node->name);
6800 }
6801 } else if (xmlStrEqual(cur->name, BAD_CAST "type")) {
6802 if ((!xmlStrEqual(node->name, BAD_CAST "value")) &&
6803 (!xmlStrEqual(node->name, BAD_CAST "data"))) {
6804 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6805 "Attribute %s is not allowed on %s\n",
6806 cur->name, node->name);
6807 }
6808 } else if (xmlStrEqual(cur->name, BAD_CAST "href")) {
6809 if ((!xmlStrEqual(node->name, BAD_CAST "externalRef")) &&
6810 (!xmlStrEqual(node->name, BAD_CAST "include"))) {
6811 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6812 "Attribute %s is not allowed on %s\n",
6813 cur->name, node->name);
6814 }
6815 } else if (xmlStrEqual(cur->name, BAD_CAST "combine")) {
6816 if ((!xmlStrEqual(node->name, BAD_CAST "start")) &&
6817 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6818 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6819 "Attribute %s is not allowed on %s\n",
6820 cur->name, node->name);
6821 }
6822 } else if (xmlStrEqual(cur->name, BAD_CAST "datatypeLibrary")) {
6823 xmlChar *val;
6824 xmlURIPtr uri;
Daniel Veillardd2298792003-02-14 16:54:11 +00006825
Daniel Veillard4c004142003-10-07 11:33:24 +00006826 val = xmlNodeListGetString(node->doc, cur->children, 1);
6827 if (val != NULL) {
6828 if (val[0] != 0) {
6829 uri = xmlParseURI((const char *) val);
6830 if (uri == NULL) {
6831 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_URI,
6832 "Attribute %s contains invalid URI %s\n",
6833 cur->name, val);
6834 } else {
6835 if (uri->scheme == NULL) {
6836 xmlRngPErr(ctxt, node, XML_RNGP_URI_NOT_ABSOLUTE,
6837 "Attribute %s URI %s is not absolute\n",
6838 cur->name, val);
6839 }
6840 if (uri->fragment != NULL) {
6841 xmlRngPErr(ctxt, node, XML_RNGP_URI_FRAGMENT,
6842 "Attribute %s URI %s has a fragment ID\n",
6843 cur->name, val);
6844 }
6845 xmlFreeURI(uri);
6846 }
6847 }
6848 xmlFree(val);
6849 }
6850 } else if (!xmlStrEqual(cur->name, BAD_CAST "ns")) {
6851 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_ATTRIBUTE,
6852 "Unknown attribute %s on %s\n", cur->name,
6853 node->name);
6854 }
6855 }
6856 cur = next;
Daniel Veillardd2298792003-02-14 16:54:11 +00006857 }
6858}
6859
6860/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00006861 * xmlRelaxNGCleanupTree:
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006862 * @ctxt: a Relax-NG parser context
Daniel Veillardc5312d72003-02-21 17:14:10 +00006863 * @root: an xmlNodePtr subtree
Daniel Veillard6eadf632003-01-23 18:29:16 +00006864 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00006865 * Cleanup the subtree from unwanted nodes for parsing, resolve
6866 * Include and externalRef lookups.
Daniel Veillard6eadf632003-01-23 18:29:16 +00006867 */
Daniel Veillardc5312d72003-02-21 17:14:10 +00006868static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006869xmlRelaxNGCleanupTree(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr root)
6870{
Daniel Veillardc5312d72003-02-21 17:14:10 +00006871 xmlNodePtr cur, delete;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006872
Daniel Veillard6eadf632003-01-23 18:29:16 +00006873 delete = NULL;
6874 cur = root;
6875 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006876 if (delete != NULL) {
6877 xmlUnlinkNode(delete);
6878 xmlFreeNode(delete);
6879 delete = NULL;
6880 }
6881 if (cur->type == XML_ELEMENT_NODE) {
6882 /*
6883 * Simplification 4.1. Annotations
6884 */
6885 if ((cur->ns == NULL) ||
6886 (!xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
6887 if ((cur->parent != NULL) &&
6888 (cur->parent->type == XML_ELEMENT_NODE) &&
6889 ((xmlStrEqual(cur->parent->name, BAD_CAST "name")) ||
6890 (xmlStrEqual(cur->parent->name, BAD_CAST "value")) ||
6891 (xmlStrEqual(cur->parent->name, BAD_CAST "param")))) {
6892 xmlRngPErr(ctxt, cur, XML_RNGP_FOREIGN_ELEMENT,
6893 "element %s doesn't allow foreign elements\n",
6894 cur->parent->name, NULL);
6895 }
6896 delete = cur;
6897 goto skip_children;
6898 } else {
6899 xmlRelaxNGCleanupAttributes(ctxt, cur);
6900 if (xmlStrEqual(cur->name, BAD_CAST "externalRef")) {
6901 xmlChar *href, *ns, *base, *URL;
6902 xmlRelaxNGDocumentPtr docu;
6903 xmlNodePtr tmp;
Daniel Veillard6dc91962004-03-22 19:10:02 +00006904 xmlURIPtr uri;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006905
Daniel Veillard4c004142003-10-07 11:33:24 +00006906 ns = xmlGetProp(cur, BAD_CAST "ns");
6907 if (ns == NULL) {
6908 tmp = cur->parent;
6909 while ((tmp != NULL) &&
6910 (tmp->type == XML_ELEMENT_NODE)) {
6911 ns = xmlGetProp(tmp, BAD_CAST "ns");
6912 if (ns != NULL)
6913 break;
6914 tmp = tmp->parent;
6915 }
6916 }
6917 href = xmlGetProp(cur, BAD_CAST "href");
6918 if (href == NULL) {
6919 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
6920 "xmlRelaxNGParse: externalRef has no href attribute\n",
6921 NULL, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00006922 if (ns != NULL)
6923 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00006924 delete = cur;
6925 goto skip_children;
6926 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00006927 uri = xmlParseURI((const char *) href);
6928 if (uri == NULL) {
6929 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
6930 "Incorrect URI for externalRef %s\n",
6931 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00006932 if (ns != NULL)
6933 xmlFree(ns);
Daniel Veillard6dc91962004-03-22 19:10:02 +00006934 if (href != NULL)
6935 xmlFree(href);
6936 delete = cur;
6937 goto skip_children;
6938 }
6939 if (uri->fragment != NULL) {
6940 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
6941 "Fragment forbidden in URI for externalRef %s\n",
6942 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00006943 if (ns != NULL)
6944 xmlFree(ns);
Daniel Veillard6dc91962004-03-22 19:10:02 +00006945 xmlFreeURI(uri);
6946 if (href != NULL)
6947 xmlFree(href);
6948 delete = cur;
6949 goto skip_children;
6950 }
6951 xmlFreeURI(uri);
Daniel Veillard4c004142003-10-07 11:33:24 +00006952 base = xmlNodeGetBase(cur->doc, cur);
6953 URL = xmlBuildURI(href, base);
6954 if (URL == NULL) {
6955 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
6956 "Failed to compute URL for externalRef %s\n",
6957 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00006958 if (ns != NULL)
6959 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00006960 if (href != NULL)
6961 xmlFree(href);
6962 if (base != NULL)
6963 xmlFree(base);
6964 delete = cur;
6965 goto skip_children;
6966 }
6967 if (href != NULL)
6968 xmlFree(href);
6969 if (base != NULL)
6970 xmlFree(base);
6971 docu = xmlRelaxNGLoadExternalRef(ctxt, URL, ns);
6972 if (docu == NULL) {
6973 xmlRngPErr(ctxt, cur, XML_RNGP_EXTERNAL_REF_FAILURE,
6974 "Failed to load externalRef %s\n", URL,
6975 NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00006976 if (ns != NULL)
6977 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00006978 xmlFree(URL);
6979 delete = cur;
6980 goto skip_children;
6981 }
6982 if (ns != NULL)
6983 xmlFree(ns);
6984 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00006985 cur->psvi = docu;
Daniel Veillard4c004142003-10-07 11:33:24 +00006986 } else if (xmlStrEqual(cur->name, BAD_CAST "include")) {
6987 xmlChar *href, *ns, *base, *URL;
6988 xmlRelaxNGIncludePtr incl;
6989 xmlNodePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006990
Daniel Veillard4c004142003-10-07 11:33:24 +00006991 href = xmlGetProp(cur, BAD_CAST "href");
6992 if (href == NULL) {
6993 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
6994 "xmlRelaxNGParse: include has no href attribute\n",
6995 NULL, NULL);
6996 delete = cur;
6997 goto skip_children;
6998 }
6999 base = xmlNodeGetBase(cur->doc, cur);
7000 URL = xmlBuildURI(href, base);
7001 if (URL == NULL) {
7002 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7003 "Failed to compute URL for include %s\n",
7004 href, NULL);
7005 if (href != NULL)
7006 xmlFree(href);
7007 if (base != NULL)
7008 xmlFree(base);
7009 delete = cur;
7010 goto skip_children;
7011 }
7012 if (href != NULL)
7013 xmlFree(href);
7014 if (base != NULL)
7015 xmlFree(base);
7016 ns = xmlGetProp(cur, BAD_CAST "ns");
7017 if (ns == NULL) {
7018 tmp = cur->parent;
7019 while ((tmp != NULL) &&
7020 (tmp->type == XML_ELEMENT_NODE)) {
7021 ns = xmlGetProp(tmp, BAD_CAST "ns");
7022 if (ns != NULL)
7023 break;
7024 tmp = tmp->parent;
7025 }
7026 }
7027 incl = xmlRelaxNGLoadInclude(ctxt, URL, cur, ns);
7028 if (ns != NULL)
7029 xmlFree(ns);
7030 if (incl == NULL) {
7031 xmlRngPErr(ctxt, cur, XML_RNGP_INCLUDE_FAILURE,
7032 "Failed to load include %s\n", URL,
7033 NULL);
7034 xmlFree(URL);
7035 delete = cur;
7036 goto skip_children;
7037 }
7038 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00007039 cur->psvi = incl;
Daniel Veillard4c004142003-10-07 11:33:24 +00007040 } else if ((xmlStrEqual(cur->name, BAD_CAST "element")) ||
7041 (xmlStrEqual(cur->name, BAD_CAST "attribute")))
7042 {
7043 xmlChar *name, *ns;
7044 xmlNodePtr text = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007045
Daniel Veillard4c004142003-10-07 11:33:24 +00007046 /*
7047 * Simplification 4.8. name attribute of element
7048 * and attribute elements
7049 */
7050 name = xmlGetProp(cur, BAD_CAST "name");
7051 if (name != NULL) {
7052 if (cur->children == NULL) {
7053 text =
7054 xmlNewChild(cur, cur->ns, BAD_CAST "name",
7055 name);
7056 } else {
7057 xmlNodePtr node;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007058
Daniel Veillard03a53c32004-10-26 16:06:51 +00007059 node = xmlNewDocNode(cur->doc, cur->ns,
7060 BAD_CAST "name", NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00007061 if (node != NULL) {
7062 xmlAddPrevSibling(cur->children, node);
7063 text = xmlNewText(name);
7064 xmlAddChild(node, text);
7065 text = node;
7066 }
7067 }
7068 if (text == NULL) {
7069 xmlRngPErr(ctxt, cur, XML_RNGP_CREATE_FAILURE,
7070 "Failed to create a name %s element\n",
7071 name, NULL);
7072 }
7073 xmlUnsetProp(cur, BAD_CAST "name");
7074 xmlFree(name);
7075 ns = xmlGetProp(cur, BAD_CAST "ns");
7076 if (ns != NULL) {
7077 if (text != NULL) {
7078 xmlSetProp(text, BAD_CAST "ns", ns);
7079 /* xmlUnsetProp(cur, BAD_CAST "ns"); */
7080 }
7081 xmlFree(ns);
7082 } else if (xmlStrEqual(cur->name,
7083 BAD_CAST "attribute")) {
7084 xmlSetProp(text, BAD_CAST "ns", BAD_CAST "");
7085 }
7086 }
7087 } else if ((xmlStrEqual(cur->name, BAD_CAST "name")) ||
7088 (xmlStrEqual(cur->name, BAD_CAST "nsName")) ||
7089 (xmlStrEqual(cur->name, BAD_CAST "value"))) {
7090 /*
7091 * Simplification 4.8. name attribute of element
7092 * and attribute elements
7093 */
7094 if (xmlHasProp(cur, BAD_CAST "ns") == NULL) {
7095 xmlNodePtr node;
7096 xmlChar *ns = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007097
Daniel Veillard4c004142003-10-07 11:33:24 +00007098 node = cur->parent;
7099 while ((node != NULL) &&
7100 (node->type == XML_ELEMENT_NODE)) {
7101 ns = xmlGetProp(node, BAD_CAST "ns");
7102 if (ns != NULL) {
7103 break;
7104 }
7105 node = node->parent;
7106 }
7107 if (ns == NULL) {
7108 xmlSetProp(cur, BAD_CAST "ns", BAD_CAST "");
7109 } else {
7110 xmlSetProp(cur, BAD_CAST "ns", ns);
7111 xmlFree(ns);
7112 }
7113 }
7114 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
7115 xmlChar *name, *local, *prefix;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007116
Daniel Veillard4c004142003-10-07 11:33:24 +00007117 /*
7118 * Simplification: 4.10. QNames
7119 */
7120 name = xmlNodeGetContent(cur);
7121 if (name != NULL) {
7122 local = xmlSplitQName2(name, &prefix);
7123 if (local != NULL) {
7124 xmlNsPtr ns;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007125
Daniel Veillard4c004142003-10-07 11:33:24 +00007126 ns = xmlSearchNs(cur->doc, cur, prefix);
7127 if (ns == NULL) {
7128 xmlRngPErr(ctxt, cur,
7129 XML_RNGP_PREFIX_UNDEFINED,
7130 "xmlRelaxNGParse: no namespace for prefix %s\n",
7131 prefix, NULL);
7132 } else {
7133 xmlSetProp(cur, BAD_CAST "ns",
7134 ns->href);
7135 xmlNodeSetContent(cur, local);
7136 }
7137 xmlFree(local);
7138 xmlFree(prefix);
7139 }
7140 xmlFree(name);
7141 }
7142 }
7143 /*
7144 * 4.16
7145 */
7146 if (xmlStrEqual(cur->name, BAD_CAST "nsName")) {
7147 if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7148 xmlRngPErr(ctxt, cur,
7149 XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME,
7150 "Found nsName/except//nsName forbidden construct\n",
7151 NULL, NULL);
7152 }
7153 }
7154 } else if ((xmlStrEqual(cur->name, BAD_CAST "except")) &&
7155 (cur != root)) {
7156 int oldflags = ctxt->flags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007157
Daniel Veillard4c004142003-10-07 11:33:24 +00007158 /*
7159 * 4.16
7160 */
7161 if ((cur->parent != NULL) &&
7162 (xmlStrEqual
7163 (cur->parent->name, BAD_CAST "anyName"))) {
7164 ctxt->flags |= XML_RELAXNG_IN_ANYEXCEPT;
7165 xmlRelaxNGCleanupTree(ctxt, cur);
7166 ctxt->flags = oldflags;
7167 goto skip_children;
7168 } else if ((cur->parent != NULL) &&
7169 (xmlStrEqual
7170 (cur->parent->name, BAD_CAST "nsName"))) {
7171 ctxt->flags |= XML_RELAXNG_IN_NSEXCEPT;
7172 xmlRelaxNGCleanupTree(ctxt, cur);
7173 ctxt->flags = oldflags;
7174 goto skip_children;
7175 }
7176 } else if (xmlStrEqual(cur->name, BAD_CAST "anyName")) {
7177 /*
7178 * 4.16
7179 */
7180 if (ctxt->flags & XML_RELAXNG_IN_ANYEXCEPT) {
7181 xmlRngPErr(ctxt, cur,
7182 XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME,
7183 "Found anyName/except//anyName forbidden construct\n",
7184 NULL, NULL);
7185 } else if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7186 xmlRngPErr(ctxt, cur,
7187 XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME,
7188 "Found nsName/except//anyName forbidden construct\n",
7189 NULL, NULL);
7190 }
7191 }
7192 /*
7193 * Thisd is not an else since "include" is transformed
7194 * into a div
7195 */
7196 if (xmlStrEqual(cur->name, BAD_CAST "div")) {
7197 xmlChar *ns;
7198 xmlNodePtr child, ins, tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007199
Daniel Veillard4c004142003-10-07 11:33:24 +00007200 /*
7201 * implements rule 4.11
7202 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00007203
Daniel Veillard4c004142003-10-07 11:33:24 +00007204 ns = xmlGetProp(cur, BAD_CAST "ns");
7205
7206 child = cur->children;
7207 ins = cur;
7208 while (child != NULL) {
7209 if (ns != NULL) {
7210 if (!xmlHasProp(child, BAD_CAST "ns")) {
7211 xmlSetProp(child, BAD_CAST "ns", ns);
7212 }
7213 }
7214 tmp = child->next;
7215 xmlUnlinkNode(child);
7216 ins = xmlAddNextSibling(ins, child);
7217 child = tmp;
7218 }
7219 if (ns != NULL)
7220 xmlFree(ns);
William M. Brack8eabb052004-06-07 14:15:54 +00007221 /*
7222 * Since we are about to delete cur, if it's nsDef is non-NULL we
7223 * need to preserve it (it contains the ns definitions for the
7224 * children we just moved). We'll just stick it on to the end
7225 * of cur->parent's list, since it's never going to be re-serialized
7226 * (bug 143738).
7227 */
7228 if (cur->nsDef != NULL) {
7229 xmlNsPtr parDef = (xmlNsPtr)&cur->parent->nsDef;
7230 while (parDef->next != NULL)
7231 parDef = parDef->next;
7232 parDef->next = cur->nsDef;
7233 cur->nsDef = NULL;
7234 }
Daniel Veillard4c004142003-10-07 11:33:24 +00007235 delete = cur;
7236 goto skip_children;
7237 }
7238 }
7239 }
7240 /*
7241 * Simplification 4.2 whitespaces
7242 */
7243 else if ((cur->type == XML_TEXT_NODE) ||
7244 (cur->type == XML_CDATA_SECTION_NODE)) {
7245 if (IS_BLANK_NODE(cur)) {
7246 if (cur->parent->type == XML_ELEMENT_NODE) {
7247 if ((!xmlStrEqual(cur->parent->name, BAD_CAST "value"))
7248 &&
7249 (!xmlStrEqual
7250 (cur->parent->name, BAD_CAST "param")))
7251 delete = cur;
7252 } else {
7253 delete = cur;
7254 goto skip_children;
7255 }
7256 }
7257 } else {
7258 delete = cur;
7259 goto skip_children;
7260 }
7261
7262 /*
7263 * Skip to next node
7264 */
7265 if (cur->children != NULL) {
7266 if ((cur->children->type != XML_ENTITY_DECL) &&
7267 (cur->children->type != XML_ENTITY_REF_NODE) &&
7268 (cur->children->type != XML_ENTITY_NODE)) {
7269 cur = cur->children;
7270 continue;
7271 }
7272 }
7273 skip_children:
7274 if (cur->next != NULL) {
7275 cur = cur->next;
7276 continue;
7277 }
7278
7279 do {
7280 cur = cur->parent;
7281 if (cur == NULL)
7282 break;
7283 if (cur == root) {
7284 cur = NULL;
7285 break;
7286 }
7287 if (cur->next != NULL) {
7288 cur = cur->next;
7289 break;
7290 }
7291 } while (cur != NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007292 }
7293 if (delete != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007294 xmlUnlinkNode(delete);
7295 xmlFreeNode(delete);
7296 delete = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007297 }
Daniel Veillardc5312d72003-02-21 17:14:10 +00007298}
Daniel Veillard6eadf632003-01-23 18:29:16 +00007299
Daniel Veillardc5312d72003-02-21 17:14:10 +00007300/**
7301 * xmlRelaxNGCleanupDoc:
7302 * @ctxt: a Relax-NG parser context
7303 * @doc: an xmldocPtr document pointer
7304 *
7305 * Cleanup the document from unwanted nodes for parsing, resolve
7306 * Include and externalRef lookups.
7307 *
7308 * Returns the cleaned up document or NULL in case of error
7309 */
7310static xmlDocPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00007311xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt, xmlDocPtr doc)
7312{
Daniel Veillardc5312d72003-02-21 17:14:10 +00007313 xmlNodePtr root;
7314
7315 /*
7316 * Extract the root
7317 */
7318 root = xmlDocGetRootElement(doc);
7319 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007320 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
7321 ctxt->URL, NULL);
Daniel Veillardc5312d72003-02-21 17:14:10 +00007322 return (NULL);
7323 }
7324 xmlRelaxNGCleanupTree(ctxt, root);
Daniel Veillard4c004142003-10-07 11:33:24 +00007325 return (doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007326}
7327
7328/**
7329 * xmlRelaxNGParse:
7330 * @ctxt: a Relax-NG parser context
7331 *
7332 * parse a schema definition resource and build an internal
7333 * XML Shema struture which can be used to validate instances.
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007334 *
7335 * Returns the internal XML RelaxNG structure built from the resource or
7336 * NULL in case of error
7337 */
7338xmlRelaxNGPtr
7339xmlRelaxNGParse(xmlRelaxNGParserCtxtPtr ctxt)
7340{
7341 xmlRelaxNGPtr ret = NULL;
7342 xmlDocPtr doc;
7343 xmlNodePtr root;
7344
7345 xmlRelaxNGInitTypes();
7346
7347 if (ctxt == NULL)
7348 return (NULL);
7349
7350 /*
7351 * First step is to parse the input document into an DOM/Infoset
7352 */
7353 if (ctxt->URL != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007354 doc = xmlReadFile((const char *) ctxt->URL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007355 if (doc == NULL) {
7356 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7357 "xmlRelaxNGParse: could not load %s\n", ctxt->URL,
7358 NULL);
7359 return (NULL);
7360 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007361 } else if (ctxt->buffer != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007362 doc = xmlReadMemory(ctxt->buffer, ctxt->size,NULL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007363 if (doc == NULL) {
7364 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7365 "xmlRelaxNGParse: could not parse schemas\n", NULL,
7366 NULL);
7367 return (NULL);
7368 }
7369 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7370 ctxt->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
Daniel Veillard33300b42003-04-17 09:09:19 +00007371 } else if (ctxt->document != NULL) {
7372 doc = ctxt->document;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007373 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007374 xmlRngPErr(ctxt, NULL, XML_RNGP_EMPTY,
7375 "xmlRelaxNGParse: nothing to parse\n", NULL, NULL);
7376 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007377 }
7378 ctxt->document = doc;
7379
7380 /*
7381 * Some preprocessing of the document content
7382 */
7383 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
7384 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007385 xmlFreeDoc(ctxt->document);
7386 ctxt->document = NULL;
7387 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007388 }
7389
Daniel Veillard6eadf632003-01-23 18:29:16 +00007390 /*
7391 * Then do the parsing for good
7392 */
7393 root = xmlDocGetRootElement(doc);
7394 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007395 xmlRngPErr(ctxt, (xmlNodePtr) doc,
7396 XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
Daniel Veillard3f845a92006-04-13 07:33:44 +00007397 (ctxt->URL ? ctxt->URL : "schemas"), NULL);
7398
7399 xmlFreeDoc(ctxt->document);
7400 ctxt->document = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007401 return (NULL);
7402 }
7403 ret = xmlRelaxNGParseDocument(ctxt, root);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007404 if (ret == NULL) {
Daniel Veillard3f845a92006-04-13 07:33:44 +00007405 xmlFreeDoc(ctxt->document);
7406 ctxt->document = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007407 return (NULL);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007408 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00007409
7410 /*
Daniel Veillardfd573f12003-03-16 17:52:32 +00007411 * Check the ref/defines links
7412 */
7413 /*
7414 * try to preprocess interleaves
7415 */
7416 if (ctxt->interleaves != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007417 xmlHashScan(ctxt->interleaves,
7418 (xmlHashScanner) xmlRelaxNGComputeInterleaves, ctxt);
Daniel Veillardfd573f12003-03-16 17:52:32 +00007419 }
7420
7421 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007422 * if there was a parsing error return NULL
7423 */
7424 if (ctxt->nbErrors > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007425 xmlRelaxNGFree(ret);
7426 ctxt->document = NULL;
7427 xmlFreeDoc(doc);
7428 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007429 }
7430
7431 /*
Daniel Veillard52b48c72003-04-13 19:53:42 +00007432 * try to compile (parts of) the schemas
7433 */
Daniel Veillardce192eb2003-04-16 15:58:05 +00007434 if ((ret->topgrammar != NULL) && (ret->topgrammar->start != NULL)) {
7435 if (ret->topgrammar->start->type != XML_RELAXNG_START) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007436 xmlRelaxNGDefinePtr def;
Daniel Veillardf4e55762003-04-15 23:32:22 +00007437
Daniel Veillard4c004142003-10-07 11:33:24 +00007438 def = xmlRelaxNGNewDefine(ctxt, NULL);
7439 if (def != NULL) {
7440 def->type = XML_RELAXNG_START;
7441 def->content = ret->topgrammar->start;
7442 ret->topgrammar->start = def;
7443 }
7444 }
7445 xmlRelaxNGTryCompile(ctxt, ret->topgrammar->start);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007446 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00007447
7448 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007449 * Transfer the pointer for cleanup at the schema level.
7450 */
7451 ret->doc = doc;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007452 ctxt->document = NULL;
7453 ret->documents = ctxt->documents;
7454 ctxt->documents = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007455
Daniel Veillarde2a5a082003-02-02 14:35:17 +00007456 ret->includes = ctxt->includes;
7457 ctxt->includes = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00007458 ret->defNr = ctxt->defNr;
7459 ret->defTab = ctxt->defTab;
7460 ctxt->defTab = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00007461 if (ctxt->idref == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00007462 ret->idref = 1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007463
7464 return (ret);
7465}
Daniel Veillard4c004142003-10-07 11:33:24 +00007466
Daniel Veillard6eadf632003-01-23 18:29:16 +00007467/**
7468 * xmlRelaxNGSetParserErrors:
7469 * @ctxt: a Relax-NG validation context
7470 * @err: the error callback
7471 * @warn: the warning callback
7472 * @ctx: contextual data for the callbacks
7473 *
7474 * Set the callback functions used to handle errors for a validation context
7475 */
7476void
7477xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007478 xmlRelaxNGValidityErrorFunc err,
7479 xmlRelaxNGValidityWarningFunc warn, void *ctx)
7480{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007481 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007482 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007483 ctxt->error = err;
7484 ctxt->warning = warn;
Daniel Veillardb30ca312005-09-04 13:50:03 +00007485 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007486 ctxt->userData = ctx;
7487}
Daniel Veillard409a8142003-07-18 15:16:57 +00007488
7489/**
7490 * xmlRelaxNGGetParserErrors:
7491 * @ctxt: a Relax-NG validation context
7492 * @err: the error callback result
7493 * @warn: the warning callback result
7494 * @ctx: contextual data for the callbacks result
7495 *
7496 * Get the callback information used to handle errors for a validation context
7497 *
7498 * Returns -1 in case of failure, 0 otherwise.
7499 */
7500int
7501xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007502 xmlRelaxNGValidityErrorFunc * err,
7503 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
7504{
Daniel Veillard409a8142003-07-18 15:16:57 +00007505 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007506 return (-1);
7507 if (err != NULL)
7508 *err = ctxt->error;
7509 if (warn != NULL)
7510 *warn = ctxt->warning;
7511 if (ctx != NULL)
7512 *ctx = ctxt->userData;
7513 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +00007514}
7515
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007516void
7517xmlRelaxNGSetParserStructuredErrors(
7518 xmlRelaxNGParserCtxtPtr ctxt,
7519 xmlStructuredErrorFunc serror,
7520 void *ctx)
7521{
7522 if (ctxt == NULL)
7523 return;
7524 ctxt->serror = serror;
7525 ctxt->error = NULL;
7526 ctxt->warning = NULL;
7527 ctxt->userData = ctx;
7528}
7529
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007530#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard4c004142003-10-07 11:33:24 +00007531
Daniel Veillard6eadf632003-01-23 18:29:16 +00007532/************************************************************************
7533 * *
7534 * Dump back a compiled form *
7535 * *
7536 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007537static void xmlRelaxNGDumpDefine(FILE * output,
7538 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007539
7540/**
7541 * xmlRelaxNGDumpDefines:
7542 * @output: the file output
7543 * @defines: a list of define structures
7544 *
7545 * Dump a RelaxNG structure back
7546 */
7547static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007548xmlRelaxNGDumpDefines(FILE * output, xmlRelaxNGDefinePtr defines)
7549{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007550 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007551 xmlRelaxNGDumpDefine(output, defines);
7552 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007553 }
7554}
7555
7556/**
7557 * xmlRelaxNGDumpDefine:
7558 * @output: the file output
7559 * @define: a define structure
7560 *
7561 * Dump a RelaxNG structure back
7562 */
7563static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007564xmlRelaxNGDumpDefine(FILE * output, xmlRelaxNGDefinePtr define)
7565{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007566 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007567 return;
7568 switch (define->type) {
Daniel Veillard6eadf632003-01-23 18:29:16 +00007569 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00007570 fprintf(output, "<empty/>\n");
7571 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007572 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00007573 fprintf(output, "<notAllowed/>\n");
7574 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007575 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007576 fprintf(output, "<text/>\n");
7577 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007578 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007579 fprintf(output, "<element>\n");
7580 if (define->name != NULL) {
7581 fprintf(output, "<name");
7582 if (define->ns != NULL)
7583 fprintf(output, " ns=\"%s\"", define->ns);
7584 fprintf(output, ">%s</name>\n", define->name);
7585 }
7586 xmlRelaxNGDumpDefines(output, define->attrs);
7587 xmlRelaxNGDumpDefines(output, define->content);
7588 fprintf(output, "</element>\n");
7589 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007590 case XML_RELAXNG_LIST:
Daniel Veillard4c004142003-10-07 11:33:24 +00007591 fprintf(output, "<list>\n");
7592 xmlRelaxNGDumpDefines(output, define->content);
7593 fprintf(output, "</list>\n");
7594 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007595 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007596 fprintf(output, "<oneOrMore>\n");
7597 xmlRelaxNGDumpDefines(output, define->content);
7598 fprintf(output, "</oneOrMore>\n");
7599 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007600 case XML_RELAXNG_ZEROORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007601 fprintf(output, "<zeroOrMore>\n");
7602 xmlRelaxNGDumpDefines(output, define->content);
7603 fprintf(output, "</zeroOrMore>\n");
7604 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007605 case XML_RELAXNG_CHOICE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007606 fprintf(output, "<choice>\n");
7607 xmlRelaxNGDumpDefines(output, define->content);
7608 fprintf(output, "</choice>\n");
7609 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007610 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00007611 fprintf(output, "<group>\n");
7612 xmlRelaxNGDumpDefines(output, define->content);
7613 fprintf(output, "</group>\n");
7614 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007615 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007616 fprintf(output, "<interleave>\n");
7617 xmlRelaxNGDumpDefines(output, define->content);
7618 fprintf(output, "</interleave>\n");
7619 break;
7620 case XML_RELAXNG_OPTIONAL:
7621 fprintf(output, "<optional>\n");
7622 xmlRelaxNGDumpDefines(output, define->content);
7623 fprintf(output, "</optional>\n");
7624 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007625 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007626 fprintf(output, "<attribute>\n");
7627 xmlRelaxNGDumpDefines(output, define->content);
7628 fprintf(output, "</attribute>\n");
7629 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007630 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007631 fprintf(output, "<define");
7632 if (define->name != NULL)
7633 fprintf(output, " name=\"%s\"", define->name);
7634 fprintf(output, ">\n");
7635 xmlRelaxNGDumpDefines(output, define->content);
7636 fprintf(output, "</define>\n");
7637 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007638 case XML_RELAXNG_REF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007639 fprintf(output, "<ref");
7640 if (define->name != NULL)
7641 fprintf(output, " name=\"%s\"", define->name);
7642 fprintf(output, ">\n");
7643 xmlRelaxNGDumpDefines(output, define->content);
7644 fprintf(output, "</ref>\n");
7645 break;
Daniel Veillard419a7682003-02-03 23:22:49 +00007646 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007647 fprintf(output, "<parentRef");
7648 if (define->name != NULL)
7649 fprintf(output, " name=\"%s\"", define->name);
7650 fprintf(output, ">\n");
7651 xmlRelaxNGDumpDefines(output, define->content);
7652 fprintf(output, "</parentRef>\n");
7653 break;
7654 case XML_RELAXNG_EXTERNALREF:
7655 fprintf(output, "<externalRef>");
7656 xmlRelaxNGDumpDefines(output, define->content);
7657 fprintf(output, "</externalRef>\n");
7658 break;
Daniel Veillarde431a272003-01-29 23:02:33 +00007659 case XML_RELAXNG_DATATYPE:
Daniel Veillard6eadf632003-01-23 18:29:16 +00007660 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007661 TODO break;
7662 case XML_RELAXNG_START:
7663 case XML_RELAXNG_EXCEPT:
7664 case XML_RELAXNG_PARAM:
7665 TODO break;
7666 case XML_RELAXNG_NOOP:
7667 xmlRelaxNGDumpDefines(output, define->content);
7668 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007669 }
7670}
Daniel Veillard4c004142003-10-07 11:33:24 +00007671
Daniel Veillard6eadf632003-01-23 18:29:16 +00007672/**
7673 * xmlRelaxNGDumpGrammar:
7674 * @output: the file output
7675 * @grammar: a grammar structure
7676 * @top: is this a top grammar
7677 *
7678 * Dump a RelaxNG structure back
7679 */
7680static void
7681xmlRelaxNGDumpGrammar(FILE * output, xmlRelaxNGGrammarPtr grammar, int top)
7682{
7683 if (grammar == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007684 return;
7685
Daniel Veillard6eadf632003-01-23 18:29:16 +00007686 fprintf(output, "<grammar");
7687 if (top)
Daniel Veillard4c004142003-10-07 11:33:24 +00007688 fprintf(output, " xmlns=\"http://relaxng.org/ns/structure/1.0\"");
7689 switch (grammar->combine) {
7690 case XML_RELAXNG_COMBINE_UNDEFINED:
7691 break;
7692 case XML_RELAXNG_COMBINE_CHOICE:
7693 fprintf(output, " combine=\"choice\"");
7694 break;
7695 case XML_RELAXNG_COMBINE_INTERLEAVE:
7696 fprintf(output, " combine=\"interleave\"");
7697 break;
7698 default:
7699 fprintf(output, " <!-- invalid combine value -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007700 }
7701 fprintf(output, ">\n");
7702 if (grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007703 fprintf(output, " <!-- grammar had no start -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007704 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007705 fprintf(output, "<start>\n");
7706 xmlRelaxNGDumpDefine(output, grammar->start);
7707 fprintf(output, "</start>\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007708 }
7709 /* TODO ? Dump the defines ? */
7710 fprintf(output, "</grammar>\n");
7711}
7712
7713/**
7714 * xmlRelaxNGDump:
7715 * @output: the file output
7716 * @schema: a schema structure
7717 *
7718 * Dump a RelaxNG structure back
7719 */
7720void
7721xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema)
7722{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007723 if (output == NULL)
7724 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007725 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007726 fprintf(output, "RelaxNG empty or failed to compile\n");
7727 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007728 }
7729 fprintf(output, "RelaxNG: ");
7730 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007731 fprintf(output, "no document\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007732 } else if (schema->doc->URL != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007733 fprintf(output, "%s\n", schema->doc->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007734 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007735 fprintf(output, "\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007736 }
7737 if (schema->topgrammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007738 fprintf(output, "RelaxNG has no top grammar\n");
7739 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007740 }
7741 xmlRelaxNGDumpGrammar(output, schema->topgrammar, 1);
7742}
7743
Daniel Veillardfebcca42003-02-16 15:44:18 +00007744/**
7745 * xmlRelaxNGDumpTree:
7746 * @output: the file output
7747 * @schema: a schema structure
7748 *
7749 * Dump the transformed RelaxNG tree.
7750 */
7751void
7752xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema)
7753{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007754 if (output == NULL)
7755 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007756 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007757 fprintf(output, "RelaxNG empty or failed to compile\n");
7758 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007759 }
7760 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007761 fprintf(output, "no document\n");
Daniel Veillardfebcca42003-02-16 15:44:18 +00007762 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007763 xmlDocDump(output, schema->doc);
Daniel Veillardfebcca42003-02-16 15:44:18 +00007764 }
7765}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007766#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardfebcca42003-02-16 15:44:18 +00007767
Daniel Veillard6eadf632003-01-23 18:29:16 +00007768/************************************************************************
7769 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007770 * Validation of compiled content *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007771 * *
7772 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007773static int xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
7774 xmlRelaxNGDefinePtr define);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007775
7776/**
7777 * xmlRelaxNGValidateCompiledCallback:
7778 * @exec: the regular expression instance
7779 * @token: the token which matched
7780 * @transdata: callback data, the define for the subelement if available
7781 @ @inputdata: callback data, the Relax NG validation context
7782 *
7783 * Handle the callback and if needed validate the element children.
7784 */
Daniel Veillard4c004142003-10-07 11:33:24 +00007785static void
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007786xmlRelaxNGValidateCompiledCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00007787 const xmlChar * token,
7788 void *transdata, void *inputdata)
7789{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007790 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
7791 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
7792 int ret;
7793
7794#ifdef DEBUG_COMPILE
7795 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00007796 "Compiled callback for: '%s'\n", token);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007797#endif
7798 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007799 fprintf(stderr, "callback on %s missing context\n", token);
Daniel Veillard4c004142003-10-07 11:33:24 +00007800 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007801 }
7802 if (define == NULL) {
7803 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00007804 return;
7805 fprintf(stderr, "callback on %s missing define\n", token);
7806 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7807 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7808 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007809 }
7810 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007811 fprintf(stderr, "callback on %s missing info\n", token);
7812 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7813 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7814 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007815 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007816 fprintf(stderr, "callback on %s define is not element\n", token);
7817 if (ctxt->errNo == XML_RELAXNG_OK)
7818 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7819 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007820 }
7821 ret = xmlRelaxNGValidateDefinition(ctxt, define);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007822 if (ret != 0)
7823 ctxt->perr = ret;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007824}
7825
7826/**
7827 * xmlRelaxNGValidateCompiledContent:
7828 * @ctxt: the RelaxNG validation context
7829 * @regexp: the regular expression as compiled
7830 * @content: list of children to test against the regexp
7831 *
7832 * Validate the content model of an element or start using the regexp
7833 *
7834 * Returns 0 in case of success, -1 in case of error.
7835 */
7836static int
7837xmlRelaxNGValidateCompiledContent(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007838 xmlRegexpPtr regexp, xmlNodePtr content)
7839{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007840 xmlRegExecCtxtPtr exec;
7841 xmlNodePtr cur;
Daniel Veillard62163602003-04-17 09:36:38 +00007842 int ret = 0;
Daniel Veillard14b56432006-03-09 18:41:40 +00007843 int oldperr;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007844
7845 if ((ctxt == NULL) || (regexp == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00007846 return (-1);
Daniel Veillard14b56432006-03-09 18:41:40 +00007847 oldperr = ctxt->perr;
Daniel Veillard4c004142003-10-07 11:33:24 +00007848 exec = xmlRegNewExecCtxt(regexp,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007849 xmlRelaxNGValidateCompiledCallback, ctxt);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007850 ctxt->perr = 0;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007851 cur = content;
7852 while (cur != NULL) {
7853 ctxt->state->seq = cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00007854 switch (cur->type) {
7855 case XML_TEXT_NODE:
7856 case XML_CDATA_SECTION_NODE:
7857 if (xmlIsBlankNode(cur))
7858 break;
7859 ret = xmlRegExecPushString(exec, BAD_CAST "#text", ctxt);
7860 if (ret < 0) {
7861 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG,
7862 cur->parent->name);
7863 }
7864 break;
7865 case XML_ELEMENT_NODE:
7866 if (cur->ns != NULL) {
7867 ret = xmlRegExecPushString2(exec, cur->name,
7868 cur->ns->href, ctxt);
7869 } else {
7870 ret = xmlRegExecPushString(exec, cur->name, ctxt);
7871 }
7872 if (ret < 0) {
7873 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, cur->name);
7874 }
7875 break;
7876 default:
7877 break;
7878 }
7879 if (ret < 0)
7880 break;
7881 /*
7882 * Switch to next element
7883 */
7884 cur = cur->next;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007885 }
7886 ret = xmlRegExecPushString(exec, NULL, NULL);
7887 if (ret == 1) {
7888 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00007889 ctxt->state->seq = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007890 } else if (ret == 0) {
7891 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00007892 * TODO: get some of the names needed to exit the current state of exec
7893 */
7894 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
7895 ret = -1;
7896 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
7897 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007898 } else {
7899 ret = -1;
7900 }
7901 xmlRegFreeExecCtxt(exec);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007902 /*
7903 * There might be content model errors outside of the pure
7904 * regexp validation, e.g. for attribute values.
7905 */
7906 if ((ret == 0) && (ctxt->perr != 0)) {
7907 ret = ctxt->perr;
7908 }
7909 ctxt->perr = oldperr;
Daniel Veillard4c004142003-10-07 11:33:24 +00007910 return (ret);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007911}
7912
7913/************************************************************************
7914 * *
7915 * Progressive validation of when possible *
7916 * *
7917 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007918static int xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
7919 xmlRelaxNGDefinePtr defines);
7920static int xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt,
William M. Brack272693c2003-11-14 16:20:34 +00007921 int dolog);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00007922static void xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007923
7924/**
7925 * xmlRelaxNGElemPush:
7926 * @ctxt: the validation context
7927 * @exec: the regexp runtime for the new content model
7928 *
7929 * Push a new regexp for the current node content model on the stack
7930 *
7931 * Returns 0 in case of success and -1 in case of error.
7932 */
7933static int
Daniel Veillard4c004142003-10-07 11:33:24 +00007934xmlRelaxNGElemPush(xmlRelaxNGValidCtxtPtr ctxt, xmlRegExecCtxtPtr exec)
7935{
Daniel Veillardf4e55762003-04-15 23:32:22 +00007936 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007937 ctxt->elemMax = 10;
7938 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlMalloc(ctxt->elemMax *
7939 sizeof
7940 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00007941 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007942 xmlRngVErrMemory(ctxt, "validating\n");
7943 return (-1);
7944 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00007945 }
7946 if (ctxt->elemNr >= ctxt->elemMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007947 ctxt->elemMax *= 2;
Daniel Veillardf4e55762003-04-15 23:32:22 +00007948 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlRealloc(ctxt->elemTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00007949 ctxt->elemMax *
7950 sizeof
7951 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00007952 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007953 xmlRngVErrMemory(ctxt, "validating\n");
7954 return (-1);
7955 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00007956 }
7957 ctxt->elemTab[ctxt->elemNr++] = exec;
7958 ctxt->elem = exec;
Daniel Veillard4c004142003-10-07 11:33:24 +00007959 return (0);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007960}
7961
7962/**
7963 * xmlRelaxNGElemPop:
7964 * @ctxt: the validation context
7965 *
7966 * Pop the regexp of the current node content model from the stack
7967 *
7968 * Returns the exec or NULL if empty
7969 */
7970static xmlRegExecCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00007971xmlRelaxNGElemPop(xmlRelaxNGValidCtxtPtr ctxt)
7972{
Daniel Veillardf4e55762003-04-15 23:32:22 +00007973 xmlRegExecCtxtPtr ret;
7974
Daniel Veillard4c004142003-10-07 11:33:24 +00007975 if (ctxt->elemNr <= 0)
7976 return (NULL);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007977 ctxt->elemNr--;
7978 ret = ctxt->elemTab[ctxt->elemNr];
7979 ctxt->elemTab[ctxt->elemNr] = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007980 if (ctxt->elemNr > 0)
Daniel Veillardf4e55762003-04-15 23:32:22 +00007981 ctxt->elem = ctxt->elemTab[ctxt->elemNr - 1];
7982 else
Daniel Veillard4c004142003-10-07 11:33:24 +00007983 ctxt->elem = NULL;
7984 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007985}
7986
7987/**
7988 * xmlRelaxNGValidateProgressiveCallback:
7989 * @exec: the regular expression instance
7990 * @token: the token which matched
7991 * @transdata: callback data, the define for the subelement if available
7992 @ @inputdata: callback data, the Relax NG validation context
7993 *
7994 * Handle the callback and if needed validate the element children.
7995 * some of the in/out informations are passed via the context in @inputdata.
7996 */
Daniel Veillard4c004142003-10-07 11:33:24 +00007997static void
7998xmlRelaxNGValidateProgressiveCallback(xmlRegExecCtxtPtr exec
7999 ATTRIBUTE_UNUSED,
8000 const xmlChar * token,
8001 void *transdata, void *inputdata)
8002{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008003 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
8004 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008005 xmlRelaxNGValidStatePtr state, oldstate;
Daniel Veillard14b56432006-03-09 18:41:40 +00008006 xmlNodePtr node;
Daniel Veillardc3ca5ba2003-05-09 22:26:28 +00008007 int ret = 0, oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008008
8009#ifdef DEBUG_PROGRESSIVE
8010 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00008011 "Progressive callback for: '%s'\n", token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008012#endif
8013 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008014 fprintf(stderr, "callback on %s missing context\n", token);
8015 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008016 }
Daniel Veillard14b56432006-03-09 18:41:40 +00008017 node = ctxt->pnode;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008018 ctxt->pstate = 1;
8019 if (define == NULL) {
8020 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00008021 return;
8022 fprintf(stderr, "callback on %s missing define\n", token);
8023 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8024 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8025 ctxt->pstate = -1;
8026 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008027 }
8028 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008029 fprintf(stderr, "callback on %s missing info\n", token);
8030 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8031 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8032 ctxt->pstate = -1;
8033 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008034 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008035 fprintf(stderr, "callback on %s define is not element\n", token);
8036 if (ctxt->errNo == XML_RELAXNG_OK)
8037 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8038 ctxt->pstate = -1;
8039 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008040 }
8041 if (node->type != XML_ELEMENT_NODE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008042 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
8043 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8044 xmlRelaxNGDumpValidError(ctxt);
8045 ctxt->pstate = -1;
8046 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008047 }
8048 if (define->contModel == NULL) {
8049 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008050 * this node cannot be validated in a streamable fashion
8051 */
Daniel Veillardf4e55762003-04-15 23:32:22 +00008052#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008053 xmlGenericError(xmlGenericErrorContext,
8054 "Element '%s' validation is not streamable\n",
8055 token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008056#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008057 ctxt->pstate = 0;
8058 ctxt->pdef = define;
8059 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008060 }
8061 exec = xmlRegNewExecCtxt(define->contModel,
Daniel Veillard4c004142003-10-07 11:33:24 +00008062 xmlRelaxNGValidateProgressiveCallback, ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008063 if (exec == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008064 ctxt->pstate = -1;
8065 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008066 }
8067 xmlRelaxNGElemPush(ctxt, exec);
8068
8069 /*
8070 * Validate the attributes part of the content.
8071 */
8072 state = xmlRelaxNGNewValidState(ctxt, node);
8073 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008074 ctxt->pstate = -1;
8075 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008076 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008077 oldstate = ctxt->state;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008078 ctxt->state = state;
8079 if (define->attrs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008080 ret = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
8081 if (ret != 0) {
8082 ctxt->pstate = -1;
8083 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
8084 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008085 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008086 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008087 ctxt->state->seq = NULL;
8088 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
8089 if (ret != 0) {
8090 ctxt->pstate = -1;
8091 }
8092 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardce192eb2003-04-16 15:58:05 +00008093 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008094 int tmp = -1, i;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008095
8096 oldflags = ctxt->flags;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008097
Daniel Veillard4c004142003-10-07 11:33:24 +00008098 for (i = 0; i < ctxt->states->nbState; i++) {
8099 state = ctxt->states->tabState[i];
8100 ctxt->state = state;
8101 ctxt->state->seq = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008102
Daniel Veillard4c004142003-10-07 11:33:24 +00008103 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
8104 tmp = 0;
8105 break;
8106 }
8107 }
8108 if (tmp != 0) {
8109 /*
8110 * validation error, log the message for the "best" one
8111 */
8112 ctxt->flags |= FLAGS_IGNORABLE;
8113 xmlRelaxNGLogBestError(ctxt);
8114 }
8115 for (i = 0; i < ctxt->states->nbState; i++) {
8116 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[i]);
8117 }
8118 xmlRelaxNGFreeStates(ctxt, ctxt->states);
8119 ctxt->states = NULL;
8120 if ((ret == 0) && (tmp == -1))
8121 ctxt->pstate = -1;
8122 ctxt->flags = oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008123 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008124 if (ctxt->pstate == -1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008125 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
8126 xmlRelaxNGDumpValidError(ctxt);
8127 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008128 }
8129 ctxt->state = oldstate;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008130}
8131
8132/**
8133 * xmlRelaxNGValidatePushElement:
8134 * @ctxt: the validation context
8135 * @doc: a document instance
8136 * @elem: an element instance
8137 *
8138 * Push a new element start on the RelaxNG validation stack.
8139 *
8140 * returns 1 if no validation problem was found or 0 if validating the
8141 * element requires a full node, and -1 in case of error.
8142 */
8143int
Daniel Veillard33300b42003-04-17 09:09:19 +00008144xmlRelaxNGValidatePushElement(xmlRelaxNGValidCtxtPtr ctxt,
8145 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillardf4e55762003-04-15 23:32:22 +00008146 xmlNodePtr elem)
8147{
8148 int ret = 1;
8149
8150 if ((ctxt == NULL) || (elem == NULL))
8151 return (-1);
8152
8153#ifdef DEBUG_PROGRESSIVE
8154 xmlGenericError(xmlGenericErrorContext, "PushElem %s\n", elem->name);
8155#endif
8156 if (ctxt->elem == 0) {
8157 xmlRelaxNGPtr schema;
8158 xmlRelaxNGGrammarPtr grammar;
8159 xmlRegExecCtxtPtr exec;
8160 xmlRelaxNGDefinePtr define;
8161
8162 schema = ctxt->schema;
8163 if (schema == NULL) {
8164 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8165 return (-1);
8166 }
8167 grammar = schema->topgrammar;
8168 if ((grammar == NULL) || (grammar->start == NULL)) {
8169 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8170 return (-1);
8171 }
8172 define = grammar->start;
8173 if (define->contModel == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008174 ctxt->pdef = define;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008175 return (0);
8176 }
8177 exec = xmlRegNewExecCtxt(define->contModel,
8178 xmlRelaxNGValidateProgressiveCallback,
8179 ctxt);
8180 if (exec == NULL) {
8181 return (-1);
8182 }
8183 xmlRelaxNGElemPush(ctxt, exec);
8184 }
8185 ctxt->pnode = elem;
8186 ctxt->pstate = 0;
8187 if (elem->ns != NULL) {
8188 ret =
8189 xmlRegExecPushString2(ctxt->elem, elem->name, elem->ns->href,
8190 ctxt);
8191 } else {
8192 ret = xmlRegExecPushString(ctxt->elem, elem->name, ctxt);
8193 }
8194 if (ret < 0) {
8195 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, elem->name);
8196 } else {
8197 if (ctxt->pstate == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008198 ret = 0;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008199 else if (ctxt->pstate < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008200 ret = -1;
8201 else
8202 ret = 1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008203 }
8204#ifdef DEBUG_PROGRESSIVE
8205 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008206 xmlGenericError(xmlGenericErrorContext, "PushElem %s failed\n",
8207 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008208#endif
8209 return (ret);
8210}
8211
8212/**
8213 * xmlRelaxNGValidatePushCData:
8214 * @ctxt: the RelaxNG validation context
8215 * @data: some character data read
8216 * @len: the lenght of the data
8217 *
8218 * check the CData parsed for validation in the current stack
8219 *
8220 * returns 1 if no validation problem was found or -1 otherwise
8221 */
8222int
8223xmlRelaxNGValidatePushCData(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00008224 const xmlChar * data, int len ATTRIBUTE_UNUSED)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008225{
8226 int ret = 1;
8227
8228 if ((ctxt == NULL) || (ctxt->elem == NULL) || (data == NULL))
8229 return (-1);
8230
8231#ifdef DEBUG_PROGRESSIVE
8232 xmlGenericError(xmlGenericErrorContext, "CDATA %s %d\n", data, len);
8233#endif
8234
8235 while (*data != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008236 if (!IS_BLANK_CH(*data))
Daniel Veillardf4e55762003-04-15 23:32:22 +00008237 break;
8238 data++;
8239 }
8240 if (*data == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008241 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008242
8243 ret = xmlRegExecPushString(ctxt->elem, BAD_CAST "#text", ctxt);
8244 if (ret < 0) {
Daniel Veillard33300b42003-04-17 09:09:19 +00008245 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG, BAD_CAST " TODO ");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008246#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008247 xmlGenericError(xmlGenericErrorContext, "CDATA failed\n");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008248#endif
8249
Daniel Veillard4c004142003-10-07 11:33:24 +00008250 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008251 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008252 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008253}
8254
8255/**
8256 * xmlRelaxNGValidatePopElement:
8257 * @ctxt: the RelaxNG validation context
8258 * @doc: a document instance
8259 * @elem: an element instance
8260 *
8261 * Pop the element end from the RelaxNG validation stack.
8262 *
8263 * returns 1 if no validation problem was found or 0 otherwise
8264 */
8265int
8266xmlRelaxNGValidatePopElement(xmlRelaxNGValidCtxtPtr ctxt,
8267 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008268 xmlNodePtr elem)
8269{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008270 int ret;
8271 xmlRegExecCtxtPtr exec;
8272
Daniel Veillard4c004142003-10-07 11:33:24 +00008273 if ((ctxt == NULL) || (ctxt->elem == NULL) || (elem == NULL))
8274 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008275#ifdef DEBUG_PROGRESSIVE
8276 xmlGenericError(xmlGenericErrorContext, "PopElem %s\n", elem->name);
8277#endif
8278 /*
8279 * verify that we reached a terminal state of the content model.
8280 */
8281 exec = xmlRelaxNGElemPop(ctxt);
8282 ret = xmlRegExecPushString(exec, NULL, NULL);
8283 if (ret == 0) {
8284 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008285 * TODO: get some of the names needed to exit the current state of exec
8286 */
8287 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8288 ret = -1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008289 } else if (ret < 0) {
8290 ret = -1;
8291 } else {
8292 ret = 1;
8293 }
8294 xmlRegFreeExecCtxt(exec);
8295#ifdef DEBUG_PROGRESSIVE
8296 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008297 xmlGenericError(xmlGenericErrorContext, "PopElem %s failed\n",
8298 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008299#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008300 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008301}
8302
8303/**
8304 * xmlRelaxNGValidateFullElement:
8305 * @ctxt: the validation context
8306 * @doc: a document instance
8307 * @elem: an element instance
8308 *
8309 * Validate a full subtree when xmlRelaxNGValidatePushElement() returned
8310 * 0 and the content of the node has been expanded.
8311 *
8312 * returns 1 if no validation problem was found or -1 in case of error.
8313 */
8314int
Daniel Veillard33300b42003-04-17 09:09:19 +00008315xmlRelaxNGValidateFullElement(xmlRelaxNGValidCtxtPtr ctxt,
8316 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008317 xmlNodePtr elem)
8318{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008319 int ret;
8320 xmlRelaxNGValidStatePtr state;
8321
Daniel Veillard4c004142003-10-07 11:33:24 +00008322 if ((ctxt == NULL) || (ctxt->pdef == NULL) || (elem == NULL))
8323 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008324#ifdef DEBUG_PROGRESSIVE
8325 xmlGenericError(xmlGenericErrorContext, "FullElem %s\n", elem->name);
8326#endif
8327 state = xmlRelaxNGNewValidState(ctxt, elem->parent);
8328 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008329 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008330 }
8331 state->seq = elem;
8332 ctxt->state = state;
8333 ctxt->errNo = XML_RELAXNG_OK;
8334 ret = xmlRelaxNGValidateDefinition(ctxt, ctxt->pdef);
Daniel Veillard4c004142003-10-07 11:33:24 +00008335 if ((ret != 0) || (ctxt->errNo != XML_RELAXNG_OK))
8336 ret = -1;
8337 else
8338 ret = 1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008339 xmlRelaxNGFreeValidState(ctxt, state);
8340 ctxt->state = NULL;
8341#ifdef DEBUG_PROGRESSIVE
8342 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008343 xmlGenericError(xmlGenericErrorContext, "FullElem %s failed\n",
8344 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008345#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008346 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008347}
8348
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008349/************************************************************************
8350 * *
8351 * Generic interpreted validation implementation *
8352 * *
8353 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008354static int xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8355 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008356
8357/**
8358 * xmlRelaxNGSkipIgnored:
8359 * @ctxt: a schema validation context
8360 * @node: the top node.
8361 *
8362 * Skip ignorable nodes in that context
8363 *
8364 * Returns the new sibling or NULL in case of error.
8365 */
8366static xmlNodePtr
8367xmlRelaxNGSkipIgnored(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008368 xmlNodePtr node)
8369{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008370 /*
8371 * TODO complete and handle entities
8372 */
8373 while ((node != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00008374 ((node->type == XML_COMMENT_NODE) ||
8375 (node->type == XML_PI_NODE) ||
William M. Brack7217c862004-03-15 02:43:56 +00008376 (node->type == XML_XINCLUDE_START) ||
8377 (node->type == XML_XINCLUDE_END) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00008378 (((node->type == XML_TEXT_NODE) ||
8379 (node->type == XML_CDATA_SECTION_NODE)) &&
8380 ((ctxt->flags & FLAGS_MIXED_CONTENT) ||
8381 (IS_BLANK_NODE(node)))))) {
8382 node = node->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008383 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008384 return (node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008385}
8386
8387/**
Daniel Veillardedc91922003-01-26 00:52:04 +00008388 * xmlRelaxNGNormalize:
8389 * @ctxt: a schema validation context
8390 * @str: the string to normalize
8391 *
8392 * Implements the normalizeWhiteSpace( s ) function from
8393 * section 6.2.9 of the spec
8394 *
8395 * Returns the new string or NULL in case of error.
8396 */
8397static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00008398xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt, const xmlChar * str)
8399{
Daniel Veillardedc91922003-01-26 00:52:04 +00008400 xmlChar *ret, *p;
8401 const xmlChar *tmp;
8402 int len;
Daniel Veillard4c004142003-10-07 11:33:24 +00008403
Daniel Veillardedc91922003-01-26 00:52:04 +00008404 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00008405 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008406 tmp = str;
Daniel Veillard4c004142003-10-07 11:33:24 +00008407 while (*tmp != 0)
8408 tmp++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008409 len = tmp - str;
8410
Daniel Veillard3c908dc2003-04-19 00:07:51 +00008411 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar));
Daniel Veillardedc91922003-01-26 00:52:04 +00008412 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008413 xmlRngVErrMemory(ctxt, "validating\n");
8414 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008415 }
8416 p = ret;
William M. Brack76e95df2003-10-18 16:20:14 +00008417 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008418 str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008419 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008420 if (IS_BLANK_CH(*str)) {
8421 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008422 str++;
8423 if (*str == 0)
8424 break;
8425 *p++ = ' ';
8426 } else
8427 *p++ = *str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008428 }
8429 *p = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008430 return (ret);
Daniel Veillardedc91922003-01-26 00:52:04 +00008431}
8432
8433/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008434 * xmlRelaxNGValidateDatatype:
8435 * @ctxt: a Relax-NG validation context
8436 * @value: the string value
8437 * @type: the datatype definition
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008438 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008439 *
8440 * Validate the given value against the dataype
8441 *
8442 * Returns 0 if the validation succeeded or an error code.
8443 */
8444static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008445xmlRelaxNGValidateDatatype(xmlRelaxNGValidCtxtPtr ctxt,
8446 const xmlChar * value,
8447 xmlRelaxNGDefinePtr define, xmlNodePtr node)
8448{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008449 int ret, tmp;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008450 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008451 void *result = NULL;
8452 xmlRelaxNGDefinePtr cur;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008453
8454 if ((define == NULL) || (define->data == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008455 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008456 }
8457 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008458 if (lib->check != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008459 if ((define->attrs != NULL) &&
8460 (define->attrs->type == XML_RELAXNG_PARAM)) {
8461 ret =
8462 lib->check(lib->data, define->name, value, &result, node);
8463 } else {
8464 ret = lib->check(lib->data, define->name, value, NULL, node);
8465 }
8466 } else
8467 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008468 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008469 VALID_ERR2(XML_RELAXNG_ERR_TYPE, define->name);
8470 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
8471 lib->freef(lib->data, result);
8472 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008473 } else if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008474 ret = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008475 } else if (ret == 2) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008476 VALID_ERR2P(XML_RELAXNG_ERR_DUPID, value);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008477 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008478 VALID_ERR3P(XML_RELAXNG_ERR_TYPEVAL, define->name, value);
8479 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008480 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008481 cur = define->attrs;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008482 while ((ret == 0) && (cur != NULL) && (cur->type == XML_RELAXNG_PARAM)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008483 if (lib->facet != NULL) {
8484 tmp = lib->facet(lib->data, define->name, cur->name,
8485 cur->value, value, result);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008486 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008487 ret = -1;
8488 }
8489 cur = cur->next;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008490 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008491 if ((ret == 0) && (define->content != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008492 const xmlChar *oldvalue, *oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008493
Daniel Veillard4c004142003-10-07 11:33:24 +00008494 oldvalue = ctxt->state->value;
8495 oldendvalue = ctxt->state->endvalue;
8496 ctxt->state->value = (xmlChar *) value;
8497 ctxt->state->endvalue = NULL;
8498 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8499 ctxt->state->value = (xmlChar *) oldvalue;
8500 ctxt->state->endvalue = (xmlChar *) oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008501 }
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008502 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00008503 lib->freef(lib->data, result);
8504 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008505}
8506
8507/**
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008508 * xmlRelaxNGNextValue:
8509 * @ctxt: a Relax-NG validation context
8510 *
8511 * Skip to the next value when validating within a list
8512 *
8513 * Returns 0 if the operation succeeded or an error code.
8514 */
8515static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008516xmlRelaxNGNextValue(xmlRelaxNGValidCtxtPtr ctxt)
8517{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008518 xmlChar *cur;
8519
8520 cur = ctxt->state->value;
8521 if ((cur == NULL) || (ctxt->state->endvalue == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008522 ctxt->state->value = NULL;
8523 ctxt->state->endvalue = NULL;
8524 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008525 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008526 while (*cur != 0)
8527 cur++;
8528 while ((cur != ctxt->state->endvalue) && (*cur == 0))
8529 cur++;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008530 if (cur == ctxt->state->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00008531 ctxt->state->value = NULL;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008532 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008533 ctxt->state->value = cur;
8534 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008535}
8536
8537/**
8538 * xmlRelaxNGValidateValueList:
8539 * @ctxt: a Relax-NG validation context
8540 * @defines: the list of definitions to verify
8541 *
8542 * Validate the given set of definitions for the current value
8543 *
8544 * Returns 0 if the validation succeeded or an error code.
8545 */
8546static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008547xmlRelaxNGValidateValueList(xmlRelaxNGValidCtxtPtr ctxt,
8548 xmlRelaxNGDefinePtr defines)
8549{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008550 int ret = 0;
8551
8552 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008553 ret = xmlRelaxNGValidateValue(ctxt, defines);
8554 if (ret != 0)
8555 break;
8556 defines = defines->next;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008557 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008558 return (ret);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008559}
8560
8561/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00008562 * xmlRelaxNGValidateValue:
8563 * @ctxt: a Relax-NG validation context
8564 * @define: the definition to verify
8565 *
8566 * Validate the given definition for the current value
8567 *
8568 * Returns 0 if the validation succeeded or an error code.
8569 */
8570static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008571xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8572 xmlRelaxNGDefinePtr define)
8573{
Daniel Veillardedc91922003-01-26 00:52:04 +00008574 int ret = 0, oldflags;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008575 xmlChar *value;
8576
8577 value = ctxt->state->value;
8578 switch (define->type) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008579 case XML_RELAXNG_EMPTY:{
8580 if ((value != NULL) && (value[0] != 0)) {
8581 int idx = 0;
Daniel Veillardd4310742003-02-18 21:12:46 +00008582
William M. Brack76e95df2003-10-18 16:20:14 +00008583 while (IS_BLANK_CH(value[idx]))
Daniel Veillard4c004142003-10-07 11:33:24 +00008584 idx++;
8585 if (value[idx] != 0)
8586 ret = -1;
8587 }
8588 break;
8589 }
8590 case XML_RELAXNG_TEXT:
8591 break;
8592 case XML_RELAXNG_VALUE:{
8593 if (!xmlStrEqual(value, define->value)) {
8594 if (define->name != NULL) {
8595 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillardedc91922003-01-26 00:52:04 +00008596
Daniel Veillard4c004142003-10-07 11:33:24 +00008597 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
8598 if ((lib != NULL) && (lib->comp != NULL)) {
8599 ret = lib->comp(lib->data, define->name,
8600 define->value, define->node,
8601 (void *) define->attrs,
8602 value, ctxt->state->node);
8603 } else
8604 ret = -1;
8605 if (ret < 0) {
8606 VALID_ERR2(XML_RELAXNG_ERR_TYPECMP,
8607 define->name);
8608 return (-1);
8609 } else if (ret == 1) {
8610 ret = 0;
8611 } else {
8612 ret = -1;
8613 }
8614 } else {
8615 xmlChar *nval, *nvalue;
Daniel Veillardedc91922003-01-26 00:52:04 +00008616
Daniel Veillard4c004142003-10-07 11:33:24 +00008617 /*
8618 * TODO: trivial optimizations are possible by
8619 * computing at compile-time
8620 */
8621 nval = xmlRelaxNGNormalize(ctxt, define->value);
8622 nvalue = xmlRelaxNGNormalize(ctxt, value);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008623
Daniel Veillard4c004142003-10-07 11:33:24 +00008624 if ((nval == NULL) || (nvalue == NULL) ||
8625 (!xmlStrEqual(nval, nvalue)))
8626 ret = -1;
8627 if (nval != NULL)
8628 xmlFree(nval);
8629 if (nvalue != NULL)
8630 xmlFree(nvalue);
8631 }
8632 }
8633 if (ret == 0)
8634 xmlRelaxNGNextValue(ctxt);
8635 break;
8636 }
8637 case XML_RELAXNG_DATATYPE:{
8638 ret = xmlRelaxNGValidateDatatype(ctxt, value, define,
8639 ctxt->state->seq);
8640 if (ret == 0)
8641 xmlRelaxNGNextValue(ctxt);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008642
Daniel Veillard4c004142003-10-07 11:33:24 +00008643 break;
8644 }
8645 case XML_RELAXNG_CHOICE:{
8646 xmlRelaxNGDefinePtr list = define->content;
8647 xmlChar *oldvalue;
8648
8649 oldflags = ctxt->flags;
8650 ctxt->flags |= FLAGS_IGNORABLE;
8651
8652 oldvalue = ctxt->state->value;
8653 while (list != NULL) {
8654 ret = xmlRelaxNGValidateValue(ctxt, list);
8655 if (ret == 0) {
8656 break;
8657 }
8658 ctxt->state->value = oldvalue;
8659 list = list->next;
8660 }
8661 ctxt->flags = oldflags;
8662 if (ret != 0) {
8663 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8664 xmlRelaxNGDumpValidError(ctxt);
8665 } else {
8666 if (ctxt->errNr > 0)
8667 xmlRelaxNGPopErrors(ctxt, 0);
8668 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008669 break;
8670 }
8671 case XML_RELAXNG_LIST:{
8672 xmlRelaxNGDefinePtr list = define->content;
8673 xmlChar *oldvalue, *oldend, *val, *cur;
8674
Daniel Veillard416589a2003-02-17 17:25:42 +00008675#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008676 int nb_values = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00008677#endif
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008678
Daniel Veillard4c004142003-10-07 11:33:24 +00008679 oldvalue = ctxt->state->value;
8680 oldend = ctxt->state->endvalue;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008681
Daniel Veillard4c004142003-10-07 11:33:24 +00008682 val = xmlStrdup(oldvalue);
8683 if (val == NULL) {
8684 val = xmlStrdup(BAD_CAST "");
8685 }
8686 if (val == NULL) {
8687 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
8688 return (-1);
8689 }
8690 cur = val;
8691 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008692 if (IS_BLANK_CH(*cur)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008693 *cur = 0;
8694 cur++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008695#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008696 nb_values++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008697#endif
William M. Brack76e95df2003-10-18 16:20:14 +00008698 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00008699 *cur++ = 0;
8700 } else
8701 cur++;
8702 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008703#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008704 xmlGenericError(xmlGenericErrorContext,
8705 "list value: '%s' found %d items\n",
8706 oldvalue, nb_values);
8707 nb_values = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008708#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008709 ctxt->state->endvalue = cur;
8710 cur = val;
8711 while ((*cur == 0) && (cur != ctxt->state->endvalue))
8712 cur++;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008713
Daniel Veillard4c004142003-10-07 11:33:24 +00008714 ctxt->state->value = cur;
8715
8716 while (list != NULL) {
8717 if (ctxt->state->value == ctxt->state->endvalue)
8718 ctxt->state->value = NULL;
8719 ret = xmlRelaxNGValidateValue(ctxt, list);
8720 if (ret != 0) {
8721#ifdef DEBUG_LIST
8722 xmlGenericError(xmlGenericErrorContext,
8723 "Failed to validate value: '%s' with %d rule\n",
8724 ctxt->state->value, nb_values);
8725#endif
8726 break;
8727 }
8728#ifdef DEBUG_LIST
8729 nb_values++;
8730#endif
8731 list = list->next;
8732 }
8733
8734 if ((ret == 0) && (ctxt->state->value != NULL) &&
8735 (ctxt->state->value != ctxt->state->endvalue)) {
8736 VALID_ERR2(XML_RELAXNG_ERR_LISTEXTRA,
8737 ctxt->state->value);
8738 ret = -1;
8739 }
8740 xmlFree(val);
8741 ctxt->state->value = oldvalue;
8742 ctxt->state->endvalue = oldend;
8743 break;
8744 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008745 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00008746 ret = xmlRelaxNGValidateValueList(ctxt, define->content);
8747 if (ret != 0) {
8748 break;
8749 }
8750 /* no break on purpose */
8751 case XML_RELAXNG_ZEROORMORE:{
8752 xmlChar *cur, *temp;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008753
Daniel Veillard4c004142003-10-07 11:33:24 +00008754 oldflags = ctxt->flags;
8755 ctxt->flags |= FLAGS_IGNORABLE;
8756 cur = ctxt->state->value;
8757 temp = NULL;
8758 while ((cur != NULL) && (cur != ctxt->state->endvalue) &&
8759 (temp != cur)) {
8760 temp = cur;
8761 ret =
8762 xmlRelaxNGValidateValueList(ctxt, define->content);
8763 if (ret != 0) {
8764 ctxt->state->value = temp;
8765 ret = 0;
8766 break;
8767 }
8768 cur = ctxt->state->value;
8769 }
8770 ctxt->flags = oldflags;
Daniel Veillard14b56432006-03-09 18:41:40 +00008771 if (ctxt->errNr > 0)
8772 xmlRelaxNGPopErrors(ctxt, 0);
Daniel Veillard4c004142003-10-07 11:33:24 +00008773 break;
8774 }
8775 case XML_RELAXNG_EXCEPT:{
8776 xmlRelaxNGDefinePtr list;
Daniel Veillard416589a2003-02-17 17:25:42 +00008777
Daniel Veillard4c004142003-10-07 11:33:24 +00008778 list = define->content;
8779 while (list != NULL) {
8780 ret = xmlRelaxNGValidateValue(ctxt, list);
8781 if (ret == 0) {
8782 ret = -1;
8783 break;
8784 } else
8785 ret = 0;
8786 list = list->next;
8787 }
8788 break;
8789 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008790 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00008791 case XML_RELAXNG_GROUP:{
8792 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008793
Daniel Veillard4c004142003-10-07 11:33:24 +00008794 list = define->content;
8795 while (list != NULL) {
8796 ret = xmlRelaxNGValidateValue(ctxt, list);
8797 if (ret != 0) {
8798 ret = -1;
8799 break;
8800 } else
8801 ret = 0;
8802 list = list->next;
8803 }
8804 break;
8805 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008806 case XML_RELAXNG_REF:
8807 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00008808 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8809 break;
8810 default:
8811 TODO ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008812 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008813 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008814}
8815
8816/**
8817 * xmlRelaxNGValidateValueContent:
8818 * @ctxt: a Relax-NG validation context
8819 * @defines: the list of definitions to verify
8820 *
8821 * Validate the given definitions for the current value
8822 *
8823 * Returns 0 if the validation succeeded or an error code.
8824 */
8825static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008826xmlRelaxNGValidateValueContent(xmlRelaxNGValidCtxtPtr ctxt,
8827 xmlRelaxNGDefinePtr defines)
8828{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008829 int ret = 0;
8830
8831 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008832 ret = xmlRelaxNGValidateValue(ctxt, defines);
8833 if (ret != 0)
8834 break;
8835 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008836 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008837 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008838}
8839
8840/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00008841 * xmlRelaxNGAttributeMatch:
8842 * @ctxt: a Relax-NG validation context
8843 * @define: the definition to check
8844 * @prop: the attribute
8845 *
8846 * Check if the attribute matches the definition nameClass
8847 *
8848 * Returns 1 if the attribute matches, 0 if no, or -1 in case of error
8849 */
8850static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008851xmlRelaxNGAttributeMatch(xmlRelaxNGValidCtxtPtr ctxt,
8852 xmlRelaxNGDefinePtr define, xmlAttrPtr prop)
8853{
Daniel Veillardfd573f12003-03-16 17:52:32 +00008854 int ret;
8855
8856 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008857 if (!xmlStrEqual(define->name, prop->name))
8858 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00008859 }
8860 if (define->ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008861 if (define->ns[0] == 0) {
8862 if (prop->ns != NULL)
8863 return (0);
8864 } else {
8865 if ((prop->ns == NULL) ||
8866 (!xmlStrEqual(define->ns, prop->ns->href)))
8867 return (0);
8868 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008869 }
8870 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00008871 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00008872 define = define->nameClass;
8873 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008874 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008875
Daniel Veillard4c004142003-10-07 11:33:24 +00008876 list = define->content;
8877 while (list != NULL) {
8878 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
8879 if (ret == 1)
8880 return (0);
8881 if (ret < 0)
8882 return (ret);
8883 list = list->next;
8884 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008885 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008886 TODO}
8887 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00008888}
8889
8890/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00008891 * xmlRelaxNGValidateAttribute:
8892 * @ctxt: a Relax-NG validation context
8893 * @define: the definition to verify
8894 *
8895 * Validate the given attribute definition for that node
8896 *
8897 * Returns 0 if the validation succeeded or an error code.
8898 */
8899static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008900xmlRelaxNGValidateAttribute(xmlRelaxNGValidCtxtPtr ctxt,
8901 xmlRelaxNGDefinePtr define)
8902{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008903 int ret = 0, i;
8904 xmlChar *value, *oldvalue;
8905 xmlAttrPtr prop = NULL, tmp;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008906 xmlNodePtr oldseq;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008907
Daniel Veillard1ed7f362003-02-03 10:57:45 +00008908 if (ctxt->state->nbAttrLeft <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008909 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008910 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008911 for (i = 0; i < ctxt->state->nbAttrs; i++) {
8912 tmp = ctxt->state->attrs[i];
8913 if ((tmp != NULL) && (xmlStrEqual(define->name, tmp->name))) {
8914 if ((((define->ns == NULL) || (define->ns[0] == 0)) &&
8915 (tmp->ns == NULL)) ||
8916 ((tmp->ns != NULL) &&
8917 (xmlStrEqual(define->ns, tmp->ns->href)))) {
8918 prop = tmp;
8919 break;
8920 }
8921 }
8922 }
8923 if (prop != NULL) {
8924 value = xmlNodeListGetString(prop->doc, prop->children, 1);
8925 oldvalue = ctxt->state->value;
8926 oldseq = ctxt->state->seq;
8927 ctxt->state->seq = (xmlNodePtr) prop;
8928 ctxt->state->value = value;
8929 ctxt->state->endvalue = NULL;
8930 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
8931 if (ctxt->state->value != NULL)
8932 value = ctxt->state->value;
8933 if (value != NULL)
8934 xmlFree(value);
8935 ctxt->state->value = oldvalue;
8936 ctxt->state->seq = oldseq;
8937 if (ret == 0) {
8938 /*
8939 * flag the attribute as processed
8940 */
8941 ctxt->state->attrs[i] = NULL;
8942 ctxt->state->nbAttrLeft--;
8943 }
8944 } else {
8945 ret = -1;
8946 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00008947#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00008948 xmlGenericError(xmlGenericErrorContext,
8949 "xmlRelaxNGValidateAttribute(%s): %d\n",
8950 define->name, ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008951#endif
8952 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008953 for (i = 0; i < ctxt->state->nbAttrs; i++) {
8954 tmp = ctxt->state->attrs[i];
8955 if ((tmp != NULL) &&
8956 (xmlRelaxNGAttributeMatch(ctxt, define, tmp) == 1)) {
8957 prop = tmp;
8958 break;
8959 }
8960 }
8961 if (prop != NULL) {
8962 value = xmlNodeListGetString(prop->doc, prop->children, 1);
8963 oldvalue = ctxt->state->value;
8964 oldseq = ctxt->state->seq;
8965 ctxt->state->seq = (xmlNodePtr) prop;
8966 ctxt->state->value = value;
8967 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
8968 if (ctxt->state->value != NULL)
8969 value = ctxt->state->value;
8970 if (value != NULL)
8971 xmlFree(value);
8972 ctxt->state->value = oldvalue;
8973 ctxt->state->seq = oldseq;
8974 if (ret == 0) {
8975 /*
8976 * flag the attribute as processed
8977 */
8978 ctxt->state->attrs[i] = NULL;
8979 ctxt->state->nbAttrLeft--;
8980 }
8981 } else {
8982 ret = -1;
8983 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00008984#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00008985 if (define->ns != NULL) {
8986 xmlGenericError(xmlGenericErrorContext,
8987 "xmlRelaxNGValidateAttribute(nsName ns = %s): %d\n",
8988 define->ns, ret);
8989 } else {
8990 xmlGenericError(xmlGenericErrorContext,
8991 "xmlRelaxNGValidateAttribute(anyName): %d\n",
8992 ret);
8993 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00008994#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +00008995 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008996
8997 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008998}
8999
9000/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009001 * xmlRelaxNGValidateAttributeList:
9002 * @ctxt: a Relax-NG validation context
9003 * @define: the list of definition to verify
9004 *
9005 * Validate the given node against the list of attribute definitions
9006 *
9007 * Returns 0 if the validation succeeded or an error code.
9008 */
9009static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009010xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
9011 xmlRelaxNGDefinePtr defines)
9012{
Daniel Veillardce192eb2003-04-16 15:58:05 +00009013 int ret = 0, res;
9014 int needmore = 0;
9015 xmlRelaxNGDefinePtr cur;
9016
9017 cur = defines;
9018 while (cur != NULL) {
9019 if (cur->type == XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009020 if (xmlRelaxNGValidateAttribute(ctxt, cur) != 0)
9021 ret = -1;
9022 } else
9023 needmore = 1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009024 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009025 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009026 if (!needmore)
Daniel Veillard4c004142003-10-07 11:33:24 +00009027 return (ret);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009028 cur = defines;
9029 while (cur != NULL) {
9030 if (cur->type != XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009031 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9032 res = xmlRelaxNGValidateDefinition(ctxt, cur);
9033 if (res < 0)
9034 ret = -1;
9035 } else {
9036 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9037 return (-1);
9038 }
9039 if (res == -1) /* continues on -2 */
9040 break;
9041 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009042 cur = cur->next;
9043 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009044
9045 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009046}
9047
9048/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009049 * xmlRelaxNGNodeMatchesList:
9050 * @node: the node
9051 * @list: a NULL terminated array of definitions
9052 *
9053 * Check if a node can be matched by one of the definitions
9054 *
9055 * Returns 1 if matches 0 otherwise
9056 */
9057static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009058xmlRelaxNGNodeMatchesList(xmlNodePtr node, xmlRelaxNGDefinePtr * list)
9059{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009060 xmlRelaxNGDefinePtr cur;
Daniel Veillard0e3d3ce2003-03-21 12:43:18 +00009061 int i = 0, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009062
9063 if ((node == NULL) || (list == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00009064 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009065
9066 cur = list[i++];
9067 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009068 if ((node->type == XML_ELEMENT_NODE) &&
9069 (cur->type == XML_RELAXNG_ELEMENT)) {
9070 tmp = xmlRelaxNGElementMatch(NULL, cur, node);
9071 if (tmp == 1)
9072 return (1);
9073 } else if (((node->type == XML_TEXT_NODE) ||
9074 (node->type == XML_CDATA_SECTION_NODE)) &&
9075 (cur->type == XML_RELAXNG_TEXT)) {
9076 return (1);
9077 }
9078 cur = list[i++];
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009079 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009080 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009081}
9082
9083/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009084 * xmlRelaxNGValidateInterleave:
9085 * @ctxt: a Relax-NG validation context
9086 * @define: the definition to verify
9087 *
9088 * Validate an interleave definition for a node.
9089 *
9090 * Returns 0 if the validation succeeded or an error code.
9091 */
9092static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009093xmlRelaxNGValidateInterleave(xmlRelaxNGValidCtxtPtr ctxt,
9094 xmlRelaxNGDefinePtr define)
9095{
William M. Brack779af002003-08-01 15:55:39 +00009096 int ret = 0, i, nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009097 int errNr = ctxt->errNr;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009098 int oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009099
9100 xmlRelaxNGValidStatePtr oldstate;
9101 xmlRelaxNGPartitionPtr partitions;
9102 xmlRelaxNGInterleaveGroupPtr group = NULL;
9103 xmlNodePtr cur, start, last = NULL, lastchg = NULL, lastelem;
9104 xmlNodePtr *list = NULL, *lasts = NULL;
9105
9106 if (define->data != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009107 partitions = (xmlRelaxNGPartitionPtr) define->data;
9108 nbgroups = partitions->nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009109 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009110 VALID_ERR(XML_RELAXNG_ERR_INTERNODATA);
9111 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009112 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009113 /*
9114 * Optimizations for MIXED
9115 */
9116 oldflags = ctxt->flags;
Daniel Veillarde063f482003-03-21 16:53:17 +00009117 if (define->dflags & IS_MIXED) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009118 ctxt->flags |= FLAGS_MIXED_CONTENT;
9119 if (nbgroups == 2) {
9120 /*
9121 * this is a pure <mixed> case
9122 */
9123 if (ctxt->state != NULL)
9124 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9125 ctxt->state->seq);
9126 if (partitions->groups[0]->rule->type == XML_RELAXNG_TEXT)
9127 ret = xmlRelaxNGValidateDefinition(ctxt,
9128 partitions->groups[1]->
9129 rule);
9130 else
9131 ret = xmlRelaxNGValidateDefinition(ctxt,
9132 partitions->groups[0]->
9133 rule);
9134 if (ret == 0) {
9135 if (ctxt->state != NULL)
9136 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9137 ctxt->state->
9138 seq);
9139 }
9140 ctxt->flags = oldflags;
9141 return (ret);
9142 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009143 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009144
9145 /*
9146 * Build arrays to store the first and last node of the chain
9147 * pertaining to each group
9148 */
9149 list = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9150 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009151 xmlRngVErrMemory(ctxt, "validating\n");
9152 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009153 }
9154 memset(list, 0, nbgroups * sizeof(xmlNodePtr));
9155 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9156 if (lasts == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009157 xmlRngVErrMemory(ctxt, "validating\n");
9158 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009159 }
9160 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr));
9161
9162 /*
9163 * Walk the sequence of children finding the right group and
9164 * sorting them in sequences.
9165 */
9166 cur = ctxt->state->seq;
9167 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9168 start = cur;
9169 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009170 ctxt->state->seq = cur;
9171 if ((partitions->triage != NULL) &&
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009172 (partitions->flags & IS_DETERMINIST)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009173 void *tmp = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009174
Daniel Veillard4c004142003-10-07 11:33:24 +00009175 if ((cur->type == XML_TEXT_NODE) ||
9176 (cur->type == XML_CDATA_SECTION_NODE)) {
9177 tmp = xmlHashLookup2(partitions->triage, BAD_CAST "#text",
9178 NULL);
9179 } else if (cur->type == XML_ELEMENT_NODE) {
9180 if (cur->ns != NULL) {
9181 tmp = xmlHashLookup2(partitions->triage, cur->name,
9182 cur->ns->href);
9183 if (tmp == NULL)
9184 tmp = xmlHashLookup2(partitions->triage,
9185 BAD_CAST "#any",
9186 cur->ns->href);
9187 } else
9188 tmp =
9189 xmlHashLookup2(partitions->triage, cur->name,
9190 NULL);
9191 if (tmp == NULL)
9192 tmp =
9193 xmlHashLookup2(partitions->triage, BAD_CAST "#any",
9194 NULL);
9195 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009196
Daniel Veillard4c004142003-10-07 11:33:24 +00009197 if (tmp == NULL) {
9198 i = nbgroups;
9199 } else {
9200 i = ((long) tmp) - 1;
9201 if (partitions->flags & IS_NEEDCHECK) {
9202 group = partitions->groups[i];
9203 if (!xmlRelaxNGNodeMatchesList(cur, group->defs))
9204 i = nbgroups;
9205 }
9206 }
9207 } else {
9208 for (i = 0; i < nbgroups; i++) {
9209 group = partitions->groups[i];
9210 if (group == NULL)
9211 continue;
9212 if (xmlRelaxNGNodeMatchesList(cur, group->defs))
9213 break;
9214 }
9215 }
9216 /*
9217 * We break as soon as an element not matched is found
9218 */
9219 if (i >= nbgroups) {
9220 break;
9221 }
9222 if (lasts[i] != NULL) {
9223 lasts[i]->next = cur;
9224 lasts[i] = cur;
9225 } else {
9226 list[i] = cur;
9227 lasts[i] = cur;
9228 }
9229 if (cur->next != NULL)
9230 lastchg = cur->next;
9231 else
9232 lastchg = cur;
9233 cur = xmlRelaxNGSkipIgnored(ctxt, cur->next);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009234 }
9235 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009236 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9237 ret = -1;
9238 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009239 }
9240 lastelem = cur;
9241 oldstate = ctxt->state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009242 for (i = 0; i < nbgroups; i++) {
9243 ctxt->state = xmlRelaxNGCopyValidState(ctxt, oldstate);
9244 group = partitions->groups[i];
9245 if (lasts[i] != NULL) {
9246 last = lasts[i]->next;
9247 lasts[i]->next = NULL;
9248 }
9249 ctxt->state->seq = list[i];
9250 ret = xmlRelaxNGValidateDefinition(ctxt, group->rule);
9251 if (ret != 0)
9252 break;
9253 if (ctxt->state != NULL) {
9254 cur = ctxt->state->seq;
9255 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9256 xmlRelaxNGFreeValidState(ctxt, oldstate);
9257 oldstate = ctxt->state;
9258 ctxt->state = NULL;
9259 if (cur != NULL) {
9260 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9261 ret = -1;
9262 ctxt->state = oldstate;
9263 goto done;
9264 }
9265 } else if (ctxt->states != NULL) {
9266 int j;
9267 int found = 0;
Daniel Veillard87254c82006-02-19 15:27:17 +00009268 int best = -1;
9269 int lowattr = -1;
9270
9271 /*
9272 * PBM: what happen if there is attributes checks in the interleaves
9273 */
Daniel Veillardfd573f12003-03-16 17:52:32 +00009274
Daniel Veillard4c004142003-10-07 11:33:24 +00009275 for (j = 0; j < ctxt->states->nbState; j++) {
9276 cur = ctxt->states->tabState[j]->seq;
9277 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9278 if (cur == NULL) {
Daniel Veillard87254c82006-02-19 15:27:17 +00009279 if (found == 0) {
9280 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9281 best = j;
9282 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009283 found = 1;
Daniel Veillard87254c82006-02-19 15:27:17 +00009284 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9285 /* try to keep the latest one to mach old heuristic */
9286 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9287 best = j;
9288 }
9289 if (lowattr == 0)
9290 break;
9291 } else if (found == 0) {
9292 if (lowattr == -1) {
9293 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9294 best = j;
9295 } else
9296 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9297 /* try to keep the latest one to mach old heuristic */
9298 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9299 best = j;
9300 }
9301 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009302 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009303 /*
9304 * BIG PBM: here we pick only one restarting point :-(
9305 */
Daniel Veillard4c004142003-10-07 11:33:24 +00009306 if (ctxt->states->nbState > 0) {
9307 xmlRelaxNGFreeValidState(ctxt, oldstate);
Daniel Veillard87254c82006-02-19 15:27:17 +00009308 if (best != -1) {
9309 oldstate = ctxt->states->tabState[best];
9310 ctxt->states->tabState[best] = NULL;
9311 } else {
9312 oldstate =
9313 ctxt->states->tabState[ctxt->states->nbState - 1];
9314 ctxt->states->tabState[ctxt->states->nbState - 1] = NULL;
9315 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009316 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009317 for (j = 0; j < ctxt->states->nbState ; j++) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009318 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[j]);
9319 }
9320 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9321 ctxt->states = NULL;
9322 if (found == 0) {
9323 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9324 ret = -1;
9325 ctxt->state = oldstate;
9326 goto done;
9327 }
9328 } else {
9329 ret = -1;
9330 break;
9331 }
9332 if (lasts[i] != NULL) {
9333 lasts[i]->next = last;
9334 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009335 }
9336 if (ctxt->state != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009337 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009338 ctxt->state = oldstate;
9339 ctxt->state->seq = lastelem;
9340 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009341 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9342 ret = -1;
9343 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009344 }
9345
Daniel Veillard4c004142003-10-07 11:33:24 +00009346 done:
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009347 ctxt->flags = oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009348 /*
9349 * builds the next links chain from the prev one
9350 */
9351 cur = lastchg;
9352 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009353 if ((cur == start) || (cur->prev == NULL))
9354 break;
9355 cur->prev->next = cur;
9356 cur = cur->prev;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009357 }
9358 if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009359 if (ctxt->errNr > errNr)
9360 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009361 }
9362
9363 xmlFree(list);
9364 xmlFree(lasts);
Daniel Veillard4c004142003-10-07 11:33:24 +00009365 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009366}
9367
9368/**
9369 * xmlRelaxNGValidateDefinitionList:
9370 * @ctxt: a Relax-NG validation context
9371 * @define: the list of definition to verify
9372 *
9373 * Validate the given node content against the (list) of definitions
9374 *
9375 * Returns 0 if the validation succeeded or an error code.
9376 */
9377static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009378xmlRelaxNGValidateDefinitionList(xmlRelaxNGValidCtxtPtr ctxt,
9379 xmlRelaxNGDefinePtr defines)
9380{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009381 int ret = 0, res;
9382
9383
Daniel Veillard952379b2003-03-17 15:37:12 +00009384 if (defines == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009385 VALID_ERR2(XML_RELAXNG_ERR_INTERNAL,
9386 BAD_CAST "NULL definition list");
9387 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00009388 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009389 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009390 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9391 res = xmlRelaxNGValidateDefinition(ctxt, defines);
9392 if (res < 0)
9393 ret = -1;
9394 } else {
9395 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9396 return (-1);
9397 }
9398 if (res == -1) /* continues on -2 */
9399 break;
9400 defines = defines->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009401 }
9402
Daniel Veillard4c004142003-10-07 11:33:24 +00009403 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009404}
9405
9406/**
9407 * xmlRelaxNGElementMatch:
Daniel Veillard416589a2003-02-17 17:25:42 +00009408 * @ctxt: a Relax-NG validation context
9409 * @define: the definition to check
Daniel Veillardfd573f12003-03-16 17:52:32 +00009410 * @elem: the element
Daniel Veillard416589a2003-02-17 17:25:42 +00009411 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009412 * Check if the element matches the definition nameClass
Daniel Veillard416589a2003-02-17 17:25:42 +00009413 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009414 * Returns 1 if the element matches, 0 if no, or -1 in case of error
Daniel Veillard416589a2003-02-17 17:25:42 +00009415 */
9416static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009417xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
9418 xmlRelaxNGDefinePtr define, xmlNodePtr elem)
9419{
Daniel Veillard580ced82003-03-21 21:22:48 +00009420 int ret = 0, oldflags = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00009421
Daniel Veillardfd573f12003-03-16 17:52:32 +00009422 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009423 if (!xmlStrEqual(elem->name, define->name)) {
9424 VALID_ERR3(XML_RELAXNG_ERR_ELEMNAME, define->name, elem->name);
9425 return (0);
9426 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009427 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009428 if ((define->ns != NULL) && (define->ns[0] != 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009429 if (elem->ns == NULL) {
9430 VALID_ERR2(XML_RELAXNG_ERR_ELEMNONS, elem->name);
9431 return (0);
9432 } else if (!xmlStrEqual(elem->ns->href, define->ns)) {
9433 VALID_ERR3(XML_RELAXNG_ERR_ELEMWRONGNS,
9434 elem->name, define->ns);
9435 return (0);
9436 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009437 } else if ((elem->ns != NULL) && (define->ns != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00009438 (define->name == NULL)) {
9439 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, elem->name);
9440 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009441 } else if ((elem->ns != NULL) && (define->name != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009442 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, define->name);
9443 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009444 }
9445
9446 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009447 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009448
9449 define = define->nameClass;
9450 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009451 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009452
Daniel Veillard4c004142003-10-07 11:33:24 +00009453 if (ctxt != NULL) {
9454 oldflags = ctxt->flags;
9455 ctxt->flags |= FLAGS_IGNORABLE;
9456 }
9457
9458 list = define->content;
9459 while (list != NULL) {
9460 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9461 if (ret == 1) {
9462 if (ctxt != NULL)
9463 ctxt->flags = oldflags;
9464 return (0);
9465 }
9466 if (ret < 0) {
9467 if (ctxt != NULL)
9468 ctxt->flags = oldflags;
9469 return (ret);
9470 }
9471 list = list->next;
9472 }
9473 ret = 1;
9474 if (ctxt != NULL) {
9475 ctxt->flags = oldflags;
9476 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009477 } else if (define->type == XML_RELAXNG_CHOICE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009478 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009479
Daniel Veillard4c004142003-10-07 11:33:24 +00009480 if (ctxt != NULL) {
9481 oldflags = ctxt->flags;
9482 ctxt->flags |= FLAGS_IGNORABLE;
9483 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009484
Daniel Veillard4c004142003-10-07 11:33:24 +00009485 list = define->nameClass;
9486 while (list != NULL) {
9487 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9488 if (ret == 1) {
9489 if (ctxt != NULL)
9490 ctxt->flags = oldflags;
9491 return (1);
9492 }
9493 if (ret < 0) {
9494 if (ctxt != NULL)
9495 ctxt->flags = oldflags;
9496 return (ret);
9497 }
9498 list = list->next;
9499 }
9500 if (ctxt != NULL) {
9501 if (ret != 0) {
9502 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9503 xmlRelaxNGDumpValidError(ctxt);
9504 } else {
9505 if (ctxt->errNr > 0)
9506 xmlRelaxNGPopErrors(ctxt, 0);
9507 }
9508 }
9509 ret = 0;
9510 if (ctxt != NULL) {
9511 ctxt->flags = oldflags;
9512 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009513 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009514 TODO ret = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009515 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009516 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009517}
9518
9519/**
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009520 * xmlRelaxNGBestState:
9521 * @ctxt: a Relax-NG validation context
9522 *
9523 * Find the "best" state in the ctxt->states list of states to report
9524 * errors about. I.e. a state with no element left in the child list
9525 * or the one with the less attributes left.
9526 * This is called only if a falidation error was detected
9527 *
9528 * Returns the index of the "best" state or -1 in case of error
9529 */
9530static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009531xmlRelaxNGBestState(xmlRelaxNGValidCtxtPtr ctxt)
9532{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009533 xmlRelaxNGValidStatePtr state;
9534 int i, tmp;
9535 int best = -1;
9536 int value = 1000000;
9537
9538 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9539 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009540 return (-1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009541
Daniel Veillard4c004142003-10-07 11:33:24 +00009542 for (i = 0; i < ctxt->states->nbState; i++) {
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009543 state = ctxt->states->tabState[i];
Daniel Veillard4c004142003-10-07 11:33:24 +00009544 if (state == NULL)
9545 continue;
9546 if (state->seq != NULL) {
9547 if ((best == -1) || (value > 100000)) {
9548 value = 100000;
9549 best = i;
9550 }
9551 } else {
9552 tmp = state->nbAttrLeft;
9553 if ((best == -1) || (value > tmp)) {
9554 value = tmp;
9555 best = i;
9556 }
9557 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009558 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009559 return (best);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009560}
9561
9562/**
9563 * xmlRelaxNGLogBestError:
9564 * @ctxt: a Relax-NG validation context
9565 *
9566 * Find the "best" state in the ctxt->states list of states to report
9567 * errors about and log it.
9568 */
9569static void
Daniel Veillard4c004142003-10-07 11:33:24 +00009570xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt)
9571{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009572 int best;
9573
9574 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9575 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009576 return;
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009577
9578 best = xmlRelaxNGBestState(ctxt);
9579 if ((best >= 0) && (best < ctxt->states->nbState)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009580 ctxt->state = ctxt->states->tabState[best];
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009581
Daniel Veillard4c004142003-10-07 11:33:24 +00009582 xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009583 }
9584}
9585
9586/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009587 * xmlRelaxNGValidateElementEnd:
9588 * @ctxt: a Relax-NG validation context
William M. Brack272693c2003-11-14 16:20:34 +00009589 * @dolog: indicate that error logging should be done
Daniel Veillardfd573f12003-03-16 17:52:32 +00009590 *
9591 * Validate the end of the element, implements check that
9592 * there is nothing left not consumed in the element content
9593 * or in the attribute list.
9594 *
9595 * Returns 0 if the validation succeeded or an error code.
9596 */
9597static int
William M. Brack272693c2003-11-14 16:20:34 +00009598xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt, int dolog)
Daniel Veillard4c004142003-10-07 11:33:24 +00009599{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009600 int i;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009601 xmlRelaxNGValidStatePtr state;
9602
9603 state = ctxt->state;
9604 if (state->seq != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009605 state->seq = xmlRelaxNGSkipIgnored(ctxt, state->seq);
9606 if (state->seq != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009607 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009608 VALID_ERR3(XML_RELAXNG_ERR_EXTRACONTENT,
9609 state->node->name, state->seq->name);
9610 }
9611 return (-1);
9612 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009613 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009614 for (i = 0; i < state->nbAttrs; i++) {
9615 if (state->attrs[i] != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009616 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009617 VALID_ERR3(XML_RELAXNG_ERR_INVALIDATTR,
9618 state->attrs[i]->name, state->node->name);
9619 }
9620 return (-1 - i);
9621 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009622 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009623 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009624}
9625
9626/**
9627 * xmlRelaxNGValidateState:
9628 * @ctxt: a Relax-NG validation context
9629 * @define: the definition to verify
9630 *
9631 * Validate the current state against the definition
9632 *
9633 * Returns 0 if the validation succeeded or an error code.
9634 */
9635static int
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009636xmlRelaxNGValidateState(xmlRelaxNGValidCtxtPtr ctxt,
9637 xmlRelaxNGDefinePtr define)
9638{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009639 xmlNodePtr node;
9640 int ret = 0, i, tmp, oldflags, errNr;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009641 xmlRelaxNGValidStatePtr oldstate = NULL, state;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009642
9643 if (define == NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009644 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
9645 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009646 }
9647
9648 if (ctxt->state != NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009649 node = ctxt->state->seq;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009650 } else {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009651 node = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009652 }
9653#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009654 for (i = 0; i < ctxt->depth; i++)
9655 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009656 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009657 "Start validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +00009658 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009659 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009660 if ((node != NULL) && (node->name != NULL))
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009661 xmlGenericError(xmlGenericErrorContext, "on %s\n", node->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009662 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009663 xmlGenericError(xmlGenericErrorContext, "\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009664#endif
9665 ctxt->depth++;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009666 switch (define->type) {
9667 case XML_RELAXNG_EMPTY:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009668 node = xmlRelaxNGSkipIgnored(ctxt, node);
9669 ret = 0;
9670 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009671 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009672 ret = -1;
9673 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009674 case XML_RELAXNG_TEXT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009675 while ((node != NULL) &&
9676 ((node->type == XML_TEXT_NODE) ||
9677 (node->type == XML_COMMENT_NODE) ||
9678 (node->type == XML_PI_NODE) ||
9679 (node->type == XML_CDATA_SECTION_NODE)))
9680 node = node->next;
9681 ctxt->state->seq = node;
9682 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009683 case XML_RELAXNG_ELEMENT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009684 errNr = ctxt->errNr;
9685 node = xmlRelaxNGSkipIgnored(ctxt, node);
9686 if (node == NULL) {
9687 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, define->name);
9688 ret = -1;
9689 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9690 xmlRelaxNGDumpValidError(ctxt);
9691 break;
9692 }
9693 if (node->type != XML_ELEMENT_NODE) {
9694 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
9695 ret = -1;
9696 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9697 xmlRelaxNGDumpValidError(ctxt);
9698 break;
9699 }
9700 /*
9701 * This node was already validated successfully against
9702 * this definition.
9703 */
Daniel Veillard807daf82004-02-22 22:13:27 +00009704 if (node->psvi == define) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009705 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
9706 if (ctxt->errNr > errNr)
9707 xmlRelaxNGPopErrors(ctxt, errNr);
9708 if (ctxt->errNr != 0) {
9709 while ((ctxt->err != NULL) &&
9710 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME)
9711 && (xmlStrEqual(ctxt->err->arg2, node->name)))
9712 ||
9713 ((ctxt->err->err ==
9714 XML_RELAXNG_ERR_ELEMEXTRANS)
9715 && (xmlStrEqual(ctxt->err->arg1, node->name)))
9716 || (ctxt->err->err == XML_RELAXNG_ERR_NOELEM)
9717 || (ctxt->err->err ==
9718 XML_RELAXNG_ERR_NOTELEM)))
9719 xmlRelaxNGValidErrorPop(ctxt);
9720 }
9721 break;
9722 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009723
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009724 ret = xmlRelaxNGElementMatch(ctxt, define, node);
9725 if (ret <= 0) {
9726 ret = -1;
9727 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9728 xmlRelaxNGDumpValidError(ctxt);
9729 break;
9730 }
9731 ret = 0;
9732 if (ctxt->errNr != 0) {
9733 if (ctxt->errNr > errNr)
9734 xmlRelaxNGPopErrors(ctxt, errNr);
9735 while ((ctxt->err != NULL) &&
9736 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME) &&
9737 (xmlStrEqual(ctxt->err->arg2, node->name))) ||
9738 ((ctxt->err->err == XML_RELAXNG_ERR_ELEMEXTRANS) &&
9739 (xmlStrEqual(ctxt->err->arg1, node->name))) ||
9740 (ctxt->err->err == XML_RELAXNG_ERR_NOELEM) ||
9741 (ctxt->err->err == XML_RELAXNG_ERR_NOTELEM)))
9742 xmlRelaxNGValidErrorPop(ctxt);
9743 }
9744 errNr = ctxt->errNr;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009745
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009746 oldflags = ctxt->flags;
9747 if (ctxt->flags & FLAGS_MIXED_CONTENT) {
9748 ctxt->flags -= FLAGS_MIXED_CONTENT;
9749 }
9750 state = xmlRelaxNGNewValidState(ctxt, node);
9751 if (state == NULL) {
9752 ret = -1;
9753 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9754 xmlRelaxNGDumpValidError(ctxt);
9755 break;
9756 }
Daniel Veillard7fe1f3a2003-03-31 22:13:33 +00009757
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009758 oldstate = ctxt->state;
9759 ctxt->state = state;
9760 if (define->attrs != NULL) {
9761 tmp = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
9762 if (tmp != 0) {
9763 ret = -1;
9764 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
9765 }
9766 }
9767 if (define->contModel != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009768 xmlRelaxNGValidStatePtr nstate, tmpstate = ctxt->state;
9769 xmlRelaxNGStatesPtr tmpstates = ctxt->states;
9770 xmlNodePtr nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009771
Daniel Veillard4c004142003-10-07 11:33:24 +00009772 nstate = xmlRelaxNGNewValidState(ctxt, node);
9773 ctxt->state = nstate;
9774 ctxt->states = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009775
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009776 tmp = xmlRelaxNGValidateCompiledContent(ctxt,
9777 define->contModel,
9778 ctxt->state->seq);
Daniel Veillard4c004142003-10-07 11:33:24 +00009779 nseq = ctxt->state->seq;
9780 ctxt->state = tmpstate;
9781 ctxt->states = tmpstates;
9782 xmlRelaxNGFreeValidState(ctxt, nstate);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009783
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009784#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00009785 xmlGenericError(xmlGenericErrorContext,
9786 "Validating content of '%s' : %d\n",
9787 define->name, tmp);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009788#endif
Daniel Veillardce192eb2003-04-16 15:58:05 +00009789 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009790 ret = -1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009791
9792 if (ctxt->states != NULL) {
9793 tmp = -1;
9794
Daniel Veillardce192eb2003-04-16 15:58:05 +00009795 for (i = 0; i < ctxt->states->nbState; i++) {
9796 state = ctxt->states->tabState[i];
9797 ctxt->state = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009798 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009799
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009800 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardce192eb2003-04-16 15:58:05 +00009801 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00009802 break;
9803 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009804 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009805 if (tmp != 0) {
9806 /*
9807 * validation error, log the message for the "best" one
9808 */
9809 ctxt->flags |= FLAGS_IGNORABLE;
9810 xmlRelaxNGLogBestError(ctxt);
9811 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009812 for (i = 0; i < ctxt->states->nbState; i++) {
9813 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00009814 ctxt->states->
9815 tabState[i]);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009816 }
9817 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9818 ctxt->flags = oldflags;
9819 ctxt->states = NULL;
9820 if ((ret == 0) && (tmp == -1))
9821 ret = -1;
9822 } else {
9823 state = ctxt->state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009824 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009825 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009826 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009827 xmlRelaxNGFreeValidState(ctxt, state);
9828 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009829 } else {
9830 if (define->content != NULL) {
9831 tmp = xmlRelaxNGValidateDefinitionList(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00009832 define->
9833 content);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009834 if (tmp != 0) {
9835 ret = -1;
9836 if (ctxt->state == NULL) {
9837 ctxt->state = oldstate;
9838 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
9839 node->name);
9840 ctxt->state = NULL;
9841 } else {
9842 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
9843 node->name);
9844 }
9845
9846 }
9847 }
9848 if (ctxt->states != NULL) {
9849 tmp = -1;
9850
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009851 for (i = 0; i < ctxt->states->nbState; i++) {
9852 state = ctxt->states->tabState[i];
9853 ctxt->state = state;
9854
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009855 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009856 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00009857 break;
9858 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009859 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009860 if (tmp != 0) {
9861 /*
9862 * validation error, log the message for the "best" one
9863 */
9864 ctxt->flags |= FLAGS_IGNORABLE;
9865 xmlRelaxNGLogBestError(ctxt);
9866 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009867 for (i = 0; i < ctxt->states->nbState; i++) {
9868 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00009869 ctxt->states->
9870 tabState[i]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009871 }
9872 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9873 ctxt->flags = oldflags;
9874 ctxt->states = NULL;
9875 if ((ret == 0) && (tmp == -1))
9876 ret = -1;
9877 } else {
9878 state = ctxt->state;
9879 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009880 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009881 xmlRelaxNGFreeValidState(ctxt, state);
9882 }
9883 }
9884 if (ret == 0) {
Daniel Veillard807daf82004-02-22 22:13:27 +00009885 node->psvi = define;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009886 }
9887 ctxt->flags = oldflags;
9888 ctxt->state = oldstate;
9889 if (oldstate != NULL)
9890 oldstate->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
9891 if (ret != 0) {
9892 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
9893 xmlRelaxNGDumpValidError(ctxt);
9894 ret = 0;
9895 } else {
9896 ret = -2;
9897 }
9898 } else {
9899 if (ctxt->errNr > errNr)
9900 xmlRelaxNGPopErrors(ctxt, errNr);
9901 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009902
9903#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009904 xmlGenericError(xmlGenericErrorContext,
9905 "xmlRelaxNGValidateDefinition(): validated %s : %d",
9906 node->name, ret);
9907 if (oldstate == NULL)
9908 xmlGenericError(xmlGenericErrorContext, ": no state\n");
9909 else if (oldstate->seq == NULL)
9910 xmlGenericError(xmlGenericErrorContext, ": done\n");
9911 else if (oldstate->seq->type == XML_ELEMENT_NODE)
9912 xmlGenericError(xmlGenericErrorContext, ": next elem %s\n",
9913 oldstate->seq->name);
9914 else
9915 xmlGenericError(xmlGenericErrorContext, ": next %s %d\n",
9916 oldstate->seq->name, oldstate->seq->type);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009917#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009918 break;
9919 case XML_RELAXNG_OPTIONAL:{
9920 errNr = ctxt->errNr;
9921 oldflags = ctxt->flags;
9922 ctxt->flags |= FLAGS_IGNORABLE;
9923 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
9924 ret =
9925 xmlRelaxNGValidateDefinitionList(ctxt,
9926 define->content);
9927 if (ret != 0) {
9928 if (ctxt->state != NULL)
9929 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
9930 ctxt->state = oldstate;
9931 ctxt->flags = oldflags;
9932 ret = 0;
9933 if (ctxt->errNr > errNr)
9934 xmlRelaxNGPopErrors(ctxt, errNr);
9935 break;
9936 }
9937 if (ctxt->states != NULL) {
9938 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
9939 } else {
9940 ctxt->states = xmlRelaxNGNewStates(ctxt, 1);
9941 if (ctxt->states == NULL) {
9942 xmlRelaxNGFreeValidState(ctxt, oldstate);
9943 ctxt->flags = oldflags;
9944 ret = -1;
9945 if (ctxt->errNr > errNr)
9946 xmlRelaxNGPopErrors(ctxt, errNr);
9947 break;
9948 }
9949 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
9950 xmlRelaxNGAddStates(ctxt, ctxt->states, ctxt->state);
9951 ctxt->state = NULL;
9952 }
9953 ctxt->flags = oldflags;
9954 ret = 0;
9955 if (ctxt->errNr > errNr)
9956 xmlRelaxNGPopErrors(ctxt, errNr);
9957 break;
9958 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009959 case XML_RELAXNG_ONEORMORE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009960 errNr = ctxt->errNr;
9961 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
9962 if (ret != 0) {
9963 break;
9964 }
9965 if (ctxt->errNr > errNr)
9966 xmlRelaxNGPopErrors(ctxt, errNr);
9967 /* no break on purpose */
9968 case XML_RELAXNG_ZEROORMORE:{
9969 int progress;
9970 xmlRelaxNGStatesPtr states = NULL, res = NULL;
9971 int base, j;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009972
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009973 errNr = ctxt->errNr;
9974 res = xmlRelaxNGNewStates(ctxt, 1);
9975 if (res == NULL) {
9976 ret = -1;
9977 break;
9978 }
9979 /*
9980 * All the input states are also exit states
9981 */
9982 if (ctxt->state != NULL) {
9983 xmlRelaxNGAddStates(ctxt, res,
9984 xmlRelaxNGCopyValidState(ctxt,
9985 ctxt->
9986 state));
9987 } else {
9988 for (j = 0; j < ctxt->states->nbState; j++) {
9989 xmlRelaxNGAddStates(ctxt, res,
9990 xmlRelaxNGCopyValidState(ctxt,
9991 ctxt->
9992 states->
9993 tabState
9994 [j]));
9995 }
9996 }
9997 oldflags = ctxt->flags;
9998 ctxt->flags |= FLAGS_IGNORABLE;
9999 do {
10000 progress = 0;
10001 base = res->nbState;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010002
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010003 if (ctxt->states != NULL) {
10004 states = ctxt->states;
10005 for (i = 0; i < states->nbState; i++) {
10006 ctxt->state = states->tabState[i];
10007 ctxt->states = NULL;
10008 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10009 define->
10010 content);
10011 if (ret == 0) {
10012 if (ctxt->state != NULL) {
10013 tmp = xmlRelaxNGAddStates(ctxt, res,
10014 ctxt->state);
10015 ctxt->state = NULL;
10016 if (tmp == 1)
10017 progress = 1;
10018 } else if (ctxt->states != NULL) {
10019 for (j = 0; j < ctxt->states->nbState;
10020 j++) {
10021 tmp =
10022 xmlRelaxNGAddStates(ctxt, res,
10023 ctxt->
10024 states->
10025 tabState
10026 [j]);
10027 if (tmp == 1)
10028 progress = 1;
10029 }
10030 xmlRelaxNGFreeStates(ctxt,
10031 ctxt->states);
10032 ctxt->states = NULL;
10033 }
10034 } else {
10035 if (ctxt->state != NULL) {
10036 xmlRelaxNGFreeValidState(ctxt,
10037 ctxt->state);
10038 ctxt->state = NULL;
10039 }
10040 }
10041 }
10042 } else {
10043 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10044 define->
10045 content);
10046 if (ret != 0) {
10047 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10048 ctxt->state = NULL;
10049 } else {
10050 base = res->nbState;
10051 if (ctxt->state != NULL) {
10052 tmp = xmlRelaxNGAddStates(ctxt, res,
10053 ctxt->state);
10054 ctxt->state = NULL;
10055 if (tmp == 1)
10056 progress = 1;
10057 } else if (ctxt->states != NULL) {
10058 for (j = 0; j < ctxt->states->nbState; j++) {
10059 tmp = xmlRelaxNGAddStates(ctxt, res,
10060 ctxt->
10061 states->
10062 tabState[j]);
10063 if (tmp == 1)
10064 progress = 1;
10065 }
10066 if (states == NULL) {
10067 states = ctxt->states;
10068 } else {
10069 xmlRelaxNGFreeStates(ctxt,
10070 ctxt->states);
10071 }
10072 ctxt->states = NULL;
10073 }
10074 }
10075 }
10076 if (progress) {
10077 /*
10078 * Collect all the new nodes added at that step
10079 * and make them the new node set
10080 */
10081 if (res->nbState - base == 1) {
10082 ctxt->state = xmlRelaxNGCopyValidState(ctxt,
10083 res->
10084 tabState
10085 [base]);
10086 } else {
10087 if (states == NULL) {
10088 xmlRelaxNGNewStates(ctxt,
10089 res->nbState - base);
Daniel Veillard14b56432006-03-09 18:41:40 +000010090 states = ctxt->states;
10091 if (states == NULL) {
10092 progress = 0;
10093 break;
10094 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010095 }
10096 states->nbState = 0;
10097 for (i = base; i < res->nbState; i++)
10098 xmlRelaxNGAddStates(ctxt, states,
10099 xmlRelaxNGCopyValidState
10100 (ctxt,
10101 res->tabState[i]));
10102 ctxt->states = states;
10103 }
10104 }
10105 } while (progress == 1);
10106 if (states != NULL) {
10107 xmlRelaxNGFreeStates(ctxt, states);
10108 }
10109 ctxt->states = res;
10110 ctxt->flags = oldflags;
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010111#if 0
10112 /*
Daniel Veillard4c004142003-10-07 11:33:24 +000010113 * errors may have to be propagated back...
10114 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010115 if (ctxt->errNr > errNr)
10116 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010117#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010118 ret = 0;
10119 break;
10120 }
10121 case XML_RELAXNG_CHOICE:{
10122 xmlRelaxNGDefinePtr list = NULL;
10123 xmlRelaxNGStatesPtr states = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010124
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010125 node = xmlRelaxNGSkipIgnored(ctxt, node);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010126
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010127 errNr = ctxt->errNr;
Daniel Veillard9186a1f2005-01-15 12:38:10 +000010128 if ((define->dflags & IS_TRIABLE) && (define->data != NULL) &&
10129 (node != NULL)) {
10130 /*
10131 * node == NULL can't be optimized since IS_TRIABLE
10132 * doesn't account for choice which may lead to
10133 * only attributes.
10134 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010135 xmlHashTablePtr triage =
10136 (xmlHashTablePtr) define->data;
Daniel Veillarde063f482003-03-21 16:53:17 +000010137
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010138 /*
10139 * Something we can optimize cleanly there is only one
10140 * possble branch out !
10141 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010142 if ((node->type == XML_TEXT_NODE) ||
10143 (node->type == XML_CDATA_SECTION_NODE)) {
10144 list =
10145 xmlHashLookup2(triage, BAD_CAST "#text", NULL);
10146 } else if (node->type == XML_ELEMENT_NODE) {
10147 if (node->ns != NULL) {
10148 list = xmlHashLookup2(triage, node->name,
10149 node->ns->href);
10150 if (list == NULL)
10151 list =
10152 xmlHashLookup2(triage, BAD_CAST "#any",
10153 node->ns->href);
10154 } else
10155 list =
10156 xmlHashLookup2(triage, node->name, NULL);
10157 if (list == NULL)
10158 list =
10159 xmlHashLookup2(triage, BAD_CAST "#any",
10160 NULL);
10161 }
10162 if (list == NULL) {
10163 ret = -1;
William M. Brack2f076062004-03-21 11:21:14 +000010164 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, node->name);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010165 break;
10166 }
10167 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10168 if (ret == 0) {
10169 }
10170 break;
10171 }
Daniel Veillarde063f482003-03-21 16:53:17 +000010172
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010173 list = define->content;
10174 oldflags = ctxt->flags;
10175 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010176
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010177 while (list != NULL) {
10178 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10179 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10180 if (ret == 0) {
10181 if (states == NULL) {
10182 states = xmlRelaxNGNewStates(ctxt, 1);
10183 }
10184 if (ctxt->state != NULL) {
10185 xmlRelaxNGAddStates(ctxt, states, ctxt->state);
10186 } else if (ctxt->states != NULL) {
10187 for (i = 0; i < ctxt->states->nbState; i++) {
10188 xmlRelaxNGAddStates(ctxt, states,
10189 ctxt->states->
10190 tabState[i]);
10191 }
10192 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10193 ctxt->states = NULL;
10194 }
10195 } else {
10196 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10197 }
10198 ctxt->state = oldstate;
10199 list = list->next;
10200 }
10201 if (states != NULL) {
10202 xmlRelaxNGFreeValidState(ctxt, oldstate);
10203 ctxt->states = states;
10204 ctxt->state = NULL;
10205 ret = 0;
10206 } else {
10207 ctxt->states = NULL;
10208 }
10209 ctxt->flags = oldflags;
10210 if (ret != 0) {
10211 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10212 xmlRelaxNGDumpValidError(ctxt);
10213 }
10214 } else {
10215 if (ctxt->errNr > errNr)
10216 xmlRelaxNGPopErrors(ctxt, errNr);
10217 }
10218 break;
10219 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010220 case XML_RELAXNG_DEF:
10221 case XML_RELAXNG_GROUP:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010222 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10223 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010224 case XML_RELAXNG_INTERLEAVE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010225 ret = xmlRelaxNGValidateInterleave(ctxt, define);
10226 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010227 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010228 ret = xmlRelaxNGValidateAttribute(ctxt, define);
10229 break;
Daniel Veillardf4e55762003-04-15 23:32:22 +000010230 case XML_RELAXNG_START:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010231 case XML_RELAXNG_NOOP:
Daniel Veillardfd573f12003-03-16 17:52:32 +000010232 case XML_RELAXNG_REF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010233 case XML_RELAXNG_EXTERNALREF:
Daniel Veillard952379b2003-03-17 15:37:12 +000010234 case XML_RELAXNG_PARENTREF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010235 ret = xmlRelaxNGValidateDefinition(ctxt, define->content);
10236 break;
10237 case XML_RELAXNG_DATATYPE:{
10238 xmlNodePtr child;
10239 xmlChar *content = NULL;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010240
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010241 child = node;
10242 while (child != NULL) {
10243 if (child->type == XML_ELEMENT_NODE) {
10244 VALID_ERR2(XML_RELAXNG_ERR_DATAELEM,
10245 node->parent->name);
10246 ret = -1;
10247 break;
10248 } else if ((child->type == XML_TEXT_NODE) ||
10249 (child->type == XML_CDATA_SECTION_NODE)) {
10250 content = xmlStrcat(content, child->content);
10251 }
10252 /* TODO: handle entities ... */
10253 child = child->next;
10254 }
10255 if (ret == -1) {
10256 if (content != NULL)
10257 xmlFree(content);
10258 break;
10259 }
10260 if (content == NULL) {
10261 content = xmlStrdup(BAD_CAST "");
10262 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010263 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010264 ret = -1;
10265 break;
10266 }
10267 }
10268 ret = xmlRelaxNGValidateDatatype(ctxt, content, define,
10269 ctxt->state->seq);
10270 if (ret == -1) {
10271 VALID_ERR2(XML_RELAXNG_ERR_DATATYPE, define->name);
10272 } else if (ret == 0) {
10273 ctxt->state->seq = NULL;
10274 }
10275 if (content != NULL)
10276 xmlFree(content);
10277 break;
10278 }
10279 case XML_RELAXNG_VALUE:{
10280 xmlChar *content = NULL;
10281 xmlChar *oldvalue;
10282 xmlNodePtr child;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010283
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010284 child = node;
10285 while (child != NULL) {
10286 if (child->type == XML_ELEMENT_NODE) {
10287 VALID_ERR2(XML_RELAXNG_ERR_VALELEM,
10288 node->parent->name);
10289 ret = -1;
10290 break;
10291 } else if ((child->type == XML_TEXT_NODE) ||
10292 (child->type == XML_CDATA_SECTION_NODE)) {
10293 content = xmlStrcat(content, child->content);
10294 }
10295 /* TODO: handle entities ... */
10296 child = child->next;
10297 }
10298 if (ret == -1) {
10299 if (content != NULL)
10300 xmlFree(content);
10301 break;
10302 }
10303 if (content == NULL) {
10304 content = xmlStrdup(BAD_CAST "");
10305 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010306 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010307 ret = -1;
10308 break;
10309 }
10310 }
10311 oldvalue = ctxt->state->value;
10312 ctxt->state->value = content;
10313 ret = xmlRelaxNGValidateValue(ctxt, define);
10314 ctxt->state->value = oldvalue;
10315 if (ret == -1) {
10316 VALID_ERR2(XML_RELAXNG_ERR_VALUE, define->name);
10317 } else if (ret == 0) {
10318 ctxt->state->seq = NULL;
10319 }
10320 if (content != NULL)
10321 xmlFree(content);
10322 break;
10323 }
10324 case XML_RELAXNG_LIST:{
10325 xmlChar *content;
10326 xmlNodePtr child;
10327 xmlChar *oldvalue, *oldendvalue;
10328 int len;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010329
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010330 /*
10331 * Make sure it's only text nodes
10332 */
10333
10334 content = NULL;
10335 child = node;
10336 while (child != NULL) {
10337 if (child->type == XML_ELEMENT_NODE) {
10338 VALID_ERR2(XML_RELAXNG_ERR_LISTELEM,
10339 node->parent->name);
10340 ret = -1;
10341 break;
10342 } else if ((child->type == XML_TEXT_NODE) ||
10343 (child->type == XML_CDATA_SECTION_NODE)) {
10344 content = xmlStrcat(content, child->content);
10345 }
10346 /* TODO: handle entities ... */
10347 child = child->next;
10348 }
10349 if (ret == -1) {
10350 if (content != NULL)
10351 xmlFree(content);
10352 break;
10353 }
10354 if (content == NULL) {
10355 content = xmlStrdup(BAD_CAST "");
10356 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010357 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010358 ret = -1;
10359 break;
10360 }
10361 }
10362 len = xmlStrlen(content);
10363 oldvalue = ctxt->state->value;
10364 oldendvalue = ctxt->state->endvalue;
10365 ctxt->state->value = content;
10366 ctxt->state->endvalue = content + len;
10367 ret = xmlRelaxNGValidateValue(ctxt, define);
10368 ctxt->state->value = oldvalue;
10369 ctxt->state->endvalue = oldendvalue;
10370 if (ret == -1) {
10371 VALID_ERR(XML_RELAXNG_ERR_LIST);
10372 } else if ((ret == 0) && (node != NULL)) {
10373 ctxt->state->seq = node->next;
10374 }
10375 if (content != NULL)
10376 xmlFree(content);
10377 break;
10378 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010379 case XML_RELAXNG_EXCEPT:
10380 case XML_RELAXNG_PARAM:
10381 TODO ret = -1;
10382 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010383 }
10384 ctxt->depth--;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010385#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010386 for (i = 0; i < ctxt->depth; i++)
10387 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010388 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010389 "Validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +000010390 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010391 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010392 if (ret == 0)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010393 xmlGenericError(xmlGenericErrorContext, "suceeded\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010394 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010395 xmlGenericError(xmlGenericErrorContext, "failed\n");
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010396#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010397 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010398}
10399
10400/**
Daniel Veillardfd573f12003-03-16 17:52:32 +000010401 * xmlRelaxNGValidateDefinition:
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010402 * @ctxt: a Relax-NG validation context
10403 * @define: the definition to verify
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010404 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010405 * Validate the current node lists against the definition
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010406 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010407 * Returns 0 if the validation succeeded or an error code.
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010408 */
10409static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010410xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
10411 xmlRelaxNGDefinePtr define)
10412{
Daniel Veillardfd573f12003-03-16 17:52:32 +000010413 xmlRelaxNGStatesPtr states, res;
10414 int i, j, k, ret, oldflags;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010415
Daniel Veillardfd573f12003-03-16 17:52:32 +000010416 /*
10417 * We should NOT have both ctxt->state and ctxt->states
10418 */
10419 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010420 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10421 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010422 }
10423
10424 if ((ctxt->states == NULL) || (ctxt->states->nbState == 1)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010425 if (ctxt->states != NULL) {
10426 ctxt->state = ctxt->states->tabState[0];
10427 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10428 ctxt->states = NULL;
10429 }
10430 ret = xmlRelaxNGValidateState(ctxt, define);
10431 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10432 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10433 ctxt->state = NULL;
10434 }
10435 if ((ctxt->states != NULL) && (ctxt->states->nbState == 1)) {
10436 ctxt->state = ctxt->states->tabState[0];
10437 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10438 ctxt->states = NULL;
10439 }
10440 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010441 }
10442
10443 states = ctxt->states;
10444 ctxt->states = NULL;
10445 res = NULL;
10446 j = 0;
10447 oldflags = ctxt->flags;
10448 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +000010449 for (i = 0; i < states->nbState; i++) {
10450 ctxt->state = states->tabState[i];
10451 ctxt->states = NULL;
10452 ret = xmlRelaxNGValidateState(ctxt, define);
10453 /*
10454 * We should NOT have both ctxt->state and ctxt->states
10455 */
10456 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10457 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10458 ctxt->state = NULL;
10459 }
10460 if (ret == 0) {
10461 if (ctxt->states == NULL) {
10462 if (res != NULL) {
10463 /* add the state to the container */
10464 xmlRelaxNGAddStates(ctxt, res, ctxt->state);
10465 ctxt->state = NULL;
10466 } else {
10467 /* add the state directly in states */
10468 states->tabState[j++] = ctxt->state;
10469 ctxt->state = NULL;
10470 }
10471 } else {
10472 if (res == NULL) {
10473 /* make it the new container and copy other results */
10474 res = ctxt->states;
10475 ctxt->states = NULL;
10476 for (k = 0; k < j; k++)
10477 xmlRelaxNGAddStates(ctxt, res,
10478 states->tabState[k]);
10479 } else {
10480 /* add all the new results to res and reff the container */
10481 for (k = 0; k < ctxt->states->nbState; k++)
10482 xmlRelaxNGAddStates(ctxt, res,
10483 ctxt->states->tabState[k]);
10484 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10485 ctxt->states = NULL;
10486 }
10487 }
10488 } else {
10489 if (ctxt->state != NULL) {
10490 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10491 ctxt->state = NULL;
10492 } else if (ctxt->states != NULL) {
10493 for (k = 0; k < ctxt->states->nbState; k++)
10494 xmlRelaxNGFreeValidState(ctxt,
10495 ctxt->states->tabState[k]);
10496 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10497 ctxt->states = NULL;
10498 }
10499 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010500 }
10501 ctxt->flags = oldflags;
10502 if (res != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010503 xmlRelaxNGFreeStates(ctxt, states);
10504 ctxt->states = res;
10505 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010506 } else if (j > 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010507 states->nbState = j;
10508 ctxt->states = states;
10509 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010510 } else if (j == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010511 ctxt->state = states->tabState[0];
10512 xmlRelaxNGFreeStates(ctxt, states);
10513 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010514 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +000010515 ret = -1;
10516 xmlRelaxNGFreeStates(ctxt, states);
10517 if (ctxt->states != NULL) {
10518 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10519 ctxt->states = NULL;
10520 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010521 }
10522 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010523 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10524 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010525 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010526 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010527}
10528
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010529/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000010530 * xmlRelaxNGValidateDocument:
10531 * @ctxt: a Relax-NG validation context
10532 * @doc: the document
10533 *
10534 * Validate the given document
10535 *
10536 * Returns 0 if the validation succeeded or an error code.
10537 */
10538static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010539xmlRelaxNGValidateDocument(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
10540{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010541 int ret;
10542 xmlRelaxNGPtr schema;
10543 xmlRelaxNGGrammarPtr grammar;
10544 xmlRelaxNGValidStatePtr state;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010545 xmlNodePtr node;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010546
10547 if ((ctxt == NULL) || (ctxt->schema == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000010548 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010549
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010550 ctxt->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010551 schema = ctxt->schema;
10552 grammar = schema->topgrammar;
10553 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010554 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
10555 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010556 }
10557 state = xmlRelaxNGNewValidState(ctxt, NULL);
10558 ctxt->state = state;
10559 ret = xmlRelaxNGValidateDefinition(ctxt, grammar->start);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010560 if ((ctxt->state != NULL) && (state->seq != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010561 state = ctxt->state;
10562 node = state->seq;
10563 node = xmlRelaxNGSkipIgnored(ctxt, node);
10564 if (node != NULL) {
10565 if (ret != -1) {
10566 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10567 ret = -1;
10568 }
10569 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010570 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010571 int i;
10572 int tmp = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010573
Daniel Veillard4c004142003-10-07 11:33:24 +000010574 for (i = 0; i < ctxt->states->nbState; i++) {
10575 state = ctxt->states->tabState[i];
10576 node = state->seq;
10577 node = xmlRelaxNGSkipIgnored(ctxt, node);
10578 if (node == NULL)
10579 tmp = 0;
10580 xmlRelaxNGFreeValidState(ctxt, state);
10581 }
10582 if (tmp == -1) {
10583 if (ret != -1) {
10584 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10585 ret = -1;
10586 }
10587 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010588 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010589 if (ctxt->state != NULL) {
10590 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillard4c004142003-10-07 11:33:24 +000010591 ctxt->state = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010592 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010593 if (ret != 0)
10594 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010595#ifdef DEBUG
10596 else if (ctxt->errNr != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010597 ctxt->error(ctxt->userData,
10598 "%d Extra error messages left on stack !\n",
10599 ctxt->errNr);
10600 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010601 }
10602#endif
Daniel Veillardf54cd532004-02-25 11:52:31 +000010603#ifdef LIBXML_VALID_ENABLED
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010604 if (ctxt->idref == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010605 xmlValidCtxt vctxt;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010606
Daniel Veillard4c004142003-10-07 11:33:24 +000010607 memset(&vctxt, 0, sizeof(xmlValidCtxt));
10608 vctxt.valid = 1;
10609 vctxt.error = ctxt->error;
10610 vctxt.warning = ctxt->warning;
10611 vctxt.userData = ctxt->userData;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010612
Daniel Veillard4c004142003-10-07 11:33:24 +000010613 if (xmlValidateDocumentFinal(&vctxt, doc) != 1)
10614 ret = -1;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010615 }
Daniel Veillardf54cd532004-02-25 11:52:31 +000010616#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010617 if ((ret == 0) && (ctxt->errNo != XML_RELAXNG_OK))
Daniel Veillard4c004142003-10-07 11:33:24 +000010618 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010619
Daniel Veillard4c004142003-10-07 11:33:24 +000010620 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010621}
10622
Daniel Veillardfd573f12003-03-16 17:52:32 +000010623/************************************************************************
10624 * *
10625 * Validation interfaces *
10626 * *
10627 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +000010628
Daniel Veillard6eadf632003-01-23 18:29:16 +000010629/**
10630 * xmlRelaxNGNewValidCtxt:
10631 * @schema: a precompiled XML RelaxNGs
10632 *
10633 * Create an XML RelaxNGs validation context based on the given schema
10634 *
10635 * Returns the validation context or NULL in case of error
10636 */
10637xmlRelaxNGValidCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +000010638xmlRelaxNGNewValidCtxt(xmlRelaxNGPtr schema)
10639{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010640 xmlRelaxNGValidCtxtPtr ret;
10641
10642 ret = (xmlRelaxNGValidCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGValidCtxt));
10643 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010644 xmlRngVErrMemory(NULL, "building context\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +000010645 return (NULL);
10646 }
10647 memset(ret, 0, sizeof(xmlRelaxNGValidCtxt));
10648 ret->schema = schema;
Daniel Veillard1703c5f2003-02-10 14:28:44 +000010649 ret->error = xmlGenericError;
10650 ret->userData = xmlGenericErrorContext;
Daniel Veillard42f12e92003-03-07 18:32:59 +000010651 ret->errNr = 0;
10652 ret->errMax = 0;
10653 ret->err = NULL;
10654 ret->errTab = NULL;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010655 if (schema != NULL)
10656 ret->idref = schema->idref;
Daniel Veillard798024a2003-03-19 10:36:09 +000010657 ret->states = NULL;
10658 ret->freeState = NULL;
10659 ret->freeStates = NULL;
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010660 ret->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010661 return (ret);
10662}
10663
10664/**
10665 * xmlRelaxNGFreeValidCtxt:
10666 * @ctxt: the schema validation context
10667 *
10668 * Free the resources associated to the schema validation context
10669 */
10670void
Daniel Veillard4c004142003-10-07 11:33:24 +000010671xmlRelaxNGFreeValidCtxt(xmlRelaxNGValidCtxtPtr ctxt)
10672{
Daniel Veillard798024a2003-03-19 10:36:09 +000010673 int k;
10674
Daniel Veillard6eadf632003-01-23 18:29:16 +000010675 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010676 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010677 if (ctxt->states != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010678 xmlRelaxNGFreeStates(NULL, ctxt->states);
Daniel Veillard798024a2003-03-19 10:36:09 +000010679 if (ctxt->freeState != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010680 for (k = 0; k < ctxt->freeState->nbState; k++) {
10681 xmlRelaxNGFreeValidState(NULL, ctxt->freeState->tabState[k]);
10682 }
10683 xmlRelaxNGFreeStates(NULL, ctxt->freeState);
Daniel Veillard798024a2003-03-19 10:36:09 +000010684 }
Daniel Veillard798024a2003-03-19 10:36:09 +000010685 if (ctxt->freeStates != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010686 for (k = 0; k < ctxt->freeStatesNr; k++) {
10687 xmlRelaxNGFreeStates(NULL, ctxt->freeStates[k]);
10688 }
10689 xmlFree(ctxt->freeStates);
Daniel Veillard798024a2003-03-19 10:36:09 +000010690 }
Daniel Veillard42f12e92003-03-07 18:32:59 +000010691 if (ctxt->errTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010692 xmlFree(ctxt->errTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010693 if (ctxt->elemTab != NULL) {
10694 xmlRegExecCtxtPtr exec;
10695
Daniel Veillard4c004142003-10-07 11:33:24 +000010696 exec = xmlRelaxNGElemPop(ctxt);
10697 while (exec != NULL) {
10698 xmlRegFreeExecCtxt(exec);
10699 exec = xmlRelaxNGElemPop(ctxt);
10700 }
10701 xmlFree(ctxt->elemTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010702 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010703 xmlFree(ctxt);
10704}
10705
10706/**
10707 * xmlRelaxNGSetValidErrors:
10708 * @ctxt: a Relax-NG validation context
10709 * @err: the error function
10710 * @warn: the warning function
10711 * @ctx: the functions context
10712 *
10713 * Set the error and warning callback informations
10714 */
10715void
10716xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010717 xmlRelaxNGValidityErrorFunc err,
10718 xmlRelaxNGValidityWarningFunc warn, void *ctx)
10719{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010720 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010721 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010722 ctxt->error = err;
10723 ctxt->warning = warn;
10724 ctxt->userData = ctx;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010725 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010726}
10727
10728/**
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010729 * xmlRelaxNGSetValidStructuredErrors:
10730 * @ctxt: a Relax-NG validation context
10731 * @serror: the structured error function
10732 * @ctx: the functions context
10733 *
10734 * Set the structured error callback
10735 */
10736void
10737xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillardb30ca312005-09-04 13:50:03 +000010738 xmlStructuredErrorFunc serror, void *ctx)
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010739{
10740 if (ctxt == NULL)
10741 return;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010742 ctxt->serror = serror;
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010743 ctxt->error = NULL;
10744 ctxt->warning = NULL;
10745 ctxt->userData = ctx;
10746}
10747
10748/**
Daniel Veillard409a8142003-07-18 15:16:57 +000010749 * xmlRelaxNGGetValidErrors:
10750 * @ctxt: a Relax-NG validation context
10751 * @err: the error function result
10752 * @warn: the warning function result
10753 * @ctx: the functions context result
10754 *
10755 * Get the error and warning callback informations
10756 *
10757 * Returns -1 in case of error and 0 otherwise
10758 */
10759int
10760xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010761 xmlRelaxNGValidityErrorFunc * err,
10762 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
10763{
Daniel Veillard409a8142003-07-18 15:16:57 +000010764 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010765 return (-1);
10766 if (err != NULL)
10767 *err = ctxt->error;
10768 if (warn != NULL)
10769 *warn = ctxt->warning;
10770 if (ctx != NULL)
10771 *ctx = ctxt->userData;
10772 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +000010773}
10774
10775/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000010776 * xmlRelaxNGValidateDoc:
10777 * @ctxt: a Relax-NG validation context
10778 * @doc: a parsed document tree
10779 *
10780 * Validate a document tree in memory.
10781 *
10782 * Returns 0 if the document is valid, a positive error code
10783 * number otherwise and -1 in case of internal or API error.
10784 */
10785int
Daniel Veillard4c004142003-10-07 11:33:24 +000010786xmlRelaxNGValidateDoc(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
10787{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010788 int ret;
10789
10790 if ((ctxt == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000010791 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010792
10793 ctxt->doc = doc;
10794
10795 ret = xmlRelaxNGValidateDocument(ctxt, doc);
Daniel Veillard71531f32003-02-05 13:19:53 +000010796 /*
10797 * TODO: build error codes
10798 */
10799 if (ret == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +000010800 return (1);
10801 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010802}
10803
Daniel Veillard5d4644e2005-04-01 13:11:58 +000010804#define bottom_relaxng
10805#include "elfgcchack.h"
Daniel Veillard6eadf632003-01-23 18:29:16 +000010806#endif /* LIBXML_SCHEMAS_ENABLED */