blob: 4273db338bfb3f5ccc17855ef6187bf8119dc0f1 [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
Daniel Veillard264cee62012-08-13 12:40:53 +080042#define IS_RELAXNG(node, typ) \
Daniel Veillard6eadf632003-01-23 18:29:16 +000043 ((node != NULL) && (node->ns != NULL) && \
Daniel Veillard264cee62012-08-13 12:40:53 +080044 (node->type == XML_ELEMENT_NODE) && \
45 (xmlStrEqual(node->name, (const xmlChar *) typ)) && \
Daniel Veillard6eadf632003-01-23 18:29:16 +000046 (xmlStrEqual(node->ns->href, xmlRelaxNGNs)))
47
48
Daniel Veillard23a47d62008-06-25 04:11:24 +000049#if 0
Daniel Veillard87254c82006-02-19 15:27:17 +000050#define DEBUG 1
Daniel Veillard4c004142003-10-07 11:33:24 +000051
Daniel Veillard87254c82006-02-19 15:27:17 +000052#define DEBUG_GRAMMAR 1
Daniel Veillard4c004142003-10-07 11:33:24 +000053
Daniel Veillard87254c82006-02-19 15:27:17 +000054#define DEBUG_CONTENT 1
Daniel Veillard4c004142003-10-07 11:33:24 +000055
Daniel Veillard87254c82006-02-19 15:27:17 +000056#define DEBUG_TYPE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000057
Daniel Veillard87254c82006-02-19 15:27:17 +000058#define DEBUG_VALID 1
Daniel Veillard4c004142003-10-07 11:33:24 +000059
Daniel Veillard87254c82006-02-19 15:27:17 +000060#define DEBUG_INTERLEAVE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000061
Daniel Veillard87254c82006-02-19 15:27:17 +000062#define DEBUG_LIST 1
Daniel Veillard4c004142003-10-07 11:33:24 +000063
Daniel Veillardf8e3db02012-09-11 13:26:36 +080064#define DEBUG_INCLUDE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000065
Daniel Veillard87254c82006-02-19 15:27:17 +000066#define DEBUG_ERROR 1
Daniel Veillard4c004142003-10-07 11:33:24 +000067
Daniel Veillard87254c82006-02-19 15:27:17 +000068#define DEBUG_COMPILE 1
Daniel Veillard4c004142003-10-07 11:33:24 +000069
Daniel Veillard87254c82006-02-19 15:27:17 +000070#define DEBUG_PROGRESSIVE 1
71#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +000072
Daniel Veillard5f1946a2003-03-31 16:38:16 +000073#define MAX_ERROR 5
74
Daniel Veillardf8e3db02012-09-11 13:26:36 +080075#define TODO \
Daniel Veillard6eadf632003-01-23 18:29:16 +000076 xmlGenericError(xmlGenericErrorContext, \
77 "Unimplemented block at %s:%d\n", \
78 __FILE__, __LINE__);
79
80typedef struct _xmlRelaxNGSchema xmlRelaxNGSchema;
81typedef xmlRelaxNGSchema *xmlRelaxNGSchemaPtr;
82
83typedef struct _xmlRelaxNGDefine xmlRelaxNGDefine;
84typedef xmlRelaxNGDefine *xmlRelaxNGDefinePtr;
85
Daniel Veillardd41f4f42003-01-29 21:07:52 +000086typedef struct _xmlRelaxNGDocument xmlRelaxNGDocument;
87typedef xmlRelaxNGDocument *xmlRelaxNGDocumentPtr;
88
Daniel Veillarda9d912d2003-02-01 17:43:10 +000089typedef struct _xmlRelaxNGInclude xmlRelaxNGInclude;
90typedef xmlRelaxNGInclude *xmlRelaxNGIncludePtr;
91
Daniel Veillard6eadf632003-01-23 18:29:16 +000092typedef enum {
Daniel Veillard4c004142003-10-07 11:33:24 +000093 XML_RELAXNG_COMBINE_UNDEFINED = 0, /* undefined */
94 XML_RELAXNG_COMBINE_CHOICE, /* choice */
95 XML_RELAXNG_COMBINE_INTERLEAVE /* interleave */
Daniel Veillard6eadf632003-01-23 18:29:16 +000096} xmlRelaxNGCombine;
97
Daniel Veillard4c5cf702003-02-21 15:40:34 +000098typedef enum {
99 XML_RELAXNG_CONTENT_ERROR = -1,
100 XML_RELAXNG_CONTENT_EMPTY = 0,
101 XML_RELAXNG_CONTENT_SIMPLE,
102 XML_RELAXNG_CONTENT_COMPLEX
103} xmlRelaxNGContentType;
104
Daniel Veillard6eadf632003-01-23 18:29:16 +0000105typedef struct _xmlRelaxNGGrammar xmlRelaxNGGrammar;
106typedef xmlRelaxNGGrammar *xmlRelaxNGGrammarPtr;
107
108struct _xmlRelaxNGGrammar {
Daniel Veillard4c004142003-10-07 11:33:24 +0000109 xmlRelaxNGGrammarPtr parent; /* the parent grammar if any */
110 xmlRelaxNGGrammarPtr children; /* the children grammar if any */
111 xmlRelaxNGGrammarPtr next; /* the next grammar if any */
112 xmlRelaxNGDefinePtr start; /* <start> content */
113 xmlRelaxNGCombine combine; /* the default combine value */
114 xmlRelaxNGDefinePtr startList; /* list of <start> definitions */
115 xmlHashTablePtr defs; /* define* */
116 xmlHashTablePtr refs; /* references */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000117};
118
119
Daniel Veillard6eadf632003-01-23 18:29:16 +0000120typedef enum {
Daniel Veillard4c004142003-10-07 11:33:24 +0000121 XML_RELAXNG_NOOP = -1, /* a no operation from simplification */
122 XML_RELAXNG_EMPTY = 0, /* an empty pattern */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000123 XML_RELAXNG_NOT_ALLOWED, /* not allowed top */
Daniel Veillard4c004142003-10-07 11:33:24 +0000124 XML_RELAXNG_EXCEPT, /* except present in nameclass defs */
125 XML_RELAXNG_TEXT, /* textual content */
126 XML_RELAXNG_ELEMENT, /* an element */
127 XML_RELAXNG_DATATYPE, /* extenal data type definition */
128 XML_RELAXNG_PARAM, /* extenal data type parameter */
129 XML_RELAXNG_VALUE, /* value from an extenal data type definition */
130 XML_RELAXNG_LIST, /* a list of patterns */
131 XML_RELAXNG_ATTRIBUTE, /* an attrbute following a pattern */
132 XML_RELAXNG_DEF, /* a definition */
133 XML_RELAXNG_REF, /* reference to a definition */
134 XML_RELAXNG_EXTERNALREF, /* reference to an external def */
135 XML_RELAXNG_PARENTREF, /* reference to a def in the parent grammar */
136 XML_RELAXNG_OPTIONAL, /* optional patterns */
137 XML_RELAXNG_ZEROORMORE, /* zero or more non empty patterns */
138 XML_RELAXNG_ONEORMORE, /* one or more non empty patterns */
139 XML_RELAXNG_CHOICE, /* a choice between non empty patterns */
140 XML_RELAXNG_GROUP, /* a pair/group of non empty patterns */
141 XML_RELAXNG_INTERLEAVE, /* interleaving choice of non-empty patterns */
142 XML_RELAXNG_START /* Used to keep track of starts on grammars */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000143} xmlRelaxNGType;
144
Daniel Veillard52b48c72003-04-13 19:53:42 +0000145#define IS_NULLABLE (1 << 0)
146#define IS_NOT_NULLABLE (1 << 1)
147#define IS_INDETERMINIST (1 << 2)
148#define IS_MIXED (1 << 3)
149#define IS_TRIABLE (1 << 4)
150#define IS_PROCESSED (1 << 5)
151#define IS_COMPILABLE (1 << 6)
152#define IS_NOT_COMPILABLE (1 << 7)
Daniel Veillardaa422d92009-09-24 11:31:48 +0200153#define IS_EXTERNAL_REF (1 << 8)
Daniel Veillard1564e6e2003-03-15 21:30:25 +0000154
Daniel Veillard6eadf632003-01-23 18:29:16 +0000155struct _xmlRelaxNGDefine {
Daniel Veillard4c004142003-10-07 11:33:24 +0000156 xmlRelaxNGType type; /* the type of definition */
157 xmlNodePtr node; /* the node in the source */
158 xmlChar *name; /* the element local name if present */
159 xmlChar *ns; /* the namespace local name if present */
160 xmlChar *value; /* value when available */
161 void *data; /* data lib or specific pointer */
162 xmlRelaxNGDefinePtr content; /* the expected content */
163 xmlRelaxNGDefinePtr parent; /* the parent definition, if any */
164 xmlRelaxNGDefinePtr next; /* list within grouping sequences */
165 xmlRelaxNGDefinePtr attrs; /* list of attributes for elements */
166 xmlRelaxNGDefinePtr nameClass; /* the nameClass definition if any */
167 xmlRelaxNGDefinePtr nextHash; /* next define in defs/refs hash tables */
168 short depth; /* used for the cycle detection */
169 short dflags; /* define related flags */
170 xmlRegexpPtr contModel; /* a compiled content model if available */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000171};
172
173/**
174 * _xmlRelaxNG:
175 *
176 * A RelaxNGs definition
177 */
178struct _xmlRelaxNG {
Daniel Veillard4c004142003-10-07 11:33:24 +0000179 void *_private; /* unused by the library for users or bindings */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000180 xmlRelaxNGGrammarPtr topgrammar;
181 xmlDocPtr doc;
182
Daniel Veillard4c004142003-10-07 11:33:24 +0000183 int idref; /* requires idref checking */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000184
Daniel Veillard4c004142003-10-07 11:33:24 +0000185 xmlHashTablePtr defs; /* define */
186 xmlHashTablePtr refs; /* references */
187 xmlRelaxNGDocumentPtr documents; /* all the documents loaded */
188 xmlRelaxNGIncludePtr includes; /* all the includes loaded */
189 int defNr; /* number of defines used */
190 xmlRelaxNGDefinePtr *defTab; /* pointer to the allocated definitions */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000191
Daniel Veillard6eadf632003-01-23 18:29:16 +0000192};
193
Daniel Veillard77648bb2003-02-20 15:03:22 +0000194#define XML_RELAXNG_IN_ATTRIBUTE (1 << 0)
195#define XML_RELAXNG_IN_ONEORMORE (1 << 1)
196#define XML_RELAXNG_IN_LIST (1 << 2)
197#define XML_RELAXNG_IN_DATAEXCEPT (1 << 3)
198#define XML_RELAXNG_IN_START (1 << 4)
199#define XML_RELAXNG_IN_OOMGROUP (1 << 5)
200#define XML_RELAXNG_IN_OOMINTERLEAVE (1 << 6)
201#define XML_RELAXNG_IN_EXTERNALREF (1 << 7)
Daniel Veillardc5312d72003-02-21 17:14:10 +0000202#define XML_RELAXNG_IN_ANYEXCEPT (1 << 8)
203#define XML_RELAXNG_IN_NSEXCEPT (1 << 9)
Daniel Veillard6eadf632003-01-23 18:29:16 +0000204
205struct _xmlRelaxNGParserCtxt {
Daniel Veillard4c004142003-10-07 11:33:24 +0000206 void *userData; /* user specific data block */
207 xmlRelaxNGValidityErrorFunc error; /* the callback in case of errors */
208 xmlRelaxNGValidityWarningFunc warning; /* the callback in case of warning */
Daniel Veillard659e71e2003-10-10 14:10:40 +0000209 xmlStructuredErrorFunc serror;
Daniel Veillard42f12e92003-03-07 18:32:59 +0000210 xmlRelaxNGValidErr err;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000211
Daniel Veillard4c004142003-10-07 11:33:24 +0000212 xmlRelaxNGPtr schema; /* The schema in use */
213 xmlRelaxNGGrammarPtr grammar; /* the current grammar */
214 xmlRelaxNGGrammarPtr parentgrammar; /* the parent grammar */
215 int flags; /* parser flags */
216 int nbErrors; /* number of errors at parse time */
217 int nbWarnings; /* number of warnings at parse time */
218 const xmlChar *define; /* the current define scope */
219 xmlRelaxNGDefinePtr def; /* the current define */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000220
Daniel Veillard4c004142003-10-07 11:33:24 +0000221 int nbInterleaves;
222 xmlHashTablePtr interleaves; /* keep track of all the interleaves */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000223
Daniel Veillard4c004142003-10-07 11:33:24 +0000224 xmlRelaxNGDocumentPtr documents; /* all the documents loaded */
225 xmlRelaxNGIncludePtr includes; /* all the includes loaded */
226 xmlChar *URL;
227 xmlDocPtr document;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000228
Daniel Veillard4c004142003-10-07 11:33:24 +0000229 int defNr; /* number of defines used */
230 int defMax; /* number of defines aloocated */
231 xmlRelaxNGDefinePtr *defTab; /* pointer to the allocated definitions */
Daniel Veillard419a7682003-02-03 23:22:49 +0000232
Daniel Veillard4c004142003-10-07 11:33:24 +0000233 const char *buffer;
234 int size;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000235
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000236 /* the document stack */
Daniel Veillard4c004142003-10-07 11:33:24 +0000237 xmlRelaxNGDocumentPtr doc; /* Current parsed external ref */
238 int docNr; /* Depth of the parsing stack */
239 int docMax; /* Max depth of the parsing stack */
240 xmlRelaxNGDocumentPtr *docTab; /* array of docs */
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000241
242 /* the include stack */
Daniel Veillard4c004142003-10-07 11:33:24 +0000243 xmlRelaxNGIncludePtr inc; /* Current parsed include */
244 int incNr; /* Depth of the include parsing stack */
245 int incMax; /* Max depth of the parsing stack */
246 xmlRelaxNGIncludePtr *incTab; /* array of incs */
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000247
Daniel Veillard4c004142003-10-07 11:33:24 +0000248 int idref; /* requires idref checking */
Daniel Veillard52b48c72003-04-13 19:53:42 +0000249
250 /* used to compile content models */
Daniel Veillard4c004142003-10-07 11:33:24 +0000251 xmlAutomataPtr am; /* the automata */
252 xmlAutomataStatePtr state; /* used to build the automata */
Daniel Veillard03c2f0a2004-01-25 19:54:59 +0000253
254 int crng; /* compact syntax and other flags */
Daniel Veillard42595322004-11-08 10:52:06 +0000255 int freedoc; /* need to free the document */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000256};
257
258#define FLAGS_IGNORABLE 1
259#define FLAGS_NEGATIVE 2
Daniel Veillard249d7bb2003-03-19 21:02:29 +0000260#define FLAGS_MIXED_CONTENT 4
Daniel Veillardb30ca312005-09-04 13:50:03 +0000261#define FLAGS_NOERROR 8
Daniel Veillard6eadf632003-01-23 18:29:16 +0000262
263/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000264 * xmlRelaxNGInterleaveGroup:
265 *
266 * A RelaxNGs partition set associated to lists of definitions
267 */
268typedef struct _xmlRelaxNGInterleaveGroup xmlRelaxNGInterleaveGroup;
269typedef xmlRelaxNGInterleaveGroup *xmlRelaxNGInterleaveGroupPtr;
270struct _xmlRelaxNGInterleaveGroup {
Daniel Veillard4c004142003-10-07 11:33:24 +0000271 xmlRelaxNGDefinePtr rule; /* the rule to satisfy */
272 xmlRelaxNGDefinePtr *defs; /* the array of element definitions */
273 xmlRelaxNGDefinePtr *attrs; /* the array of attributes definitions */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000274};
275
Daniel Veillardbbb78b52003-03-21 01:24:45 +0000276#define IS_DETERMINIST 1
277#define IS_NEEDCHECK 2
Daniel Veillard4c004142003-10-07 11:33:24 +0000278
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000279/**
280 * xmlRelaxNGPartitions:
281 *
282 * A RelaxNGs partition associated to an interleave group
283 */
284typedef struct _xmlRelaxNGPartition xmlRelaxNGPartition;
285typedef xmlRelaxNGPartition *xmlRelaxNGPartitionPtr;
286struct _xmlRelaxNGPartition {
Daniel Veillard4c004142003-10-07 11:33:24 +0000287 int nbgroups; /* number of groups in the partitions */
288 xmlHashTablePtr triage; /* hash table used to direct nodes to the
289 * right group when possible */
290 int flags; /* determinist ? */
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000291 xmlRelaxNGInterleaveGroupPtr *groups;
292};
293
294/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000295 * xmlRelaxNGValidState:
296 *
297 * A RelaxNGs validation state
298 */
299#define MAX_ATTR 20
300typedef struct _xmlRelaxNGValidState xmlRelaxNGValidState;
301typedef xmlRelaxNGValidState *xmlRelaxNGValidStatePtr;
302struct _xmlRelaxNGValidState {
Daniel Veillard4c004142003-10-07 11:33:24 +0000303 xmlNodePtr node; /* the current node */
304 xmlNodePtr seq; /* the sequence of children left to validate */
305 int nbAttrs; /* the number of attributes */
306 int maxAttrs; /* the size of attrs */
307 int nbAttrLeft; /* the number of attributes left to validate */
308 xmlChar *value; /* the value when operating on string */
309 xmlChar *endvalue; /* the end value when operating on string */
310 xmlAttrPtr *attrs; /* the array of attributes */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000311};
312
313/**
Daniel Veillardfd573f12003-03-16 17:52:32 +0000314 * xmlRelaxNGStates:
315 *
316 * A RelaxNGs container for validation state
317 */
318typedef struct _xmlRelaxNGStates xmlRelaxNGStates;
319typedef xmlRelaxNGStates *xmlRelaxNGStatesPtr;
320struct _xmlRelaxNGStates {
Daniel Veillard4c004142003-10-07 11:33:24 +0000321 int nbState; /* the number of states */
322 int maxState; /* the size of the array */
Daniel Veillardfd573f12003-03-16 17:52:32 +0000323 xmlRelaxNGValidStatePtr *tabState;
324};
325
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000326#define ERROR_IS_DUP 1
Daniel Veillard4c004142003-10-07 11:33:24 +0000327
Daniel Veillardfd573f12003-03-16 17:52:32 +0000328/**
Daniel Veillard42f12e92003-03-07 18:32:59 +0000329 * xmlRelaxNGValidError:
330 *
331 * A RelaxNGs validation error
332 */
333typedef struct _xmlRelaxNGValidError xmlRelaxNGValidError;
334typedef xmlRelaxNGValidError *xmlRelaxNGValidErrorPtr;
335struct _xmlRelaxNGValidError {
Daniel Veillard4c004142003-10-07 11:33:24 +0000336 xmlRelaxNGValidErr err; /* the error number */
337 int flags; /* flags */
338 xmlNodePtr node; /* the current node */
339 xmlNodePtr seq; /* the current child */
340 const xmlChar *arg1; /* first arg */
341 const xmlChar *arg2; /* second arg */
Daniel Veillard42f12e92003-03-07 18:32:59 +0000342};
343
344/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000345 * xmlRelaxNGValidCtxt:
346 *
347 * A RelaxNGs validation context
348 */
349
350struct _xmlRelaxNGValidCtxt {
Daniel Veillard4c004142003-10-07 11:33:24 +0000351 void *userData; /* user specific data block */
352 xmlRelaxNGValidityErrorFunc error; /* the callback in case of errors */
353 xmlRelaxNGValidityWarningFunc warning; /* the callback in case of warning */
Daniel Veillard659e71e2003-10-10 14:10:40 +0000354 xmlStructuredErrorFunc serror;
Daniel Veillard4c004142003-10-07 11:33:24 +0000355 int nbErrors; /* number of errors in validation */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000356
Daniel Veillard4c004142003-10-07 11:33:24 +0000357 xmlRelaxNGPtr schema; /* The schema in use */
358 xmlDocPtr doc; /* the document being validated */
359 int flags; /* validation flags */
360 int depth; /* validation depth */
361 int idref; /* requires idref checking */
362 int errNo; /* the first error found */
Daniel Veillard42f12e92003-03-07 18:32:59 +0000363
364 /*
365 * Errors accumulated in branches may have to be stacked to be
366 * provided back when it's sure they affect validation.
367 */
368 xmlRelaxNGValidErrorPtr err; /* Last error */
Daniel Veillard4c004142003-10-07 11:33:24 +0000369 int errNr; /* Depth of the error stack */
370 int errMax; /* Max depth of the error stack */
371 xmlRelaxNGValidErrorPtr errTab; /* stack of errors */
Daniel Veillard1564e6e2003-03-15 21:30:25 +0000372
Daniel Veillard4c004142003-10-07 11:33:24 +0000373 xmlRelaxNGValidStatePtr state; /* the current validation state */
374 xmlRelaxNGStatesPtr states; /* the accumulated state list */
Daniel Veillard798024a2003-03-19 10:36:09 +0000375
Daniel Veillard4c004142003-10-07 11:33:24 +0000376 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
377 int freeStatesNr;
378 int freeStatesMax;
379 xmlRelaxNGStatesPtr *freeStates; /* the pool of free state groups */
Daniel Veillardf4e55762003-04-15 23:32:22 +0000380
381 /*
382 * This is used for "progressive" validation
383 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000384 xmlRegExecCtxtPtr elem; /* the current element regexp */
385 int elemNr; /* the number of element validated */
386 int elemMax; /* the max depth of elements */
387 xmlRegExecCtxtPtr *elemTab; /* the stack of regexp runtime */
388 int pstate; /* progressive state */
389 xmlNodePtr pnode; /* the current node */
390 xmlRelaxNGDefinePtr pdef; /* the non-streamable definition */
391 int perr; /* signal error in content model
392 * outside the regexp */
Daniel Veillard6eadf632003-01-23 18:29:16 +0000393};
394
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000395/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000396 * xmlRelaxNGInclude:
397 *
398 * Structure associated to a RelaxNGs document element
399 */
400struct _xmlRelaxNGInclude {
Daniel Veillard4c004142003-10-07 11:33:24 +0000401 xmlRelaxNGIncludePtr next; /* keep a chain of includes */
402 xmlChar *href; /* the normalized href value */
403 xmlDocPtr doc; /* the associated XML document */
404 xmlRelaxNGDefinePtr content; /* the definitions */
405 xmlRelaxNGPtr schema; /* the schema */
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000406};
407
408/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000409 * xmlRelaxNGDocument:
410 *
411 * Structure associated to a RelaxNGs document element
412 */
413struct _xmlRelaxNGDocument {
Daniel Veillardc482e262003-02-26 14:48:48 +0000414 xmlRelaxNGDocumentPtr next; /* keep a chain of documents */
Daniel Veillard4c004142003-10-07 11:33:24 +0000415 xmlChar *href; /* the normalized href value */
416 xmlDocPtr doc; /* the associated XML document */
417 xmlRelaxNGDefinePtr content; /* the definitions */
418 xmlRelaxNGPtr schema; /* the schema */
Daniel Veillard81c51e12009-08-14 18:52:10 +0200419 int externalRef; /* 1 if an external ref */
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000420};
421
Daniel Veillard3ebc7d42003-02-24 17:17:58 +0000422
Daniel Veillard6eadf632003-01-23 18:29:16 +0000423/************************************************************************
Daniel Veillard4c004142003-10-07 11:33:24 +0000424 * *
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800425 * Some factorized error routines *
Daniel Veillard4c004142003-10-07 11:33:24 +0000426 * *
427 ************************************************************************/
428
429/**
430 * xmlRngPErrMemory:
431 * @ctxt: an Relax-NG parser context
432 * @extra: extra informations
433 *
434 * Handle a redefinition of attribute error
435 */
436static void
437xmlRngPErrMemory(xmlRelaxNGParserCtxtPtr ctxt, const char *extra)
438{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000439 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000440 xmlGenericErrorFunc channel = NULL;
441 void *data = NULL;
442
443 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000444 if (ctxt->serror != NULL)
445 schannel = ctxt->serror;
446 else
447 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000448 data = ctxt->userData;
449 ctxt->nbErrors++;
450 }
451 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000452 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000453 NULL, NULL, XML_FROM_RELAXNGP,
454 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
455 NULL, NULL, 0, 0,
456 "Memory allocation failed : %s\n", extra);
457 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000458 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000459 NULL, NULL, XML_FROM_RELAXNGP,
460 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
461 NULL, NULL, 0, 0, "Memory allocation failed\n");
462}
463
464/**
465 * xmlRngVErrMemory:
466 * @ctxt: a Relax-NG validation context
467 * @extra: extra informations
468 *
469 * Handle a redefinition of attribute error
470 */
471static void
472xmlRngVErrMemory(xmlRelaxNGValidCtxtPtr ctxt, const char *extra)
473{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000474 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000475 xmlGenericErrorFunc channel = NULL;
476 void *data = NULL;
477
478 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000479 if (ctxt->serror != NULL)
480 schannel = ctxt->serror;
481 else
482 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000483 data = ctxt->userData;
484 ctxt->nbErrors++;
485 }
486 if (extra)
Daniel Veillard659e71e2003-10-10 14:10:40 +0000487 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000488 NULL, NULL, XML_FROM_RELAXNGV,
489 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
490 NULL, NULL, 0, 0,
491 "Memory allocation failed : %s\n", extra);
492 else
Daniel Veillard659e71e2003-10-10 14:10:40 +0000493 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000494 NULL, NULL, XML_FROM_RELAXNGV,
495 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
496 NULL, NULL, 0, 0, "Memory allocation failed\n");
497}
498
499/**
500 * xmlRngPErr:
501 * @ctxt: a Relax-NG parser context
502 * @node: the node raising the error
503 * @error: the error code
504 * @msg: message
505 * @str1: extra info
506 * @str2: extra info
507 *
508 * Handle a Relax NG Parsing error
509 */
510static void
511xmlRngPErr(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node, int error,
512 const char *msg, const xmlChar * str1, const xmlChar * str2)
513{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000514 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000515 xmlGenericErrorFunc channel = NULL;
516 void *data = NULL;
517
518 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000519 if (ctxt->serror != NULL)
520 schannel = ctxt->serror;
521 else
522 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000523 data = ctxt->userData;
524 ctxt->nbErrors++;
525 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000526 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000527 NULL, node, XML_FROM_RELAXNGP,
528 error, XML_ERR_ERROR, NULL, 0,
529 (const char *) str1, (const char *) str2, NULL, 0, 0,
530 msg, str1, str2);
531}
532
533/**
534 * xmlRngVErr:
535 * @ctxt: a Relax-NG validation context
536 * @node: the node raising the error
537 * @error: the error code
538 * @msg: message
539 * @str1: extra info
540 * @str2: extra info
541 *
542 * Handle a Relax NG Validation error
543 */
544static void
545xmlRngVErr(xmlRelaxNGValidCtxtPtr ctxt, xmlNodePtr node, int error,
546 const char *msg, const xmlChar * str1, const xmlChar * str2)
547{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000548 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +0000549 xmlGenericErrorFunc channel = NULL;
550 void *data = NULL;
551
552 if (ctxt != NULL) {
Daniel Veillardb30ca312005-09-04 13:50:03 +0000553 if (ctxt->serror != NULL)
554 schannel = ctxt->serror;
555 else
556 channel = ctxt->error;
Daniel Veillard4c004142003-10-07 11:33:24 +0000557 data = ctxt->userData;
558 ctxt->nbErrors++;
559 }
Daniel Veillard659e71e2003-10-10 14:10:40 +0000560 __xmlRaiseError(schannel, channel, data,
Daniel Veillard4c004142003-10-07 11:33:24 +0000561 NULL, node, XML_FROM_RELAXNGV,
562 error, XML_ERR_ERROR, NULL, 0,
563 (const char *) str1, (const char *) str2, NULL, 0, 0,
564 msg, str1, str2);
565}
566
567/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800568 * *
569 * Preliminary type checking interfaces *
570 * *
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000571 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +0000572
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000573/**
574 * xmlRelaxNGTypeHave:
575 * @data: data needed for the library
576 * @type: the type name
577 * @value: the value to check
578 *
579 * Function provided by a type library to check if a type is exported
580 *
581 * Returns 1 if yes, 0 if no and -1 in case of error.
582 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000583typedef int (*xmlRelaxNGTypeHave) (void *data, const xmlChar * type);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000584
585/**
586 * xmlRelaxNGTypeCheck:
587 * @data: data needed for the library
588 * @type: the type name
589 * @value: the value to check
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000590 * @result: place to store the result if needed
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000591 *
592 * Function provided by a type library to check if a value match a type
593 *
594 * Returns 1 if yes, 0 if no and -1 in case of error.
595 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000596typedef int (*xmlRelaxNGTypeCheck) (void *data, const xmlChar * type,
597 const xmlChar * value, void **result,
598 xmlNodePtr node);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000599
600/**
601 * xmlRelaxNGFacetCheck:
602 * @data: data needed for the library
603 * @type: the type name
604 * @facet: the facet name
605 * @val: the facet value
606 * @strval: the string value
607 * @value: the value to check
608 *
609 * Function provided by a type library to check a value facet
610 *
611 * Returns 1 if yes, 0 if no and -1 in case of error.
612 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000613typedef int (*xmlRelaxNGFacetCheck) (void *data, const xmlChar * type,
614 const xmlChar * facet,
615 const xmlChar * val,
616 const xmlChar * strval, void *value);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000617
618/**
619 * xmlRelaxNGTypeFree:
620 * @data: data needed for the library
621 * @result: the value to free
622 *
623 * Function provided by a type library to free a returned result
624 */
625typedef void (*xmlRelaxNGTypeFree) (void *data, void *result);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000626
627/**
628 * xmlRelaxNGTypeCompare:
629 * @data: data needed for the library
630 * @type: the type name
631 * @value1: the first value
632 * @value2: the second value
633 *
634 * Function provided by a type library to compare two values accordingly
635 * to a type.
636 *
637 * Returns 1 if yes, 0 if no and -1 in case of error.
638 */
Daniel Veillard4c004142003-10-07 11:33:24 +0000639typedef int (*xmlRelaxNGTypeCompare) (void *data, const xmlChar * type,
640 const xmlChar * value1,
641 xmlNodePtr ctxt1,
642 void *comp1,
643 const xmlChar * value2,
644 xmlNodePtr ctxt2);
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000645typedef struct _xmlRelaxNGTypeLibrary xmlRelaxNGTypeLibrary;
646typedef xmlRelaxNGTypeLibrary *xmlRelaxNGTypeLibraryPtr;
647struct _xmlRelaxNGTypeLibrary {
Daniel Veillard4c004142003-10-07 11:33:24 +0000648 const xmlChar *namespace; /* the datatypeLibrary value */
649 void *data; /* data needed for the library */
650 xmlRelaxNGTypeHave have; /* the export function */
651 xmlRelaxNGTypeCheck check; /* the checking function */
652 xmlRelaxNGTypeCompare comp; /* the compare function */
653 xmlRelaxNGFacetCheck facet; /* the facet check function */
654 xmlRelaxNGTypeFree freef; /* the freeing function */
Daniel Veillarddd1655c2003-01-25 18:01:32 +0000655};
656
657/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800658 * *
659 * Allocation functions *
660 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +0000661 ************************************************************************/
Daniel Veillard6eadf632003-01-23 18:29:16 +0000662static void xmlRelaxNGFreeGrammar(xmlRelaxNGGrammarPtr grammar);
663static void xmlRelaxNGFreeDefine(xmlRelaxNGDefinePtr define);
Daniel Veillard4c004142003-10-07 11:33:24 +0000664static void xmlRelaxNGNormExtSpace(xmlChar * value);
Daniel Veillardc482e262003-02-26 14:48:48 +0000665static void xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema);
Daniel Veillard4c004142003-10-07 11:33:24 +0000666static int xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt
667 ATTRIBUTE_UNUSED,
668 xmlRelaxNGValidStatePtr state1,
669 xmlRelaxNGValidStatePtr state2);
Daniel Veillard798024a2003-03-19 10:36:09 +0000670static void xmlRelaxNGFreeValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +0000671 xmlRelaxNGValidStatePtr state);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000672
673/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000674 * xmlRelaxNGFreeDocument:
675 * @docu: a document structure
676 *
677 * Deallocate a RelaxNG document structure.
678 */
679static void
680xmlRelaxNGFreeDocument(xmlRelaxNGDocumentPtr docu)
681{
682 if (docu == NULL)
683 return;
684
685 if (docu->href != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000686 xmlFree(docu->href);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000687 if (docu->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000688 xmlFreeDoc(docu->doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000689 if (docu->schema != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000690 xmlRelaxNGFreeInnerSchema(docu->schema);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000691 xmlFree(docu);
692}
693
694/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000695 * xmlRelaxNGFreeDocumentList:
696 * @docu: a list of document structure
697 *
698 * Deallocate a RelaxNG document structures.
699 */
700static void
701xmlRelaxNGFreeDocumentList(xmlRelaxNGDocumentPtr docu)
702{
703 xmlRelaxNGDocumentPtr next;
Daniel Veillard4c004142003-10-07 11:33:24 +0000704
Daniel Veillardc482e262003-02-26 14:48:48 +0000705 while (docu != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000706 next = docu->next;
707 xmlRelaxNGFreeDocument(docu);
708 docu = next;
Daniel Veillardc482e262003-02-26 14:48:48 +0000709 }
710}
711
712/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000713 * xmlRelaxNGFreeInclude:
714 * @incl: a include structure
715 *
716 * Deallocate a RelaxNG include structure.
717 */
718static void
719xmlRelaxNGFreeInclude(xmlRelaxNGIncludePtr incl)
720{
721 if (incl == NULL)
722 return;
723
724 if (incl->href != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000725 xmlFree(incl->href);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000726 if (incl->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000727 xmlFreeDoc(incl->doc);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000728 if (incl->schema != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000729 xmlRelaxNGFree(incl->schema);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000730 xmlFree(incl);
731}
732
733/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000734 * xmlRelaxNGFreeIncludeList:
735 * @incl: a include structure list
736 *
737 * Deallocate a RelaxNG include structure.
738 */
739static void
740xmlRelaxNGFreeIncludeList(xmlRelaxNGIncludePtr incl)
741{
742 xmlRelaxNGIncludePtr next;
Daniel Veillard4c004142003-10-07 11:33:24 +0000743
Daniel Veillardc482e262003-02-26 14:48:48 +0000744 while (incl != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000745 next = incl->next;
746 xmlRelaxNGFreeInclude(incl);
747 incl = next;
Daniel Veillardc482e262003-02-26 14:48:48 +0000748 }
749}
750
751/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000752 * xmlRelaxNGNewRelaxNG:
753 * @ctxt: a Relax-NG validation context (optional)
754 *
755 * Allocate a new RelaxNG structure.
756 *
757 * Returns the newly allocated structure or NULL in case or error
758 */
759static xmlRelaxNGPtr
760xmlRelaxNGNewRelaxNG(xmlRelaxNGParserCtxtPtr ctxt)
761{
762 xmlRelaxNGPtr ret;
763
764 ret = (xmlRelaxNGPtr) xmlMalloc(sizeof(xmlRelaxNG));
765 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000766 xmlRngPErrMemory(ctxt, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000767 return (NULL);
768 }
769 memset(ret, 0, sizeof(xmlRelaxNG));
770
771 return (ret);
772}
773
774/**
Daniel Veillardc482e262003-02-26 14:48:48 +0000775 * xmlRelaxNGFreeInnerSchema:
776 * @schema: a schema structure
777 *
778 * Deallocate a RelaxNG schema structure.
779 */
780static void
781xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema)
782{
783 if (schema == NULL)
784 return;
785
786 if (schema->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000787 xmlFreeDoc(schema->doc);
Daniel Veillardc482e262003-02-26 14:48:48 +0000788 if (schema->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000789 int i;
Daniel Veillardc482e262003-02-26 14:48:48 +0000790
Daniel Veillard4c004142003-10-07 11:33:24 +0000791 for (i = 0; i < schema->defNr; i++)
792 xmlRelaxNGFreeDefine(schema->defTab[i]);
793 xmlFree(schema->defTab);
Daniel Veillardc482e262003-02-26 14:48:48 +0000794 }
795
796 xmlFree(schema);
797}
798
799/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000800 * xmlRelaxNGFree:
801 * @schema: a schema structure
802 *
803 * Deallocate a RelaxNG structure.
804 */
805void
806xmlRelaxNGFree(xmlRelaxNGPtr schema)
807{
808 if (schema == NULL)
809 return;
810
Daniel Veillard6eadf632003-01-23 18:29:16 +0000811 if (schema->topgrammar != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000812 xmlRelaxNGFreeGrammar(schema->topgrammar);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000813 if (schema->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000814 xmlFreeDoc(schema->doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +0000815 if (schema->documents != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000816 xmlRelaxNGFreeDocumentList(schema->documents);
Daniel Veillarda9d912d2003-02-01 17:43:10 +0000817 if (schema->includes != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000818 xmlRelaxNGFreeIncludeList(schema->includes);
Daniel Veillard419a7682003-02-03 23:22:49 +0000819 if (schema->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000820 int i;
Daniel Veillard419a7682003-02-03 23:22:49 +0000821
Daniel Veillard4c004142003-10-07 11:33:24 +0000822 for (i = 0; i < schema->defNr; i++)
823 xmlRelaxNGFreeDefine(schema->defTab[i]);
824 xmlFree(schema->defTab);
Daniel Veillard419a7682003-02-03 23:22:49 +0000825 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000826
827 xmlFree(schema);
828}
829
830/**
831 * xmlRelaxNGNewGrammar:
832 * @ctxt: a Relax-NG validation context (optional)
833 *
834 * Allocate a new RelaxNG grammar.
835 *
836 * Returns the newly allocated structure or NULL in case or error
837 */
838static xmlRelaxNGGrammarPtr
839xmlRelaxNGNewGrammar(xmlRelaxNGParserCtxtPtr ctxt)
840{
841 xmlRelaxNGGrammarPtr ret;
842
843 ret = (xmlRelaxNGGrammarPtr) xmlMalloc(sizeof(xmlRelaxNGGrammar));
844 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000845 xmlRngPErrMemory(ctxt, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000846 return (NULL);
847 }
848 memset(ret, 0, sizeof(xmlRelaxNGGrammar));
849
850 return (ret);
851}
852
853/**
854 * xmlRelaxNGFreeGrammar:
855 * @grammar: a grammar structure
856 *
857 * Deallocate a RelaxNG grammar structure.
858 */
859static void
860xmlRelaxNGFreeGrammar(xmlRelaxNGGrammarPtr grammar)
861{
862 if (grammar == NULL)
863 return;
864
Daniel Veillardc482e262003-02-26 14:48:48 +0000865 if (grammar->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000866 xmlRelaxNGFreeGrammar(grammar->children);
Daniel Veillardc482e262003-02-26 14:48:48 +0000867 }
Daniel Veillard419a7682003-02-03 23:22:49 +0000868 if (grammar->next != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000869 xmlRelaxNGFreeGrammar(grammar->next);
Daniel Veillard419a7682003-02-03 23:22:49 +0000870 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000871 if (grammar->refs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000872 xmlHashFree(grammar->refs, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000873 }
874 if (grammar->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000875 xmlHashFree(grammar->defs, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000876 }
877
878 xmlFree(grammar);
879}
880
881/**
882 * xmlRelaxNGNewDefine:
883 * @ctxt: a Relax-NG validation context
884 * @node: the node in the input document.
885 *
886 * Allocate a new RelaxNG define.
887 *
888 * Returns the newly allocated structure or NULL in case or error
889 */
890static xmlRelaxNGDefinePtr
Daniel Veillardfd573f12003-03-16 17:52:32 +0000891xmlRelaxNGNewDefine(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
Daniel Veillard6eadf632003-01-23 18:29:16 +0000892{
893 xmlRelaxNGDefinePtr ret;
894
Daniel Veillard419a7682003-02-03 23:22:49 +0000895 if (ctxt->defMax == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000896 ctxt->defMax = 16;
897 ctxt->defNr = 0;
898 ctxt->defTab = (xmlRelaxNGDefinePtr *)
899 xmlMalloc(ctxt->defMax * sizeof(xmlRelaxNGDefinePtr));
900 if (ctxt->defTab == NULL) {
901 xmlRngPErrMemory(ctxt, "allocating define\n");
902 return (NULL);
903 }
Daniel Veillard419a7682003-02-03 23:22:49 +0000904 } else if (ctxt->defMax <= ctxt->defNr) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000905 xmlRelaxNGDefinePtr *tmp;
906
907 ctxt->defMax *= 2;
908 tmp = (xmlRelaxNGDefinePtr *) xmlRealloc(ctxt->defTab,
909 ctxt->defMax *
910 sizeof
911 (xmlRelaxNGDefinePtr));
912 if (tmp == NULL) {
913 xmlRngPErrMemory(ctxt, "allocating define\n");
914 return (NULL);
915 }
916 ctxt->defTab = tmp;
Daniel Veillard419a7682003-02-03 23:22:49 +0000917 }
Daniel Veillard6eadf632003-01-23 18:29:16 +0000918 ret = (xmlRelaxNGDefinePtr) xmlMalloc(sizeof(xmlRelaxNGDefine));
919 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000920 xmlRngPErrMemory(ctxt, "allocating define\n");
921 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000922 }
923 memset(ret, 0, sizeof(xmlRelaxNGDefine));
Daniel Veillard419a7682003-02-03 23:22:49 +0000924 ctxt->defTab[ctxt->defNr++] = ret;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000925 ret->node = node;
Daniel Veillardd4310742003-02-18 21:12:46 +0000926 ret->depth = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +0000927 return (ret);
928}
929
930/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000931 * xmlRelaxNGFreePartition:
932 * @partitions: a partition set structure
933 *
934 * Deallocate RelaxNG partition set structures.
935 */
936static void
Daniel Veillard4c004142003-10-07 11:33:24 +0000937xmlRelaxNGFreePartition(xmlRelaxNGPartitionPtr partitions)
938{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000939 xmlRelaxNGInterleaveGroupPtr group;
940 int j;
941
942 if (partitions != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +0000943 if (partitions->groups != NULL) {
944 for (j = 0; j < partitions->nbgroups; j++) {
945 group = partitions->groups[j];
946 if (group != NULL) {
947 if (group->defs != NULL)
948 xmlFree(group->defs);
949 if (group->attrs != NULL)
950 xmlFree(group->attrs);
951 xmlFree(group);
952 }
953 }
954 xmlFree(partitions->groups);
955 }
956 if (partitions->triage != NULL) {
957 xmlHashFree(partitions->triage, NULL);
958 }
959 xmlFree(partitions);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000960 }
961}
Daniel Veillard4c004142003-10-07 11:33:24 +0000962
Daniel Veillard76fc5ed2003-01-28 20:58:15 +0000963/**
Daniel Veillard6eadf632003-01-23 18:29:16 +0000964 * xmlRelaxNGFreeDefine:
965 * @define: a define structure
966 *
967 * Deallocate a RelaxNG define structure.
968 */
969static void
970xmlRelaxNGFreeDefine(xmlRelaxNGDefinePtr define)
971{
972 if (define == NULL)
973 return;
974
Daniel Veillard4c004142003-10-07 11:33:24 +0000975 if ((define->type == XML_RELAXNG_VALUE) && (define->attrs != NULL)) {
976 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillarde637c4a2003-03-30 21:10:09 +0000977
Daniel Veillard4c004142003-10-07 11:33:24 +0000978 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
979 if ((lib != NULL) && (lib->freef != NULL))
980 lib->freef(lib->data, (void *) define->attrs);
Daniel Veillarde637c4a2003-03-30 21:10:09 +0000981 }
Daniel Veillard4c004142003-10-07 11:33:24 +0000982 if ((define->data != NULL) && (define->type == XML_RELAXNG_INTERLEAVE))
983 xmlRelaxNGFreePartition((xmlRelaxNGPartitionPtr) define->data);
984 if ((define->data != NULL) && (define->type == XML_RELAXNG_CHOICE))
985 xmlHashFree((xmlHashTablePtr) define->data, NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000986 if (define->name != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000987 xmlFree(define->name);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000988 if (define->ns != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000989 xmlFree(define->ns);
Daniel Veillardedc91922003-01-26 00:52:04 +0000990 if (define->value != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +0000991 xmlFree(define->value);
Daniel Veillard52b48c72003-04-13 19:53:42 +0000992 if (define->contModel != NULL)
993 xmlRegFreeRegexp(define->contModel);
Daniel Veillard6eadf632003-01-23 18:29:16 +0000994 xmlFree(define);
995}
996
997/**
Daniel Veillardfd573f12003-03-16 17:52:32 +0000998 * xmlRelaxNGNewStates:
999 * @ctxt: a Relax-NG validation context
1000 * @size: the default size for the container
1001 *
1002 * Allocate a new RelaxNG validation state container
Daniel Veillardfd573f12003-03-16 17:52:32 +00001003 *
1004 * Returns the newly allocated structure or NULL in case or error
1005 */
1006static xmlRelaxNGStatesPtr
1007xmlRelaxNGNewStates(xmlRelaxNGValidCtxtPtr ctxt, int size)
1008{
1009 xmlRelaxNGStatesPtr ret;
1010
Daniel Veillard798024a2003-03-19 10:36:09 +00001011 if ((ctxt != NULL) &&
Daniel Veillard9fcd4622009-08-14 16:16:31 +02001012 (ctxt->freeStates != NULL) && (ctxt->freeStatesNr > 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001013 ctxt->freeStatesNr--;
1014 ret = ctxt->freeStates[ctxt->freeStatesNr];
1015 ret->nbState = 0;
1016 return (ret);
Daniel Veillard798024a2003-03-19 10:36:09 +00001017 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001018 if (size < 16)
1019 size = 16;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001020
1021 ret = (xmlRelaxNGStatesPtr) xmlMalloc(sizeof(xmlRelaxNGStates) +
Daniel Veillard4c004142003-10-07 11:33:24 +00001022 (size -
1023 1) *
1024 sizeof(xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001025 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001026 xmlRngVErrMemory(ctxt, "allocating states\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00001027 return (NULL);
1028 }
1029 ret->nbState = 0;
1030 ret->maxState = size;
Daniel Veillard4c004142003-10-07 11:33:24 +00001031 ret->tabState = (xmlRelaxNGValidStatePtr *) xmlMalloc((size) *
1032 sizeof
1033 (xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001034 if (ret->tabState == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001035 xmlRngVErrMemory(ctxt, "allocating states\n");
1036 xmlFree(ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001037 return (NULL);
1038 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001039 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001040}
1041
1042/**
Daniel Veillard798024a2003-03-19 10:36:09 +00001043 * xmlRelaxNGAddStateUniq:
1044 * @ctxt: a Relax-NG validation context
1045 * @states: the states container
1046 * @state: the validation state
1047 *
1048 * Add a RelaxNG validation state to the container without checking
1049 * for unicity.
1050 *
1051 * Return 1 in case of success and 0 if this is a duplicate and -1 on error
1052 */
1053static int
1054xmlRelaxNGAddStatesUniq(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001055 xmlRelaxNGStatesPtr states,
1056 xmlRelaxNGValidStatePtr state)
Daniel Veillard798024a2003-03-19 10:36:09 +00001057{
1058 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001059 return (-1);
Daniel Veillard798024a2003-03-19 10:36:09 +00001060 }
1061 if (states->nbState >= states->maxState) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001062 xmlRelaxNGValidStatePtr *tmp;
1063 int size;
Daniel Veillard798024a2003-03-19 10:36:09 +00001064
Daniel Veillard4c004142003-10-07 11:33:24 +00001065 size = states->maxState * 2;
1066 tmp = (xmlRelaxNGValidStatePtr *) xmlRealloc(states->tabState,
1067 (size) *
1068 sizeof
1069 (xmlRelaxNGValidStatePtr));
Daniel Veillard798024a2003-03-19 10:36:09 +00001070 if (tmp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001071 xmlRngVErrMemory(ctxt, "adding states\n");
1072 return (-1);
1073 }
1074 states->tabState = tmp;
1075 states->maxState = size;
Daniel Veillard798024a2003-03-19 10:36:09 +00001076 }
1077 states->tabState[states->nbState++] = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00001078 return (1);
Daniel Veillard798024a2003-03-19 10:36:09 +00001079}
1080
1081/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00001082 * xmlRelaxNGAddState:
1083 * @ctxt: a Relax-NG validation context
1084 * @states: the states container
1085 * @state: the validation state
1086 *
1087 * Add a RelaxNG validation state to the container
1088 *
1089 * Return 1 in case of success and 0 if this is a duplicate and -1 on error
1090 */
1091static int
Daniel Veillard4c004142003-10-07 11:33:24 +00001092xmlRelaxNGAddStates(xmlRelaxNGValidCtxtPtr ctxt,
1093 xmlRelaxNGStatesPtr states,
1094 xmlRelaxNGValidStatePtr state)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001095{
1096 int i;
1097
Gaurav Gupta7d2e8c92014-07-14 16:08:28 +08001098 if (state == NULL || states == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001099 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001100 }
1101 if (states->nbState >= states->maxState) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001102 xmlRelaxNGValidStatePtr *tmp;
1103 int size;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001104
Daniel Veillard4c004142003-10-07 11:33:24 +00001105 size = states->maxState * 2;
1106 tmp = (xmlRelaxNGValidStatePtr *) xmlRealloc(states->tabState,
1107 (size) *
1108 sizeof
1109 (xmlRelaxNGValidStatePtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001110 if (tmp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001111 xmlRngVErrMemory(ctxt, "adding states\n");
1112 return (-1);
1113 }
1114 states->tabState = tmp;
1115 states->maxState = size;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001116 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001117 for (i = 0; i < states->nbState; i++) {
1118 if (xmlRelaxNGEqualValidState(ctxt, state, states->tabState[i])) {
1119 xmlRelaxNGFreeValidState(ctxt, state);
1120 return (0);
1121 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00001122 }
1123 states->tabState[states->nbState++] = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00001124 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001125}
1126
1127/**
1128 * xmlRelaxNGFreeStates:
1129 * @ctxt: a Relax-NG validation context
1130 * @states: teh container
1131 *
1132 * Free a RelaxNG validation state container
Daniel Veillardfd573f12003-03-16 17:52:32 +00001133 */
1134static void
Daniel Veillard798024a2003-03-19 10:36:09 +00001135xmlRelaxNGFreeStates(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001136 xmlRelaxNGStatesPtr states)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001137{
Daniel Veillard798024a2003-03-19 10:36:09 +00001138 if (states == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001139 return;
Daniel Veillard798024a2003-03-19 10:36:09 +00001140 if ((ctxt != NULL) && (ctxt->freeStates == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001141 ctxt->freeStatesMax = 40;
1142 ctxt->freeStatesNr = 0;
1143 ctxt->freeStates = (xmlRelaxNGStatesPtr *)
1144 xmlMalloc(ctxt->freeStatesMax * sizeof(xmlRelaxNGStatesPtr));
1145 if (ctxt->freeStates == NULL) {
1146 xmlRngVErrMemory(ctxt, "storing states\n");
1147 }
1148 } else if ((ctxt != NULL)
1149 && (ctxt->freeStatesNr >= ctxt->freeStatesMax)) {
1150 xmlRelaxNGStatesPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001151
Daniel Veillard4c004142003-10-07 11:33:24 +00001152 tmp = (xmlRelaxNGStatesPtr *) xmlRealloc(ctxt->freeStates,
1153 2 * ctxt->freeStatesMax *
1154 sizeof
1155 (xmlRelaxNGStatesPtr));
1156 if (tmp == NULL) {
1157 xmlRngVErrMemory(ctxt, "storing states\n");
1158 xmlFree(states->tabState);
1159 xmlFree(states);
1160 return;
1161 }
1162 ctxt->freeStates = tmp;
1163 ctxt->freeStatesMax *= 2;
Daniel Veillard798024a2003-03-19 10:36:09 +00001164 }
Daniel Veillard14b56432006-03-09 18:41:40 +00001165 if ((ctxt == NULL) || (ctxt->freeStates == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001166 xmlFree(states->tabState);
1167 xmlFree(states);
Daniel Veillard798024a2003-03-19 10:36:09 +00001168 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001169 ctxt->freeStates[ctxt->freeStatesNr++] = states;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001170 }
1171}
1172
1173/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00001174 * xmlRelaxNGNewValidState:
1175 * @ctxt: a Relax-NG validation context
1176 * @node: the current node or NULL for the document
1177 *
1178 * Allocate a new RelaxNG validation state
1179 *
1180 * Returns the newly allocated structure or NULL in case or error
1181 */
1182static xmlRelaxNGValidStatePtr
1183xmlRelaxNGNewValidState(xmlRelaxNGValidCtxtPtr ctxt, xmlNodePtr node)
1184{
1185 xmlRelaxNGValidStatePtr ret;
1186 xmlAttrPtr attr;
1187 xmlAttrPtr attrs[MAX_ATTR];
1188 int nbAttrs = 0;
1189 xmlNodePtr root = NULL;
1190
1191 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001192 root = xmlDocGetRootElement(ctxt->doc);
1193 if (root == NULL)
1194 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00001195 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001196 attr = node->properties;
1197 while (attr != NULL) {
1198 if (nbAttrs < MAX_ATTR)
1199 attrs[nbAttrs++] = attr;
1200 else
1201 nbAttrs++;
1202 attr = attr->next;
1203 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001204 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001205 if ((ctxt->freeState != NULL) && (ctxt->freeState->nbState > 0)) {
1206 ctxt->freeState->nbState--;
1207 ret = ctxt->freeState->tabState[ctxt->freeState->nbState];
Daniel Veillard798024a2003-03-19 10:36:09 +00001208 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001209 ret =
1210 (xmlRelaxNGValidStatePtr)
1211 xmlMalloc(sizeof(xmlRelaxNGValidState));
1212 if (ret == NULL) {
1213 xmlRngVErrMemory(ctxt, "allocating states\n");
1214 return (NULL);
1215 }
1216 memset(ret, 0, sizeof(xmlRelaxNGValidState));
Daniel Veillard6eadf632003-01-23 18:29:16 +00001217 }
Daniel Veillarde5b110b2003-02-04 14:43:39 +00001218 ret->value = NULL;
1219 ret->endvalue = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001220 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001221 ret->node = (xmlNodePtr) ctxt->doc;
1222 ret->seq = root;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001223 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001224 ret->node = node;
1225 ret->seq = node->children;
Daniel Veillard798024a2003-03-19 10:36:09 +00001226 }
1227 ret->nbAttrs = 0;
1228 if (nbAttrs > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001229 if (ret->attrs == NULL) {
1230 if (nbAttrs < 4)
1231 ret->maxAttrs = 4;
1232 else
1233 ret->maxAttrs = nbAttrs;
1234 ret->attrs = (xmlAttrPtr *) xmlMalloc(ret->maxAttrs *
1235 sizeof(xmlAttrPtr));
1236 if (ret->attrs == NULL) {
1237 xmlRngVErrMemory(ctxt, "allocating states\n");
1238 return (ret);
1239 }
1240 } else if (ret->maxAttrs < nbAttrs) {
1241 xmlAttrPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001242
Daniel Veillard4c004142003-10-07 11:33:24 +00001243 tmp = (xmlAttrPtr *) xmlRealloc(ret->attrs, nbAttrs *
1244 sizeof(xmlAttrPtr));
1245 if (tmp == NULL) {
1246 xmlRngVErrMemory(ctxt, "allocating states\n");
1247 return (ret);
1248 }
1249 ret->attrs = tmp;
1250 ret->maxAttrs = nbAttrs;
1251 }
1252 ret->nbAttrs = nbAttrs;
1253 if (nbAttrs < MAX_ATTR) {
1254 memcpy(ret->attrs, attrs, sizeof(xmlAttrPtr) * nbAttrs);
1255 } else {
1256 attr = node->properties;
1257 nbAttrs = 0;
1258 while (attr != NULL) {
1259 ret->attrs[nbAttrs++] = attr;
1260 attr = attr->next;
1261 }
1262 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001263 }
Daniel Veillard1ed7f362003-02-03 10:57:45 +00001264 ret->nbAttrLeft = ret->nbAttrs;
Daniel Veillard6eadf632003-01-23 18:29:16 +00001265 return (ret);
1266}
1267
1268/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00001269 * xmlRelaxNGCopyValidState:
1270 * @ctxt: a Relax-NG validation context
1271 * @state: a validation state
1272 *
1273 * Copy the validation state
1274 *
1275 * Returns the newly allocated structure or NULL in case or error
1276 */
1277static xmlRelaxNGValidStatePtr
1278xmlRelaxNGCopyValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001279 xmlRelaxNGValidStatePtr state)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001280{
1281 xmlRelaxNGValidStatePtr ret;
Daniel Veillard798024a2003-03-19 10:36:09 +00001282 unsigned int maxAttrs;
1283 xmlAttrPtr *attrs;
Daniel Veillardfd573f12003-03-16 17:52:32 +00001284
1285 if (state == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001286 return (NULL);
1287 if ((ctxt->freeState != NULL) && (ctxt->freeState->nbState > 0)) {
1288 ctxt->freeState->nbState--;
1289 ret = ctxt->freeState->tabState[ctxt->freeState->nbState];
Daniel Veillard798024a2003-03-19 10:36:09 +00001290 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001291 ret =
1292 (xmlRelaxNGValidStatePtr)
1293 xmlMalloc(sizeof(xmlRelaxNGValidState));
1294 if (ret == NULL) {
1295 xmlRngVErrMemory(ctxt, "allocating states\n");
1296 return (NULL);
1297 }
1298 memset(ret, 0, sizeof(xmlRelaxNGValidState));
Daniel Veillardfd573f12003-03-16 17:52:32 +00001299 }
Daniel Veillard798024a2003-03-19 10:36:09 +00001300 attrs = ret->attrs;
1301 maxAttrs = ret->maxAttrs;
1302 memcpy(ret, state, sizeof(xmlRelaxNGValidState));
1303 ret->attrs = attrs;
1304 ret->maxAttrs = maxAttrs;
1305 if (state->nbAttrs > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001306 if (ret->attrs == NULL) {
1307 ret->maxAttrs = state->maxAttrs;
1308 ret->attrs = (xmlAttrPtr *) xmlMalloc(ret->maxAttrs *
1309 sizeof(xmlAttrPtr));
1310 if (ret->attrs == NULL) {
1311 xmlRngVErrMemory(ctxt, "allocating states\n");
1312 ret->nbAttrs = 0;
1313 return (ret);
1314 }
1315 } else if (ret->maxAttrs < state->nbAttrs) {
1316 xmlAttrPtr *tmp;
Daniel Veillard798024a2003-03-19 10:36:09 +00001317
Daniel Veillard4c004142003-10-07 11:33:24 +00001318 tmp = (xmlAttrPtr *) xmlRealloc(ret->attrs, state->maxAttrs *
1319 sizeof(xmlAttrPtr));
1320 if (tmp == NULL) {
1321 xmlRngVErrMemory(ctxt, "allocating states\n");
1322 ret->nbAttrs = 0;
1323 return (ret);
1324 }
1325 ret->maxAttrs = state->maxAttrs;
1326 ret->attrs = tmp;
1327 }
1328 memcpy(ret->attrs, state->attrs,
1329 state->nbAttrs * sizeof(xmlAttrPtr));
Daniel Veillard798024a2003-03-19 10:36:09 +00001330 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001331 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001332}
1333
1334/**
1335 * xmlRelaxNGEqualValidState:
1336 * @ctxt: a Relax-NG validation context
1337 * @state1: a validation state
1338 * @state2: a validation state
1339 *
1340 * Compare the validation states for equality
1341 *
1342 * Returns 1 if equald, 0 otherwise
1343 */
1344static int
1345xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00001346 xmlRelaxNGValidStatePtr state1,
1347 xmlRelaxNGValidStatePtr state2)
Daniel Veillardfd573f12003-03-16 17:52:32 +00001348{
1349 int i;
1350
1351 if ((state1 == NULL) || (state2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00001352 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001353 if (state1 == state2)
Daniel Veillard4c004142003-10-07 11:33:24 +00001354 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001355 if (state1->node != state2->node)
Daniel Veillard4c004142003-10-07 11:33:24 +00001356 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001357 if (state1->seq != state2->seq)
Daniel Veillard4c004142003-10-07 11:33:24 +00001358 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001359 if (state1->nbAttrLeft != state2->nbAttrLeft)
Daniel Veillard4c004142003-10-07 11:33:24 +00001360 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001361 if (state1->nbAttrs != state2->nbAttrs)
Daniel Veillard4c004142003-10-07 11:33:24 +00001362 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001363 if (state1->endvalue != state2->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00001364 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001365 if ((state1->value != state2->value) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00001366 (!xmlStrEqual(state1->value, state2->value)))
1367 return (0);
1368 for (i = 0; i < state1->nbAttrs; i++) {
1369 if (state1->attrs[i] != state2->attrs[i])
1370 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001371 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001372 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00001373}
1374
1375/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00001376 * xmlRelaxNGFreeValidState:
1377 * @state: a validation state structure
1378 *
1379 * Deallocate a RelaxNG validation state structure.
1380 */
1381static void
Daniel Veillard798024a2003-03-19 10:36:09 +00001382xmlRelaxNGFreeValidState(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001383 xmlRelaxNGValidStatePtr state)
Daniel Veillard6eadf632003-01-23 18:29:16 +00001384{
1385 if (state == NULL)
1386 return;
1387
Daniel Veillard798024a2003-03-19 10:36:09 +00001388 if ((ctxt != NULL) && (ctxt->freeState == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001389 ctxt->freeState = xmlRelaxNGNewStates(ctxt, 40);
Daniel Veillard798024a2003-03-19 10:36:09 +00001390 }
1391 if ((ctxt == NULL) || (ctxt->freeState == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001392 if (state->attrs != NULL)
1393 xmlFree(state->attrs);
1394 xmlFree(state);
Daniel Veillard798024a2003-03-19 10:36:09 +00001395 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001396 xmlRelaxNGAddStatesUniq(ctxt, ctxt->freeState, state);
Daniel Veillard798024a2003-03-19 10:36:09 +00001397 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00001398}
1399
1400/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001401 * *
1402 * Semi internal functions *
1403 * *
Daniel Veillard03c2f0a2004-01-25 19:54:59 +00001404 ************************************************************************/
1405
1406/**
1407 * xmlRelaxParserSetFlag:
1408 * @ctxt: a RelaxNG parser context
1409 * @flags: a set of flags values
1410 *
1411 * Semi private function used to pass informations to a parser context
1412 * which are a combination of xmlRelaxNGParserFlag .
1413 *
1414 * Returns 0 if success and -1 in case of error
1415 */
1416int
1417xmlRelaxParserSetFlag(xmlRelaxNGParserCtxtPtr ctxt, int flags)
1418{
1419 if (ctxt == NULL) return(-1);
1420 if (flags & XML_RELAXNGP_FREE_DOC) {
1421 ctxt->crng |= XML_RELAXNGP_FREE_DOC;
1422 flags -= XML_RELAXNGP_FREE_DOC;
1423 }
1424 if (flags & XML_RELAXNGP_CRNG) {
1425 ctxt->crng |= XML_RELAXNGP_CRNG;
1426 flags -= XML_RELAXNGP_CRNG;
1427 }
1428 if (flags != 0) return(-1);
1429 return(0);
1430}
1431
1432/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001433 * *
1434 * Document functions *
1435 * *
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001436 ************************************************************************/
1437static xmlDocPtr xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001438 xmlDocPtr doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001439
1440/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001441 * xmlRelaxNGIncludePush:
1442 * @ctxt: the parser context
1443 * @value: the element doc
1444 *
1445 * Pushes a new include on top of the include stack
1446 *
1447 * Returns 0 in case of error, the index in the stack otherwise
1448 */
1449static int
1450xmlRelaxNGIncludePush(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001451 xmlRelaxNGIncludePtr value)
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001452{
1453 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001454 ctxt->incMax = 4;
1455 ctxt->incNr = 0;
1456 ctxt->incTab =
1457 (xmlRelaxNGIncludePtr *) xmlMalloc(ctxt->incMax *
1458 sizeof(ctxt->incTab[0]));
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001459 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001460 xmlRngPErrMemory(ctxt, "allocating include\n");
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001461 return (0);
1462 }
1463 }
1464 if (ctxt->incNr >= ctxt->incMax) {
1465 ctxt->incMax *= 2;
1466 ctxt->incTab =
1467 (xmlRelaxNGIncludePtr *) xmlRealloc(ctxt->incTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001468 ctxt->incMax *
1469 sizeof(ctxt->incTab[0]));
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001470 if (ctxt->incTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001471 xmlRngPErrMemory(ctxt, "allocating include\n");
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001472 return (0);
1473 }
1474 }
1475 ctxt->incTab[ctxt->incNr] = value;
1476 ctxt->inc = value;
1477 return (ctxt->incNr++);
1478}
1479
1480/**
1481 * xmlRelaxNGIncludePop:
1482 * @ctxt: the parser context
1483 *
1484 * Pops the top include from the include stack
1485 *
1486 * Returns the include just removed
1487 */
1488static xmlRelaxNGIncludePtr
1489xmlRelaxNGIncludePop(xmlRelaxNGParserCtxtPtr ctxt)
1490{
1491 xmlRelaxNGIncludePtr ret;
1492
1493 if (ctxt->incNr <= 0)
Daniel Veillard24505b02005-07-28 23:49:35 +00001494 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001495 ctxt->incNr--;
1496 if (ctxt->incNr > 0)
1497 ctxt->inc = ctxt->incTab[ctxt->incNr - 1];
1498 else
1499 ctxt->inc = NULL;
1500 ret = ctxt->incTab[ctxt->incNr];
Daniel Veillard24505b02005-07-28 23:49:35 +00001501 ctxt->incTab[ctxt->incNr] = NULL;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001502 return (ret);
1503}
1504
1505/**
Daniel Veillard5add8682003-03-10 13:13:58 +00001506 * xmlRelaxNGRemoveRedefine:
1507 * @ctxt: the parser context
1508 * @URL: the normalized URL
1509 * @target: the included target
1510 * @name: the define name to eliminate
1511 *
1512 * Applies the elimination algorithm of 4.7
1513 *
1514 * Returns 0 in case of error, 1 in case of success.
1515 */
1516static int
1517xmlRelaxNGRemoveRedefine(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001518 const xmlChar * URL ATTRIBUTE_UNUSED,
1519 xmlNodePtr target, const xmlChar * name)
1520{
Daniel Veillard5add8682003-03-10 13:13:58 +00001521 int found = 0;
1522 xmlNodePtr tmp, tmp2;
1523 xmlChar *name2;
1524
1525#ifdef DEBUG_INCLUDE
Daniel Veillard952379b2003-03-17 15:37:12 +00001526 if (name == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00001527 xmlGenericError(xmlGenericErrorContext,
1528 "Elimination of <include> start from %s\n", URL);
Daniel Veillard952379b2003-03-17 15:37:12 +00001529 else
Daniel Veillard4c004142003-10-07 11:33:24 +00001530 xmlGenericError(xmlGenericErrorContext,
1531 "Elimination of <include> define %s from %s\n",
1532 name, URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001533#endif
1534 tmp = target;
1535 while (tmp != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001536 tmp2 = tmp->next;
1537 if ((name == NULL) && (IS_RELAXNG(tmp, "start"))) {
1538 found = 1;
1539 xmlUnlinkNode(tmp);
1540 xmlFreeNode(tmp);
1541 } else if ((name != NULL) && (IS_RELAXNG(tmp, "define"))) {
1542 name2 = xmlGetProp(tmp, BAD_CAST "name");
1543 xmlRelaxNGNormExtSpace(name2);
1544 if (name2 != NULL) {
1545 if (xmlStrEqual(name, name2)) {
1546 found = 1;
1547 xmlUnlinkNode(tmp);
1548 xmlFreeNode(tmp);
1549 }
1550 xmlFree(name2);
1551 }
1552 } else if (IS_RELAXNG(tmp, "include")) {
1553 xmlChar *href = NULL;
Daniel Veillard807daf82004-02-22 22:13:27 +00001554 xmlRelaxNGDocumentPtr inc = tmp->psvi;
Daniel Veillard5add8682003-03-10 13:13:58 +00001555
Daniel Veillard4c004142003-10-07 11:33:24 +00001556 if ((inc != NULL) && (inc->doc != NULL) &&
1557 (inc->doc->children != NULL)) {
Daniel Veillard5add8682003-03-10 13:13:58 +00001558
Daniel Veillard4c004142003-10-07 11:33:24 +00001559 if (xmlStrEqual
1560 (inc->doc->children->name, BAD_CAST "grammar")) {
Daniel Veillard5add8682003-03-10 13:13:58 +00001561#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001562 href = xmlGetProp(tmp, BAD_CAST "href");
Daniel Veillard5add8682003-03-10 13:13:58 +00001563#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00001564 if (xmlRelaxNGRemoveRedefine(ctxt, href,
Shaun McCanced7eb9b52011-08-04 10:28:59 -04001565 xmlDocGetRootElement(inc->doc)->children,
1566 name) == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001567 found = 1;
1568 }
Daniel Veillard14b56432006-03-09 18:41:40 +00001569#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001570 if (href != NULL)
1571 xmlFree(href);
Daniel Veillard14b56432006-03-09 18:41:40 +00001572#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00001573 }
1574 }
1575 }
1576 tmp = tmp2;
Daniel Veillard5add8682003-03-10 13:13:58 +00001577 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001578 return (found);
Daniel Veillard5add8682003-03-10 13:13:58 +00001579}
1580
1581/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001582 * xmlRelaxNGLoadInclude:
1583 * @ctxt: the parser context
1584 * @URL: the normalized URL
1585 * @node: the include node.
Daniel Veillard416589a2003-02-17 17:25:42 +00001586 * @ns: the namespace passed from the context.
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001587 *
1588 * First lookup if the document is already loaded into the parser context,
1589 * check against recursion. If not found the resource is loaded and
1590 * the content is preprocessed before being returned back to the caller.
1591 *
1592 * Returns the xmlRelaxNGIncludePtr or NULL in case of error
1593 */
1594static xmlRelaxNGIncludePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00001595xmlRelaxNGLoadInclude(xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * URL,
1596 xmlNodePtr node, const xmlChar * ns)
1597{
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001598 xmlRelaxNGIncludePtr ret = NULL;
1599 xmlDocPtr doc;
1600 int i;
Daniel Veillard5add8682003-03-10 13:13:58 +00001601 xmlNodePtr root, cur;
1602
1603#ifdef DEBUG_INCLUDE
1604 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00001605 "xmlRelaxNGLoadInclude(%s)\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001606#endif
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001607
1608 /*
1609 * check against recursion in the stack
1610 */
Daniel Veillard4c004142003-10-07 11:33:24 +00001611 for (i = 0; i < ctxt->incNr; i++) {
1612 if (xmlStrEqual(ctxt->incTab[i]->href, URL)) {
1613 xmlRngPErr(ctxt, NULL, XML_RNGP_INCLUDE_RECURSE,
1614 "Detected an Include recursion for %s\n", URL,
1615 NULL);
1616 return (NULL);
1617 }
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001618 }
1619
1620 /*
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001621 * load the document
1622 */
Daniel Veillard87247e82004-01-13 20:42:02 +00001623 doc = xmlReadFile((const char *) URL,NULL,0);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001624 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001625 xmlRngPErr(ctxt, node, XML_RNGP_PARSE_ERROR,
1626 "xmlRelaxNG: could not load %s\n", URL, NULL);
1627 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001628 }
Daniel Veillard5add8682003-03-10 13:13:58 +00001629#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001630 xmlGenericError(xmlGenericErrorContext, "Parsed %s Okay\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001631#endif
1632
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001633 /*
1634 * Allocate the document structures and register it first.
1635 */
1636 ret = (xmlRelaxNGIncludePtr) xmlMalloc(sizeof(xmlRelaxNGInclude));
1637 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001638 xmlRngPErrMemory(ctxt, "allocating include\n");
1639 xmlFreeDoc(doc);
1640 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001641 }
1642 memset(ret, 0, sizeof(xmlRelaxNGInclude));
1643 ret->doc = doc;
1644 ret->href = xmlStrdup(URL);
Daniel Veillardc482e262003-02-26 14:48:48 +00001645 ret->next = ctxt->includes;
1646 ctxt->includes = ret;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001647
1648 /*
Daniel Veillard416589a2003-02-17 17:25:42 +00001649 * transmit the ns if needed
1650 */
1651 if (ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001652 root = xmlDocGetRootElement(doc);
1653 if (root != NULL) {
1654 if (xmlHasProp(root, BAD_CAST "ns") == NULL) {
1655 xmlSetProp(root, BAD_CAST "ns", ns);
1656 }
1657 }
Daniel Veillard416589a2003-02-17 17:25:42 +00001658 }
1659
1660 /*
Daniel Veillardc482e262003-02-26 14:48:48 +00001661 * push it on the stack
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001662 */
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001663 xmlRelaxNGIncludePush(ctxt, ret);
1664
1665 /*
1666 * Some preprocessing of the document content, this include recursing
1667 * in the include stack.
1668 */
Daniel Veillard5add8682003-03-10 13:13:58 +00001669#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001670 xmlGenericError(xmlGenericErrorContext, "cleanup of %s\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001671#endif
1672
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001673 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
1674 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001675 ctxt->inc = NULL;
1676 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001677 }
1678
1679 /*
1680 * Pop up the include from the stack
1681 */
1682 xmlRelaxNGIncludePop(ctxt);
1683
Daniel Veillard5add8682003-03-10 13:13:58 +00001684#ifdef DEBUG_INCLUDE
Daniel Veillard4c004142003-10-07 11:33:24 +00001685 xmlGenericError(xmlGenericErrorContext, "Checking of %s\n", URL);
Daniel Veillard5add8682003-03-10 13:13:58 +00001686#endif
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001687 /*
1688 * Check that the top element is a grammar
1689 */
1690 root = xmlDocGetRootElement(doc);
1691 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001692 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY,
1693 "xmlRelaxNG: included document is empty %s\n", URL,
1694 NULL);
1695 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001696 }
1697 if (!IS_RELAXNG(root, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001698 xmlRngPErr(ctxt, node, XML_RNGP_GRAMMAR_MISSING,
1699 "xmlRelaxNG: included document %s root is not a grammar\n",
1700 URL, NULL);
1701 return (NULL);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001702 }
1703
1704 /*
1705 * Elimination of redefined rules in the include.
1706 */
1707 cur = node->children;
1708 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001709 if (IS_RELAXNG(cur, "start")) {
1710 int found = 0;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001711
Daniel Veillard4c004142003-10-07 11:33:24 +00001712 found =
1713 xmlRelaxNGRemoveRedefine(ctxt, URL, root->children, NULL);
1714 if (!found) {
1715 xmlRngPErr(ctxt, node, XML_RNGP_START_MISSING,
1716 "xmlRelaxNG: include %s has a start but not the included grammar\n",
1717 URL, NULL);
1718 }
1719 } else if (IS_RELAXNG(cur, "define")) {
1720 xmlChar *name;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001721
Daniel Veillard4c004142003-10-07 11:33:24 +00001722 name = xmlGetProp(cur, BAD_CAST "name");
1723 if (name == NULL) {
1724 xmlRngPErr(ctxt, node, XML_RNGP_NAME_MISSING,
1725 "xmlRelaxNG: include %s has define without name\n",
1726 URL, NULL);
1727 } else {
1728 int found;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001729
Daniel Veillard4c004142003-10-07 11:33:24 +00001730 xmlRelaxNGNormExtSpace(name);
1731 found = xmlRelaxNGRemoveRedefine(ctxt, URL,
1732 root->children, name);
1733 if (!found) {
1734 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_MISSING,
1735 "xmlRelaxNG: include %s has a define %s but not the included grammar\n",
1736 URL, name);
1737 }
1738 xmlFree(name);
1739 }
1740 }
1741 cur = cur->next;
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001742 }
1743
1744
Daniel Veillard4c004142003-10-07 11:33:24 +00001745 return (ret);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001746}
1747
1748/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00001749 * xmlRelaxNGValidErrorPush:
1750 * @ctxt: the validation context
1751 * @err: the error code
1752 * @arg1: the first string argument
1753 * @arg2: the second string argument
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001754 * @dup: arg need to be duplicated
Daniel Veillard42f12e92003-03-07 18:32:59 +00001755 *
1756 * Pushes a new error on top of the error stack
1757 *
1758 * Returns 0 in case of error, the index in the stack otherwise
1759 */
1760static int
Daniel Veillard4c004142003-10-07 11:33:24 +00001761xmlRelaxNGValidErrorPush(xmlRelaxNGValidCtxtPtr ctxt,
1762 xmlRelaxNGValidErr err, const xmlChar * arg1,
1763 const xmlChar * arg2, int dup)
Daniel Veillard42f12e92003-03-07 18:32:59 +00001764{
1765 xmlRelaxNGValidErrorPtr cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00001766
Daniel Veillarda507fbf2003-03-31 16:09:37 +00001767#ifdef DEBUG_ERROR
1768 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00001769 "Pushing error %d at %d on stack\n", err, ctxt->errNr);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00001770#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00001771 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001772 ctxt->errMax = 8;
1773 ctxt->errNr = 0;
1774 ctxt->errTab =
1775 (xmlRelaxNGValidErrorPtr) xmlMalloc(ctxt->errMax *
1776 sizeof
1777 (xmlRelaxNGValidError));
Daniel Veillard42f12e92003-03-07 18:32:59 +00001778 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001779 xmlRngVErrMemory(ctxt, "pushing error\n");
Daniel Veillard42f12e92003-03-07 18:32:59 +00001780 return (0);
1781 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001782 ctxt->err = NULL;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001783 }
1784 if (ctxt->errNr >= ctxt->errMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001785 ctxt->errMax *= 2;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001786 ctxt->errTab =
1787 (xmlRelaxNGValidErrorPtr) xmlRealloc(ctxt->errTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001788 ctxt->errMax *
1789 sizeof
1790 (xmlRelaxNGValidError));
Daniel Veillard42f12e92003-03-07 18:32:59 +00001791 if (ctxt->errTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001792 xmlRngVErrMemory(ctxt, "pushing error\n");
Daniel Veillard42f12e92003-03-07 18:32:59 +00001793 return (0);
1794 }
Daniel Veillard4c004142003-10-07 11:33:24 +00001795 ctxt->err = &ctxt->errTab[ctxt->errNr - 1];
Daniel Veillard42f12e92003-03-07 18:32:59 +00001796 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00001797 if ((ctxt->err != NULL) && (ctxt->state != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00001798 (ctxt->err->node == ctxt->state->node) && (ctxt->err->err == err))
1799 return (ctxt->errNr);
Daniel Veillard42f12e92003-03-07 18:32:59 +00001800 cur = &ctxt->errTab[ctxt->errNr];
1801 cur->err = err;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001802 if (dup) {
1803 cur->arg1 = xmlStrdup(arg1);
1804 cur->arg2 = xmlStrdup(arg2);
Daniel Veillard4c004142003-10-07 11:33:24 +00001805 cur->flags = ERROR_IS_DUP;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001806 } else {
1807 cur->arg1 = arg1;
1808 cur->arg2 = arg2;
Daniel Veillard4c004142003-10-07 11:33:24 +00001809 cur->flags = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001810 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001811 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001812 cur->node = ctxt->state->node;
1813 cur->seq = ctxt->state->seq;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001814 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00001815 cur->node = NULL;
1816 cur->seq = NULL;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001817 }
1818 ctxt->err = cur;
1819 return (ctxt->errNr++);
1820}
1821
1822/**
1823 * xmlRelaxNGValidErrorPop:
1824 * @ctxt: the validation context
1825 *
1826 * Pops the top error from the error stack
Daniel Veillard42f12e92003-03-07 18:32:59 +00001827 */
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001828static void
Daniel Veillard42f12e92003-03-07 18:32:59 +00001829xmlRelaxNGValidErrorPop(xmlRelaxNGValidCtxtPtr ctxt)
1830{
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001831 xmlRelaxNGValidErrorPtr cur;
Daniel Veillard42f12e92003-03-07 18:32:59 +00001832
Daniel Veillard580ced82003-03-21 21:22:48 +00001833 if (ctxt->errNr <= 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001834 ctxt->err = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001835 return;
Daniel Veillard580ced82003-03-21 21:22:48 +00001836 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001837 ctxt->errNr--;
1838 if (ctxt->errNr > 0)
1839 ctxt->err = &ctxt->errTab[ctxt->errNr - 1];
1840 else
1841 ctxt->err = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001842 cur = &ctxt->errTab[ctxt->errNr];
1843 if (cur->flags & ERROR_IS_DUP) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001844 if (cur->arg1 != NULL)
1845 xmlFree((xmlChar *) cur->arg1);
1846 cur->arg1 = NULL;
1847 if (cur->arg2 != NULL)
1848 xmlFree((xmlChar *) cur->arg2);
1849 cur->arg2 = NULL;
1850 cur->flags = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00001851 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00001852}
1853
Daniel Veillard42f12e92003-03-07 18:32:59 +00001854/**
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001855 * xmlRelaxNGDocumentPush:
1856 * @ctxt: the parser context
1857 * @value: the element doc
1858 *
1859 * Pushes a new doc on top of the doc stack
1860 *
1861 * Returns 0 in case of error, the index in the stack otherwise
1862 */
1863static int
1864xmlRelaxNGDocumentPush(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00001865 xmlRelaxNGDocumentPtr value)
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001866{
1867 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001868 ctxt->docMax = 4;
1869 ctxt->docNr = 0;
1870 ctxt->docTab =
1871 (xmlRelaxNGDocumentPtr *) xmlMalloc(ctxt->docMax *
1872 sizeof(ctxt->docTab[0]));
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001873 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001874 xmlRngPErrMemory(ctxt, "adding document\n");
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001875 return (0);
1876 }
1877 }
1878 if (ctxt->docNr >= ctxt->docMax) {
1879 ctxt->docMax *= 2;
1880 ctxt->docTab =
1881 (xmlRelaxNGDocumentPtr *) xmlRealloc(ctxt->docTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00001882 ctxt->docMax *
1883 sizeof(ctxt->docTab[0]));
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001884 if (ctxt->docTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001885 xmlRngPErrMemory(ctxt, "adding document\n");
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001886 return (0);
1887 }
1888 }
1889 ctxt->docTab[ctxt->docNr] = value;
1890 ctxt->doc = value;
1891 return (ctxt->docNr++);
1892}
1893
1894/**
1895 * xmlRelaxNGDocumentPop:
1896 * @ctxt: the parser context
1897 *
1898 * Pops the top doc from the doc stack
1899 *
1900 * Returns the doc just removed
1901 */
1902static xmlRelaxNGDocumentPtr
1903xmlRelaxNGDocumentPop(xmlRelaxNGParserCtxtPtr ctxt)
1904{
1905 xmlRelaxNGDocumentPtr ret;
1906
1907 if (ctxt->docNr <= 0)
Daniel Veillard24505b02005-07-28 23:49:35 +00001908 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001909 ctxt->docNr--;
1910 if (ctxt->docNr > 0)
1911 ctxt->doc = ctxt->docTab[ctxt->docNr - 1];
1912 else
1913 ctxt->doc = NULL;
1914 ret = ctxt->docTab[ctxt->docNr];
Daniel Veillard24505b02005-07-28 23:49:35 +00001915 ctxt->docTab[ctxt->docNr] = NULL;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001916 return (ret);
1917}
1918
1919/**
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001920 * xmlRelaxNGLoadExternalRef:
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001921 * @ctxt: the parser context
1922 * @URL: the normalized URL
1923 * @ns: the inherited ns if any
1924 *
1925 * First lookup if the document is already loaded into the parser context,
1926 * check against recursion. If not found the resource is loaded and
1927 * the content is preprocessed before being returned back to the caller.
1928 *
1929 * Returns the xmlRelaxNGDocumentPtr or NULL in case of error
1930 */
1931static xmlRelaxNGDocumentPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00001932xmlRelaxNGLoadExternalRef(xmlRelaxNGParserCtxtPtr ctxt,
1933 const xmlChar * URL, const xmlChar * ns)
1934{
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001935 xmlRelaxNGDocumentPtr ret = NULL;
1936 xmlDocPtr doc;
1937 xmlNodePtr root;
1938 int i;
1939
1940 /*
1941 * check against recursion in the stack
1942 */
Daniel Veillard4c004142003-10-07 11:33:24 +00001943 for (i = 0; i < ctxt->docNr; i++) {
1944 if (xmlStrEqual(ctxt->docTab[i]->href, URL)) {
1945 xmlRngPErr(ctxt, NULL, XML_RNGP_EXTERNALREF_RECURSE,
1946 "Detected an externalRef recursion for %s\n", URL,
1947 NULL);
1948 return (NULL);
1949 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001950 }
1951
1952 /*
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001953 * load the document
1954 */
Daniel Veillard87247e82004-01-13 20:42:02 +00001955 doc = xmlReadFile((const char *) URL,NULL,0);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001956 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001957 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
1958 "xmlRelaxNG: could not load %s\n", URL, NULL);
1959 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001960 }
1961
1962 /*
1963 * Allocate the document structures and register it first.
1964 */
1965 ret = (xmlRelaxNGDocumentPtr) xmlMalloc(sizeof(xmlRelaxNGDocument));
1966 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001967 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_ERR_NO_MEMORY,
1968 "xmlRelaxNG: allocate memory for doc %s\n", URL, NULL);
1969 xmlFreeDoc(doc);
1970 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001971 }
1972 memset(ret, 0, sizeof(xmlRelaxNGDocument));
1973 ret->doc = doc;
1974 ret->href = xmlStrdup(URL);
Daniel Veillardc482e262003-02-26 14:48:48 +00001975 ret->next = ctxt->documents;
Daniel Veillard81c51e12009-08-14 18:52:10 +02001976 ret->externalRef = 1;
Daniel Veillardc482e262003-02-26 14:48:48 +00001977 ctxt->documents = ret;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001978
1979 /*
1980 * transmit the ns if needed
1981 */
1982 if (ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00001983 root = xmlDocGetRootElement(doc);
1984 if (root != NULL) {
1985 if (xmlHasProp(root, BAD_CAST "ns") == NULL) {
1986 xmlSetProp(root, BAD_CAST "ns", ns);
1987 }
1988 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001989 }
1990
1991 /*
1992 * push it on the stack and register it in the hash table
1993 */
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001994 xmlRelaxNGDocumentPush(ctxt, ret);
1995
1996 /*
1997 * Some preprocessing of the document content
1998 */
1999 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
2000 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002001 ctxt->doc = NULL;
2002 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00002003 }
2004
2005 xmlRelaxNGDocumentPop(ctxt);
2006
Daniel Veillard4c004142003-10-07 11:33:24 +00002007 return (ret);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00002008}
2009
2010/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002011 * *
2012 * Error functions *
2013 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00002014 ************************************************************************/
2015
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002016#define VALID_ERR(a) xmlRelaxNGAddValidError(ctxt, a, NULL, NULL, 0);
2017#define VALID_ERR2(a, b) xmlRelaxNGAddValidError(ctxt, a, b, NULL, 0);
2018#define VALID_ERR3(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 0);
2019#define VALID_ERR2P(a, b) xmlRelaxNGAddValidError(ctxt, a, b, NULL, 1);
2020#define VALID_ERR3P(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002021
Daniel Veillard231d7912003-02-09 14:22:17 +00002022static const char *
Daniel Veillard4c004142003-10-07 11:33:24 +00002023xmlRelaxNGDefName(xmlRelaxNGDefinePtr def)
2024{
Daniel Veillard231d7912003-02-09 14:22:17 +00002025 if (def == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002026 return ("none");
2027 switch (def->type) {
2028 case XML_RELAXNG_EMPTY:
2029 return ("empty");
2030 case XML_RELAXNG_NOT_ALLOWED:
2031 return ("notAllowed");
2032 case XML_RELAXNG_EXCEPT:
2033 return ("except");
2034 case XML_RELAXNG_TEXT:
2035 return ("text");
2036 case XML_RELAXNG_ELEMENT:
2037 return ("element");
2038 case XML_RELAXNG_DATATYPE:
2039 return ("datatype");
2040 case XML_RELAXNG_VALUE:
2041 return ("value");
2042 case XML_RELAXNG_LIST:
2043 return ("list");
2044 case XML_RELAXNG_ATTRIBUTE:
2045 return ("attribute");
2046 case XML_RELAXNG_DEF:
2047 return ("def");
2048 case XML_RELAXNG_REF:
2049 return ("ref");
2050 case XML_RELAXNG_EXTERNALREF:
2051 return ("externalRef");
2052 case XML_RELAXNG_PARENTREF:
2053 return ("parentRef");
2054 case XML_RELAXNG_OPTIONAL:
2055 return ("optional");
2056 case XML_RELAXNG_ZEROORMORE:
2057 return ("zeroOrMore");
2058 case XML_RELAXNG_ONEORMORE:
2059 return ("oneOrMore");
2060 case XML_RELAXNG_CHOICE:
2061 return ("choice");
2062 case XML_RELAXNG_GROUP:
2063 return ("group");
2064 case XML_RELAXNG_INTERLEAVE:
2065 return ("interleave");
2066 case XML_RELAXNG_START:
2067 return ("start");
2068 case XML_RELAXNG_NOOP:
2069 return ("noop");
2070 case XML_RELAXNG_PARAM:
2071 return ("param");
Daniel Veillard231d7912003-02-09 14:22:17 +00002072 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002073 return ("unknown");
Daniel Veillard231d7912003-02-09 14:22:17 +00002074}
Daniel Veillardd2298792003-02-14 16:54:11 +00002075
Daniel Veillard6eadf632003-01-23 18:29:16 +00002076/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002077 * xmlRelaxNGGetErrorString:
2078 * @err: the error code
2079 * @arg1: the first string argument
2080 * @arg2: the second string argument
Daniel Veillard6eadf632003-01-23 18:29:16 +00002081 *
Daniel Veillard42f12e92003-03-07 18:32:59 +00002082 * computes a formatted error string for the given error code and args
2083 *
2084 * Returns the error string, it must be deallocated by the caller
2085 */
2086static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00002087xmlRelaxNGGetErrorString(xmlRelaxNGValidErr err, const xmlChar * arg1,
2088 const xmlChar * arg2)
2089{
Daniel Veillard42f12e92003-03-07 18:32:59 +00002090 char msg[1000];
2091
2092 if (arg1 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002093 arg1 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002094 if (arg2 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002095 arg2 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002096
2097 msg[0] = 0;
2098 switch (err) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002099 case XML_RELAXNG_OK:
2100 return (NULL);
2101 case XML_RELAXNG_ERR_MEMORY:
2102 return (xmlCharStrdup("out of memory\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002103 case XML_RELAXNG_ERR_TYPE:
Daniel Veillard4c004142003-10-07 11:33:24 +00002104 snprintf(msg, 1000, "failed to validate type %s\n", arg1);
2105 break;
2106 case XML_RELAXNG_ERR_TYPEVAL:
2107 snprintf(msg, 1000, "Type %s doesn't allow value '%s'\n", arg1,
2108 arg2);
2109 break;
2110 case XML_RELAXNG_ERR_DUPID:
2111 snprintf(msg, 1000, "ID %s redefined\n", arg1);
2112 break;
2113 case XML_RELAXNG_ERR_TYPECMP:
2114 snprintf(msg, 1000, "failed to compare type %s\n", arg1);
2115 break;
2116 case XML_RELAXNG_ERR_NOSTATE:
2117 return (xmlCharStrdup("Internal error: no state\n"));
2118 case XML_RELAXNG_ERR_NODEFINE:
2119 return (xmlCharStrdup("Internal error: no define\n"));
2120 case XML_RELAXNG_ERR_INTERNAL:
2121 snprintf(msg, 1000, "Internal error: %s\n", arg1);
2122 break;
2123 case XML_RELAXNG_ERR_LISTEXTRA:
2124 snprintf(msg, 1000, "Extra data in list: %s\n", arg1);
2125 break;
2126 case XML_RELAXNG_ERR_INTERNODATA:
2127 return (xmlCharStrdup
2128 ("Internal: interleave block has no data\n"));
2129 case XML_RELAXNG_ERR_INTERSEQ:
2130 return (xmlCharStrdup("Invalid sequence in interleave\n"));
2131 case XML_RELAXNG_ERR_INTEREXTRA:
2132 snprintf(msg, 1000, "Extra element %s in interleave\n", arg1);
2133 break;
2134 case XML_RELAXNG_ERR_ELEMNAME:
2135 snprintf(msg, 1000, "Expecting element %s, got %s\n", arg1,
2136 arg2);
2137 break;
2138 case XML_RELAXNG_ERR_ELEMNONS:
2139 snprintf(msg, 1000, "Expecting a namespace for element %s\n",
2140 arg1);
2141 break;
2142 case XML_RELAXNG_ERR_ELEMWRONGNS:
2143 snprintf(msg, 1000,
2144 "Element %s has wrong namespace: expecting %s\n", arg1,
2145 arg2);
2146 break;
2147 case XML_RELAXNG_ERR_ELEMWRONG:
2148 snprintf(msg, 1000, "Did not expect element %s there\n", arg1);
2149 break;
2150 case XML_RELAXNG_ERR_TEXTWRONG:
2151 snprintf(msg, 1000,
2152 "Did not expect text in element %s content\n", arg1);
2153 break;
2154 case XML_RELAXNG_ERR_ELEMEXTRANS:
2155 snprintf(msg, 1000, "Expecting no namespace for element %s\n",
2156 arg1);
2157 break;
2158 case XML_RELAXNG_ERR_ELEMNOTEMPTY:
2159 snprintf(msg, 1000, "Expecting element %s to be empty\n", arg1);
2160 break;
2161 case XML_RELAXNG_ERR_NOELEM:
2162 snprintf(msg, 1000, "Expecting an element %s, got nothing\n",
2163 arg1);
2164 break;
2165 case XML_RELAXNG_ERR_NOTELEM:
2166 return (xmlCharStrdup("Expecting an element got text\n"));
2167 case XML_RELAXNG_ERR_ATTRVALID:
2168 snprintf(msg, 1000, "Element %s failed to validate attributes\n",
2169 arg1);
2170 break;
2171 case XML_RELAXNG_ERR_CONTENTVALID:
2172 snprintf(msg, 1000, "Element %s failed to validate content\n",
2173 arg1);
2174 break;
2175 case XML_RELAXNG_ERR_EXTRACONTENT:
2176 snprintf(msg, 1000, "Element %s has extra content: %s\n",
2177 arg1, arg2);
2178 break;
2179 case XML_RELAXNG_ERR_INVALIDATTR:
2180 snprintf(msg, 1000, "Invalid attribute %s for element %s\n",
2181 arg1, arg2);
2182 break;
2183 case XML_RELAXNG_ERR_LACKDATA:
2184 snprintf(msg, 1000, "Datatype element %s contains no data\n",
2185 arg1);
2186 break;
2187 case XML_RELAXNG_ERR_DATAELEM:
2188 snprintf(msg, 1000, "Datatype element %s has child elements\n",
2189 arg1);
2190 break;
2191 case XML_RELAXNG_ERR_VALELEM:
2192 snprintf(msg, 1000, "Value element %s has child elements\n",
2193 arg1);
2194 break;
2195 case XML_RELAXNG_ERR_LISTELEM:
2196 snprintf(msg, 1000, "List element %s has child elements\n",
2197 arg1);
2198 break;
2199 case XML_RELAXNG_ERR_DATATYPE:
2200 snprintf(msg, 1000, "Error validating datatype %s\n", arg1);
2201 break;
2202 case XML_RELAXNG_ERR_VALUE:
2203 snprintf(msg, 1000, "Error validating value %s\n", arg1);
2204 break;
2205 case XML_RELAXNG_ERR_LIST:
2206 return (xmlCharStrdup("Error validating list\n"));
2207 case XML_RELAXNG_ERR_NOGRAMMAR:
2208 return (xmlCharStrdup("No top grammar defined\n"));
2209 case XML_RELAXNG_ERR_EXTRADATA:
2210 return (xmlCharStrdup("Extra data in the document\n"));
2211 default:
2212 return (xmlCharStrdup("Unknown error !\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002213 }
2214 if (msg[0] == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002215 snprintf(msg, 1000, "Unknown error code %d\n", err);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002216 }
Daniel Veillardadbb0e62003-05-10 20:02:45 +00002217 msg[1000 - 1] = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00002218 return (xmlStrdup((xmlChar *) msg));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002219}
2220
2221/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002222 * xmlRelaxNGShowValidError:
2223 * @ctxt: the validation context
2224 * @err: the error number
2225 * @node: the node
2226 * @child: the node child generating the problem.
2227 * @arg1: the first argument
2228 * @arg2: the second argument
2229 *
2230 * Show a validation error.
2231 */
2232static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002233xmlRelaxNGShowValidError(xmlRelaxNGValidCtxtPtr ctxt,
2234 xmlRelaxNGValidErr err, xmlNodePtr node,
2235 xmlNodePtr child, const xmlChar * arg1,
2236 const xmlChar * arg2)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002237{
2238 xmlChar *msg;
2239
Daniel Veillardb30ca312005-09-04 13:50:03 +00002240 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillardf03a8cd2005-09-04 12:01:57 +00002241 return;
2242
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002243#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002244 xmlGenericError(xmlGenericErrorContext, "Show error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002245#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002246 msg = xmlRelaxNGGetErrorString(err, arg1, arg2);
2247 if (msg == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002248 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002249
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002250 if (ctxt->errNo == XML_RELAXNG_OK)
Daniel Veillard4c004142003-10-07 11:33:24 +00002251 ctxt->errNo = err;
2252 xmlRngVErr(ctxt, (child == NULL ? node : child), err,
2253 (const char *) msg, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002254 xmlFree(msg);
2255}
2256
2257/**
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002258 * xmlRelaxNGPopErrors:
2259 * @ctxt: the validation context
2260 * @level: the error level in the stack
2261 *
2262 * pop and discard all errors until the given level is reached
2263 */
2264static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002265xmlRelaxNGPopErrors(xmlRelaxNGValidCtxtPtr ctxt, int level)
2266{
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002267 int i;
2268 xmlRelaxNGValidErrorPtr err;
2269
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002270#ifdef DEBUG_ERROR
2271 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002272 "Pop errors till level %d\n", level);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002273#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002274 for (i = level; i < ctxt->errNr; i++) {
2275 err = &ctxt->errTab[i];
2276 if (err->flags & ERROR_IS_DUP) {
2277 if (err->arg1 != NULL)
2278 xmlFree((xmlChar *) err->arg1);
2279 err->arg1 = NULL;
2280 if (err->arg2 != NULL)
2281 xmlFree((xmlChar *) err->arg2);
2282 err->arg2 = NULL;
2283 err->flags = 0;
2284 }
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002285 }
2286 ctxt->errNr = level;
Daniel Veillard580ced82003-03-21 21:22:48 +00002287 if (ctxt->errNr <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002288 ctxt->err = NULL;
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002289}
Daniel Veillard4c004142003-10-07 11:33:24 +00002290
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002291/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002292 * xmlRelaxNGDumpValidError:
2293 * @ctxt: the validation context
2294 *
2295 * Show all validation error over a given index.
2296 */
2297static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002298xmlRelaxNGDumpValidError(xmlRelaxNGValidCtxtPtr ctxt)
2299{
Daniel Veillard5f1946a2003-03-31 16:38:16 +00002300 int i, j, k;
Daniel Veillard580ced82003-03-21 21:22:48 +00002301 xmlRelaxNGValidErrorPtr err, dup;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002302
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002303#ifdef DEBUG_ERROR
2304 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002305 "Dumping error stack %d errors\n", ctxt->errNr);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002306#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002307 for (i = 0, k = 0; i < ctxt->errNr; i++) {
2308 err = &ctxt->errTab[i];
2309 if (k < MAX_ERROR) {
2310 for (j = 0; j < i; j++) {
2311 dup = &ctxt->errTab[j];
2312 if ((err->err == dup->err) && (err->node == dup->node) &&
2313 (xmlStrEqual(err->arg1, dup->arg1)) &&
2314 (xmlStrEqual(err->arg2, dup->arg2))) {
2315 goto skip;
2316 }
2317 }
2318 xmlRelaxNGShowValidError(ctxt, err->err, err->node, err->seq,
2319 err->arg1, err->arg2);
2320 k++;
2321 }
2322 skip:
2323 if (err->flags & ERROR_IS_DUP) {
2324 if (err->arg1 != NULL)
2325 xmlFree((xmlChar *) err->arg1);
2326 err->arg1 = NULL;
2327 if (err->arg2 != NULL)
2328 xmlFree((xmlChar *) err->arg2);
2329 err->arg2 = NULL;
2330 err->flags = 0;
2331 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00002332 }
2333 ctxt->errNr = 0;
2334}
Daniel Veillard4c004142003-10-07 11:33:24 +00002335
Daniel Veillard42f12e92003-03-07 18:32:59 +00002336/**
2337 * xmlRelaxNGAddValidError:
2338 * @ctxt: the validation context
2339 * @err: the error number
2340 * @arg1: the first argument
2341 * @arg2: the second argument
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002342 * @dup: need to dup the args
Daniel Veillard42f12e92003-03-07 18:32:59 +00002343 *
2344 * Register a validation error, either generating it if it's sure
2345 * or stacking it for later handling if unsure.
2346 */
2347static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002348xmlRelaxNGAddValidError(xmlRelaxNGValidCtxtPtr ctxt,
2349 xmlRelaxNGValidErr err, const xmlChar * arg1,
2350 const xmlChar * arg2, int dup)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002351{
Daniel Veillardb30ca312005-09-04 13:50:03 +00002352 if (ctxt == NULL)
2353 return;
2354 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillard4c004142003-10-07 11:33:24 +00002355 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002356
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002357#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002358 xmlGenericError(xmlGenericErrorContext, "Adding error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002359#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002360 /*
2361 * generate the error directly
2362 */
William M. Brack60929622004-03-27 17:54:18 +00002363 if (((ctxt->flags & FLAGS_IGNORABLE) == 0) ||
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002364 (ctxt->flags & FLAGS_NEGATIVE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002365 xmlNodePtr node, seq;
2366
2367 /*
2368 * Flush first any stacked error which might be the
2369 * real cause of the problem.
2370 */
2371 if (ctxt->errNr != 0)
2372 xmlRelaxNGDumpValidError(ctxt);
2373 if (ctxt->state != NULL) {
2374 node = ctxt->state->node;
2375 seq = ctxt->state->seq;
2376 } else {
2377 node = seq = NULL;
2378 }
Daniel Veillardec18c962009-08-26 18:37:43 +02002379 if ((node == NULL) && (seq == NULL)) {
2380 node = ctxt->pnode;
2381 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002382 xmlRelaxNGShowValidError(ctxt, err, node, seq, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002383 }
2384 /*
2385 * Stack the error for later processing if needed
2386 */
2387 else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002388 xmlRelaxNGValidErrorPush(ctxt, err, arg1, arg2, dup);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002389 }
2390}
2391
Daniel Veillard6eadf632003-01-23 18:29:16 +00002392
2393/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002394 * *
2395 * Type library hooks *
2396 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00002397 ************************************************************************/
Daniel Veillardea3f3982003-01-26 19:45:18 +00002398static xmlChar *xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00002399 const xmlChar * str);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002400
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002401/**
2402 * xmlRelaxNGSchemaTypeHave:
2403 * @data: data needed for the library
2404 * @type: the type name
2405 *
2406 * Check if the given type is provided by
2407 * the W3C XMLSchema Datatype library.
2408 *
2409 * Returns 1 if yes, 0 if no and -1 in case of error.
2410 */
2411static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002412xmlRelaxNGSchemaTypeHave(void *data ATTRIBUTE_UNUSED, const xmlChar * type)
2413{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002414 xmlSchemaTypePtr typ;
2415
2416 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002417 return (-1);
2418 typ = xmlSchemaGetPredefinedType(type,
2419 BAD_CAST
2420 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002421 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002422 return (0);
2423 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002424}
2425
2426/**
2427 * xmlRelaxNGSchemaTypeCheck:
2428 * @data: data needed for the library
2429 * @type: the type name
2430 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002431 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002432 *
2433 * Check if the given type and value are validated by
2434 * the W3C XMLSchema Datatype library.
2435 *
2436 * Returns 1 if yes, 0 if no and -1 in case of error.
2437 */
2438static int
2439xmlRelaxNGSchemaTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002440 const xmlChar * type,
2441 const xmlChar * value,
2442 void **result, xmlNodePtr node)
2443{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002444 xmlSchemaTypePtr typ;
2445 int ret;
2446
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002447 if ((type == NULL) || (value == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002448 return (-1);
2449 typ = xmlSchemaGetPredefinedType(type,
2450 BAD_CAST
2451 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002452 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002453 return (-1);
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002454 ret = xmlSchemaValPredefTypeNode(typ, value,
Daniel Veillard4c004142003-10-07 11:33:24 +00002455 (xmlSchemaValPtr *) result, node);
2456 if (ret == 2) /* special ID error code */
2457 return (2);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002458 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002459 return (1);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002460 if (ret > 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002461 return (0);
2462 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002463}
2464
2465/**
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002466 * xmlRelaxNGSchemaFacetCheck:
2467 * @data: data needed for the library
2468 * @type: the type name
2469 * @facet: the facet name
2470 * @val: the facet value
2471 * @strval: the string value
2472 * @value: the value to check
2473 *
2474 * Function provided by a type library to check a value facet
2475 *
2476 * Returns 1 if yes, 0 if no and -1 in case of error.
2477 */
2478static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002479xmlRelaxNGSchemaFacetCheck(void *data ATTRIBUTE_UNUSED,
2480 const xmlChar * type, const xmlChar * facetname,
2481 const xmlChar * val, const xmlChar * strval,
2482 void *value)
2483{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002484 xmlSchemaFacetPtr facet;
2485 xmlSchemaTypePtr typ;
2486 int ret;
2487
2488 if ((type == NULL) || (strval == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002489 return (-1);
2490 typ = xmlSchemaGetPredefinedType(type,
2491 BAD_CAST
2492 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002493 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002494 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002495
2496 facet = xmlSchemaNewFacet();
2497 if (facet == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002498 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002499
Daniel Veillard4c004142003-10-07 11:33:24 +00002500 if (xmlStrEqual(facetname, BAD_CAST "minInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002501 facet->type = XML_SCHEMA_FACET_MININCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002502 } else if (xmlStrEqual(facetname, BAD_CAST "minExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002503 facet->type = XML_SCHEMA_FACET_MINEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002504 } else if (xmlStrEqual(facetname, BAD_CAST "maxInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002505 facet->type = XML_SCHEMA_FACET_MAXINCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002506 } else if (xmlStrEqual(facetname, BAD_CAST "maxExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002507 facet->type = XML_SCHEMA_FACET_MAXEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002508 } else if (xmlStrEqual(facetname, BAD_CAST "totalDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002509 facet->type = XML_SCHEMA_FACET_TOTALDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002510 } else if (xmlStrEqual(facetname, BAD_CAST "fractionDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002511 facet->type = XML_SCHEMA_FACET_FRACTIONDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002512 } else if (xmlStrEqual(facetname, BAD_CAST "pattern")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002513 facet->type = XML_SCHEMA_FACET_PATTERN;
Daniel Veillard4c004142003-10-07 11:33:24 +00002514 } else if (xmlStrEqual(facetname, BAD_CAST "enumeration")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002515 facet->type = XML_SCHEMA_FACET_ENUMERATION;
Daniel Veillard4c004142003-10-07 11:33:24 +00002516 } else if (xmlStrEqual(facetname, BAD_CAST "whiteSpace")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002517 facet->type = XML_SCHEMA_FACET_WHITESPACE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002518 } else if (xmlStrEqual(facetname, BAD_CAST "length")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002519 facet->type = XML_SCHEMA_FACET_LENGTH;
Daniel Veillard4c004142003-10-07 11:33:24 +00002520 } else if (xmlStrEqual(facetname, BAD_CAST "maxLength")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002521 facet->type = XML_SCHEMA_FACET_MAXLENGTH;
2522 } else if (xmlStrEqual(facetname, BAD_CAST "minLength")) {
2523 facet->type = XML_SCHEMA_FACET_MINLENGTH;
2524 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002525 xmlSchemaFreeFacet(facet);
2526 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002527 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00002528 facet->value = val;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002529 ret = xmlSchemaCheckFacet(facet, typ, NULL, type);
2530 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002531 xmlSchemaFreeFacet(facet);
2532 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002533 }
2534 ret = xmlSchemaValidateFacet(typ, facet, strval, value);
2535 xmlSchemaFreeFacet(facet);
2536 if (ret != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002537 return (-1);
2538 return (0);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002539}
2540
2541/**
Daniel Veillard80b19092003-03-28 13:29:53 +00002542 * xmlRelaxNGSchemaFreeValue:
2543 * @data: data needed for the library
2544 * @value: the value to free
2545 *
2546 * Function provided by a type library to free a Schemas value
2547 *
2548 * Returns 1 if yes, 0 if no and -1 in case of error.
2549 */
2550static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002551xmlRelaxNGSchemaFreeValue(void *data ATTRIBUTE_UNUSED, void *value)
2552{
Daniel Veillard80b19092003-03-28 13:29:53 +00002553 xmlSchemaFreeValue(value);
2554}
2555
2556/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002557 * xmlRelaxNGSchemaTypeCompare:
2558 * @data: data needed for the library
2559 * @type: the type name
2560 * @value1: the first value
2561 * @value2: the second value
2562 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002563 * Compare two values for equality accordingly a type from the W3C XMLSchema
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002564 * Datatype library.
2565 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002566 * Returns 1 if equal, 0 if no and -1 in case of error.
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002567 */
2568static int
2569xmlRelaxNGSchemaTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002570 const xmlChar * type,
2571 const xmlChar * value1,
2572 xmlNodePtr ctxt1,
2573 void *comp1,
2574 const xmlChar * value2, xmlNodePtr ctxt2)
2575{
Daniel Veillard80b19092003-03-28 13:29:53 +00002576 int ret;
2577 xmlSchemaTypePtr typ;
2578 xmlSchemaValPtr res1 = NULL, res2 = NULL;
2579
2580 if ((type == NULL) || (value1 == NULL) || (value2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002581 return (-1);
2582 typ = xmlSchemaGetPredefinedType(type,
2583 BAD_CAST
2584 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard80b19092003-03-28 13:29:53 +00002585 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002586 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002587 if (comp1 == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002588 ret = xmlSchemaValPredefTypeNode(typ, value1, &res1, ctxt1);
2589 if (ret != 0)
2590 return (-1);
2591 if (res1 == NULL)
2592 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002593 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002594 res1 = (xmlSchemaValPtr) comp1;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002595 }
2596 ret = xmlSchemaValPredefTypeNode(typ, value2, &res2, ctxt2);
Daniel Veillard80b19092003-03-28 13:29:53 +00002597 if (ret != 0) {
Gaurav7d4e2592013-09-30 11:27:41 +08002598 if (res1 != (xmlSchemaValPtr) comp1)
Daniel Veillardf4644032005-06-13 11:41:31 +00002599 xmlSchemaFreeValue(res1);
Daniel Veillard4c004142003-10-07 11:33:24 +00002600 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002601 }
Daniel Veillard80b19092003-03-28 13:29:53 +00002602 ret = xmlSchemaCompareValues(res1, res2);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002603 if (res1 != (xmlSchemaValPtr) comp1)
Daniel Veillard4c004142003-10-07 11:33:24 +00002604 xmlSchemaFreeValue(res1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002605 xmlSchemaFreeValue(res2);
2606 if (ret == -2)
Daniel Veillard4c004142003-10-07 11:33:24 +00002607 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002608 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002609 return (1);
2610 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002611}
Daniel Veillard4c004142003-10-07 11:33:24 +00002612
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002613/**
2614 * xmlRelaxNGDefaultTypeHave:
2615 * @data: data needed for the library
2616 * @type: the type name
2617 *
2618 * Check if the given type is provided by
2619 * the default datatype library.
2620 *
2621 * Returns 1 if yes, 0 if no and -1 in case of error.
2622 */
2623static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002624xmlRelaxNGDefaultTypeHave(void *data ATTRIBUTE_UNUSED,
2625 const xmlChar * type)
2626{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002627 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002628 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002629 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002630 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002631 if (xmlStrEqual(type, BAD_CAST "token"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002632 return (1);
2633 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002634}
2635
2636/**
2637 * xmlRelaxNGDefaultTypeCheck:
2638 * @data: data needed for the library
2639 * @type: the type name
2640 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002641 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002642 *
2643 * Check if the given type and value are validated by
2644 * the default datatype library.
2645 *
2646 * Returns 1 if yes, 0 if no and -1 in case of error.
2647 */
2648static int
2649xmlRelaxNGDefaultTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002650 const xmlChar * type ATTRIBUTE_UNUSED,
2651 const xmlChar * value ATTRIBUTE_UNUSED,
2652 void **result ATTRIBUTE_UNUSED,
2653 xmlNodePtr node ATTRIBUTE_UNUSED)
2654{
Daniel Veillardd4310742003-02-18 21:12:46 +00002655 if (value == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002656 return (-1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002657 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002658 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002659 if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002660 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002661 }
2662
Daniel Veillard4c004142003-10-07 11:33:24 +00002663 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002664}
2665
2666/**
2667 * xmlRelaxNGDefaultTypeCompare:
2668 * @data: data needed for the library
2669 * @type: the type name
2670 * @value1: the first value
2671 * @value2: the second value
2672 *
2673 * Compare two values accordingly a type from the default
2674 * datatype library.
2675 *
2676 * Returns 1 if yes, 0 if no and -1 in case of error.
2677 */
2678static int
2679xmlRelaxNGDefaultTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002680 const xmlChar * type,
2681 const xmlChar * value1,
2682 xmlNodePtr ctxt1 ATTRIBUTE_UNUSED,
2683 void *comp1 ATTRIBUTE_UNUSED,
2684 const xmlChar * value2,
2685 xmlNodePtr ctxt2 ATTRIBUTE_UNUSED)
2686{
Daniel Veillardea3f3982003-01-26 19:45:18 +00002687 int ret = -1;
2688
2689 if (xmlStrEqual(type, BAD_CAST "string")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002690 ret = xmlStrEqual(value1, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002691 } else if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002692 if (!xmlStrEqual(value1, value2)) {
2693 xmlChar *nval, *nvalue;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002694
Daniel Veillard4c004142003-10-07 11:33:24 +00002695 /*
2696 * TODO: trivial optimizations are possible by
2697 * computing at compile-time
2698 */
2699 nval = xmlRelaxNGNormalize(NULL, value1);
2700 nvalue = xmlRelaxNGNormalize(NULL, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002701
Daniel Veillard4c004142003-10-07 11:33:24 +00002702 if ((nval == NULL) || (nvalue == NULL))
2703 ret = -1;
2704 else if (xmlStrEqual(nval, nvalue))
2705 ret = 1;
2706 else
2707 ret = 0;
2708 if (nval != NULL)
2709 xmlFree(nval);
2710 if (nvalue != NULL)
2711 xmlFree(nvalue);
2712 } else
2713 ret = 1;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002714 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002715 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002716}
Daniel Veillard4c004142003-10-07 11:33:24 +00002717
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002718static int xmlRelaxNGTypeInitialized = 0;
2719static xmlHashTablePtr xmlRelaxNGRegisteredTypes = NULL;
2720
2721/**
2722 * xmlRelaxNGFreeTypeLibrary:
2723 * @lib: the type library structure
2724 * @namespace: the URI bound to the library
2725 *
2726 * Free the structure associated to the type library
2727 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00002728static void
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002729xmlRelaxNGFreeTypeLibrary(xmlRelaxNGTypeLibraryPtr lib,
Daniel Veillard4c004142003-10-07 11:33:24 +00002730 const xmlChar * namespace ATTRIBUTE_UNUSED)
2731{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002732 if (lib == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002733 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002734 if (lib->namespace != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002735 xmlFree((xmlChar *) lib->namespace);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002736 xmlFree(lib);
2737}
2738
2739/**
2740 * xmlRelaxNGRegisterTypeLibrary:
2741 * @namespace: the URI bound to the library
2742 * @data: data associated to the library
2743 * @have: the provide function
2744 * @check: the checking function
2745 * @comp: the comparison function
2746 *
2747 * Register a new type library
2748 *
2749 * Returns 0 in case of success and -1 in case of error.
2750 */
2751static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002752xmlRelaxNGRegisterTypeLibrary(const xmlChar * namespace, void *data,
2753 xmlRelaxNGTypeHave have,
2754 xmlRelaxNGTypeCheck check,
2755 xmlRelaxNGTypeCompare comp,
2756 xmlRelaxNGFacetCheck facet,
2757 xmlRelaxNGTypeFree freef)
2758{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002759 xmlRelaxNGTypeLibraryPtr lib;
2760 int ret;
2761
2762 if ((xmlRelaxNGRegisteredTypes == NULL) || (namespace == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00002763 (check == NULL) || (comp == NULL))
2764 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002765 if (xmlHashLookup(xmlRelaxNGRegisteredTypes, namespace) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002766 xmlGenericError(xmlGenericErrorContext,
2767 "Relax-NG types library '%s' already registered\n",
2768 namespace);
2769 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002770 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002771 lib =
2772 (xmlRelaxNGTypeLibraryPtr)
2773 xmlMalloc(sizeof(xmlRelaxNGTypeLibrary));
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002774 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002775 xmlRngVErrMemory(NULL, "adding types library\n");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002776 return (-1);
2777 }
2778 memset(lib, 0, sizeof(xmlRelaxNGTypeLibrary));
2779 lib->namespace = xmlStrdup(namespace);
2780 lib->data = data;
2781 lib->have = have;
2782 lib->comp = comp;
2783 lib->check = check;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002784 lib->facet = facet;
2785 lib->freef = freef;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002786 ret = xmlHashAddEntry(xmlRelaxNGRegisteredTypes, namespace, lib);
2787 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002788 xmlGenericError(xmlGenericErrorContext,
2789 "Relax-NG types library failed to register '%s'\n",
2790 namespace);
2791 xmlRelaxNGFreeTypeLibrary(lib, namespace);
2792 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002793 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002794 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002795}
2796
2797/**
2798 * xmlRelaxNGInitTypes:
2799 *
2800 * Initilize the default type libraries.
2801 *
2802 * Returns 0 in case of success and -1 in case of error.
2803 */
Daniel Veillarddd6d3002004-11-03 14:20:29 +00002804int
Daniel Veillard4c004142003-10-07 11:33:24 +00002805xmlRelaxNGInitTypes(void)
2806{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002807 if (xmlRelaxNGTypeInitialized != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002808 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002809 xmlRelaxNGRegisteredTypes = xmlHashCreate(10);
2810 if (xmlRelaxNGRegisteredTypes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002811 xmlGenericError(xmlGenericErrorContext,
2812 "Failed to allocate sh table for Relax-NG types\n");
2813 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002814 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002815 xmlRelaxNGRegisterTypeLibrary(BAD_CAST
2816 "http://www.w3.org/2001/XMLSchema-datatypes",
2817 NULL, xmlRelaxNGSchemaTypeHave,
2818 xmlRelaxNGSchemaTypeCheck,
2819 xmlRelaxNGSchemaTypeCompare,
2820 xmlRelaxNGSchemaFacetCheck,
2821 xmlRelaxNGSchemaFreeValue);
2822 xmlRelaxNGRegisterTypeLibrary(xmlRelaxNGNs, NULL,
2823 xmlRelaxNGDefaultTypeHave,
2824 xmlRelaxNGDefaultTypeCheck,
2825 xmlRelaxNGDefaultTypeCompare, NULL,
2826 NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002827 xmlRelaxNGTypeInitialized = 1;
Daniel Veillard4c004142003-10-07 11:33:24 +00002828 return (0);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002829}
2830
2831/**
2832 * xmlRelaxNGCleanupTypes:
2833 *
2834 * Cleanup the default Schemas type library associated to RelaxNG
2835 */
Daniel Veillard4c004142003-10-07 11:33:24 +00002836void
2837xmlRelaxNGCleanupTypes(void)
2838{
Daniel Veillarda84c0b32003-06-02 16:58:46 +00002839 xmlSchemaCleanupTypes();
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002840 if (xmlRelaxNGTypeInitialized == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002841 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002842 xmlHashFree(xmlRelaxNGRegisteredTypes, (xmlHashDeallocator)
Daniel Veillard4c004142003-10-07 11:33:24 +00002843 xmlRelaxNGFreeTypeLibrary);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002844 xmlRelaxNGTypeInitialized = 0;
Daniel Veillard6eadf632003-01-23 18:29:16 +00002845}
2846
2847/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002848 * *
2849 * Compiling element content into regexp *
2850 * *
Daniel Veillard952379b2003-03-17 15:37:12 +00002851 * Sometime the element content can be compiled into a pure regexp, *
2852 * This allows a faster execution and streamability at that level *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002853 * *
Daniel Veillard952379b2003-03-17 15:37:12 +00002854 ************************************************************************/
2855
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02002856/* from automata.c but not exported */
2857void xmlAutomataSetFlags(xmlAutomataPtr am, int flags);
2858
2859
Daniel Veillard52b48c72003-04-13 19:53:42 +00002860static int xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt,
2861 xmlRelaxNGDefinePtr def);
2862
Daniel Veillard952379b2003-03-17 15:37:12 +00002863/**
2864 * xmlRelaxNGIsCompileable:
2865 * @define: the definition to check
2866 *
2867 * Check if a definition is nullable.
2868 *
2869 * Returns 1 if yes, 0 if no and -1 in case of error
2870 */
2871static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002872xmlRelaxNGIsCompileable(xmlRelaxNGDefinePtr def)
2873{
Daniel Veillard52b48c72003-04-13 19:53:42 +00002874 int ret = -1;
2875
Daniel Veillard952379b2003-03-17 15:37:12 +00002876 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002877 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00002878 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00002879 if ((def->type != XML_RELAXNG_ELEMENT) &&
2880 (def->dflags & IS_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002881 return (1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00002882 if ((def->type != XML_RELAXNG_ELEMENT) &&
2883 (def->dflags & IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002884 return (0);
2885 switch (def->type) {
Daniel Veillard952379b2003-03-17 15:37:12 +00002886 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002887 ret = xmlRelaxNGIsCompileable(def->content);
2888 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002889 case XML_RELAXNG_TEXT:
Daniel Veillard952379b2003-03-17 15:37:12 +00002890 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00002891 ret = 1;
2892 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002893 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00002894 /*
2895 * Check if the element content is compileable
2896 */
2897 if (((def->dflags & IS_NOT_COMPILABLE) == 0) &&
2898 ((def->dflags & IS_COMPILABLE) == 0)) {
2899 xmlRelaxNGDefinePtr list;
2900
2901 list = def->content;
2902 while (list != NULL) {
2903 ret = xmlRelaxNGIsCompileable(list);
2904 if (ret != 1)
2905 break;
2906 list = list->next;
2907 }
William M. Brack60929622004-03-27 17:54:18 +00002908 /*
2909 * Because the routine is recursive, we must guard against
2910 * discovering both COMPILABLE and NOT_COMPILABLE
2911 */
2912 if (ret == 0) {
2913 def->dflags &= ~IS_COMPILABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002914 def->dflags |= IS_NOT_COMPILABLE;
William M. Brack60929622004-03-27 17:54:18 +00002915 }
2916 if ((ret == 1) && !(def->dflags &= IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002917 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002918#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00002919 if (ret == 1) {
2920 xmlGenericError(xmlGenericErrorContext,
2921 "element content for %s is compilable\n",
2922 def->name);
2923 } else if (ret == 0) {
2924 xmlGenericError(xmlGenericErrorContext,
2925 "element content for %s is not compilable\n",
2926 def->name);
2927 } else {
2928 xmlGenericError(xmlGenericErrorContext,
2929 "Problem in RelaxNGIsCompileable for element %s\n",
2930 def->name);
2931 }
Daniel Veillardd94849b2003-07-28 13:02:24 +00002932#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002933 }
2934 /*
2935 * All elements return a compileable status unless they
2936 * are generic like anyName
2937 */
2938 if ((def->nameClass != NULL) || (def->name == NULL))
2939 ret = 0;
2940 else
2941 ret = 1;
2942 return (ret);
Daniel Veillard2134ab12003-07-23 19:56:29 +00002943 case XML_RELAXNG_REF:
2944 case XML_RELAXNG_EXTERNALREF:
2945 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00002946 if (def->depth == -20) {
2947 return (1);
2948 } else {
2949 xmlRelaxNGDefinePtr list;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002950
Daniel Veillard4c004142003-10-07 11:33:24 +00002951 def->depth = -20;
2952 list = def->content;
2953 while (list != NULL) {
2954 ret = xmlRelaxNGIsCompileable(list);
2955 if (ret != 1)
2956 break;
2957 list = list->next;
2958 }
2959 }
2960 break;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002961 case XML_RELAXNG_START:
Daniel Veillard952379b2003-03-17 15:37:12 +00002962 case XML_RELAXNG_OPTIONAL:
2963 case XML_RELAXNG_ZEROORMORE:
2964 case XML_RELAXNG_ONEORMORE:
2965 case XML_RELAXNG_CHOICE:
2966 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002967 case XML_RELAXNG_DEF:{
2968 xmlRelaxNGDefinePtr list;
Daniel Veillard952379b2003-03-17 15:37:12 +00002969
Daniel Veillard4c004142003-10-07 11:33:24 +00002970 list = def->content;
2971 while (list != NULL) {
2972 ret = xmlRelaxNGIsCompileable(list);
2973 if (ret != 1)
2974 break;
2975 list = list->next;
2976 }
2977 break;
2978 }
Daniel Veillard952379b2003-03-17 15:37:12 +00002979 case XML_RELAXNG_EXCEPT:
2980 case XML_RELAXNG_ATTRIBUTE:
2981 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard52b48c72003-04-13 19:53:42 +00002982 case XML_RELAXNG_DATATYPE:
2983 case XML_RELAXNG_LIST:
2984 case XML_RELAXNG_PARAM:
2985 case XML_RELAXNG_VALUE:
Daniel Veillard952379b2003-03-17 15:37:12 +00002986 case XML_RELAXNG_NOT_ALLOWED:
William M. Brack7e29c0a2004-04-02 09:07:22 +00002987 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00002988 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002989 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002990 if (ret == 0)
2991 def->dflags |= IS_NOT_COMPILABLE;
2992 if (ret == 1)
2993 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002994#ifdef DEBUG_COMPILE
2995 if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002996 xmlGenericError(xmlGenericErrorContext,
2997 "RelaxNGIsCompileable %s : true\n",
2998 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00002999 } else if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003000 xmlGenericError(xmlGenericErrorContext,
3001 "RelaxNGIsCompileable %s : false\n",
3002 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00003003 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003004 xmlGenericError(xmlGenericErrorContext,
3005 "Problem in RelaxNGIsCompileable %s\n",
3006 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00003007 }
3008#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003009 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003010}
3011
3012/**
3013 * xmlRelaxNGCompile:
3014 * ctxt: the RelaxNG parser context
3015 * @define: the definition tree to compile
3016 *
3017 * Compile the set of definitions, it works recursively, till the
3018 * element boundaries, where it tries to compile the content if possible
3019 *
3020 * Returns 0 if success and -1 in case of error
3021 */
3022static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003023xmlRelaxNGCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3024{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003025 int ret = 0;
3026 xmlRelaxNGDefinePtr list;
3027
Daniel Veillard4c004142003-10-07 11:33:24 +00003028 if ((ctxt == NULL) || (def == NULL))
3029 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003030
Daniel Veillard4c004142003-10-07 11:33:24 +00003031 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003032 case XML_RELAXNG_START:
3033 if ((xmlRelaxNGIsCompileable(def) == 1) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003034 xmlAutomataPtr oldam = ctxt->am;
3035 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003036
3037 def->depth = -25;
3038
Daniel Veillard4c004142003-10-07 11:33:24 +00003039 list = def->content;
3040 ctxt->am = xmlNewAutomata();
3041 if (ctxt->am == NULL)
3042 return (-1);
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003043
3044 /*
3045 * assume identical strings but not same pointer are different
3046 * atoms, needed for non-determinism detection
3047 * That way if 2 elements with the same name are in a choice
3048 * branch the automata is found non-deterministic and
3049 * we fallback to the normal validation which does the right
3050 * thing of exploring both choices.
3051 */
3052 xmlAutomataSetFlags(ctxt->am, 1);
3053
Daniel Veillard4c004142003-10-07 11:33:24 +00003054 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3055 while (list != NULL) {
3056 xmlRelaxNGCompile(ctxt, list);
3057 list = list->next;
3058 }
3059 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
Noam9313ae82012-05-15 11:03:46 +08003060 if (xmlAutomataIsDeterminist(ctxt->am))
3061 def->contModel = xmlAutomataCompile(ctxt->am);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003062
Daniel Veillard4c004142003-10-07 11:33:24 +00003063 xmlFreeAutomata(ctxt->am);
3064 ctxt->state = oldstate;
3065 ctxt->am = oldam;
3066 }
3067 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003068 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003069 if ((ctxt->am != NULL) && (def->name != NULL)) {
3070 ctxt->state = xmlAutomataNewTransition2(ctxt->am,
3071 ctxt->state, NULL,
3072 def->name, def->ns,
3073 def);
3074 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003075 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003076 xmlAutomataPtr oldam = ctxt->am;
3077 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003078
3079 def->depth = -25;
3080
Daniel Veillard4c004142003-10-07 11:33:24 +00003081 list = def->content;
3082 ctxt->am = xmlNewAutomata();
3083 if (ctxt->am == NULL)
3084 return (-1);
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003085 xmlAutomataSetFlags(ctxt->am, 1);
Daniel Veillard4c004142003-10-07 11:33:24 +00003086 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3087 while (list != NULL) {
3088 xmlRelaxNGCompile(ctxt, list);
3089 list = list->next;
3090 }
3091 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
3092 def->contModel = xmlAutomataCompile(ctxt->am);
3093 if (!xmlRegexpIsDeterminist(def->contModel)) {
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003094#ifdef DEBUG_COMPILE
3095 xmlGenericError(xmlGenericErrorContext,
3096 "Content model not determinist %s\n",
3097 def->name);
3098#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003099 /*
3100 * we can only use the automata if it is determinist
3101 */
3102 xmlRegFreeRegexp(def->contModel);
3103 def->contModel = NULL;
3104 }
3105 xmlFreeAutomata(ctxt->am);
3106 ctxt->state = oldstate;
3107 ctxt->am = oldam;
3108 } else {
3109 xmlAutomataPtr oldam = ctxt->am;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003110
Daniel Veillard4c004142003-10-07 11:33:24 +00003111 /*
3112 * we can't build the content model for this element content
3113 * but it still might be possible to build it for some of its
3114 * children, recurse.
3115 */
3116 ret = xmlRelaxNGTryCompile(ctxt, def);
3117 ctxt->am = oldam;
3118 }
3119 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003120 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003121 ret = xmlRelaxNGCompile(ctxt, def->content);
3122 break;
3123 case XML_RELAXNG_OPTIONAL:{
3124 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003125
Daniel Veillardfd780772009-08-26 18:35:29 +02003126 list = def->content;
3127 while (list != NULL) {
3128 xmlRelaxNGCompile(ctxt, list);
3129 list = list->next;
3130 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003131 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
3132 break;
3133 }
3134 case XML_RELAXNG_ZEROORMORE:{
3135 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003136
Daniel Veillard4c004142003-10-07 11:33:24 +00003137 ctxt->state =
3138 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3139 oldstate = ctxt->state;
3140 list = def->content;
3141 while (list != NULL) {
3142 xmlRelaxNGCompile(ctxt, list);
3143 list = list->next;
3144 }
3145 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3146 ctxt->state =
3147 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3148 break;
3149 }
3150 case XML_RELAXNG_ONEORMORE:{
3151 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003152
Daniel Veillard4c004142003-10-07 11:33:24 +00003153 list = def->content;
3154 while (list != NULL) {
3155 xmlRelaxNGCompile(ctxt, list);
3156 list = list->next;
3157 }
3158 oldstate = ctxt->state;
3159 list = def->content;
3160 while (list != NULL) {
3161 xmlRelaxNGCompile(ctxt, list);
3162 list = list->next;
3163 }
3164 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3165 ctxt->state =
3166 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3167 break;
3168 }
3169 case XML_RELAXNG_CHOICE:{
3170 xmlAutomataStatePtr target = NULL;
3171 xmlAutomataStatePtr oldstate = ctxt->state;
3172
3173 list = def->content;
3174 while (list != NULL) {
3175 ctxt->state = oldstate;
3176 ret = xmlRelaxNGCompile(ctxt, list);
3177 if (ret != 0)
3178 break;
3179 if (target == NULL)
3180 target = ctxt->state;
3181 else {
3182 xmlAutomataNewEpsilon(ctxt->am, ctxt->state,
3183 target);
3184 }
3185 list = list->next;
3186 }
3187 ctxt->state = target;
3188
3189 break;
3190 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003191 case XML_RELAXNG_REF:
3192 case XML_RELAXNG_EXTERNALREF:
3193 case XML_RELAXNG_PARENTREF:
Daniel Veillard52b48c72003-04-13 19:53:42 +00003194 case XML_RELAXNG_GROUP:
3195 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003196 list = def->content;
3197 while (list != NULL) {
3198 ret = xmlRelaxNGCompile(ctxt, list);
3199 if (ret != 0)
3200 break;
3201 list = list->next;
3202 }
3203 break;
3204 case XML_RELAXNG_TEXT:{
3205 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003206
Daniel Veillard4c004142003-10-07 11:33:24 +00003207 ctxt->state =
3208 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3209 oldstate = ctxt->state;
3210 xmlRelaxNGCompile(ctxt, def->content);
3211 xmlAutomataNewTransition(ctxt->am, ctxt->state,
3212 ctxt->state, BAD_CAST "#text",
3213 NULL);
3214 ctxt->state =
3215 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3216 break;
3217 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003218 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00003219 ctxt->state =
3220 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3221 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003222 case XML_RELAXNG_EXCEPT:
3223 case XML_RELAXNG_ATTRIBUTE:
3224 case XML_RELAXNG_INTERLEAVE:
3225 case XML_RELAXNG_NOT_ALLOWED:
3226 case XML_RELAXNG_DATATYPE:
3227 case XML_RELAXNG_LIST:
3228 case XML_RELAXNG_PARAM:
3229 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003230 /* This should not happen and generate an internal error */
3231 fprintf(stderr, "RNG internal error trying to compile %s\n",
3232 xmlRelaxNGDefName(def));
3233 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003234 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003235 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003236}
3237
3238/**
3239 * xmlRelaxNGTryCompile:
3240 * ctxt: the RelaxNG parser context
3241 * @define: the definition tree to compile
3242 *
3243 * Try to compile the set of definitions, it works recursively,
3244 * possibly ignoring parts which cannot be compiled.
3245 *
3246 * Returns 0 if success and -1 in case of error
3247 */
3248static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003249xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3250{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003251 int ret = 0;
3252 xmlRelaxNGDefinePtr list;
3253
Daniel Veillard4c004142003-10-07 11:33:24 +00003254 if ((ctxt == NULL) || (def == NULL))
3255 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003256
3257 if ((def->type == XML_RELAXNG_START) ||
3258 (def->type == XML_RELAXNG_ELEMENT)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003259 ret = xmlRelaxNGIsCompileable(def);
3260 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
3261 ctxt->am = NULL;
3262 ret = xmlRelaxNGCompile(ctxt, def);
Daniel Veillard2134ab12003-07-23 19:56:29 +00003263#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00003264 if (ret == 0) {
3265 if (def->type == XML_RELAXNG_START)
3266 xmlGenericError(xmlGenericErrorContext,
3267 "compiled the start\n");
3268 else
3269 xmlGenericError(xmlGenericErrorContext,
3270 "compiled element %s\n", def->name);
3271 } else {
3272 if (def->type == XML_RELAXNG_START)
3273 xmlGenericError(xmlGenericErrorContext,
3274 "failed to compile the start\n");
3275 else
3276 xmlGenericError(xmlGenericErrorContext,
3277 "failed to compile element %s\n",
3278 def->name);
3279 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003280#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003281 return (ret);
3282 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003283 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003284 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003285 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003286 ret = xmlRelaxNGTryCompile(ctxt, def->content);
3287 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003288 case XML_RELAXNG_TEXT:
3289 case XML_RELAXNG_DATATYPE:
3290 case XML_RELAXNG_LIST:
3291 case XML_RELAXNG_PARAM:
3292 case XML_RELAXNG_VALUE:
3293 case XML_RELAXNG_EMPTY:
3294 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003295 ret = 0;
3296 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003297 case XML_RELAXNG_OPTIONAL:
3298 case XML_RELAXNG_ZEROORMORE:
3299 case XML_RELAXNG_ONEORMORE:
3300 case XML_RELAXNG_CHOICE:
3301 case XML_RELAXNG_GROUP:
3302 case XML_RELAXNG_DEF:
Daniel Veillard2134ab12003-07-23 19:56:29 +00003303 case XML_RELAXNG_START:
3304 case XML_RELAXNG_REF:
3305 case XML_RELAXNG_EXTERNALREF:
3306 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003307 list = def->content;
3308 while (list != NULL) {
3309 ret = xmlRelaxNGTryCompile(ctxt, list);
3310 if (ret != 0)
3311 break;
3312 list = list->next;
3313 }
3314 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003315 case XML_RELAXNG_EXCEPT:
3316 case XML_RELAXNG_ATTRIBUTE:
3317 case XML_RELAXNG_INTERLEAVE:
3318 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00003319 ret = 0;
3320 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003321 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003322 return (ret);
Daniel Veillard952379b2003-03-17 15:37:12 +00003323}
3324
3325/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003326 * *
3327 * Parsing functions *
3328 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00003329 ************************************************************************/
3330
Daniel Veillard4c004142003-10-07 11:33:24 +00003331static xmlRelaxNGDefinePtr xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr
3332 ctxt, xmlNodePtr node);
3333static xmlRelaxNGDefinePtr xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr
3334 ctxt, xmlNodePtr node);
3335static xmlRelaxNGDefinePtr xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr
3336 ctxt, xmlNodePtr nodes,
3337 int group);
3338static xmlRelaxNGDefinePtr xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr
3339 ctxt, xmlNodePtr node);
3340static xmlRelaxNGPtr xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt,
3341 xmlNodePtr node);
3342static int xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
3343 xmlNodePtr nodes);
3344static xmlRelaxNGDefinePtr xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr
3345 ctxt, xmlNodePtr node,
3346 xmlRelaxNGDefinePtr
3347 def);
3348static xmlRelaxNGGrammarPtr xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr
3349 ctxt, xmlNodePtr nodes);
3350static int xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
3351 xmlRelaxNGDefinePtr define,
3352 xmlNodePtr elem);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003353
3354
Daniel Veillard249d7bb2003-03-19 21:02:29 +00003355#define IS_BLANK_NODE(n) (xmlRelaxNGIsBlank((n)->content))
Daniel Veillard6eadf632003-01-23 18:29:16 +00003356
3357/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00003358 * xmlRelaxNGIsNullable:
3359 * @define: the definition to verify
3360 *
3361 * Check if a definition is nullable.
3362 *
3363 * Returns 1 if yes, 0 if no and -1 in case of error
3364 */
3365static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003366xmlRelaxNGIsNullable(xmlRelaxNGDefinePtr define)
3367{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003368 int ret;
Daniel Veillard4c004142003-10-07 11:33:24 +00003369
Daniel Veillardfd573f12003-03-16 17:52:32 +00003370 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003371 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003372
Daniel Veillarde063f482003-03-21 16:53:17 +00003373 if (define->dflags & IS_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003374 return (1);
Daniel Veillarde063f482003-03-21 16:53:17 +00003375 if (define->dflags & IS_NOT_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003376 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003377 switch (define->type) {
3378 case XML_RELAXNG_EMPTY:
3379 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003380 ret = 1;
3381 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003382 case XML_RELAXNG_NOOP:
3383 case XML_RELAXNG_DEF:
3384 case XML_RELAXNG_REF:
3385 case XML_RELAXNG_EXTERNALREF:
3386 case XML_RELAXNG_PARENTREF:
3387 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003388 ret = xmlRelaxNGIsNullable(define->content);
3389 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003390 case XML_RELAXNG_EXCEPT:
3391 case XML_RELAXNG_NOT_ALLOWED:
3392 case XML_RELAXNG_ELEMENT:
3393 case XML_RELAXNG_DATATYPE:
3394 case XML_RELAXNG_PARAM:
3395 case XML_RELAXNG_VALUE:
3396 case XML_RELAXNG_LIST:
3397 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003398 ret = 0;
3399 break;
3400 case XML_RELAXNG_CHOICE:{
3401 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003402
Daniel Veillard4c004142003-10-07 11:33:24 +00003403 while (list != NULL) {
3404 ret = xmlRelaxNGIsNullable(list);
3405 if (ret != 0)
3406 goto done;
3407 list = list->next;
3408 }
3409 ret = 0;
3410 break;
3411 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003412 case XML_RELAXNG_START:
3413 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003414 case XML_RELAXNG_GROUP:{
3415 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003416
Daniel Veillard4c004142003-10-07 11:33:24 +00003417 while (list != NULL) {
3418 ret = xmlRelaxNGIsNullable(list);
3419 if (ret != 1)
3420 goto done;
3421 list = list->next;
3422 }
3423 return (1);
3424 }
3425 default:
3426 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003427 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003428 done:
Daniel Veillardfd573f12003-03-16 17:52:32 +00003429 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003430 define->dflags |= IS_NOT_NULLABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003431 if (ret == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00003432 define->dflags |= IS_NULLABLE;
3433 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003434}
3435
3436/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00003437 * xmlRelaxNGIsBlank:
3438 * @str: a string
3439 *
3440 * Check if a string is ignorable c.f. 4.2. Whitespace
3441 *
3442 * Returns 1 if the string is NULL or made of blanks chars, 0 otherwise
3443 */
3444static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003445xmlRelaxNGIsBlank(xmlChar * str)
3446{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003447 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003448 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003449 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00003450 if (!(IS_BLANK_CH(*str)))
Daniel Veillard4c004142003-10-07 11:33:24 +00003451 return (0);
3452 str++;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003453 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003454 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003455}
3456
Daniel Veillard6eadf632003-01-23 18:29:16 +00003457/**
3458 * xmlRelaxNGGetDataTypeLibrary:
3459 * @ctxt: a Relax-NG parser context
3460 * @node: the current data or value element
3461 *
3462 * Applies algorithm from 4.3. datatypeLibrary attribute
3463 *
3464 * Returns the datatypeLibary value or NULL if not found
3465 */
3466static xmlChar *
3467xmlRelaxNGGetDataTypeLibrary(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00003468 xmlNodePtr node)
3469{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003470 xmlChar *ret, *escape;
3471
Daniel Veillardd44b9362009-09-07 12:15:08 +02003472 if (node == NULL)
3473 return(NULL);
3474
Daniel Veillard6eadf632003-01-23 18:29:16 +00003475 if ((IS_RELAXNG(node, "data")) || (IS_RELAXNG(node, "value"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003476 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3477 if (ret != NULL) {
3478 if (ret[0] == 0) {
3479 xmlFree(ret);
3480 return (NULL);
3481 }
3482 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3483 if (escape == NULL) {
3484 return (ret);
3485 }
3486 xmlFree(ret);
3487 return (escape);
3488 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00003489 }
3490 node = node->parent;
3491 while ((node != NULL) && (node->type == XML_ELEMENT_NODE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003492 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3493 if (ret != NULL) {
3494 if (ret[0] == 0) {
3495 xmlFree(ret);
3496 return (NULL);
3497 }
3498 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3499 if (escape == NULL) {
3500 return (ret);
3501 }
3502 xmlFree(ret);
3503 return (escape);
3504 }
3505 node = node->parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003506 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003507 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003508}
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003509
3510/**
Daniel Veillardedc91922003-01-26 00:52:04 +00003511 * xmlRelaxNGParseValue:
3512 * @ctxt: a Relax-NG parser context
3513 * @node: the data node.
3514 *
3515 * parse the content of a RelaxNG value node.
3516 *
3517 * Returns the definition pointer or NULL in case of error
3518 */
3519static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003520xmlRelaxNGParseValue(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3521{
Daniel Veillardedc91922003-01-26 00:52:04 +00003522 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillard5f1946a2003-03-31 16:38:16 +00003523 xmlRelaxNGTypeLibraryPtr lib = NULL;
Daniel Veillardedc91922003-01-26 00:52:04 +00003524 xmlChar *type;
3525 xmlChar *library;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003526 int success = 0;
Daniel Veillardedc91922003-01-26 00:52:04 +00003527
Daniel Veillardfd573f12003-03-16 17:52:32 +00003528 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00003529 if (def == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003530 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003531 def->type = XML_RELAXNG_VALUE;
Daniel Veillardedc91922003-01-26 00:52:04 +00003532
3533 type = xmlGetProp(node, BAD_CAST "type");
3534 if (type != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003535 xmlRelaxNGNormExtSpace(type);
3536 if (xmlValidateNCName(type, 0)) {
3537 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3538 "value type '%s' is not an NCName\n", type, NULL);
3539 }
3540 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3541 if (library == NULL)
3542 library =
3543 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillardedc91922003-01-26 00:52:04 +00003544
Daniel Veillard4c004142003-10-07 11:33:24 +00003545 def->name = type;
3546 def->ns = library;
Daniel Veillardedc91922003-01-26 00:52:04 +00003547
Daniel Veillard4c004142003-10-07 11:33:24 +00003548 lib = (xmlRelaxNGTypeLibraryPtr)
3549 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
3550 if (lib == NULL) {
3551 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3552 "Use of unregistered type library '%s'\n", library,
3553 NULL);
3554 def->data = NULL;
3555 } else {
3556 def->data = lib;
3557 if (lib->have == NULL) {
3558 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3559 "Internal error with type library '%s': no 'have'\n",
3560 library, NULL);
3561 } else {
3562 success = lib->have(lib->data, def->name);
3563 if (success != 1) {
3564 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3565 "Error type '%s' is not exported by type library '%s'\n",
3566 def->name, library);
3567 }
3568 }
3569 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003570 }
3571 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003572 def->value = xmlStrdup(BAD_CAST "");
Daniel Veillard39eb88b2003-03-11 11:21:28 +00003573 } else if (((node->children->type != XML_TEXT_NODE) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00003574 (node->children->type != XML_CDATA_SECTION_NODE)) ||
3575 (node->children->next != NULL)) {
3576 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_EXPECTED,
3577 "Expecting a single text value for <value>content\n",
3578 NULL, NULL);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003579 } else if (def != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003580 def->value = xmlNodeGetContent(node);
3581 if (def->value == NULL) {
3582 xmlRngPErr(ctxt, node, XML_RNGP_VALUE_NO_CONTENT,
3583 "Element <value> has no content\n", NULL, NULL);
3584 } else if ((lib != NULL) && (lib->check != NULL) && (success == 1)) {
3585 void *val = NULL;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003586
Daniel Veillard4c004142003-10-07 11:33:24 +00003587 success =
3588 lib->check(lib->data, def->name, def->value, &val, node);
3589 if (success != 1) {
3590 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_VALUE,
3591 "Value '%s' is not acceptable for type '%s'\n",
3592 def->value, def->name);
3593 } else {
3594 if (val != NULL)
3595 def->attrs = val;
3596 }
3597 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003598 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003599 return (def);
Daniel Veillardedc91922003-01-26 00:52:04 +00003600}
3601
3602/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003603 * xmlRelaxNGParseData:
3604 * @ctxt: a Relax-NG parser context
3605 * @node: the data node.
3606 *
3607 * parse the content of a RelaxNG data node.
3608 *
3609 * Returns the definition pointer or NULL in case of error
3610 */
3611static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003612xmlRelaxNGParseData(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3613{
Daniel Veillard14b56432006-03-09 18:41:40 +00003614 xmlRelaxNGDefinePtr def = NULL, except;
Daniel Veillard8fe98712003-02-19 00:19:14 +00003615 xmlRelaxNGDefinePtr param, lastparam = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003616 xmlRelaxNGTypeLibraryPtr lib;
3617 xmlChar *type;
3618 xmlChar *library;
3619 xmlNodePtr content;
3620 int tmp;
3621
3622 type = xmlGetProp(node, BAD_CAST "type");
3623 if (type == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003624 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_MISSING, "data has no type\n", NULL,
3625 NULL);
3626 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003627 }
Daniel Veillardd2298792003-02-14 16:54:11 +00003628 xmlRelaxNGNormExtSpace(type);
3629 if (xmlValidateNCName(type, 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003630 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3631 "data type '%s' is not an NCName\n", type, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00003632 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003633 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3634 if (library == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003635 library =
3636 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003637
Daniel Veillardfd573f12003-03-16 17:52:32 +00003638 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003639 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003640 xmlFree(type);
3641 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003642 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003643 def->type = XML_RELAXNG_DATATYPE;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003644 def->name = type;
3645 def->ns = library;
3646
3647 lib = (xmlRelaxNGTypeLibraryPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00003648 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003649 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003650 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3651 "Use of unregistered type library '%s'\n", library,
3652 NULL);
3653 def->data = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003654 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003655 def->data = lib;
3656 if (lib->have == NULL) {
3657 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3658 "Internal error with type library '%s': no 'have'\n",
3659 library, NULL);
3660 } else {
3661 tmp = lib->have(lib->data, def->name);
3662 if (tmp != 1) {
3663 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3664 "Error type '%s' is not exported by type library '%s'\n",
3665 def->name, library);
3666 } else
3667 if ((xmlStrEqual
3668 (library,
3669 BAD_CAST
3670 "http://www.w3.org/2001/XMLSchema-datatypes"))
3671 && ((xmlStrEqual(def->name, BAD_CAST "IDREF"))
3672 || (xmlStrEqual(def->name, BAD_CAST "IDREFS")))) {
3673 ctxt->idref = 1;
3674 }
3675 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003676 }
3677 content = node->children;
Daniel Veillard416589a2003-02-17 17:25:42 +00003678
3679 /*
3680 * Handle optional params
3681 */
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003682 while (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003683 if (!xmlStrEqual(content->name, BAD_CAST "param"))
3684 break;
3685 if (xmlStrEqual(library,
3686 BAD_CAST "http://relaxng.org/ns/structure/1.0")) {
3687 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_FORBIDDEN,
3688 "Type library '%s' does not allow type parameters\n",
3689 library, NULL);
3690 content = content->next;
3691 while ((content != NULL) &&
3692 (xmlStrEqual(content->name, BAD_CAST "param")))
3693 content = content->next;
3694 } else {
3695 param = xmlRelaxNGNewDefine(ctxt, node);
3696 if (param != NULL) {
3697 param->type = XML_RELAXNG_PARAM;
3698 param->name = xmlGetProp(content, BAD_CAST "name");
3699 if (param->name == NULL) {
3700 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_NAME_MISSING,
3701 "param has no name\n", NULL, NULL);
3702 }
3703 param->value = xmlNodeGetContent(content);
3704 if (lastparam == NULL) {
3705 def->attrs = lastparam = param;
3706 } else {
3707 lastparam->next = param;
3708 lastparam = param;
3709 }
3710 if (lib != NULL) {
3711 }
3712 }
3713 content = content->next;
3714 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003715 }
Daniel Veillard416589a2003-02-17 17:25:42 +00003716 /*
3717 * Handle optional except
3718 */
Daniel Veillard4c004142003-10-07 11:33:24 +00003719 if ((content != NULL)
3720 && (xmlStrEqual(content->name, BAD_CAST "except"))) {
3721 xmlNodePtr child;
Daniel Veillard14b56432006-03-09 18:41:40 +00003722 xmlRelaxNGDefinePtr tmp2, last = NULL;
Daniel Veillard416589a2003-02-17 17:25:42 +00003723
Daniel Veillard4c004142003-10-07 11:33:24 +00003724 except = xmlRelaxNGNewDefine(ctxt, node);
3725 if (except == NULL) {
3726 return (def);
3727 }
3728 except->type = XML_RELAXNG_EXCEPT;
3729 child = content->children;
Daniel Veillard14b56432006-03-09 18:41:40 +00003730 def->content = except;
Daniel Veillard4c004142003-10-07 11:33:24 +00003731 if (child == NULL) {
3732 xmlRngPErr(ctxt, content, XML_RNGP_EXCEPT_NO_CONTENT,
3733 "except has no content\n", NULL, NULL);
3734 }
3735 while (child != NULL) {
3736 tmp2 = xmlRelaxNGParsePattern(ctxt, child);
3737 if (tmp2 != NULL) {
Daniel Veillard14b56432006-03-09 18:41:40 +00003738 if (last == NULL) {
3739 except->content = last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003740 } else {
Daniel Veillard14b56432006-03-09 18:41:40 +00003741 last->next = tmp2;
3742 last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003743 }
3744 }
3745 child = child->next;
3746 }
3747 content = content->next;
Daniel Veillard416589a2003-02-17 17:25:42 +00003748 }
3749 /*
3750 * Check there is no unhandled data
3751 */
3752 if (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003753 xmlRngPErr(ctxt, content, XML_RNGP_DATA_CONTENT,
3754 "Element data has unexpected content %s\n",
3755 content->name, NULL);
Daniel Veillard416589a2003-02-17 17:25:42 +00003756 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003757
Daniel Veillard4c004142003-10-07 11:33:24 +00003758 return (def);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003759}
3760
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003761static const xmlChar *invalidName = BAD_CAST "\1";
3762
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003763/**
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003764 * xmlRelaxNGCompareNameClasses:
3765 * @defs1: the first element/attribute defs
3766 * @defs2: the second element/attribute defs
3767 * @name: the restriction on the name
3768 * @ns: the restriction on the namespace
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003769 *
3770 * Compare the 2 lists of element definitions. The comparison is
3771 * that if both lists do not accept the same QNames, it returns 1
3772 * If the 2 lists can accept the same QName the comparison returns 0
3773 *
3774 * Returns 1 disttinct, 0 if equal
3775 */
3776static int
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003777xmlRelaxNGCompareNameClasses(xmlRelaxNGDefinePtr def1,
Daniel Veillard4c004142003-10-07 11:33:24 +00003778 xmlRelaxNGDefinePtr def2)
3779{
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003780 int ret = 1;
3781 xmlNode node;
3782 xmlNs ns;
3783 xmlRelaxNGValidCtxt ctxt;
Daniel Veillard4c004142003-10-07 11:33:24 +00003784
Daniel Veillard42f12e92003-03-07 18:32:59 +00003785 memset(&ctxt, 0, sizeof(xmlRelaxNGValidCtxt));
3786
Daniel Veillardb30ca312005-09-04 13:50:03 +00003787 ctxt.flags = FLAGS_IGNORABLE | FLAGS_NOERROR;
3788
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003789 if ((def1->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003790 (def1->type == XML_RELAXNG_ATTRIBUTE)) {
3791 if (def2->type == XML_RELAXNG_TEXT)
3792 return (1);
3793 if (def1->name != NULL) {
3794 node.name = def1->name;
3795 } else {
3796 node.name = invalidName;
3797 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003798 if (def1->ns != NULL) {
3799 if (def1->ns[0] == 0) {
3800 node.ns = NULL;
3801 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003802 node.ns = &ns;
Daniel Veillard4c004142003-10-07 11:33:24 +00003803 ns.href = def1->ns;
3804 }
3805 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003806 node.ns = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00003807 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003808 if (xmlRelaxNGElementMatch(&ctxt, def2, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003809 if (def1->nameClass != NULL) {
3810 ret = xmlRelaxNGCompareNameClasses(def1->nameClass, def2);
3811 } else {
3812 ret = 0;
3813 }
3814 } else {
3815 ret = 1;
3816 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003817 } else if (def1->type == XML_RELAXNG_TEXT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003818 if (def2->type == XML_RELAXNG_TEXT)
3819 return (0);
3820 return (1);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003821 } else if (def1->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003822 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003823 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003824 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003825 }
3826 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003827 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003828 if ((def2->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003829 (def2->type == XML_RELAXNG_ATTRIBUTE)) {
3830 if (def2->name != NULL) {
3831 node.name = def2->name;
3832 } else {
3833 node.name = invalidName;
3834 }
3835 node.ns = &ns;
3836 if (def2->ns != NULL) {
3837 if (def2->ns[0] == 0) {
3838 node.ns = NULL;
3839 } else {
3840 ns.href = def2->ns;
3841 }
3842 } else {
3843 ns.href = invalidName;
3844 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003845 if (xmlRelaxNGElementMatch(&ctxt, def1, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003846 if (def2->nameClass != NULL) {
3847 ret = xmlRelaxNGCompareNameClasses(def2->nameClass, def1);
3848 } else {
3849 ret = 0;
3850 }
3851 } else {
3852 ret = 1;
3853 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003854 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003855 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003856 }
3857
Daniel Veillard4c004142003-10-07 11:33:24 +00003858 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003859}
3860
3861/**
3862 * xmlRelaxNGCompareElemDefLists:
3863 * @ctxt: a Relax-NG parser context
3864 * @defs1: the first list of element/attribute defs
3865 * @defs2: the second list of element/attribute defs
3866 *
3867 * Compare the 2 lists of element or attribute definitions. The comparison
3868 * is that if both lists do not accept the same QNames, it returns 1
3869 * If the 2 lists can accept the same QName the comparison returns 0
3870 *
3871 * Returns 1 disttinct, 0 if equal
3872 */
3873static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003874xmlRelaxNGCompareElemDefLists(xmlRelaxNGParserCtxtPtr ctxt
3875 ATTRIBUTE_UNUSED, xmlRelaxNGDefinePtr * def1,
3876 xmlRelaxNGDefinePtr * def2)
3877{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003878 xmlRelaxNGDefinePtr *basedef2 = def2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003879
Daniel Veillard154877e2003-01-30 12:17:05 +00003880 if ((def1 == NULL) || (def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003881 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003882 if ((*def1 == NULL) || (*def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003883 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003884 while (*def1 != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003885 while ((*def2) != NULL) {
3886 if (xmlRelaxNGCompareNameClasses(*def1, *def2) == 0)
3887 return (0);
3888 def2++;
3889 }
3890 def2 = basedef2;
3891 def1++;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003892 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003893 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003894}
3895
3896/**
Daniel Veillardce192eb2003-04-16 15:58:05 +00003897 * xmlRelaxNGGenerateAttributes:
3898 * @ctxt: a Relax-NG parser context
3899 * @def: the definition definition
3900 *
3901 * Check if the definition can only generate attributes
3902 *
3903 * Returns 1 if yes, 0 if no and -1 in case of error.
3904 */
3905static int
3906xmlRelaxNGGenerateAttributes(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003907 xmlRelaxNGDefinePtr def)
3908{
Daniel Veillardce192eb2003-04-16 15:58:05 +00003909 xmlRelaxNGDefinePtr parent, cur, tmp;
3910
3911 /*
3912 * Don't run that check in case of error. Infinite recursion
3913 * becomes possible.
3914 */
3915 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003916 return (-1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003917
3918 parent = NULL;
3919 cur = def;
3920 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003921 if ((cur->type == XML_RELAXNG_ELEMENT) ||
3922 (cur->type == XML_RELAXNG_TEXT) ||
3923 (cur->type == XML_RELAXNG_DATATYPE) ||
3924 (cur->type == XML_RELAXNG_PARAM) ||
3925 (cur->type == XML_RELAXNG_LIST) ||
3926 (cur->type == XML_RELAXNG_VALUE) ||
3927 (cur->type == XML_RELAXNG_EMPTY))
3928 return (0);
3929 if ((cur->type == XML_RELAXNG_CHOICE) ||
3930 (cur->type == XML_RELAXNG_INTERLEAVE) ||
3931 (cur->type == XML_RELAXNG_GROUP) ||
3932 (cur->type == XML_RELAXNG_ONEORMORE) ||
3933 (cur->type == XML_RELAXNG_ZEROORMORE) ||
3934 (cur->type == XML_RELAXNG_OPTIONAL) ||
3935 (cur->type == XML_RELAXNG_PARENTREF) ||
3936 (cur->type == XML_RELAXNG_EXTERNALREF) ||
3937 (cur->type == XML_RELAXNG_REF) ||
3938 (cur->type == XML_RELAXNG_DEF)) {
3939 if (cur->content != NULL) {
3940 parent = cur;
3941 cur = cur->content;
3942 tmp = cur;
3943 while (tmp != NULL) {
3944 tmp->parent = parent;
3945 tmp = tmp->next;
3946 }
3947 continue;
3948 }
3949 }
3950 if (cur == def)
3951 break;
3952 if (cur->next != NULL) {
3953 cur = cur->next;
3954 continue;
3955 }
3956 do {
3957 cur = cur->parent;
3958 if (cur == NULL)
3959 break;
3960 if (cur == def)
3961 return (1);
3962 if (cur->next != NULL) {
3963 cur = cur->next;
3964 break;
3965 }
3966 } while (cur != NULL);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003967 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003968 return (1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003969}
Daniel Veillard4c004142003-10-07 11:33:24 +00003970
Daniel Veillardce192eb2003-04-16 15:58:05 +00003971/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003972 * xmlRelaxNGGetElements:
3973 * @ctxt: a Relax-NG parser context
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003974 * @def: the definition definition
3975 * @eora: gather elements (0) or attributes (1)
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003976 *
3977 * Compute the list of top elements a definition can generate
3978 *
3979 * Returns a list of elements or NULL if none was found.
3980 */
3981static xmlRelaxNGDefinePtr *
3982xmlRelaxNGGetElements(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003983 xmlRelaxNGDefinePtr def, int eora)
3984{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003985 xmlRelaxNGDefinePtr *ret = NULL, parent, cur, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003986 int len = 0;
3987 int max = 0;
3988
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003989 /*
3990 * Don't run that check in case of error. Infinite recursion
3991 * becomes possible.
3992 */
3993 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003994 return (NULL);
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003995
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003996 parent = NULL;
3997 cur = def;
3998 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003999 if (((eora == 0) && ((cur->type == XML_RELAXNG_ELEMENT) ||
4000 (cur->type == XML_RELAXNG_TEXT))) ||
4001 ((eora == 1) && (cur->type == XML_RELAXNG_ATTRIBUTE))) {
4002 if (ret == NULL) {
4003 max = 10;
4004 ret = (xmlRelaxNGDefinePtr *)
4005 xmlMalloc((max + 1) * sizeof(xmlRelaxNGDefinePtr));
4006 if (ret == NULL) {
4007 xmlRngPErrMemory(ctxt, "getting element list\n");
4008 return (NULL);
4009 }
4010 } else if (max <= len) {
Daniel Veillard079f6a72004-09-23 13:15:03 +00004011 xmlRelaxNGDefinePtr *temp;
4012
Daniel Veillard4c004142003-10-07 11:33:24 +00004013 max *= 2;
Daniel Veillard079f6a72004-09-23 13:15:03 +00004014 temp = xmlRealloc(ret,
Daniel Veillard4c004142003-10-07 11:33:24 +00004015 (max + 1) * sizeof(xmlRelaxNGDefinePtr));
Daniel Veillard079f6a72004-09-23 13:15:03 +00004016 if (temp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004017 xmlRngPErrMemory(ctxt, "getting element list\n");
Daniel Veillard079f6a72004-09-23 13:15:03 +00004018 xmlFree(ret);
Daniel Veillard4c004142003-10-07 11:33:24 +00004019 return (NULL);
4020 }
Daniel Veillard079f6a72004-09-23 13:15:03 +00004021 ret = temp;
Daniel Veillard4c004142003-10-07 11:33:24 +00004022 }
4023 ret[len++] = cur;
4024 ret[len] = NULL;
4025 } else if ((cur->type == XML_RELAXNG_CHOICE) ||
4026 (cur->type == XML_RELAXNG_INTERLEAVE) ||
4027 (cur->type == XML_RELAXNG_GROUP) ||
4028 (cur->type == XML_RELAXNG_ONEORMORE) ||
4029 (cur->type == XML_RELAXNG_ZEROORMORE) ||
4030 (cur->type == XML_RELAXNG_OPTIONAL) ||
4031 (cur->type == XML_RELAXNG_PARENTREF) ||
4032 (cur->type == XML_RELAXNG_REF) ||
William M. Brack236c8c02004-03-20 11:32:36 +00004033 (cur->type == XML_RELAXNG_DEF) ||
4034 (cur->type == XML_RELAXNG_EXTERNALREF)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004035 /*
4036 * Don't go within elements or attributes or string values.
4037 * Just gather the element top list
4038 */
4039 if (cur->content != NULL) {
4040 parent = cur;
4041 cur = cur->content;
4042 tmp = cur;
4043 while (tmp != NULL) {
4044 tmp->parent = parent;
4045 tmp = tmp->next;
4046 }
4047 continue;
4048 }
4049 }
4050 if (cur == def)
4051 break;
4052 if (cur->next != NULL) {
4053 cur = cur->next;
4054 continue;
4055 }
4056 do {
4057 cur = cur->parent;
4058 if (cur == NULL)
4059 break;
4060 if (cur == def)
4061 return (ret);
4062 if (cur->next != NULL) {
4063 cur = cur->next;
4064 break;
4065 }
4066 } while (cur != NULL);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004067 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004068 return (ret);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004069}
Daniel Veillard4c004142003-10-07 11:33:24 +00004070
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004071/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004072 * xmlRelaxNGCheckChoiceDeterminism:
4073 * @ctxt: a Relax-NG parser context
4074 * @def: the choice definition
4075 *
4076 * Also used to find indeterministic pattern in choice
4077 */
4078static void
4079xmlRelaxNGCheckChoiceDeterminism(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004080 xmlRelaxNGDefinePtr def)
4081{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004082 xmlRelaxNGDefinePtr **list;
4083 xmlRelaxNGDefinePtr cur;
4084 int nbchild = 0, i, j, ret;
4085 int is_nullable = 0;
4086 int is_indeterminist = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004087 xmlHashTablePtr triage = NULL;
4088 int is_triable = 1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004089
Daniel Veillard4c004142003-10-07 11:33:24 +00004090 if ((def == NULL) || (def->type != XML_RELAXNG_CHOICE))
4091 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004092
Daniel Veillarde063f482003-03-21 16:53:17 +00004093 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004094 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004095
Daniel Veillardfd573f12003-03-16 17:52:32 +00004096 /*
4097 * Don't run that check in case of error. Infinite recursion
4098 * becomes possible.
4099 */
4100 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004101 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004102
4103 is_nullable = xmlRelaxNGIsNullable(def);
4104
4105 cur = def->content;
4106 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004107 nbchild++;
4108 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004109 }
4110
4111 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004112 sizeof(xmlRelaxNGDefinePtr
4113 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004114 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004115 xmlRngPErrMemory(ctxt, "building choice\n");
4116 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004117 }
4118 i = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004119 /*
4120 * a bit strong but safe
4121 */
4122 if (is_nullable == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004123 triage = xmlHashCreate(10);
Daniel Veillarde063f482003-03-21 16:53:17 +00004124 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004125 is_triable = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004126 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004127 cur = def->content;
4128 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004129 list[i] = xmlRelaxNGGetElements(ctxt, cur, 0);
4130 if ((list[i] == NULL) || (list[i][0] == NULL)) {
4131 is_triable = 0;
4132 } else if (is_triable == 1) {
4133 xmlRelaxNGDefinePtr *tmp;
4134 int res;
Daniel Veillarde063f482003-03-21 16:53:17 +00004135
Daniel Veillard4c004142003-10-07 11:33:24 +00004136 tmp = list[i];
4137 while ((*tmp != NULL) && (is_triable == 1)) {
4138 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4139 res = xmlHashAddEntry2(triage,
4140 BAD_CAST "#text", NULL,
4141 (void *) cur);
4142 if (res != 0)
4143 is_triable = -1;
4144 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4145 ((*tmp)->name != NULL)) {
4146 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4147 res = xmlHashAddEntry2(triage,
4148 (*tmp)->name, NULL,
4149 (void *) cur);
4150 else
4151 res = xmlHashAddEntry2(triage,
4152 (*tmp)->name, (*tmp)->ns,
4153 (void *) cur);
4154 if (res != 0)
4155 is_triable = -1;
4156 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4157 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4158 res = xmlHashAddEntry2(triage,
4159 BAD_CAST "#any", NULL,
4160 (void *) cur);
4161 else
4162 res = xmlHashAddEntry2(triage,
4163 BAD_CAST "#any", (*tmp)->ns,
4164 (void *) cur);
4165 if (res != 0)
4166 is_triable = -1;
4167 } else {
4168 is_triable = -1;
4169 }
4170 tmp++;
4171 }
4172 }
4173 i++;
4174 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004175 }
4176
Daniel Veillard4c004142003-10-07 11:33:24 +00004177 for (i = 0; i < nbchild; i++) {
4178 if (list[i] == NULL)
4179 continue;
4180 for (j = 0; j < i; j++) {
4181 if (list[j] == NULL)
4182 continue;
4183 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4184 if (ret == 0) {
4185 is_indeterminist = 1;
4186 }
4187 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004188 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004189 for (i = 0; i < nbchild; i++) {
4190 if (list[i] != NULL)
4191 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004192 }
4193
4194 xmlFree(list);
4195 if (is_indeterminist) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004196 def->dflags |= IS_INDETERMINIST;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004197 }
Daniel Veillarde063f482003-03-21 16:53:17 +00004198 if (is_triable == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004199 def->dflags |= IS_TRIABLE;
4200 def->data = triage;
Daniel Veillarde063f482003-03-21 16:53:17 +00004201 } else if (triage != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004202 xmlHashFree(triage, NULL);
Daniel Veillarde063f482003-03-21 16:53:17 +00004203 }
4204 def->dflags |= IS_PROCESSED;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004205}
4206
4207/**
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004208 * xmlRelaxNGCheckGroupAttrs:
4209 * @ctxt: a Relax-NG parser context
4210 * @def: the group definition
4211 *
4212 * Detects violations of rule 7.3
4213 */
4214static void
4215xmlRelaxNGCheckGroupAttrs(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004216 xmlRelaxNGDefinePtr def)
4217{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004218 xmlRelaxNGDefinePtr **list;
4219 xmlRelaxNGDefinePtr cur;
4220 int nbchild = 0, i, j, ret;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004221
4222 if ((def == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00004223 ((def->type != XML_RELAXNG_GROUP) &&
4224 (def->type != XML_RELAXNG_ELEMENT)))
4225 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004226
Daniel Veillarde063f482003-03-21 16:53:17 +00004227 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004228 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004229
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004230 /*
4231 * Don't run that check in case of error. Infinite recursion
4232 * becomes possible.
4233 */
4234 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004235 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004236
Daniel Veillardfd573f12003-03-16 17:52:32 +00004237 cur = def->attrs;
4238 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004239 nbchild++;
4240 cur = cur->next;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004241 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004242 cur = def->content;
4243 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004244 nbchild++;
4245 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004246 }
4247
4248 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004249 sizeof(xmlRelaxNGDefinePtr
4250 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004251 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004252 xmlRngPErrMemory(ctxt, "building group\n");
4253 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004254 }
4255 i = 0;
4256 cur = def->attrs;
4257 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004258 list[i] = xmlRelaxNGGetElements(ctxt, cur, 1);
4259 i++;
4260 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004261 }
4262 cur = def->content;
4263 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004264 list[i] = xmlRelaxNGGetElements(ctxt, cur, 1);
4265 i++;
4266 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004267 }
4268
Daniel Veillard4c004142003-10-07 11:33:24 +00004269 for (i = 0; i < nbchild; i++) {
4270 if (list[i] == NULL)
4271 continue;
4272 for (j = 0; j < i; j++) {
4273 if (list[j] == NULL)
4274 continue;
4275 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4276 if (ret == 0) {
4277 xmlRngPErr(ctxt, def->node, XML_RNGP_GROUP_ATTR_CONFLICT,
4278 "Attributes conflicts in group\n", NULL, NULL);
4279 }
4280 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004281 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004282 for (i = 0; i < nbchild; i++) {
4283 if (list[i] != NULL)
4284 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004285 }
4286
4287 xmlFree(list);
Daniel Veillarde063f482003-03-21 16:53:17 +00004288 def->dflags |= IS_PROCESSED;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004289}
4290
4291/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004292 * xmlRelaxNGComputeInterleaves:
4293 * @def: the interleave definition
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004294 * @ctxt: a Relax-NG parser context
Daniel Veillardfd573f12003-03-16 17:52:32 +00004295 * @name: the definition name
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004296 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00004297 * A lot of work for preprocessing interleave definitions
4298 * is potentially needed to get a decent execution speed at runtime
4299 * - trying to get a total order on the element nodes generated
4300 * by the interleaves, order the list of interleave definitions
4301 * following that order.
4302 * - if <text/> is used to handle mixed content, it is better to
4303 * flag this in the define and simplify the runtime checking
4304 * algorithm
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004305 */
4306static void
Daniel Veillardfd573f12003-03-16 17:52:32 +00004307xmlRelaxNGComputeInterleaves(xmlRelaxNGDefinePtr def,
Daniel Veillard4c004142003-10-07 11:33:24 +00004308 xmlRelaxNGParserCtxtPtr ctxt,
4309 xmlChar * name ATTRIBUTE_UNUSED)
4310{
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004311 xmlRelaxNGDefinePtr cur, *tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004312
Daniel Veillardfd573f12003-03-16 17:52:32 +00004313 xmlRelaxNGPartitionPtr partitions = NULL;
4314 xmlRelaxNGInterleaveGroupPtr *groups = NULL;
4315 xmlRelaxNGInterleaveGroupPtr group;
Daniel Veillard4c004142003-10-07 11:33:24 +00004316 int i, j, ret, res;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004317 int nbgroups = 0;
4318 int nbchild = 0;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004319 int is_mixed = 0;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004320 int is_determinist = 1;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004321
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004322 /*
4323 * Don't run that check in case of error. Infinite recursion
4324 * becomes possible.
4325 */
4326 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004327 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004328
Daniel Veillardfd573f12003-03-16 17:52:32 +00004329#ifdef DEBUG_INTERLEAVE
4330 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00004331 "xmlRelaxNGComputeInterleaves(%s)\n", name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004332#endif
4333 cur = def->content;
4334 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004335 nbchild++;
4336 cur = cur->next;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004337 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004338
Daniel Veillardfd573f12003-03-16 17:52:32 +00004339#ifdef DEBUG_INTERLEAVE
4340 xmlGenericError(xmlGenericErrorContext, " %d child\n", nbchild);
4341#endif
4342 groups = (xmlRelaxNGInterleaveGroupPtr *)
Daniel Veillard4c004142003-10-07 11:33:24 +00004343 xmlMalloc(nbchild * sizeof(xmlRelaxNGInterleaveGroupPtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004344 if (groups == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004345 goto error;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004346 cur = def->content;
4347 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004348 groups[nbgroups] = (xmlRelaxNGInterleaveGroupPtr)
4349 xmlMalloc(sizeof(xmlRelaxNGInterleaveGroup));
4350 if (groups[nbgroups] == NULL)
4351 goto error;
4352 if (cur->type == XML_RELAXNG_TEXT)
4353 is_mixed++;
4354 groups[nbgroups]->rule = cur;
4355 groups[nbgroups]->defs = xmlRelaxNGGetElements(ctxt, cur, 0);
4356 groups[nbgroups]->attrs = xmlRelaxNGGetElements(ctxt, cur, 1);
4357 nbgroups++;
4358 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004359 }
4360#ifdef DEBUG_INTERLEAVE
4361 xmlGenericError(xmlGenericErrorContext, " %d groups\n", nbgroups);
4362#endif
4363
4364 /*
4365 * Let's check that all rules makes a partitions according to 7.4
4366 */
4367 partitions = (xmlRelaxNGPartitionPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00004368 xmlMalloc(sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004369 if (partitions == NULL)
4370 goto error;
Daniel Veillard20863822003-03-22 17:51:47 +00004371 memset(partitions, 0, sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004372 partitions->nbgroups = nbgroups;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004373 partitions->triage = xmlHashCreate(nbgroups);
Daniel Veillard4c004142003-10-07 11:33:24 +00004374 for (i = 0; i < nbgroups; i++) {
4375 group = groups[i];
4376 for (j = i + 1; j < nbgroups; j++) {
4377 if (groups[j] == NULL)
4378 continue;
4379
4380 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->defs,
4381 groups[j]->defs);
4382 if (ret == 0) {
4383 xmlRngPErr(ctxt, def->node, XML_RNGP_ELEM_TEXT_CONFLICT,
4384 "Element or text conflicts in interleave\n",
4385 NULL, NULL);
4386 }
4387 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->attrs,
4388 groups[j]->attrs);
4389 if (ret == 0) {
4390 xmlRngPErr(ctxt, def->node, XML_RNGP_ATTR_CONFLICT,
4391 "Attributes conflicts in interleave\n", NULL,
4392 NULL);
4393 }
4394 }
4395 tmp = group->defs;
4396 if ((tmp != NULL) && (*tmp != NULL)) {
4397 while (*tmp != NULL) {
4398 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4399 res = xmlHashAddEntry2(partitions->triage,
4400 BAD_CAST "#text", NULL,
4401 (void *) (long) (i + 1));
4402 if (res != 0)
4403 is_determinist = -1;
4404 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4405 ((*tmp)->name != NULL)) {
4406 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4407 res = xmlHashAddEntry2(partitions->triage,
4408 (*tmp)->name, NULL,
4409 (void *) (long) (i + 1));
4410 else
4411 res = xmlHashAddEntry2(partitions->triage,
4412 (*tmp)->name, (*tmp)->ns,
4413 (void *) (long) (i + 1));
4414 if (res != 0)
4415 is_determinist = -1;
4416 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4417 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4418 res = xmlHashAddEntry2(partitions->triage,
4419 BAD_CAST "#any", NULL,
4420 (void *) (long) (i + 1));
4421 else
4422 res = xmlHashAddEntry2(partitions->triage,
4423 BAD_CAST "#any", (*tmp)->ns,
4424 (void *) (long) (i + 1));
4425 if ((*tmp)->nameClass != NULL)
4426 is_determinist = 2;
4427 if (res != 0)
4428 is_determinist = -1;
4429 } else {
4430 is_determinist = -1;
4431 }
4432 tmp++;
4433 }
4434 } else {
4435 is_determinist = 0;
4436 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004437 }
4438 partitions->groups = groups;
4439
4440 /*
4441 * and save the partition list back in the def
4442 */
4443 def->data = partitions;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004444 if (is_mixed != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004445 def->dflags |= IS_MIXED;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004446 if (is_determinist == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00004447 partitions->flags = IS_DETERMINIST;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004448 if (is_determinist == 2)
Daniel Veillard4c004142003-10-07 11:33:24 +00004449 partitions->flags = IS_DETERMINIST | IS_NEEDCHECK;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004450 return;
4451
Daniel Veillard4c004142003-10-07 11:33:24 +00004452 error:
4453 xmlRngPErrMemory(ctxt, "in interleave computation\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004454 if (groups != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004455 for (i = 0; i < nbgroups; i++)
4456 if (groups[i] != NULL) {
4457 if (groups[i]->defs != NULL)
4458 xmlFree(groups[i]->defs);
4459 xmlFree(groups[i]);
4460 }
4461 xmlFree(groups);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004462 }
4463 xmlRelaxNGFreePartition(partitions);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004464}
4465
4466/**
4467 * xmlRelaxNGParseInterleave:
4468 * @ctxt: a Relax-NG parser context
4469 * @node: the data node.
4470 *
4471 * parse the content of a RelaxNG interleave node.
4472 *
4473 * Returns the definition pointer or NULL in case of error
4474 */
4475static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004476xmlRelaxNGParseInterleave(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4477{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004478 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004479 xmlRelaxNGDefinePtr last = NULL, cur;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004480 xmlNodePtr child;
4481
Daniel Veillardfd573f12003-03-16 17:52:32 +00004482 def = xmlRelaxNGNewDefine(ctxt, node);
4483 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004484 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004485 }
4486 def->type = XML_RELAXNG_INTERLEAVE;
4487
4488 if (ctxt->interleaves == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004489 ctxt->interleaves = xmlHashCreate(10);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004490 if (ctxt->interleaves == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004491 xmlRngPErrMemory(ctxt, "create interleaves\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004492 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004493 char name[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00004494
Daniel Veillard4c004142003-10-07 11:33:24 +00004495 snprintf(name, 32, "interleave%d", ctxt->nbInterleaves++);
4496 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST name, def) < 0) {
4497 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_ADD,
4498 "Failed to add %s to hash table\n",
4499 (const xmlChar *) name, NULL);
4500 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004501 }
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004502 child = node->children;
Daniel Veillardd2298792003-02-14 16:54:11 +00004503 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004504 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_NO_CONTENT,
4505 "Element interleave is empty\n", NULL, NULL);
Daniel Veillard1564e6e2003-03-15 21:30:25 +00004506 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004507 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004508 if (IS_RELAXNG(child, "element")) {
4509 cur = xmlRelaxNGParseElement(ctxt, child);
4510 } else {
4511 cur = xmlRelaxNGParsePattern(ctxt, child);
4512 }
4513 if (cur != NULL) {
4514 cur->parent = def;
4515 if (last == NULL) {
4516 def->content = last = cur;
4517 } else {
4518 last->next = cur;
4519 last = cur;
4520 }
4521 }
4522 child = child->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004523 }
4524
Daniel Veillard4c004142003-10-07 11:33:24 +00004525 return (def);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004526}
Daniel Veillard6eadf632003-01-23 18:29:16 +00004527
4528/**
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004529 * xmlRelaxNGParseInclude:
4530 * @ctxt: a Relax-NG parser context
4531 * @node: the include node
4532 *
4533 * Integrate the content of an include node in the current grammar
4534 *
4535 * Returns 0 in case of success or -1 in case of error
4536 */
4537static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004538xmlRelaxNGParseInclude(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4539{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004540 xmlRelaxNGIncludePtr incl;
4541 xmlNodePtr root;
4542 int ret = 0, tmp;
4543
Daniel Veillard807daf82004-02-22 22:13:27 +00004544 incl = node->psvi;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004545 if (incl == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004546 xmlRngPErr(ctxt, node, XML_RNGP_INCLUDE_EMPTY,
4547 "Include node has no data\n", NULL, NULL);
4548 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004549 }
4550 root = xmlDocGetRootElement(incl->doc);
4551 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004552 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY, "Include document is empty\n",
4553 NULL, NULL);
4554 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004555 }
4556 if (!xmlStrEqual(root->name, BAD_CAST "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004557 xmlRngPErr(ctxt, node, XML_RNGP_GRAMMAR_MISSING,
4558 "Include document root is not a grammar\n", NULL, NULL);
4559 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004560 }
4561
4562 /*
4563 * Merge the definition from both the include and the internal list
4564 */
4565 if (root->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004566 tmp = xmlRelaxNGParseGrammarContent(ctxt, root->children);
4567 if (tmp != 0)
4568 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004569 }
4570 if (node->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004571 tmp = xmlRelaxNGParseGrammarContent(ctxt, node->children);
4572 if (tmp != 0)
4573 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004574 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004575 return (ret);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004576}
4577
4578/**
Daniel Veillard276be4a2003-01-24 01:03:34 +00004579 * xmlRelaxNGParseDefine:
4580 * @ctxt: a Relax-NG parser context
4581 * @node: the define node
4582 *
4583 * parse the content of a RelaxNG define element node.
4584 *
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004585 * Returns 0 in case of success or -1 in case of error
Daniel Veillard276be4a2003-01-24 01:03:34 +00004586 */
4587static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004588xmlRelaxNGParseDefine(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4589{
Daniel Veillard276be4a2003-01-24 01:03:34 +00004590 xmlChar *name;
4591 int ret = 0, tmp;
4592 xmlRelaxNGDefinePtr def;
4593 const xmlChar *olddefine;
4594
4595 name = xmlGetProp(node, BAD_CAST "name");
4596 if (name == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004597 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_NAME_MISSING,
4598 "define has no name\n", NULL, NULL);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004599 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004600 xmlRelaxNGNormExtSpace(name);
4601 if (xmlValidateNCName(name, 0)) {
4602 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_DEFINE_NAME,
4603 "define name '%s' is not an NCName\n", name, NULL);
4604 }
4605 def = xmlRelaxNGNewDefine(ctxt, node);
4606 if (def == NULL) {
4607 xmlFree(name);
4608 return (-1);
4609 }
4610 def->type = XML_RELAXNG_DEF;
4611 def->name = name;
4612 if (node->children == NULL) {
4613 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_EMPTY,
4614 "define has no children\n", NULL, NULL);
4615 } else {
4616 olddefine = ctxt->define;
4617 ctxt->define = name;
4618 def->content =
4619 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4620 ctxt->define = olddefine;
4621 }
4622 if (ctxt->grammar->defs == NULL)
4623 ctxt->grammar->defs = xmlHashCreate(10);
4624 if (ctxt->grammar->defs == NULL) {
4625 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4626 "Could not create definition hash\n", NULL, NULL);
4627 ret = -1;
4628 } else {
4629 tmp = xmlHashAddEntry(ctxt->grammar->defs, name, def);
4630 if (tmp < 0) {
4631 xmlRelaxNGDefinePtr prev;
Daniel Veillard154877e2003-01-30 12:17:05 +00004632
Daniel Veillard4c004142003-10-07 11:33:24 +00004633 prev = xmlHashLookup(ctxt->grammar->defs, name);
4634 if (prev == NULL) {
4635 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4636 "Internal error on define aggregation of %s\n",
4637 name, NULL);
4638 ret = -1;
4639 } else {
4640 while (prev->nextHash != NULL)
4641 prev = prev->nextHash;
4642 prev->nextHash = def;
4643 }
4644 }
4645 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00004646 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004647 return (ret);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004648}
4649
4650/**
Daniel Veillard81c51e12009-08-14 18:52:10 +02004651 * xmlRelaxNGParseImportRef:
4652 * @payload: the parser context
4653 * @data: the current grammar
4654 * @name: the reference name
4655 *
4656 * Import import one references into the current grammar
4657 */
4658static void
4659xmlRelaxNGParseImportRef(void *payload, void *data, xmlChar *name) {
4660 xmlRelaxNGParserCtxtPtr ctxt = (xmlRelaxNGParserCtxtPtr) data;
4661 xmlRelaxNGDefinePtr def = (xmlRelaxNGDefinePtr) payload;
4662 int tmp;
4663
Daniel Veillardaa422d92009-09-24 11:31:48 +02004664 def->dflags |= IS_EXTERNAL_REF;
4665
Daniel Veillard81c51e12009-08-14 18:52:10 +02004666 tmp = xmlHashAddEntry(ctxt->grammar->refs, name, def);
4667 if (tmp < 0) {
4668 xmlRelaxNGDefinePtr prev;
4669
4670 prev = (xmlRelaxNGDefinePtr)
4671 xmlHashLookup(ctxt->grammar->refs, def->name);
4672 if (prev == NULL) {
4673 if (def->name != NULL) {
4674 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4675 "Error refs definitions '%s'\n",
4676 def->name, NULL);
4677 } else {
4678 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4679 "Error refs definitions\n",
4680 NULL, NULL);
4681 }
4682 } else {
4683 def->nextHash = prev->nextHash;
4684 prev->nextHash = def;
4685 }
4686 }
4687}
4688
4689/**
4690 * xmlRelaxNGParseImportRefs:
4691 * @ctxt: the parser context
4692 * @grammar: the sub grammar
4693 *
4694 * Import references from the subgrammar into the current grammar
4695 *
4696 * Returns 0 in case of success, -1 in case of failure
4697 */
4698static int
4699xmlRelaxNGParseImportRefs(xmlRelaxNGParserCtxtPtr ctxt,
4700 xmlRelaxNGGrammarPtr grammar) {
4701 if ((ctxt == NULL) || (grammar == NULL) || (ctxt->grammar == NULL))
4702 return(-1);
4703 if (grammar->refs == NULL)
4704 return(0);
4705 if (ctxt->grammar->refs == NULL)
4706 ctxt->grammar->refs = xmlHashCreate(10);
4707 if (ctxt->grammar->refs == NULL) {
4708 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4709 "Could not create references hash\n", NULL, NULL);
4710 return(-1);
4711 }
4712 xmlHashScan(grammar->refs, xmlRelaxNGParseImportRef, ctxt);
Daniel Veillardec18c962009-08-26 18:37:43 +02004713 return(0);
Daniel Veillard81c51e12009-08-14 18:52:10 +02004714}
4715
4716/**
Daniel Veillardfebcca42003-02-16 15:44:18 +00004717 * xmlRelaxNGProcessExternalRef:
4718 * @ctxt: the parser context
4719 * @node: the externlRef node
4720 *
4721 * Process and compile an externlRef node
4722 *
4723 * Returns the xmlRelaxNGDefinePtr or NULL in case of error
4724 */
4725static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004726xmlRelaxNGProcessExternalRef(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4727{
Daniel Veillardfebcca42003-02-16 15:44:18 +00004728 xmlRelaxNGDocumentPtr docu;
4729 xmlNodePtr root, tmp;
4730 xmlChar *ns;
Daniel Veillard77648bb2003-02-20 15:03:22 +00004731 int newNs = 0, oldflags;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004732 xmlRelaxNGDefinePtr def;
4733
Daniel Veillard807daf82004-02-22 22:13:27 +00004734 docu = node->psvi;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004735 if (docu != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004736 def = xmlRelaxNGNewDefine(ctxt, node);
4737 if (def == NULL)
4738 return (NULL);
4739 def->type = XML_RELAXNG_EXTERNALREF;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004740
Daniel Veillard4c004142003-10-07 11:33:24 +00004741 if (docu->content == NULL) {
4742 /*
4743 * Then do the parsing for good
4744 */
4745 root = xmlDocGetRootElement(docu->doc);
4746 if (root == NULL) {
4747 xmlRngPErr(ctxt, node, XML_RNGP_EXTERNALREF_EMTPY,
4748 "xmlRelaxNGParse: %s is empty\n", ctxt->URL,
4749 NULL);
4750 return (NULL);
4751 }
4752 /*
4753 * ns transmission rules
4754 */
4755 ns = xmlGetProp(root, BAD_CAST "ns");
4756 if (ns == NULL) {
4757 tmp = node;
4758 while ((tmp != NULL) && (tmp->type == XML_ELEMENT_NODE)) {
4759 ns = xmlGetProp(tmp, BAD_CAST "ns");
4760 if (ns != NULL) {
4761 break;
4762 }
4763 tmp = tmp->parent;
4764 }
4765 if (ns != NULL) {
4766 xmlSetProp(root, BAD_CAST "ns", ns);
4767 newNs = 1;
4768 xmlFree(ns);
4769 }
4770 } else {
4771 xmlFree(ns);
4772 }
Daniel Veillardfebcca42003-02-16 15:44:18 +00004773
Daniel Veillard4c004142003-10-07 11:33:24 +00004774 /*
4775 * Parsing to get a precompiled schemas.
4776 */
4777 oldflags = ctxt->flags;
4778 ctxt->flags |= XML_RELAXNG_IN_EXTERNALREF;
4779 docu->schema = xmlRelaxNGParseDocument(ctxt, root);
4780 ctxt->flags = oldflags;
4781 if ((docu->schema != NULL) &&
4782 (docu->schema->topgrammar != NULL)) {
4783 docu->content = docu->schema->topgrammar->start;
Daniel Veillard81c51e12009-08-14 18:52:10 +02004784 if (docu->schema->topgrammar->refs)
4785 xmlRelaxNGParseImportRefs(ctxt, docu->schema->topgrammar);
Daniel Veillard4c004142003-10-07 11:33:24 +00004786 }
4787
4788 /*
4789 * the externalRef may be reused in a different ns context
4790 */
4791 if (newNs == 1) {
4792 xmlUnsetProp(root, BAD_CAST "ns");
4793 }
4794 }
4795 def->content = docu->content;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004796 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004797 def = NULL;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004798 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004799 return (def);
Daniel Veillardfebcca42003-02-16 15:44:18 +00004800}
4801
4802/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00004803 * xmlRelaxNGParsePattern:
4804 * @ctxt: a Relax-NG parser context
4805 * @node: the pattern node.
4806 *
4807 * parse the content of a RelaxNG pattern node.
4808 *
Daniel Veillard276be4a2003-01-24 01:03:34 +00004809 * Returns the definition pointer or NULL in case of error or if no
4810 * pattern is generated.
Daniel Veillard6eadf632003-01-23 18:29:16 +00004811 */
4812static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004813xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4814{
Daniel Veillard6eadf632003-01-23 18:29:16 +00004815 xmlRelaxNGDefinePtr def = NULL;
4816
Daniel Veillardd2298792003-02-14 16:54:11 +00004817 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004818 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00004819 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004820 if (IS_RELAXNG(node, "element")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004821 def = xmlRelaxNGParseElement(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004822 } else if (IS_RELAXNG(node, "attribute")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004823 def = xmlRelaxNGParseAttribute(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004824 } else if (IS_RELAXNG(node, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004825 def = xmlRelaxNGNewDefine(ctxt, node);
4826 if (def == NULL)
4827 return (NULL);
4828 def->type = XML_RELAXNG_EMPTY;
4829 if (node->children != NULL) {
4830 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_NOT_EMPTY,
4831 "empty: had a child node\n", NULL, NULL);
4832 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004833 } else if (IS_RELAXNG(node, "text")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004834 def = xmlRelaxNGNewDefine(ctxt, node);
4835 if (def == NULL)
4836 return (NULL);
4837 def->type = XML_RELAXNG_TEXT;
4838 if (node->children != NULL) {
4839 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_HAS_CHILD,
4840 "text: had a child node\n", NULL, NULL);
4841 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004842 } else if (IS_RELAXNG(node, "zeroOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004843 def = xmlRelaxNGNewDefine(ctxt, node);
4844 if (def == NULL)
4845 return (NULL);
4846 def->type = XML_RELAXNG_ZEROORMORE;
4847 if (node->children == NULL) {
4848 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4849 "Element %s is empty\n", node->name, NULL);
4850 } else {
4851 def->content =
4852 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4853 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004854 } else if (IS_RELAXNG(node, "oneOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004855 def = xmlRelaxNGNewDefine(ctxt, node);
4856 if (def == NULL)
4857 return (NULL);
4858 def->type = XML_RELAXNG_ONEORMORE;
4859 if (node->children == NULL) {
4860 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4861 "Element %s is empty\n", node->name, NULL);
4862 } else {
4863 def->content =
4864 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4865 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004866 } else if (IS_RELAXNG(node, "optional")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004867 def = xmlRelaxNGNewDefine(ctxt, node);
4868 if (def == NULL)
4869 return (NULL);
4870 def->type = XML_RELAXNG_OPTIONAL;
4871 if (node->children == NULL) {
4872 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4873 "Element %s is empty\n", node->name, NULL);
4874 } else {
4875 def->content =
4876 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4877 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004878 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004879 def = xmlRelaxNGNewDefine(ctxt, node);
4880 if (def == NULL)
4881 return (NULL);
4882 def->type = XML_RELAXNG_CHOICE;
4883 if (node->children == NULL) {
4884 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4885 "Element %s is empty\n", node->name, NULL);
4886 } else {
4887 def->content =
4888 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4889 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004890 } else if (IS_RELAXNG(node, "group")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004891 def = xmlRelaxNGNewDefine(ctxt, node);
4892 if (def == NULL)
4893 return (NULL);
4894 def->type = XML_RELAXNG_GROUP;
4895 if (node->children == NULL) {
4896 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4897 "Element %s is empty\n", node->name, NULL);
4898 } else {
4899 def->content =
4900 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4901 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004902 } else if (IS_RELAXNG(node, "ref")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004903 def = xmlRelaxNGNewDefine(ctxt, node);
4904 if (def == NULL)
4905 return (NULL);
4906 def->type = XML_RELAXNG_REF;
4907 def->name = xmlGetProp(node, BAD_CAST "name");
4908 if (def->name == NULL) {
4909 xmlRngPErr(ctxt, node, XML_RNGP_REF_NO_NAME, "ref has no name\n",
4910 NULL, NULL);
4911 } else {
4912 xmlRelaxNGNormExtSpace(def->name);
4913 if (xmlValidateNCName(def->name, 0)) {
4914 xmlRngPErr(ctxt, node, XML_RNGP_REF_NAME_INVALID,
4915 "ref name '%s' is not an NCName\n", def->name,
4916 NULL);
4917 }
4918 }
4919 if (node->children != NULL) {
4920 xmlRngPErr(ctxt, node, XML_RNGP_REF_NOT_EMPTY, "ref is not empty\n",
4921 NULL, NULL);
4922 }
4923 if (ctxt->grammar->refs == NULL)
4924 ctxt->grammar->refs = xmlHashCreate(10);
4925 if (ctxt->grammar->refs == NULL) {
4926 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4927 "Could not create references hash\n", NULL, NULL);
4928 def = NULL;
4929 } else {
4930 int tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004931
Daniel Veillard4c004142003-10-07 11:33:24 +00004932 tmp = xmlHashAddEntry(ctxt->grammar->refs, def->name, def);
4933 if (tmp < 0) {
4934 xmlRelaxNGDefinePtr prev;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004935
Daniel Veillard4c004142003-10-07 11:33:24 +00004936 prev = (xmlRelaxNGDefinePtr)
4937 xmlHashLookup(ctxt->grammar->refs, def->name);
4938 if (prev == NULL) {
4939 if (def->name != NULL) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004940 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4941 "Error refs definitions '%s'\n",
4942 def->name, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004943 } else {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004944 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4945 "Error refs definitions\n",
4946 NULL, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004947 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004948 def = NULL;
4949 } else {
4950 def->nextHash = prev->nextHash;
4951 prev->nextHash = def;
4952 }
4953 }
4954 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00004955 } else if (IS_RELAXNG(node, "data")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004956 def = xmlRelaxNGParseData(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00004957 } else if (IS_RELAXNG(node, "value")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004958 def = xmlRelaxNGParseValue(ctxt, node);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00004959 } else if (IS_RELAXNG(node, "list")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004960 def = xmlRelaxNGNewDefine(ctxt, node);
4961 if (def == NULL)
4962 return (NULL);
4963 def->type = XML_RELAXNG_LIST;
4964 if (node->children == NULL) {
4965 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4966 "Element %s is empty\n", node->name, NULL);
4967 } else {
4968 def->content =
4969 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4970 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004971 } else if (IS_RELAXNG(node, "interleave")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004972 def = xmlRelaxNGParseInterleave(ctxt, node);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00004973 } else if (IS_RELAXNG(node, "externalRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004974 def = xmlRelaxNGProcessExternalRef(ctxt, node);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004975 } else if (IS_RELAXNG(node, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004976 def = xmlRelaxNGNewDefine(ctxt, node);
4977 if (def == NULL)
4978 return (NULL);
4979 def->type = XML_RELAXNG_NOT_ALLOWED;
4980 if (node->children != NULL) {
4981 xmlRngPErr(ctxt, node, XML_RNGP_NOTALLOWED_NOT_EMPTY,
4982 "xmlRelaxNGParse: notAllowed element is not empty\n",
4983 NULL, NULL);
4984 }
Daniel Veillard419a7682003-02-03 23:22:49 +00004985 } else if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004986 xmlRelaxNGGrammarPtr grammar, old;
4987 xmlRelaxNGGrammarPtr oldparent;
Daniel Veillard419a7682003-02-03 23:22:49 +00004988
Daniel Veillardc482e262003-02-26 14:48:48 +00004989#ifdef DEBUG_GRAMMAR
Daniel Veillard4c004142003-10-07 11:33:24 +00004990 xmlGenericError(xmlGenericErrorContext,
4991 "Found <grammar> pattern\n");
Daniel Veillardc482e262003-02-26 14:48:48 +00004992#endif
4993
Daniel Veillard4c004142003-10-07 11:33:24 +00004994 oldparent = ctxt->parentgrammar;
4995 old = ctxt->grammar;
4996 ctxt->parentgrammar = old;
4997 grammar = xmlRelaxNGParseGrammar(ctxt, node->children);
4998 if (old != NULL) {
4999 ctxt->grammar = old;
5000 ctxt->parentgrammar = oldparent;
Daniel Veillardc482e262003-02-26 14:48:48 +00005001#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00005002 if (grammar != NULL) {
5003 grammar->next = old->next;
5004 old->next = grammar;
5005 }
Daniel Veillardc482e262003-02-26 14:48:48 +00005006#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00005007 }
5008 if (grammar != NULL)
5009 def = grammar->start;
5010 else
5011 def = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00005012 } else if (IS_RELAXNG(node, "parentRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005013 if (ctxt->parentgrammar == NULL) {
5014 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_PARENT,
5015 "Use of parentRef without a parent grammar\n", NULL,
5016 NULL);
5017 return (NULL);
5018 }
5019 def = xmlRelaxNGNewDefine(ctxt, node);
5020 if (def == NULL)
5021 return (NULL);
5022 def->type = XML_RELAXNG_PARENTREF;
5023 def->name = xmlGetProp(node, BAD_CAST "name");
5024 if (def->name == NULL) {
5025 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_NAME,
5026 "parentRef has no name\n", NULL, NULL);
5027 } else {
5028 xmlRelaxNGNormExtSpace(def->name);
5029 if (xmlValidateNCName(def->name, 0)) {
5030 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NAME_INVALID,
5031 "parentRef name '%s' is not an NCName\n",
5032 def->name, NULL);
5033 }
5034 }
5035 if (node->children != NULL) {
5036 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NOT_EMPTY,
5037 "parentRef is not empty\n", NULL, NULL);
5038 }
5039 if (ctxt->parentgrammar->refs == NULL)
5040 ctxt->parentgrammar->refs = xmlHashCreate(10);
5041 if (ctxt->parentgrammar->refs == NULL) {
5042 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
5043 "Could not create references hash\n", NULL, NULL);
5044 def = NULL;
5045 } else if (def->name != NULL) {
5046 int tmp;
Daniel Veillard419a7682003-02-03 23:22:49 +00005047
Daniel Veillard4c004142003-10-07 11:33:24 +00005048 tmp =
5049 xmlHashAddEntry(ctxt->parentgrammar->refs, def->name, def);
5050 if (tmp < 0) {
5051 xmlRelaxNGDefinePtr prev;
Daniel Veillard419a7682003-02-03 23:22:49 +00005052
Daniel Veillard4c004142003-10-07 11:33:24 +00005053 prev = (xmlRelaxNGDefinePtr)
5054 xmlHashLookup(ctxt->parentgrammar->refs, def->name);
5055 if (prev == NULL) {
5056 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
5057 "Internal error parentRef definitions '%s'\n",
5058 def->name, NULL);
5059 def = NULL;
5060 } else {
5061 def->nextHash = prev->nextHash;
5062 prev->nextHash = def;
5063 }
5064 }
5065 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005066 } else if (IS_RELAXNG(node, "mixed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005067 if (node->children == NULL) {
5068 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT, "Mixed is empty\n",
5069 NULL, NULL);
5070 def = NULL;
5071 } else {
5072 def = xmlRelaxNGParseInterleave(ctxt, node);
5073 if (def != NULL) {
5074 xmlRelaxNGDefinePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005075
Daniel Veillard4c004142003-10-07 11:33:24 +00005076 if ((def->content != NULL) && (def->content->next != NULL)) {
5077 tmp = xmlRelaxNGNewDefine(ctxt, node);
5078 if (tmp != NULL) {
5079 tmp->type = XML_RELAXNG_GROUP;
5080 tmp->content = def->content;
5081 def->content = tmp;
5082 }
5083 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005084
Daniel Veillard4c004142003-10-07 11:33:24 +00005085 tmp = xmlRelaxNGNewDefine(ctxt, node);
5086 if (tmp == NULL)
5087 return (def);
5088 tmp->type = XML_RELAXNG_TEXT;
5089 tmp->next = def->content;
5090 def->content = tmp;
5091 }
5092 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005093 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005094 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_CONSTRUCT,
5095 "Unexpected node %s is not a pattern\n", node->name,
5096 NULL);
5097 def = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005098 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005099 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005100}
5101
5102/**
5103 * xmlRelaxNGParseAttribute:
5104 * @ctxt: a Relax-NG parser context
5105 * @node: the element node
5106 *
5107 * parse the content of a RelaxNG attribute node.
5108 *
5109 * Returns the definition pointer or NULL in case of error.
5110 */
5111static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005112xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5113{
Daniel Veillardd2298792003-02-14 16:54:11 +00005114 xmlRelaxNGDefinePtr ret, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005115 xmlNodePtr child;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005116 int old_flags;
5117
Daniel Veillardfd573f12003-03-16 17:52:32 +00005118 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +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_ATTRIBUTE;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005122 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005123 child = node->children;
5124 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005125 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_EMPTY,
5126 "xmlRelaxNGParseattribute: attribute has no children\n",
5127 NULL, NULL);
5128 return (ret);
5129 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005130 old_flags = ctxt->flags;
5131 ctxt->flags |= XML_RELAXNG_IN_ATTRIBUTE;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005132 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5133 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005134 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005135
Daniel Veillardd2298792003-02-14 16:54:11 +00005136 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005137 cur = xmlRelaxNGParsePattern(ctxt, child);
5138 if (cur != NULL) {
5139 switch (cur->type) {
5140 case XML_RELAXNG_EMPTY:
5141 case XML_RELAXNG_NOT_ALLOWED:
5142 case XML_RELAXNG_TEXT:
5143 case XML_RELAXNG_ELEMENT:
5144 case XML_RELAXNG_DATATYPE:
5145 case XML_RELAXNG_VALUE:
5146 case XML_RELAXNG_LIST:
5147 case XML_RELAXNG_REF:
5148 case XML_RELAXNG_PARENTREF:
5149 case XML_RELAXNG_EXTERNALREF:
5150 case XML_RELAXNG_DEF:
5151 case XML_RELAXNG_ONEORMORE:
5152 case XML_RELAXNG_ZEROORMORE:
5153 case XML_RELAXNG_OPTIONAL:
5154 case XML_RELAXNG_CHOICE:
5155 case XML_RELAXNG_GROUP:
5156 case XML_RELAXNG_INTERLEAVE:
5157 case XML_RELAXNG_ATTRIBUTE:
5158 ret->content = cur;
5159 cur->parent = ret;
5160 break;
5161 case XML_RELAXNG_START:
5162 case XML_RELAXNG_PARAM:
5163 case XML_RELAXNG_EXCEPT:
5164 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CONTENT,
5165 "attribute has invalid content\n", NULL,
5166 NULL);
5167 break;
5168 case XML_RELAXNG_NOOP:
5169 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_NOOP,
5170 "RNG Internal error, noop found in attribute\n",
5171 NULL, NULL);
5172 break;
5173 }
5174 }
5175 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005176 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005177 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005178 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CHILDREN,
5179 "attribute has multiple children\n", NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005180 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005181 ctxt->flags = old_flags;
Daniel Veillard4c004142003-10-07 11:33:24 +00005182 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005183}
5184
5185/**
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005186 * xmlRelaxNGParseExceptNameClass:
5187 * @ctxt: a Relax-NG parser context
5188 * @node: the except node
Daniel Veillard144fae12003-02-03 13:17:57 +00005189 * @attr: 1 if within an attribute, 0 if within an element
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005190 *
5191 * parse the content of a RelaxNG nameClass node.
5192 *
5193 * Returns the definition pointer or NULL in case of error.
5194 */
5195static xmlRelaxNGDefinePtr
Daniel Veillard144fae12003-02-03 13:17:57 +00005196xmlRelaxNGParseExceptNameClass(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005197 xmlNodePtr node, int attr)
5198{
Daniel Veillard144fae12003-02-03 13:17:57 +00005199 xmlRelaxNGDefinePtr ret, cur, last = NULL;
5200 xmlNodePtr child;
5201
Daniel Veillardd2298792003-02-14 16:54:11 +00005202 if (!IS_RELAXNG(node, "except")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005203 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MISSING,
5204 "Expecting an except node\n", NULL, NULL);
5205 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005206 }
5207 if (node->next != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005208 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MULTIPLE,
5209 "exceptNameClass allows only a single except node\n",
5210 NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005211 }
Daniel Veillard144fae12003-02-03 13:17:57 +00005212 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005213 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_EMPTY, "except has no content\n",
5214 NULL, NULL);
5215 return (NULL);
Daniel Veillard144fae12003-02-03 13:17:57 +00005216 }
5217
Daniel Veillardfd573f12003-03-16 17:52:32 +00005218 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard144fae12003-02-03 13:17:57 +00005219 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005220 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005221 ret->type = XML_RELAXNG_EXCEPT;
Daniel Veillard144fae12003-02-03 13:17:57 +00005222 child = node->children;
5223 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005224 cur = xmlRelaxNGNewDefine(ctxt, child);
5225 if (cur == NULL)
5226 break;
5227 if (attr)
5228 cur->type = XML_RELAXNG_ATTRIBUTE;
5229 else
5230 cur->type = XML_RELAXNG_ELEMENT;
5231
Daniel Veillard419a7682003-02-03 23:22:49 +00005232 if (xmlRelaxNGParseNameClass(ctxt, child, cur) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005233 if (last == NULL) {
5234 ret->content = cur;
5235 } else {
5236 last->next = cur;
5237 }
5238 last = cur;
5239 }
5240 child = child->next;
Daniel Veillard144fae12003-02-03 13:17:57 +00005241 }
5242
Daniel Veillard4c004142003-10-07 11:33:24 +00005243 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005244}
5245
5246/**
5247 * xmlRelaxNGParseNameClass:
5248 * @ctxt: a Relax-NG parser context
5249 * @node: the nameClass node
5250 * @def: the current definition
5251 *
5252 * parse the content of a RelaxNG nameClass node.
5253 *
5254 * Returns the definition pointer or NULL in case of error.
5255 */
5256static xmlRelaxNGDefinePtr
5257xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node,
Daniel Veillard4c004142003-10-07 11:33:24 +00005258 xmlRelaxNGDefinePtr def)
5259{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005260 xmlRelaxNGDefinePtr ret, tmp;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005261 xmlChar *val;
5262
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005263 ret = def;
Daniel Veillard4c004142003-10-07 11:33:24 +00005264 if ((IS_RELAXNG(node, "name")) || (IS_RELAXNG(node, "anyName")) ||
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005265 (IS_RELAXNG(node, "nsName"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005266 if ((def->type != XML_RELAXNG_ELEMENT) &&
5267 (def->type != XML_RELAXNG_ATTRIBUTE)) {
5268 ret = xmlRelaxNGNewDefine(ctxt, node);
5269 if (ret == NULL)
5270 return (NULL);
5271 ret->parent = def;
5272 if (ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE)
5273 ret->type = XML_RELAXNG_ATTRIBUTE;
5274 else
5275 ret->type = XML_RELAXNG_ELEMENT;
5276 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005277 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005278 if (IS_RELAXNG(node, "name")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005279 val = xmlNodeGetContent(node);
5280 xmlRelaxNGNormExtSpace(val);
5281 if (xmlValidateNCName(val, 0)) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005282 if (node->parent != NULL)
5283 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5284 "Element %s name '%s' is not an NCName\n",
5285 node->parent->name, val);
5286 else
5287 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5288 "name '%s' is not an NCName\n",
5289 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005290 }
5291 ret->name = val;
5292 val = xmlGetProp(node, BAD_CAST "ns");
5293 ret->ns = val;
5294 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5295 (val != NULL) &&
5296 (xmlStrEqual(val, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005297 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
Daniel Veillard4c004142003-10-07 11:33:24 +00005298 "Attribute with namespace '%s' is not allowed\n",
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005299 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005300 }
5301 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5302 (val != NULL) &&
5303 (val[0] == 0) && (xmlStrEqual(ret->name, BAD_CAST "xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005304 xmlRngPErr(ctxt, node, XML_RNGP_XMLNS_NAME,
5305 "Attribute with QName 'xmlns' is not allowed\n",
5306 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005307 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005308 } else if (IS_RELAXNG(node, "anyName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005309 ret->name = NULL;
5310 ret->ns = NULL;
5311 if (node->children != NULL) {
5312 ret->nameClass =
5313 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5314 (def->type ==
5315 XML_RELAXNG_ATTRIBUTE));
5316 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005317 } else if (IS_RELAXNG(node, "nsName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005318 ret->name = NULL;
5319 ret->ns = xmlGetProp(node, BAD_CAST "ns");
5320 if (ret->ns == NULL) {
5321 xmlRngPErr(ctxt, node, XML_RNGP_NSNAME_NO_NS,
5322 "nsName has no ns attribute\n", NULL, NULL);
5323 }
5324 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5325 (ret->ns != NULL) &&
5326 (xmlStrEqual
5327 (ret->ns, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
5328 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
5329 "Attribute with namespace '%s' is not allowed\n",
5330 ret->ns, NULL);
5331 }
5332 if (node->children != NULL) {
5333 ret->nameClass =
5334 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5335 (def->type ==
5336 XML_RELAXNG_ATTRIBUTE));
5337 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005338 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005339 xmlNodePtr child;
5340 xmlRelaxNGDefinePtr last = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005341
Daniel Veillard4c004142003-10-07 11:33:24 +00005342 ret = xmlRelaxNGNewDefine(ctxt, node);
5343 if (ret == NULL)
5344 return (NULL);
5345 ret->parent = def;
5346 ret->type = XML_RELAXNG_CHOICE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005347
Daniel Veillard4c004142003-10-07 11:33:24 +00005348 if (node->children == NULL) {
5349 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_EMPTY,
5350 "Element choice is empty\n", NULL, NULL);
5351 } else {
Daniel Veillardfd573f12003-03-16 17:52:32 +00005352
Daniel Veillard4c004142003-10-07 11:33:24 +00005353 child = node->children;
5354 while (child != NULL) {
5355 tmp = xmlRelaxNGParseNameClass(ctxt, child, ret);
5356 if (tmp != NULL) {
5357 if (last == NULL) {
5358 last = ret->nameClass = tmp;
5359 } else {
5360 last->next = tmp;
5361 last = tmp;
5362 }
5363 }
5364 child = child->next;
5365 }
5366 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005367 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005368 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_CONTENT,
5369 "expecting name, anyName, nsName or choice : got %s\n",
Ben Waltona7a6a4b2010-03-15 10:06:36 +01005370 (node == NULL ? (const xmlChar *) "nothing" : node->name),
5371 NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005372 return (NULL);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005373 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005374 if (ret != def) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005375 if (def->nameClass == NULL) {
5376 def->nameClass = ret;
5377 } else {
5378 tmp = def->nameClass;
5379 while (tmp->next != NULL) {
5380 tmp = tmp->next;
5381 }
5382 tmp->next = ret;
5383 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005384 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005385 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005386}
5387
5388/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00005389 * xmlRelaxNGParseElement:
5390 * @ctxt: a Relax-NG parser context
5391 * @node: the element node
5392 *
5393 * parse the content of a RelaxNG element node.
5394 *
5395 * Returns the definition pointer or NULL in case of error.
5396 */
5397static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005398xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5399{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005400 xmlRelaxNGDefinePtr ret, cur, last;
5401 xmlNodePtr child;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005402 const xmlChar *olddefine;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005403
Daniel Veillardfd573f12003-03-16 17:52:32 +00005404 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005405 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005406 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005407 ret->type = XML_RELAXNG_ELEMENT;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005408 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005409 child = node->children;
5410 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005411 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_EMPTY,
5412 "xmlRelaxNGParseElement: element has no children\n",
5413 NULL, NULL);
5414 return (ret);
5415 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005416 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5417 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005418 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005419
Daniel Veillard6eadf632003-01-23 18:29:16 +00005420 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005421 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NO_CONTENT,
5422 "xmlRelaxNGParseElement: element has no content\n",
5423 NULL, NULL);
5424 return (ret);
5425 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005426 olddefine = ctxt->define;
5427 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005428 last = NULL;
5429 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005430 cur = xmlRelaxNGParsePattern(ctxt, child);
5431 if (cur != NULL) {
5432 cur->parent = ret;
5433 switch (cur->type) {
5434 case XML_RELAXNG_EMPTY:
5435 case XML_RELAXNG_NOT_ALLOWED:
5436 case XML_RELAXNG_TEXT:
5437 case XML_RELAXNG_ELEMENT:
5438 case XML_RELAXNG_DATATYPE:
5439 case XML_RELAXNG_VALUE:
5440 case XML_RELAXNG_LIST:
5441 case XML_RELAXNG_REF:
5442 case XML_RELAXNG_PARENTREF:
5443 case XML_RELAXNG_EXTERNALREF:
5444 case XML_RELAXNG_DEF:
5445 case XML_RELAXNG_ZEROORMORE:
5446 case XML_RELAXNG_ONEORMORE:
5447 case XML_RELAXNG_OPTIONAL:
5448 case XML_RELAXNG_CHOICE:
5449 case XML_RELAXNG_GROUP:
5450 case XML_RELAXNG_INTERLEAVE:
5451 if (last == NULL) {
5452 ret->content = last = cur;
5453 } else {
5454 if ((last->type == XML_RELAXNG_ELEMENT) &&
5455 (ret->content == last)) {
5456 ret->content = xmlRelaxNGNewDefine(ctxt, node);
5457 if (ret->content != NULL) {
5458 ret->content->type = XML_RELAXNG_GROUP;
5459 ret->content->content = last;
5460 } else {
5461 ret->content = last;
5462 }
5463 }
5464 last->next = cur;
5465 last = cur;
5466 }
5467 break;
5468 case XML_RELAXNG_ATTRIBUTE:
5469 cur->next = ret->attrs;
5470 ret->attrs = cur;
5471 break;
5472 case XML_RELAXNG_START:
5473 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5474 "RNG Internal error, start found in element\n",
5475 NULL, NULL);
5476 break;
5477 case XML_RELAXNG_PARAM:
5478 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5479 "RNG Internal error, param found in element\n",
5480 NULL, NULL);
5481 break;
5482 case XML_RELAXNG_EXCEPT:
5483 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5484 "RNG Internal error, except found in element\n",
5485 NULL, NULL);
5486 break;
5487 case XML_RELAXNG_NOOP:
5488 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5489 "RNG Internal error, noop found in element\n",
5490 NULL, NULL);
5491 break;
5492 }
5493 }
5494 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005495 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005496 ctxt->define = olddefine;
Daniel Veillard4c004142003-10-07 11:33:24 +00005497 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005498}
5499
5500/**
5501 * xmlRelaxNGParsePatterns:
5502 * @ctxt: a Relax-NG parser context
5503 * @nodes: list of nodes
Daniel Veillard154877e2003-01-30 12:17:05 +00005504 * @group: use an implicit <group> for elements
Daniel Veillard6eadf632003-01-23 18:29:16 +00005505 *
5506 * parse the content of a RelaxNG start node.
5507 *
5508 * Returns the definition pointer or NULL in case of error.
5509 */
5510static xmlRelaxNGDefinePtr
Daniel Veillard154877e2003-01-30 12:17:05 +00005511xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes,
Daniel Veillard4c004142003-10-07 11:33:24 +00005512 int group)
5513{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005514 xmlRelaxNGDefinePtr def = NULL, last = NULL, cur, parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005515
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005516 parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005517 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005518 if (IS_RELAXNG(nodes, "element")) {
5519 cur = xmlRelaxNGParseElement(ctxt, nodes);
5520 if (def == NULL) {
5521 def = last = cur;
5522 } else {
5523 if ((group == 1) && (def->type == XML_RELAXNG_ELEMENT) &&
5524 (def == last)) {
5525 def = xmlRelaxNGNewDefine(ctxt, nodes);
5526 def->type = XML_RELAXNG_GROUP;
5527 def->content = last;
5528 }
5529 last->next = cur;
5530 last = cur;
5531 }
5532 cur->parent = parent;
5533 } else {
5534 cur = xmlRelaxNGParsePattern(ctxt, nodes);
5535 if (cur != NULL) {
5536 if (def == NULL) {
5537 def = last = cur;
5538 } else {
5539 last->next = cur;
5540 last = cur;
5541 }
5542 }
5543 }
5544 nodes = nodes->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005545 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005546 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005547}
5548
5549/**
5550 * xmlRelaxNGParseStart:
5551 * @ctxt: a Relax-NG parser context
5552 * @nodes: start children nodes
5553 *
5554 * parse the content of a RelaxNG start node.
5555 *
5556 * Returns 0 in case of success, -1 in case of error
5557 */
5558static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005559xmlRelaxNGParseStart(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
5560{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005561 int ret = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005562 xmlRelaxNGDefinePtr def = NULL, last;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005563
Daniel Veillardd2298792003-02-14 16:54:11 +00005564 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005565 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY, "start has no children\n",
5566 NULL, NULL);
5567 return (-1);
Daniel Veillardd2298792003-02-14 16:54:11 +00005568 }
5569 if (IS_RELAXNG(nodes, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005570 def = xmlRelaxNGNewDefine(ctxt, nodes);
5571 if (def == NULL)
5572 return (-1);
5573 def->type = XML_RELAXNG_EMPTY;
5574 if (nodes->children != NULL) {
5575 xmlRngPErr(ctxt, nodes, XML_RNGP_EMPTY_CONTENT,
5576 "element empty is not empty\n", NULL, NULL);
5577 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005578 } else if (IS_RELAXNG(nodes, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005579 def = xmlRelaxNGNewDefine(ctxt, nodes);
5580 if (def == NULL)
5581 return (-1);
5582 def->type = XML_RELAXNG_NOT_ALLOWED;
5583 if (nodes->children != NULL) {
5584 xmlRngPErr(ctxt, nodes, XML_RNGP_NOTALLOWED_NOT_EMPTY,
5585 "element notAllowed is not empty\n", NULL, NULL);
5586 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005587 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005588 def = xmlRelaxNGParsePatterns(ctxt, nodes, 1);
Daniel Veillard2df2de22003-02-17 23:34:33 +00005589 }
5590 if (ctxt->grammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005591 last = ctxt->grammar->start;
5592 while (last->next != NULL)
5593 last = last->next;
5594 last->next = def;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005595 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005596 ctxt->grammar->start = def;
Daniel Veillardd2298792003-02-14 16:54:11 +00005597 }
5598 nodes = nodes->next;
5599 if (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005600 xmlRngPErr(ctxt, nodes, XML_RNGP_START_CONTENT,
5601 "start more than one children\n", NULL, NULL);
5602 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005603 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005604 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005605}
5606
5607/**
5608 * xmlRelaxNGParseGrammarContent:
5609 * @ctxt: a Relax-NG parser context
5610 * @nodes: grammar children nodes
5611 *
5612 * parse the content of a RelaxNG grammar node.
5613 *
5614 * Returns 0 in case of success, -1 in case of error
5615 */
5616static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005617xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
5618 xmlNodePtr nodes)
Daniel Veillard6eadf632003-01-23 18:29:16 +00005619{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00005620 int ret = 0, tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005621
5622 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005623 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_EMPTY,
5624 "grammar has no children\n", NULL, NULL);
5625 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005626 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005627 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005628 if (IS_RELAXNG(nodes, "start")) {
5629 if (nodes->children == NULL) {
5630 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY,
5631 "start has no children\n", NULL, NULL);
5632 } else {
5633 tmp = xmlRelaxNGParseStart(ctxt, nodes->children);
5634 if (tmp != 0)
5635 ret = -1;
5636 }
5637 } else if (IS_RELAXNG(nodes, "define")) {
5638 tmp = xmlRelaxNGParseDefine(ctxt, nodes);
5639 if (tmp != 0)
5640 ret = -1;
5641 } else if (IS_RELAXNG(nodes, "include")) {
5642 tmp = xmlRelaxNGParseInclude(ctxt, nodes);
5643 if (tmp != 0)
5644 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005645 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005646 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
5647 "grammar has unexpected child %s\n", nodes->name,
5648 NULL);
5649 ret = -1;
5650 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005651 nodes = nodes->next;
5652 }
5653 return (ret);
5654}
5655
5656/**
5657 * xmlRelaxNGCheckReference:
5658 * @ref: the ref
5659 * @ctxt: a Relax-NG parser context
5660 * @name: the name associated to the defines
5661 *
5662 * Applies the 4.17. combine attribute rule for all the define
5663 * element of a given grammar using the same name.
5664 */
5665static void
5666xmlRelaxNGCheckReference(xmlRelaxNGDefinePtr ref,
Daniel Veillard4c004142003-10-07 11:33:24 +00005667 xmlRelaxNGParserCtxtPtr ctxt,
5668 const xmlChar * name)
5669{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005670 xmlRelaxNGGrammarPtr grammar;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005671 xmlRelaxNGDefinePtr def, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005672
Daniel Veillardaa422d92009-09-24 11:31:48 +02005673 /*
5674 * Those rules don't apply to imported ref from xmlRelaxNGParseImportRef
5675 */
5676 if (ref->dflags & IS_EXTERNAL_REF)
5677 return;
5678
Daniel Veillard6eadf632003-01-23 18:29:16 +00005679 grammar = ctxt->grammar;
5680 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005681 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5682 "Internal error: no grammar in CheckReference %s\n",
5683 name, NULL);
5684 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005685 }
5686 if (ref->content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005687 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5688 "Internal error: reference has content in CheckReference %s\n",
5689 name, NULL);
5690 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005691 }
5692 if (grammar->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005693 def = xmlHashLookup(grammar->defs, name);
5694 if (def != NULL) {
5695 cur = ref;
5696 while (cur != NULL) {
5697 cur->content = def;
5698 cur = cur->nextHash;
5699 }
5700 } else {
5701 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5702 "Reference %s has no matching definition\n", name,
5703 NULL);
5704 }
Daniel Veillardd4310742003-02-18 21:12:46 +00005705 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005706 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5707 "Reference %s has no matching definition\n", name,
5708 NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005709 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005710}
5711
5712/**
5713 * xmlRelaxNGCheckCombine:
5714 * @define: the define(s) list
5715 * @ctxt: a Relax-NG parser context
5716 * @name: the name associated to the defines
5717 *
5718 * Applies the 4.17. combine attribute rule for all the define
5719 * element of a given grammar using the same name.
5720 */
5721static void
5722xmlRelaxNGCheckCombine(xmlRelaxNGDefinePtr define,
Daniel Veillard4c004142003-10-07 11:33:24 +00005723 xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * name)
5724{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005725 xmlChar *combine;
5726 int choiceOrInterleave = -1;
5727 int missing = 0;
5728 xmlRelaxNGDefinePtr cur, last, tmp, tmp2;
5729
5730 if (define->nextHash == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005731 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005732 cur = define;
5733 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005734 combine = xmlGetProp(cur->node, BAD_CAST "combine");
5735 if (combine != NULL) {
5736 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5737 if (choiceOrInterleave == -1)
5738 choiceOrInterleave = 1;
5739 else if (choiceOrInterleave == 0) {
5740 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5741 "Defines for %s use both 'choice' and 'interleave'\n",
5742 name, NULL);
5743 }
5744 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5745 if (choiceOrInterleave == -1)
5746 choiceOrInterleave = 0;
5747 else if (choiceOrInterleave == 1) {
5748 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5749 "Defines for %s use both 'choice' and 'interleave'\n",
5750 name, NULL);
5751 }
5752 } else {
5753 xmlRngPErr(ctxt, define->node, XML_RNGP_UNKNOWN_COMBINE,
5754 "Defines for %s use unknown combine value '%s''\n",
5755 name, combine);
5756 }
5757 xmlFree(combine);
5758 } else {
5759 if (missing == 0)
5760 missing = 1;
5761 else {
5762 xmlRngPErr(ctxt, define->node, XML_RNGP_NEED_COMBINE,
5763 "Some defines for %s needs the combine attribute\n",
5764 name, NULL);
5765 }
5766 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005767
Daniel Veillard4c004142003-10-07 11:33:24 +00005768 cur = cur->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005769 }
5770#ifdef DEBUG
5771 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005772 "xmlRelaxNGCheckCombine(): merging %s defines: %d\n",
5773 name, choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005774#endif
5775 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005776 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005777 cur = xmlRelaxNGNewDefine(ctxt, define->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005778 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005779 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005780 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005781 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005782 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005783 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005784 tmp = define;
5785 last = NULL;
5786 while (tmp != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005787 if (tmp->content != NULL) {
5788 if (tmp->content->next != NULL) {
5789 /*
5790 * we need first to create a wrapper.
5791 */
5792 tmp2 = xmlRelaxNGNewDefine(ctxt, tmp->content->node);
5793 if (tmp2 == NULL)
5794 break;
5795 tmp2->type = XML_RELAXNG_GROUP;
5796 tmp2->content = tmp->content;
5797 } else {
5798 tmp2 = tmp->content;
5799 }
5800 if (last == NULL) {
5801 cur->content = tmp2;
5802 } else {
5803 last->next = tmp2;
5804 }
5805 last = tmp2;
5806 }
5807 tmp->content = cur;
5808 tmp = tmp->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005809 }
5810 define->content = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005811 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005812 if (ctxt->interleaves == NULL)
5813 ctxt->interleaves = xmlHashCreate(10);
5814 if (ctxt->interleaves == NULL) {
5815 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5816 "Failed to create interleaves hash table\n", NULL,
5817 NULL);
5818 } else {
5819 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005820
Daniel Veillard4c004142003-10-07 11:33:24 +00005821 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5822 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5823 0) {
5824 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5825 "Failed to add %s to hash table\n",
5826 (const xmlChar *) tmpname, NULL);
5827 }
5828 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005829 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005830}
5831
5832/**
5833 * xmlRelaxNGCombineStart:
5834 * @ctxt: a Relax-NG parser context
5835 * @grammar: the grammar
5836 *
5837 * Applies the 4.17. combine rule for all the start
5838 * element of a given grammar.
5839 */
5840static void
5841xmlRelaxNGCombineStart(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005842 xmlRelaxNGGrammarPtr grammar)
5843{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005844 xmlRelaxNGDefinePtr starts;
5845 xmlChar *combine;
5846 int choiceOrInterleave = -1;
5847 int missing = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005848 xmlRelaxNGDefinePtr cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005849
Daniel Veillard2df2de22003-02-17 23:34:33 +00005850 starts = grammar->start;
5851 if ((starts == NULL) || (starts->next == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00005852 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005853 cur = starts;
5854 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005855 if ((cur->node == NULL) || (cur->node->parent == NULL) ||
5856 (!xmlStrEqual(cur->node->parent->name, BAD_CAST "start"))) {
5857 combine = NULL;
5858 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_MISSING,
5859 "Internal error: start element not found\n", NULL,
5860 NULL);
5861 } else {
5862 combine = xmlGetProp(cur->node->parent, BAD_CAST "combine");
5863 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005864
Daniel Veillard4c004142003-10-07 11:33:24 +00005865 if (combine != NULL) {
5866 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5867 if (choiceOrInterleave == -1)
5868 choiceOrInterleave = 1;
5869 else if (choiceOrInterleave == 0) {
5870 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5871 "<start> use both 'choice' and 'interleave'\n",
5872 NULL, NULL);
5873 }
5874 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5875 if (choiceOrInterleave == -1)
5876 choiceOrInterleave = 0;
5877 else if (choiceOrInterleave == 1) {
5878 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5879 "<start> use both 'choice' and 'interleave'\n",
5880 NULL, NULL);
5881 }
5882 } else {
5883 xmlRngPErr(ctxt, cur->node, XML_RNGP_UNKNOWN_COMBINE,
5884 "<start> uses unknown combine value '%s''\n",
5885 combine, NULL);
5886 }
5887 xmlFree(combine);
5888 } else {
5889 if (missing == 0)
5890 missing = 1;
5891 else {
5892 xmlRngPErr(ctxt, cur->node, XML_RNGP_NEED_COMBINE,
5893 "Some <start> element miss the combine attribute\n",
5894 NULL, NULL);
5895 }
5896 }
5897
5898 cur = cur->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005899 }
5900#ifdef DEBUG
5901 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005902 "xmlRelaxNGCombineStart(): merging <start>: %d\n",
5903 choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005904#endif
5905 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005906 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005907 cur = xmlRelaxNGNewDefine(ctxt, starts->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005908 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005909 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005910 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005911 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005912 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005913 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005914 cur->content = grammar->start;
5915 grammar->start = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005916 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005917 if (ctxt->interleaves == NULL)
5918 ctxt->interleaves = xmlHashCreate(10);
5919 if (ctxt->interleaves == NULL) {
5920 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5921 "Failed to create interleaves hash table\n", NULL,
5922 NULL);
5923 } else {
5924 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005925
Daniel Veillard4c004142003-10-07 11:33:24 +00005926 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5927 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5928 0) {
5929 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5930 "Failed to add %s to hash table\n",
5931 (const xmlChar *) tmpname, NULL);
5932 }
5933 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005934 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005935}
5936
5937/**
Daniel Veillardd4310742003-02-18 21:12:46 +00005938 * xmlRelaxNGCheckCycles:
5939 * @ctxt: a Relax-NG parser context
5940 * @nodes: grammar children nodes
5941 * @depth: the counter
5942 *
5943 * Check for cycles.
5944 *
5945 * Returns 0 if check passed, and -1 in case of error
5946 */
5947static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005948xmlRelaxNGCheckCycles(xmlRelaxNGParserCtxtPtr ctxt,
5949 xmlRelaxNGDefinePtr cur, int depth)
5950{
Daniel Veillardd4310742003-02-18 21:12:46 +00005951 int ret = 0;
5952
5953 while ((ret == 0) && (cur != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005954 if ((cur->type == XML_RELAXNG_REF) ||
5955 (cur->type == XML_RELAXNG_PARENTREF)) {
5956 if (cur->depth == -1) {
5957 cur->depth = depth;
5958 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5959 cur->depth = -2;
5960 } else if (depth == cur->depth) {
5961 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_CYCLE,
5962 "Detected a cycle in %s references\n",
5963 cur->name, NULL);
5964 return (-1);
5965 }
5966 } else if (cur->type == XML_RELAXNG_ELEMENT) {
5967 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth + 1);
5968 } else {
5969 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5970 }
5971 cur = cur->next;
Daniel Veillardd4310742003-02-18 21:12:46 +00005972 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005973 return (ret);
Daniel Veillardd4310742003-02-18 21:12:46 +00005974}
5975
5976/**
Daniel Veillard77648bb2003-02-20 15:03:22 +00005977 * xmlRelaxNGTryUnlink:
5978 * @ctxt: a Relax-NG parser context
5979 * @cur: the definition to unlink
5980 * @parent: the parent definition
5981 * @prev: the previous sibling definition
5982 *
5983 * Try to unlink a definition. If not possble make it a NOOP
5984 *
5985 * Returns the new prev definition
5986 */
5987static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005988xmlRelaxNGTryUnlink(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
5989 xmlRelaxNGDefinePtr cur,
5990 xmlRelaxNGDefinePtr parent, xmlRelaxNGDefinePtr prev)
5991{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005992 if (prev != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005993 prev->next = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005994 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005995 if (parent != NULL) {
5996 if (parent->content == cur)
5997 parent->content = cur->next;
5998 else if (parent->attrs == cur)
5999 parent->attrs = cur->next;
6000 else if (parent->nameClass == cur)
6001 parent->nameClass = cur->next;
6002 } else {
6003 cur->type = XML_RELAXNG_NOOP;
6004 prev = cur;
6005 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00006006 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006007 return (prev);
Daniel Veillard77648bb2003-02-20 15:03:22 +00006008}
6009
6010/**
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006011 * xmlRelaxNGSimplify:
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006012 * @ctxt: a Relax-NG parser context
6013 * @nodes: grammar children nodes
6014 *
6015 * Check for simplification of empty and notAllowed
6016 */
6017static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006018xmlRelaxNGSimplify(xmlRelaxNGParserCtxtPtr ctxt,
6019 xmlRelaxNGDefinePtr cur, xmlRelaxNGDefinePtr parent)
6020{
Daniel Veillardfd573f12003-03-16 17:52:32 +00006021 xmlRelaxNGDefinePtr prev = NULL;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006022
Daniel Veillardfd573f12003-03-16 17:52:32 +00006023 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006024 if ((cur->type == XML_RELAXNG_REF) ||
6025 (cur->type == XML_RELAXNG_PARENTREF)) {
6026 if (cur->depth != -3) {
6027 cur->depth = -3;
6028 xmlRelaxNGSimplify(ctxt, cur->content, cur);
6029 }
6030 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
6031 cur->parent = parent;
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) && (parent->type == XML_RELAXNG_CHOICE)) {
6043 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6044 } else
6045 prev = cur;
6046 } else if (cur->type == XML_RELAXNG_EMPTY) {
6047 cur->parent = parent;
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 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6058 } else
6059 prev = cur;
6060 } else {
6061 cur->parent = parent;
6062 if (cur->content != NULL)
6063 xmlRelaxNGSimplify(ctxt, cur->content, cur);
6064 if ((cur->type != XML_RELAXNG_VALUE) && (cur->attrs != NULL))
6065 xmlRelaxNGSimplify(ctxt, cur->attrs, cur);
6066 if (cur->nameClass != NULL)
6067 xmlRelaxNGSimplify(ctxt, cur->nameClass, cur);
6068 /*
6069 * On Elements, try to move attribute only generating rules on
6070 * the attrs rules.
6071 */
6072 if (cur->type == XML_RELAXNG_ELEMENT) {
6073 int attronly;
6074 xmlRelaxNGDefinePtr tmp, pre;
Daniel Veillardce192eb2003-04-16 15:58:05 +00006075
Daniel Veillard4c004142003-10-07 11:33:24 +00006076 while (cur->content != NULL) {
6077 attronly =
6078 xmlRelaxNGGenerateAttributes(ctxt, cur->content);
6079 if (attronly == 1) {
6080 /*
6081 * migrate cur->content to attrs
6082 */
6083 tmp = cur->content;
6084 cur->content = tmp->next;
6085 tmp->next = cur->attrs;
6086 cur->attrs = tmp;
6087 } else {
6088 /*
6089 * cur->content can generate elements or text
6090 */
6091 break;
6092 }
6093 }
6094 pre = cur->content;
6095 while ((pre != NULL) && (pre->next != NULL)) {
6096 tmp = pre->next;
6097 attronly = xmlRelaxNGGenerateAttributes(ctxt, tmp);
6098 if (attronly == 1) {
6099 /*
6100 * migrate tmp to attrs
6101 */
6102 pre->next = tmp->next;
6103 tmp->next = cur->attrs;
6104 cur->attrs = tmp;
6105 } else {
6106 pre = tmp;
6107 }
6108 }
6109 }
6110 /*
6111 * This may result in a simplification
6112 */
6113 if ((cur->type == XML_RELAXNG_GROUP) ||
6114 (cur->type == XML_RELAXNG_INTERLEAVE)) {
6115 if (cur->content == NULL)
6116 cur->type = XML_RELAXNG_EMPTY;
6117 else if (cur->content->next == NULL) {
6118 if ((parent == NULL) && (prev == NULL)) {
6119 cur->type = XML_RELAXNG_NOOP;
6120 } else if (prev == NULL) {
6121 parent->content = cur->content;
6122 cur->content->next = cur->next;
6123 cur = cur->content;
6124 } else {
6125 cur->content->next = cur->next;
6126 prev->next = cur->content;
6127 cur = cur->content;
6128 }
6129 }
6130 }
6131 /*
6132 * the current node may have been transformed back
6133 */
6134 if ((cur->type == XML_RELAXNG_EXCEPT) &&
6135 (cur->content != NULL) &&
6136 (cur->content->type == XML_RELAXNG_NOT_ALLOWED)) {
6137 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6138 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
6139 if ((parent != NULL) &&
6140 ((parent->type == XML_RELAXNG_ATTRIBUTE) ||
6141 (parent->type == XML_RELAXNG_LIST) ||
6142 (parent->type == XML_RELAXNG_GROUP) ||
6143 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6144 (parent->type == XML_RELAXNG_ONEORMORE) ||
6145 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6146 parent->type = XML_RELAXNG_NOT_ALLOWED;
6147 break;
6148 }
6149 if ((parent != NULL) &&
6150 (parent->type == XML_RELAXNG_CHOICE)) {
6151 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6152 } else
6153 prev = cur;
6154 } else if (cur->type == XML_RELAXNG_EMPTY) {
6155 if ((parent != NULL) &&
6156 ((parent->type == XML_RELAXNG_ONEORMORE) ||
6157 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6158 parent->type = XML_RELAXNG_EMPTY;
6159 break;
6160 }
6161 if ((parent != NULL) &&
6162 ((parent->type == XML_RELAXNG_GROUP) ||
6163 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6164 (parent->type == XML_RELAXNG_CHOICE))) {
6165 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6166 } else
6167 prev = cur;
6168 } else {
6169 prev = cur;
6170 }
6171 }
6172 cur = cur->next;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006173 }
6174}
6175
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006176/**
6177 * xmlRelaxNGGroupContentType:
6178 * @ct1: the first content type
6179 * @ct2: the second content type
6180 *
6181 * Try to group 2 content types
6182 *
6183 * Returns the content type
6184 */
6185static xmlRelaxNGContentType
6186xmlRelaxNGGroupContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006187 xmlRelaxNGContentType ct2)
6188{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006189 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006190 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6191 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006192 if (ct1 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006193 return (ct2);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006194 if (ct2 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006195 return (ct1);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006196 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00006197 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6198 return (XML_RELAXNG_CONTENT_COMPLEX);
6199 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006200}
6201
6202/**
6203 * xmlRelaxNGMaxContentType:
6204 * @ct1: the first content type
6205 * @ct2: the second content type
6206 *
6207 * Compute the max content-type
6208 *
6209 * Returns the content type
6210 */
6211static xmlRelaxNGContentType
6212xmlRelaxNGMaxContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006213 xmlRelaxNGContentType ct2)
6214{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006215 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006216 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6217 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006218 if ((ct1 == XML_RELAXNG_CONTENT_SIMPLE) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006219 (ct2 == XML_RELAXNG_CONTENT_SIMPLE))
6220 return (XML_RELAXNG_CONTENT_SIMPLE);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006221 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006222 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6223 return (XML_RELAXNG_CONTENT_COMPLEX);
6224 return (XML_RELAXNG_CONTENT_EMPTY);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006225}
Daniel Veillard77648bb2003-02-20 15:03:22 +00006226
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006227/**
6228 * xmlRelaxNGCheckRules:
6229 * @ctxt: a Relax-NG parser context
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006230 * @cur: the current definition
Daniel Veillard77648bb2003-02-20 15:03:22 +00006231 * @flags: some accumulated flags
Daniel Veillardfd573f12003-03-16 17:52:32 +00006232 * @ptype: the parent type
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006233 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006234 * Check for rules in section 7.1 and 7.2
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006235 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006236 * Returns the content type of @cur
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006237 */
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006238static xmlRelaxNGContentType
Daniel Veillard4c004142003-10-07 11:33:24 +00006239xmlRelaxNGCheckRules(xmlRelaxNGParserCtxtPtr ctxt,
6240 xmlRelaxNGDefinePtr cur, int flags,
6241 xmlRelaxNGType ptype)
6242{
Daniel Veillardd44b9362009-09-07 12:15:08 +02006243 int nflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006244 xmlRelaxNGContentType ret, tmp, val = XML_RELAXNG_CONTENT_EMPTY;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006245
Daniel Veillardfd573f12003-03-16 17:52:32 +00006246 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006247 ret = XML_RELAXNG_CONTENT_EMPTY;
6248 if ((cur->type == XML_RELAXNG_REF) ||
6249 (cur->type == XML_RELAXNG_PARENTREF)) {
Daniel Veillard63d68a32005-03-31 13:50:00 +00006250 /*
6251 * This should actually be caught by list//element(ref) at the
6252 * element boundaries, c.f. Bug #159968 local refs are dropped
6253 * in step 4.19.
6254 */
6255#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00006256 if (flags & XML_RELAXNG_IN_LIST) {
6257 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_REF,
6258 "Found forbidden pattern list//ref\n", NULL,
6259 NULL);
6260 }
Daniel Veillard63d68a32005-03-31 13:50:00 +00006261#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00006262 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6263 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_REF,
6264 "Found forbidden pattern data/except//ref\n",
6265 NULL, NULL);
6266 }
Daniel Veillard81c51e12009-08-14 18:52:10 +02006267 if (cur->content == NULL) {
6268 if (cur->type == XML_RELAXNG_PARENTREF)
6269 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_NO_DEF,
6270 "Internal found no define for parent refs\n",
6271 NULL, NULL);
6272 else
6273 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_NO_DEF,
6274 "Internal found no define for ref %s\n",
Daniel Veillarda4f27cb2009-08-21 17:34:17 +02006275 (cur->name ? cur->name: BAD_CAST "null"), NULL);
Daniel Veillard81c51e12009-08-14 18:52:10 +02006276 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006277 if (cur->depth > -4) {
6278 cur->depth = -4;
6279 ret = xmlRelaxNGCheckRules(ctxt, cur->content,
6280 flags, cur->type);
6281 cur->depth = ret - 15;
6282 } else if (cur->depth == -4) {
6283 ret = XML_RELAXNG_CONTENT_COMPLEX;
6284 } else {
6285 ret = (xmlRelaxNGContentType) (cur->depth + 15);
6286 }
6287 } else if (cur->type == XML_RELAXNG_ELEMENT) {
6288 /*
6289 * The 7.3 Attribute derivation rule for groups is plugged there
6290 */
6291 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6292 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6293 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ELEM,
6294 "Found forbidden pattern data/except//element(ref)\n",
6295 NULL, NULL);
6296 }
6297 if (flags & XML_RELAXNG_IN_LIST) {
6298 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ELEM,
6299 "Found forbidden pattern list//element(ref)\n",
6300 NULL, NULL);
6301 }
6302 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6303 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6304 "Found forbidden pattern attribute//element(ref)\n",
6305 NULL, NULL);
6306 }
6307 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6308 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6309 "Found forbidden pattern attribute//element(ref)\n",
6310 NULL, NULL);
6311 }
6312 /*
6313 * reset since in the simple form elements are only child
6314 * of grammar/define
6315 */
6316 nflags = 0;
6317 ret =
6318 xmlRelaxNGCheckRules(ctxt, cur->attrs, nflags, cur->type);
6319 if (ret != XML_RELAXNG_CONTENT_EMPTY) {
6320 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_EMPTY,
6321 "Element %s attributes have a content type error\n",
6322 cur->name, NULL);
6323 }
6324 ret =
6325 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6326 cur->type);
6327 if (ret == XML_RELAXNG_CONTENT_ERROR) {
6328 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_ERROR,
6329 "Element %s has a content type error\n",
6330 cur->name, NULL);
6331 } else {
6332 ret = XML_RELAXNG_CONTENT_COMPLEX;
6333 }
6334 } else if (cur->type == XML_RELAXNG_ATTRIBUTE) {
6335 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6336 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ATTR,
6337 "Found forbidden pattern attribute//attribute\n",
6338 NULL, NULL);
6339 }
6340 if (flags & XML_RELAXNG_IN_LIST) {
6341 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ATTR,
6342 "Found forbidden pattern list//attribute\n",
6343 NULL, NULL);
6344 }
6345 if (flags & XML_RELAXNG_IN_OOMGROUP) {
6346 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_GROUP_ATTR,
6347 "Found forbidden pattern oneOrMore//group//attribute\n",
6348 NULL, NULL);
6349 }
6350 if (flags & XML_RELAXNG_IN_OOMINTERLEAVE) {
6351 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR,
6352 "Found forbidden pattern oneOrMore//interleave//attribute\n",
6353 NULL, NULL);
6354 }
6355 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6356 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ATTR,
6357 "Found forbidden pattern data/except//attribute\n",
6358 NULL, NULL);
6359 }
6360 if (flags & XML_RELAXNG_IN_START) {
6361 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ATTR,
6362 "Found forbidden pattern start//attribute\n",
6363 NULL, NULL);
6364 }
6365 if ((!(flags & XML_RELAXNG_IN_ONEORMORE))
6366 && (cur->name == NULL)) {
6367 if (cur->ns == NULL) {
6368 xmlRngPErr(ctxt, cur->node, XML_RNGP_ANYNAME_ATTR_ANCESTOR,
6369 "Found anyName attribute without oneOrMore ancestor\n",
6370 NULL, NULL);
6371 } else {
6372 xmlRngPErr(ctxt, cur->node, XML_RNGP_NSNAME_ATTR_ANCESTOR,
6373 "Found nsName attribute without oneOrMore ancestor\n",
6374 NULL, NULL);
6375 }
6376 }
6377 nflags = flags | XML_RELAXNG_IN_ATTRIBUTE;
6378 xmlRelaxNGCheckRules(ctxt, cur->content, nflags, cur->type);
6379 ret = XML_RELAXNG_CONTENT_EMPTY;
6380 } else if ((cur->type == XML_RELAXNG_ONEORMORE) ||
6381 (cur->type == XML_RELAXNG_ZEROORMORE)) {
6382 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6383 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ONEMORE,
6384 "Found forbidden pattern data/except//oneOrMore\n",
6385 NULL, NULL);
6386 }
6387 if (flags & XML_RELAXNG_IN_START) {
6388 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ONEMORE,
6389 "Found forbidden pattern start//oneOrMore\n",
6390 NULL, NULL);
6391 }
6392 nflags = flags | XML_RELAXNG_IN_ONEORMORE;
6393 ret =
6394 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6395 cur->type);
6396 ret = xmlRelaxNGGroupContentType(ret, ret);
6397 } else if (cur->type == XML_RELAXNG_LIST) {
6398 if (flags & XML_RELAXNG_IN_LIST) {
6399 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_LIST,
6400 "Found forbidden pattern list//list\n", NULL,
6401 NULL);
6402 }
6403 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6404 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_LIST,
6405 "Found forbidden pattern data/except//list\n",
6406 NULL, NULL);
6407 }
6408 if (flags & XML_RELAXNG_IN_START) {
6409 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_LIST,
6410 "Found forbidden pattern start//list\n", NULL,
6411 NULL);
6412 }
6413 nflags = flags | XML_RELAXNG_IN_LIST;
6414 ret =
6415 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6416 cur->type);
6417 } else if (cur->type == XML_RELAXNG_GROUP) {
6418 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6419 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_GROUP,
6420 "Found forbidden pattern data/except//group\n",
6421 NULL, NULL);
6422 }
6423 if (flags & XML_RELAXNG_IN_START) {
6424 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_GROUP,
6425 "Found forbidden pattern start//group\n", NULL,
6426 NULL);
6427 }
6428 if (flags & XML_RELAXNG_IN_ONEORMORE)
6429 nflags = flags | XML_RELAXNG_IN_OOMGROUP;
6430 else
6431 nflags = flags;
6432 ret =
6433 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6434 cur->type);
6435 /*
6436 * The 7.3 Attribute derivation rule for groups is plugged there
6437 */
6438 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6439 } else if (cur->type == XML_RELAXNG_INTERLEAVE) {
6440 if (flags & XML_RELAXNG_IN_LIST) {
6441 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_INTERLEAVE,
6442 "Found forbidden pattern list//interleave\n",
6443 NULL, NULL);
6444 }
6445 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6446 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6447 "Found forbidden pattern data/except//interleave\n",
6448 NULL, NULL);
6449 }
6450 if (flags & XML_RELAXNG_IN_START) {
6451 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6452 "Found forbidden pattern start//interleave\n",
6453 NULL, NULL);
6454 }
6455 if (flags & XML_RELAXNG_IN_ONEORMORE)
6456 nflags = flags | XML_RELAXNG_IN_OOMINTERLEAVE;
6457 else
6458 nflags = flags;
6459 ret =
6460 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6461 cur->type);
6462 } else if (cur->type == XML_RELAXNG_EXCEPT) {
6463 if ((cur->parent != NULL) &&
6464 (cur->parent->type == XML_RELAXNG_DATATYPE))
6465 nflags = flags | XML_RELAXNG_IN_DATAEXCEPT;
6466 else
6467 nflags = flags;
6468 ret =
6469 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6470 cur->type);
6471 } else if (cur->type == XML_RELAXNG_DATATYPE) {
6472 if (flags & XML_RELAXNG_IN_START) {
6473 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_DATA,
6474 "Found forbidden pattern start//data\n", NULL,
6475 NULL);
6476 }
6477 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6478 ret = XML_RELAXNG_CONTENT_SIMPLE;
6479 } else if (cur->type == XML_RELAXNG_VALUE) {
6480 if (flags & XML_RELAXNG_IN_START) {
6481 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_VALUE,
6482 "Found forbidden pattern start//value\n", NULL,
6483 NULL);
6484 }
6485 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6486 ret = XML_RELAXNG_CONTENT_SIMPLE;
6487 } else if (cur->type == XML_RELAXNG_TEXT) {
6488 if (flags & XML_RELAXNG_IN_LIST) {
6489 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_TEXT,
6490 "Found forbidden pattern list//text\n", NULL,
6491 NULL);
6492 }
6493 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6494 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_TEXT,
6495 "Found forbidden pattern data/except//text\n",
6496 NULL, NULL);
6497 }
6498 if (flags & XML_RELAXNG_IN_START) {
6499 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_TEXT,
6500 "Found forbidden pattern start//text\n", NULL,
6501 NULL);
6502 }
6503 ret = XML_RELAXNG_CONTENT_COMPLEX;
6504 } else if (cur->type == XML_RELAXNG_EMPTY) {
6505 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6506 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_EMPTY,
6507 "Found forbidden pattern data/except//empty\n",
6508 NULL, NULL);
6509 }
6510 if (flags & XML_RELAXNG_IN_START) {
6511 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_EMPTY,
6512 "Found forbidden pattern start//empty\n", NULL,
6513 NULL);
6514 }
6515 ret = XML_RELAXNG_CONTENT_EMPTY;
6516 } else if (cur->type == XML_RELAXNG_CHOICE) {
6517 xmlRelaxNGCheckChoiceDeterminism(ctxt, cur);
6518 ret =
6519 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6520 } else {
6521 ret =
6522 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6523 }
6524 cur = cur->next;
6525 if (ptype == XML_RELAXNG_GROUP) {
6526 val = xmlRelaxNGGroupContentType(val, ret);
6527 } else if (ptype == XML_RELAXNG_INTERLEAVE) {
Daniel Veillard594e5df2009-09-07 14:58:47 +02006528 /*
6529 * TODO: scan complain that tmp is never used, seems on purpose
6530 * need double-checking
6531 */
Daniel Veillard4c004142003-10-07 11:33:24 +00006532 tmp = xmlRelaxNGGroupContentType(val, ret);
6533 if (tmp != XML_RELAXNG_CONTENT_ERROR)
6534 tmp = xmlRelaxNGMaxContentType(val, ret);
6535 } else if (ptype == XML_RELAXNG_CHOICE) {
6536 val = xmlRelaxNGMaxContentType(val, ret);
6537 } else if (ptype == XML_RELAXNG_LIST) {
6538 val = XML_RELAXNG_CONTENT_SIMPLE;
6539 } else if (ptype == XML_RELAXNG_EXCEPT) {
6540 if (ret == XML_RELAXNG_CONTENT_ERROR)
6541 val = XML_RELAXNG_CONTENT_ERROR;
6542 else
6543 val = XML_RELAXNG_CONTENT_SIMPLE;
6544 } else {
6545 val = xmlRelaxNGGroupContentType(val, ret);
6546 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00006547
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006548 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006549 return (val);
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006550}
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006551
6552/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006553 * xmlRelaxNGParseGrammar:
6554 * @ctxt: a Relax-NG parser context
6555 * @nodes: grammar children nodes
6556 *
6557 * parse a Relax-NG <grammar> node
6558 *
6559 * Returns the internal xmlRelaxNGGrammarPtr built or
6560 * NULL in case of error
6561 */
6562static xmlRelaxNGGrammarPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006563xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
6564{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006565 xmlRelaxNGGrammarPtr ret, tmp, old;
6566
Daniel Veillardc482e262003-02-26 14:48:48 +00006567#ifdef DEBUG_GRAMMAR
6568 xmlGenericError(xmlGenericErrorContext, "Parsing a new grammar\n");
6569#endif
6570
Daniel Veillard6eadf632003-01-23 18:29:16 +00006571 ret = xmlRelaxNGNewGrammar(ctxt);
6572 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006573 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006574
6575 /*
6576 * Link the new grammar in the tree
6577 */
6578 ret->parent = ctxt->grammar;
6579 if (ctxt->grammar != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006580 tmp = ctxt->grammar->children;
6581 if (tmp == NULL) {
6582 ctxt->grammar->children = ret;
6583 } else {
6584 while (tmp->next != NULL)
6585 tmp = tmp->next;
6586 tmp->next = ret;
6587 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006588 }
6589
6590 old = ctxt->grammar;
6591 ctxt->grammar = ret;
6592 xmlRelaxNGParseGrammarContent(ctxt, nodes);
6593 ctxt->grammar = ret;
Daniel Veillard2df2de22003-02-17 23:34:33 +00006594 if (ctxt->grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006595 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
6596 "Failed to parse <grammar> content\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006597 } else if (ctxt->grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006598 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_NO_START,
6599 "Element <grammar> has no <start>\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006600 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006601
6602 /*
Jan Pokornýacace882014-06-09 23:45:24 +02006603 * Apply 4.17 merging rules to defines and starts
Daniel Veillard6eadf632003-01-23 18:29:16 +00006604 */
6605 xmlRelaxNGCombineStart(ctxt, ret);
6606 if (ret->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006607 xmlHashScan(ret->defs, (xmlHashScanner) xmlRelaxNGCheckCombine,
6608 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006609 }
6610
6611 /*
6612 * link together defines and refs in this grammar
6613 */
6614 if (ret->refs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006615 xmlHashScan(ret->refs, (xmlHashScanner) xmlRelaxNGCheckReference,
6616 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006617 }
Daniel Veillard952379b2003-03-17 15:37:12 +00006618
Daniel Veillard81c51e12009-08-14 18:52:10 +02006619
Daniel Veillard25a1ce92008-06-02 16:04:12 +00006620 /* @@@@ */
6621
Daniel Veillard6eadf632003-01-23 18:29:16 +00006622 ctxt->grammar = old;
Daniel Veillard4c004142003-10-07 11:33:24 +00006623 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006624}
6625
6626/**
6627 * xmlRelaxNGParseDocument:
6628 * @ctxt: a Relax-NG parser context
6629 * @node: the root node of the RelaxNG schema
6630 *
6631 * parse a Relax-NG definition resource and build an internal
6632 * xmlRelaxNG struture which can be used to validate instances.
6633 *
6634 * Returns the internal XML RelaxNG structure built or
6635 * NULL in case of error
6636 */
6637static xmlRelaxNGPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006638xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6639{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006640 xmlRelaxNGPtr schema = NULL;
Daniel Veillard276be4a2003-01-24 01:03:34 +00006641 const xmlChar *olddefine;
Daniel Veillarde431a272003-01-29 23:02:33 +00006642 xmlRelaxNGGrammarPtr old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006643
6644 if ((ctxt == NULL) || (node == NULL))
6645 return (NULL);
6646
6647 schema = xmlRelaxNGNewRelaxNG(ctxt);
6648 if (schema == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006649 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006650
Daniel Veillard276be4a2003-01-24 01:03:34 +00006651 olddefine = ctxt->define;
6652 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006653 if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006654 schema->topgrammar = xmlRelaxNGParseGrammar(ctxt, node->children);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006655 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006656 xmlRelaxNGGrammarPtr tmp, ret;
Daniel Veillardc482e262003-02-26 14:48:48 +00006657
Daniel Veillard4c004142003-10-07 11:33:24 +00006658 schema->topgrammar = ret = xmlRelaxNGNewGrammar(ctxt);
6659 if (schema->topgrammar == NULL) {
6660 return (schema);
6661 }
6662 /*
6663 * Link the new grammar in the tree
6664 */
6665 ret->parent = ctxt->grammar;
6666 if (ctxt->grammar != NULL) {
6667 tmp = ctxt->grammar->children;
6668 if (tmp == NULL) {
6669 ctxt->grammar->children = ret;
6670 } else {
6671 while (tmp->next != NULL)
6672 tmp = tmp->next;
6673 tmp->next = ret;
6674 }
6675 }
6676 old = ctxt->grammar;
6677 ctxt->grammar = ret;
6678 xmlRelaxNGParseStart(ctxt, node);
6679 if (old != NULL)
6680 ctxt->grammar = old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006681 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00006682 ctxt->define = olddefine;
Daniel Veillardd4310742003-02-18 21:12:46 +00006683 if (schema->topgrammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006684 xmlRelaxNGCheckCycles(ctxt, schema->topgrammar->start, 0);
6685 if ((ctxt->flags & XML_RELAXNG_IN_EXTERNALREF) == 0) {
6686 xmlRelaxNGSimplify(ctxt, schema->topgrammar->start, NULL);
6687 while ((schema->topgrammar->start != NULL) &&
6688 (schema->topgrammar->start->type == XML_RELAXNG_NOOP) &&
6689 (schema->topgrammar->start->next != NULL))
6690 schema->topgrammar->start =
6691 schema->topgrammar->start->content;
6692 xmlRelaxNGCheckRules(ctxt, schema->topgrammar->start,
6693 XML_RELAXNG_IN_START, XML_RELAXNG_NOOP);
6694 }
Daniel Veillardd4310742003-02-18 21:12:46 +00006695 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006696#ifdef DEBUG
6697 if (schema == NULL)
6698 xmlGenericError(xmlGenericErrorContext,
6699 "xmlRelaxNGParseDocument() failed\n");
6700#endif
6701
6702 return (schema);
6703}
6704
6705/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006706 * *
6707 * Reading RelaxNGs *
6708 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00006709 ************************************************************************/
6710
6711/**
6712 * xmlRelaxNGNewParserCtxt:
6713 * @URL: the location of the schema
6714 *
6715 * Create an XML RelaxNGs parse context for that file/resource expected
6716 * to contain an XML RelaxNGs file.
6717 *
6718 * Returns the parser context or NULL in case of error
6719 */
6720xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006721xmlRelaxNGNewParserCtxt(const char *URL)
6722{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006723 xmlRelaxNGParserCtxtPtr ret;
6724
6725 if (URL == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006726 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006727
Daniel Veillard4c004142003-10-07 11:33:24 +00006728 ret =
6729 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006730 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006731 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006732 return (NULL);
6733 }
6734 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard4c004142003-10-07 11:33:24 +00006735 ret->URL = xmlStrdup((const xmlChar *) URL);
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006736 ret->error = xmlGenericError;
6737 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006738 return (ret);
6739}
6740
6741/**
6742 * xmlRelaxNGNewMemParserCtxt:
6743 * @buffer: a pointer to a char array containing the schemas
6744 * @size: the size of the array
6745 *
6746 * Create an XML RelaxNGs parse context for that memory buffer expected
6747 * to contain an XML RelaxNGs file.
6748 *
6749 * Returns the parser context or NULL in case of error
6750 */
6751xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006752xmlRelaxNGNewMemParserCtxt(const char *buffer, int size)
6753{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006754 xmlRelaxNGParserCtxtPtr ret;
6755
6756 if ((buffer == NULL) || (size <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00006757 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006758
Daniel Veillard4c004142003-10-07 11:33:24 +00006759 ret =
6760 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006761 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006762 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006763 return (NULL);
6764 }
6765 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6766 ret->buffer = buffer;
6767 ret->size = size;
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006768 ret->error = xmlGenericError;
6769 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006770 return (ret);
6771}
6772
6773/**
Daniel Veillard33300b42003-04-17 09:09:19 +00006774 * xmlRelaxNGNewDocParserCtxt:
6775 * @doc: a preparsed document tree
6776 *
6777 * Create an XML RelaxNGs parser context for that document.
6778 * Note: since the process of compiling a RelaxNG schemas modifies the
6779 * document, the @doc parameter is duplicated internally.
6780 *
6781 * Returns the parser context or NULL in case of error
6782 */
6783xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006784xmlRelaxNGNewDocParserCtxt(xmlDocPtr doc)
6785{
Daniel Veillard33300b42003-04-17 09:09:19 +00006786 xmlRelaxNGParserCtxtPtr ret;
6787 xmlDocPtr copy;
6788
6789 if (doc == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006790 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006791 copy = xmlCopyDoc(doc, 1);
6792 if (copy == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006793 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006794
Daniel Veillard4c004142003-10-07 11:33:24 +00006795 ret =
6796 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard33300b42003-04-17 09:09:19 +00006797 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006798 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard33300b42003-04-17 09:09:19 +00006799 return (NULL);
6800 }
6801 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6802 ret->document = copy;
Daniel Veillard42595322004-11-08 10:52:06 +00006803 ret->freedoc = 1;
Daniel Veillard33300b42003-04-17 09:09:19 +00006804 ret->userData = xmlGenericErrorContext;
6805 return (ret);
6806}
6807
6808/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006809 * xmlRelaxNGFreeParserCtxt:
6810 * @ctxt: the schema parser context
6811 *
6812 * Free the resources associated to the schema parser context
6813 */
6814void
Daniel Veillard4c004142003-10-07 11:33:24 +00006815xmlRelaxNGFreeParserCtxt(xmlRelaxNGParserCtxtPtr ctxt)
6816{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006817 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006818 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006819 if (ctxt->URL != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006820 xmlFree(ctxt->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006821 if (ctxt->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006822 xmlRelaxNGFreeDocument(ctxt->doc);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00006823 if (ctxt->interleaves != NULL)
6824 xmlHashFree(ctxt->interleaves, NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006825 if (ctxt->documents != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006826 xmlRelaxNGFreeDocumentList(ctxt->documents);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00006827 if (ctxt->includes != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006828 xmlRelaxNGFreeIncludeList(ctxt->includes);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006829 if (ctxt->docTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006830 xmlFree(ctxt->docTab);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00006831 if (ctxt->incTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006832 xmlFree(ctxt->incTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006833 if (ctxt->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006834 int i;
Daniel Veillard419a7682003-02-03 23:22:49 +00006835
Daniel Veillard4c004142003-10-07 11:33:24 +00006836 for (i = 0; i < ctxt->defNr; i++)
6837 xmlRelaxNGFreeDefine(ctxt->defTab[i]);
6838 xmlFree(ctxt->defTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006839 }
Daniel Veillard42595322004-11-08 10:52:06 +00006840 if ((ctxt->document != NULL) && (ctxt->freedoc))
6841 xmlFreeDoc(ctxt->document);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006842 xmlFree(ctxt);
6843}
6844
Daniel Veillard6eadf632003-01-23 18:29:16 +00006845/**
Daniel Veillardd2298792003-02-14 16:54:11 +00006846 * xmlRelaxNGNormExtSpace:
6847 * @value: a value
6848 *
6849 * Removes the leading and ending spaces of the value
6850 * The string is modified "in situ"
6851 */
6852static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006853xmlRelaxNGNormExtSpace(xmlChar * value)
6854{
Daniel Veillardd2298792003-02-14 16:54:11 +00006855 xmlChar *start = value;
6856 xmlChar *cur = value;
Daniel Veillardd2298792003-02-14 16:54:11 +00006857
Daniel Veillard4c004142003-10-07 11:33:24 +00006858 if (value == NULL)
6859 return;
6860
William M. Brack76e95df2003-10-18 16:20:14 +00006861 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006862 cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +00006863 if (cur == start) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006864 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006865 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006866 cur++;
6867 if (*cur == 0)
6868 return;
6869 start = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00006870 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006871 cur++;
6872 if (*cur == 0) {
6873 *start = 0;
6874 return;
6875 }
6876 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006877 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006878 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006879 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006880 *start++ = *cur++;
6881 if (*cur == 0) {
6882 *start = 0;
6883 return;
6884 }
6885 /* don't try to normalize the inner spaces */
William M. Brack76e95df2003-10-18 16:20:14 +00006886 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006887 cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006888 if (*cur == 0) {
6889 *start = 0;
6890 return;
6891 }
Daniel Veillard4aede2e2003-10-17 12:43:59 +00006892 *start++ = *cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006893 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006894 }
6895}
6896
6897/**
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00006898 * xmlRelaxNGCleanupAttributes:
Daniel Veillardd2298792003-02-14 16:54:11 +00006899 * @ctxt: a Relax-NG parser context
6900 * @node: a Relax-NG node
6901 *
6902 * Check all the attributes on the given node
6903 */
6904static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006905xmlRelaxNGCleanupAttributes(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6906{
Daniel Veillardd2298792003-02-14 16:54:11 +00006907 xmlAttrPtr cur, next;
6908
6909 cur = node->properties;
6910 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006911 next = cur->next;
6912 if ((cur->ns == NULL) ||
6913 (xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
6914 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
6915 if ((!xmlStrEqual(node->name, BAD_CAST "element")) &&
6916 (!xmlStrEqual(node->name, BAD_CAST "attribute")) &&
6917 (!xmlStrEqual(node->name, BAD_CAST "ref")) &&
6918 (!xmlStrEqual(node->name, BAD_CAST "parentRef")) &&
6919 (!xmlStrEqual(node->name, BAD_CAST "param")) &&
6920 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6921 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6922 "Attribute %s is not allowed on %s\n",
6923 cur->name, node->name);
6924 }
6925 } else if (xmlStrEqual(cur->name, BAD_CAST "type")) {
6926 if ((!xmlStrEqual(node->name, BAD_CAST "value")) &&
6927 (!xmlStrEqual(node->name, BAD_CAST "data"))) {
6928 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6929 "Attribute %s is not allowed on %s\n",
6930 cur->name, node->name);
6931 }
6932 } else if (xmlStrEqual(cur->name, BAD_CAST "href")) {
6933 if ((!xmlStrEqual(node->name, BAD_CAST "externalRef")) &&
6934 (!xmlStrEqual(node->name, BAD_CAST "include"))) {
6935 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6936 "Attribute %s is not allowed on %s\n",
6937 cur->name, node->name);
6938 }
6939 } else if (xmlStrEqual(cur->name, BAD_CAST "combine")) {
6940 if ((!xmlStrEqual(node->name, BAD_CAST "start")) &&
6941 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6942 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6943 "Attribute %s is not allowed on %s\n",
6944 cur->name, node->name);
6945 }
6946 } else if (xmlStrEqual(cur->name, BAD_CAST "datatypeLibrary")) {
6947 xmlChar *val;
6948 xmlURIPtr uri;
Daniel Veillardd2298792003-02-14 16:54:11 +00006949
Daniel Veillard4c004142003-10-07 11:33:24 +00006950 val = xmlNodeListGetString(node->doc, cur->children, 1);
6951 if (val != NULL) {
6952 if (val[0] != 0) {
6953 uri = xmlParseURI((const char *) val);
6954 if (uri == NULL) {
6955 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_URI,
6956 "Attribute %s contains invalid URI %s\n",
6957 cur->name, val);
6958 } else {
6959 if (uri->scheme == NULL) {
6960 xmlRngPErr(ctxt, node, XML_RNGP_URI_NOT_ABSOLUTE,
6961 "Attribute %s URI %s is not absolute\n",
6962 cur->name, val);
6963 }
6964 if (uri->fragment != NULL) {
6965 xmlRngPErr(ctxt, node, XML_RNGP_URI_FRAGMENT,
6966 "Attribute %s URI %s has a fragment ID\n",
6967 cur->name, val);
6968 }
6969 xmlFreeURI(uri);
6970 }
6971 }
6972 xmlFree(val);
6973 }
6974 } else if (!xmlStrEqual(cur->name, BAD_CAST "ns")) {
6975 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_ATTRIBUTE,
6976 "Unknown attribute %s on %s\n", cur->name,
6977 node->name);
6978 }
6979 }
6980 cur = next;
Daniel Veillardd2298792003-02-14 16:54:11 +00006981 }
6982}
6983
6984/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00006985 * xmlRelaxNGCleanupTree:
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006986 * @ctxt: a Relax-NG parser context
Daniel Veillardc5312d72003-02-21 17:14:10 +00006987 * @root: an xmlNodePtr subtree
Daniel Veillard6eadf632003-01-23 18:29:16 +00006988 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00006989 * Cleanup the subtree from unwanted nodes for parsing, resolve
6990 * Include and externalRef lookups.
Daniel Veillard6eadf632003-01-23 18:29:16 +00006991 */
Daniel Veillardc5312d72003-02-21 17:14:10 +00006992static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006993xmlRelaxNGCleanupTree(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr root)
6994{
Daniel Veillardc5312d72003-02-21 17:14:10 +00006995 xmlNodePtr cur, delete;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006996
Daniel Veillard6eadf632003-01-23 18:29:16 +00006997 delete = NULL;
6998 cur = root;
6999 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007000 if (delete != NULL) {
7001 xmlUnlinkNode(delete);
7002 xmlFreeNode(delete);
7003 delete = NULL;
7004 }
7005 if (cur->type == XML_ELEMENT_NODE) {
7006 /*
7007 * Simplification 4.1. Annotations
7008 */
7009 if ((cur->ns == NULL) ||
7010 (!xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
7011 if ((cur->parent != NULL) &&
7012 (cur->parent->type == XML_ELEMENT_NODE) &&
7013 ((xmlStrEqual(cur->parent->name, BAD_CAST "name")) ||
7014 (xmlStrEqual(cur->parent->name, BAD_CAST "value")) ||
7015 (xmlStrEqual(cur->parent->name, BAD_CAST "param")))) {
7016 xmlRngPErr(ctxt, cur, XML_RNGP_FOREIGN_ELEMENT,
7017 "element %s doesn't allow foreign elements\n",
7018 cur->parent->name, NULL);
7019 }
7020 delete = cur;
7021 goto skip_children;
7022 } else {
7023 xmlRelaxNGCleanupAttributes(ctxt, cur);
7024 if (xmlStrEqual(cur->name, BAD_CAST "externalRef")) {
7025 xmlChar *href, *ns, *base, *URL;
7026 xmlRelaxNGDocumentPtr docu;
7027 xmlNodePtr tmp;
Daniel Veillard6dc91962004-03-22 19:10:02 +00007028 xmlURIPtr uri;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007029
Daniel Veillard4c004142003-10-07 11:33:24 +00007030 ns = xmlGetProp(cur, BAD_CAST "ns");
7031 if (ns == NULL) {
7032 tmp = cur->parent;
7033 while ((tmp != NULL) &&
7034 (tmp->type == XML_ELEMENT_NODE)) {
7035 ns = xmlGetProp(tmp, BAD_CAST "ns");
7036 if (ns != NULL)
7037 break;
7038 tmp = tmp->parent;
7039 }
7040 }
7041 href = xmlGetProp(cur, BAD_CAST "href");
7042 if (href == NULL) {
7043 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
7044 "xmlRelaxNGParse: externalRef has no href attribute\n",
7045 NULL, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007046 if (ns != NULL)
7047 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007048 delete = cur;
7049 goto skip_children;
7050 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00007051 uri = xmlParseURI((const char *) href);
7052 if (uri == NULL) {
7053 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7054 "Incorrect URI for externalRef %s\n",
7055 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007056 if (ns != NULL)
7057 xmlFree(ns);
Daniel Veillard6dc91962004-03-22 19:10:02 +00007058 if (href != NULL)
7059 xmlFree(href);
7060 delete = cur;
7061 goto skip_children;
7062 }
7063 if (uri->fragment != NULL) {
7064 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7065 "Fragment forbidden in URI for externalRef %s\n",
7066 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007067 if (ns != NULL)
7068 xmlFree(ns);
Daniel Veillard6dc91962004-03-22 19:10:02 +00007069 xmlFreeURI(uri);
7070 if (href != NULL)
7071 xmlFree(href);
7072 delete = cur;
7073 goto skip_children;
7074 }
7075 xmlFreeURI(uri);
Daniel Veillard4c004142003-10-07 11:33:24 +00007076 base = xmlNodeGetBase(cur->doc, cur);
7077 URL = xmlBuildURI(href, base);
7078 if (URL == NULL) {
7079 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7080 "Failed to compute URL for externalRef %s\n",
7081 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007082 if (ns != NULL)
7083 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007084 if (href != NULL)
7085 xmlFree(href);
7086 if (base != NULL)
7087 xmlFree(base);
7088 delete = cur;
7089 goto skip_children;
7090 }
7091 if (href != NULL)
7092 xmlFree(href);
7093 if (base != NULL)
7094 xmlFree(base);
7095 docu = xmlRelaxNGLoadExternalRef(ctxt, URL, ns);
7096 if (docu == NULL) {
7097 xmlRngPErr(ctxt, cur, XML_RNGP_EXTERNAL_REF_FAILURE,
7098 "Failed to load externalRef %s\n", URL,
7099 NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007100 if (ns != NULL)
7101 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007102 xmlFree(URL);
7103 delete = cur;
7104 goto skip_children;
7105 }
7106 if (ns != NULL)
7107 xmlFree(ns);
7108 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00007109 cur->psvi = docu;
Daniel Veillard4c004142003-10-07 11:33:24 +00007110 } else if (xmlStrEqual(cur->name, BAD_CAST "include")) {
7111 xmlChar *href, *ns, *base, *URL;
7112 xmlRelaxNGIncludePtr incl;
7113 xmlNodePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007114
Daniel Veillard4c004142003-10-07 11:33:24 +00007115 href = xmlGetProp(cur, BAD_CAST "href");
7116 if (href == NULL) {
7117 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
7118 "xmlRelaxNGParse: include has no href attribute\n",
7119 NULL, NULL);
7120 delete = cur;
7121 goto skip_children;
7122 }
7123 base = xmlNodeGetBase(cur->doc, cur);
7124 URL = xmlBuildURI(href, base);
7125 if (URL == NULL) {
7126 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7127 "Failed to compute URL for include %s\n",
7128 href, NULL);
7129 if (href != NULL)
7130 xmlFree(href);
7131 if (base != NULL)
7132 xmlFree(base);
7133 delete = cur;
7134 goto skip_children;
7135 }
7136 if (href != NULL)
7137 xmlFree(href);
7138 if (base != NULL)
7139 xmlFree(base);
7140 ns = xmlGetProp(cur, BAD_CAST "ns");
7141 if (ns == NULL) {
7142 tmp = cur->parent;
7143 while ((tmp != NULL) &&
7144 (tmp->type == XML_ELEMENT_NODE)) {
7145 ns = xmlGetProp(tmp, BAD_CAST "ns");
7146 if (ns != NULL)
7147 break;
7148 tmp = tmp->parent;
7149 }
7150 }
7151 incl = xmlRelaxNGLoadInclude(ctxt, URL, cur, ns);
7152 if (ns != NULL)
7153 xmlFree(ns);
7154 if (incl == NULL) {
7155 xmlRngPErr(ctxt, cur, XML_RNGP_INCLUDE_FAILURE,
7156 "Failed to load include %s\n", URL,
7157 NULL);
7158 xmlFree(URL);
7159 delete = cur;
7160 goto skip_children;
7161 }
7162 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00007163 cur->psvi = incl;
Daniel Veillard4c004142003-10-07 11:33:24 +00007164 } else if ((xmlStrEqual(cur->name, BAD_CAST "element")) ||
7165 (xmlStrEqual(cur->name, BAD_CAST "attribute")))
7166 {
7167 xmlChar *name, *ns;
7168 xmlNodePtr text = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007169
Daniel Veillard4c004142003-10-07 11:33:24 +00007170 /*
7171 * Simplification 4.8. name attribute of element
7172 * and attribute elements
7173 */
7174 name = xmlGetProp(cur, BAD_CAST "name");
7175 if (name != NULL) {
7176 if (cur->children == NULL) {
7177 text =
7178 xmlNewChild(cur, cur->ns, BAD_CAST "name",
7179 name);
7180 } else {
7181 xmlNodePtr node;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007182
Daniel Veillard03a53c32004-10-26 16:06:51 +00007183 node = xmlNewDocNode(cur->doc, cur->ns,
7184 BAD_CAST "name", NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00007185 if (node != NULL) {
7186 xmlAddPrevSibling(cur->children, node);
7187 text = xmlNewText(name);
7188 xmlAddChild(node, text);
7189 text = node;
7190 }
7191 }
7192 if (text == NULL) {
7193 xmlRngPErr(ctxt, cur, XML_RNGP_CREATE_FAILURE,
7194 "Failed to create a name %s element\n",
7195 name, NULL);
7196 }
7197 xmlUnsetProp(cur, BAD_CAST "name");
7198 xmlFree(name);
7199 ns = xmlGetProp(cur, BAD_CAST "ns");
7200 if (ns != NULL) {
7201 if (text != NULL) {
7202 xmlSetProp(text, BAD_CAST "ns", ns);
7203 /* xmlUnsetProp(cur, BAD_CAST "ns"); */
7204 }
7205 xmlFree(ns);
7206 } else if (xmlStrEqual(cur->name,
7207 BAD_CAST "attribute")) {
7208 xmlSetProp(text, BAD_CAST "ns", BAD_CAST "");
7209 }
7210 }
7211 } else if ((xmlStrEqual(cur->name, BAD_CAST "name")) ||
7212 (xmlStrEqual(cur->name, BAD_CAST "nsName")) ||
7213 (xmlStrEqual(cur->name, BAD_CAST "value"))) {
7214 /*
7215 * Simplification 4.8. name attribute of element
7216 * and attribute elements
7217 */
7218 if (xmlHasProp(cur, BAD_CAST "ns") == NULL) {
7219 xmlNodePtr node;
7220 xmlChar *ns = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007221
Daniel Veillard4c004142003-10-07 11:33:24 +00007222 node = cur->parent;
7223 while ((node != NULL) &&
7224 (node->type == XML_ELEMENT_NODE)) {
7225 ns = xmlGetProp(node, BAD_CAST "ns");
7226 if (ns != NULL) {
7227 break;
7228 }
7229 node = node->parent;
7230 }
7231 if (ns == NULL) {
7232 xmlSetProp(cur, BAD_CAST "ns", BAD_CAST "");
7233 } else {
7234 xmlSetProp(cur, BAD_CAST "ns", ns);
7235 xmlFree(ns);
7236 }
7237 }
7238 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
7239 xmlChar *name, *local, *prefix;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007240
Daniel Veillard4c004142003-10-07 11:33:24 +00007241 /*
7242 * Simplification: 4.10. QNames
7243 */
7244 name = xmlNodeGetContent(cur);
7245 if (name != NULL) {
7246 local = xmlSplitQName2(name, &prefix);
7247 if (local != NULL) {
7248 xmlNsPtr ns;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007249
Daniel Veillard4c004142003-10-07 11:33:24 +00007250 ns = xmlSearchNs(cur->doc, cur, prefix);
7251 if (ns == NULL) {
7252 xmlRngPErr(ctxt, cur,
7253 XML_RNGP_PREFIX_UNDEFINED,
7254 "xmlRelaxNGParse: no namespace for prefix %s\n",
7255 prefix, NULL);
7256 } else {
7257 xmlSetProp(cur, BAD_CAST "ns",
7258 ns->href);
7259 xmlNodeSetContent(cur, local);
7260 }
7261 xmlFree(local);
7262 xmlFree(prefix);
7263 }
7264 xmlFree(name);
7265 }
7266 }
7267 /*
7268 * 4.16
7269 */
7270 if (xmlStrEqual(cur->name, BAD_CAST "nsName")) {
7271 if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7272 xmlRngPErr(ctxt, cur,
7273 XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME,
7274 "Found nsName/except//nsName forbidden construct\n",
7275 NULL, NULL);
7276 }
7277 }
7278 } else if ((xmlStrEqual(cur->name, BAD_CAST "except")) &&
7279 (cur != root)) {
7280 int oldflags = ctxt->flags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007281
Daniel Veillard4c004142003-10-07 11:33:24 +00007282 /*
7283 * 4.16
7284 */
7285 if ((cur->parent != NULL) &&
7286 (xmlStrEqual
7287 (cur->parent->name, BAD_CAST "anyName"))) {
7288 ctxt->flags |= XML_RELAXNG_IN_ANYEXCEPT;
7289 xmlRelaxNGCleanupTree(ctxt, cur);
7290 ctxt->flags = oldflags;
7291 goto skip_children;
7292 } else if ((cur->parent != NULL) &&
7293 (xmlStrEqual
7294 (cur->parent->name, BAD_CAST "nsName"))) {
7295 ctxt->flags |= XML_RELAXNG_IN_NSEXCEPT;
7296 xmlRelaxNGCleanupTree(ctxt, cur);
7297 ctxt->flags = oldflags;
7298 goto skip_children;
7299 }
7300 } else if (xmlStrEqual(cur->name, BAD_CAST "anyName")) {
7301 /*
7302 * 4.16
7303 */
7304 if (ctxt->flags & XML_RELAXNG_IN_ANYEXCEPT) {
7305 xmlRngPErr(ctxt, cur,
7306 XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME,
7307 "Found anyName/except//anyName forbidden construct\n",
7308 NULL, NULL);
7309 } else if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7310 xmlRngPErr(ctxt, cur,
7311 XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME,
7312 "Found nsName/except//anyName forbidden construct\n",
7313 NULL, NULL);
7314 }
7315 }
7316 /*
Jan Pokornýacace882014-06-09 23:45:24 +02007317 * This is not an else since "include" is transformed
Daniel Veillard4c004142003-10-07 11:33:24 +00007318 * into a div
7319 */
7320 if (xmlStrEqual(cur->name, BAD_CAST "div")) {
7321 xmlChar *ns;
7322 xmlNodePtr child, ins, tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007323
Daniel Veillard4c004142003-10-07 11:33:24 +00007324 /*
7325 * implements rule 4.11
7326 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00007327
Daniel Veillard4c004142003-10-07 11:33:24 +00007328 ns = xmlGetProp(cur, BAD_CAST "ns");
7329
7330 child = cur->children;
7331 ins = cur;
7332 while (child != NULL) {
7333 if (ns != NULL) {
7334 if (!xmlHasProp(child, BAD_CAST "ns")) {
7335 xmlSetProp(child, BAD_CAST "ns", ns);
7336 }
7337 }
7338 tmp = child->next;
7339 xmlUnlinkNode(child);
7340 ins = xmlAddNextSibling(ins, child);
7341 child = tmp;
7342 }
7343 if (ns != NULL)
7344 xmlFree(ns);
William M. Brack8eabb052004-06-07 14:15:54 +00007345 /*
7346 * Since we are about to delete cur, if it's nsDef is non-NULL we
7347 * need to preserve it (it contains the ns definitions for the
7348 * children we just moved). We'll just stick it on to the end
7349 * of cur->parent's list, since it's never going to be re-serialized
7350 * (bug 143738).
7351 */
7352 if (cur->nsDef != NULL) {
7353 xmlNsPtr parDef = (xmlNsPtr)&cur->parent->nsDef;
7354 while (parDef->next != NULL)
7355 parDef = parDef->next;
7356 parDef->next = cur->nsDef;
7357 cur->nsDef = NULL;
7358 }
Daniel Veillard4c004142003-10-07 11:33:24 +00007359 delete = cur;
7360 goto skip_children;
7361 }
7362 }
7363 }
7364 /*
7365 * Simplification 4.2 whitespaces
7366 */
7367 else if ((cur->type == XML_TEXT_NODE) ||
7368 (cur->type == XML_CDATA_SECTION_NODE)) {
7369 if (IS_BLANK_NODE(cur)) {
7370 if (cur->parent->type == XML_ELEMENT_NODE) {
7371 if ((!xmlStrEqual(cur->parent->name, BAD_CAST "value"))
7372 &&
7373 (!xmlStrEqual
7374 (cur->parent->name, BAD_CAST "param")))
7375 delete = cur;
7376 } else {
7377 delete = cur;
7378 goto skip_children;
7379 }
7380 }
7381 } else {
7382 delete = cur;
7383 goto skip_children;
7384 }
7385
7386 /*
7387 * Skip to next node
7388 */
7389 if (cur->children != NULL) {
7390 if ((cur->children->type != XML_ENTITY_DECL) &&
7391 (cur->children->type != XML_ENTITY_REF_NODE) &&
7392 (cur->children->type != XML_ENTITY_NODE)) {
7393 cur = cur->children;
7394 continue;
7395 }
7396 }
7397 skip_children:
7398 if (cur->next != NULL) {
7399 cur = cur->next;
7400 continue;
7401 }
7402
7403 do {
7404 cur = cur->parent;
7405 if (cur == NULL)
7406 break;
7407 if (cur == root) {
7408 cur = NULL;
7409 break;
7410 }
7411 if (cur->next != NULL) {
7412 cur = cur->next;
7413 break;
7414 }
7415 } while (cur != NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007416 }
7417 if (delete != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007418 xmlUnlinkNode(delete);
7419 xmlFreeNode(delete);
7420 delete = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007421 }
Daniel Veillardc5312d72003-02-21 17:14:10 +00007422}
Daniel Veillard6eadf632003-01-23 18:29:16 +00007423
Daniel Veillardc5312d72003-02-21 17:14:10 +00007424/**
7425 * xmlRelaxNGCleanupDoc:
7426 * @ctxt: a Relax-NG parser context
7427 * @doc: an xmldocPtr document pointer
7428 *
7429 * Cleanup the document from unwanted nodes for parsing, resolve
7430 * Include and externalRef lookups.
7431 *
7432 * Returns the cleaned up document or NULL in case of error
7433 */
7434static xmlDocPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00007435xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt, xmlDocPtr doc)
7436{
Daniel Veillardc5312d72003-02-21 17:14:10 +00007437 xmlNodePtr root;
7438
7439 /*
7440 * Extract the root
7441 */
7442 root = xmlDocGetRootElement(doc);
7443 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007444 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
7445 ctxt->URL, NULL);
Daniel Veillardc5312d72003-02-21 17:14:10 +00007446 return (NULL);
7447 }
7448 xmlRelaxNGCleanupTree(ctxt, root);
Daniel Veillard4c004142003-10-07 11:33:24 +00007449 return (doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007450}
7451
7452/**
7453 * xmlRelaxNGParse:
7454 * @ctxt: a Relax-NG parser context
7455 *
7456 * parse a schema definition resource and build an internal
7457 * XML Shema struture which can be used to validate instances.
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007458 *
7459 * Returns the internal XML RelaxNG structure built from the resource or
7460 * NULL in case of error
7461 */
7462xmlRelaxNGPtr
7463xmlRelaxNGParse(xmlRelaxNGParserCtxtPtr ctxt)
7464{
7465 xmlRelaxNGPtr ret = NULL;
7466 xmlDocPtr doc;
7467 xmlNodePtr root;
7468
7469 xmlRelaxNGInitTypes();
7470
7471 if (ctxt == NULL)
7472 return (NULL);
7473
7474 /*
7475 * First step is to parse the input document into an DOM/Infoset
7476 */
7477 if (ctxt->URL != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007478 doc = xmlReadFile((const char *) ctxt->URL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007479 if (doc == NULL) {
7480 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7481 "xmlRelaxNGParse: could not load %s\n", ctxt->URL,
7482 NULL);
7483 return (NULL);
7484 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007485 } else if (ctxt->buffer != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007486 doc = xmlReadMemory(ctxt->buffer, ctxt->size,NULL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007487 if (doc == NULL) {
7488 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7489 "xmlRelaxNGParse: could not parse schemas\n", NULL,
7490 NULL);
7491 return (NULL);
7492 }
7493 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7494 ctxt->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
Daniel Veillard33300b42003-04-17 09:09:19 +00007495 } else if (ctxt->document != NULL) {
7496 doc = ctxt->document;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007497 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007498 xmlRngPErr(ctxt, NULL, XML_RNGP_EMPTY,
7499 "xmlRelaxNGParse: nothing to parse\n", NULL, NULL);
7500 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007501 }
7502 ctxt->document = doc;
7503
7504 /*
7505 * Some preprocessing of the document content
7506 */
7507 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
7508 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007509 xmlFreeDoc(ctxt->document);
7510 ctxt->document = NULL;
7511 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007512 }
7513
Daniel Veillard6eadf632003-01-23 18:29:16 +00007514 /*
7515 * Then do the parsing for good
7516 */
7517 root = xmlDocGetRootElement(doc);
7518 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007519 xmlRngPErr(ctxt, (xmlNodePtr) doc,
7520 XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
William M. Brack700f9872006-05-06 03:16:22 +00007521 (ctxt->URL ? ctxt->URL : BAD_CAST "schemas"), NULL);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007522
Daniel Veillard3f845a92006-04-13 07:33:44 +00007523 xmlFreeDoc(ctxt->document);
7524 ctxt->document = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007525 return (NULL);
7526 }
7527 ret = xmlRelaxNGParseDocument(ctxt, root);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007528 if (ret == NULL) {
Daniel Veillard3f845a92006-04-13 07:33:44 +00007529 xmlFreeDoc(ctxt->document);
7530 ctxt->document = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007531 return (NULL);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007532 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00007533
7534 /*
Daniel Veillardfd573f12003-03-16 17:52:32 +00007535 * Check the ref/defines links
7536 */
7537 /*
7538 * try to preprocess interleaves
7539 */
7540 if (ctxt->interleaves != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007541 xmlHashScan(ctxt->interleaves,
7542 (xmlHashScanner) xmlRelaxNGComputeInterleaves, ctxt);
Daniel Veillardfd573f12003-03-16 17:52:32 +00007543 }
7544
7545 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007546 * if there was a parsing error return NULL
7547 */
7548 if (ctxt->nbErrors > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007549 xmlRelaxNGFree(ret);
7550 ctxt->document = NULL;
7551 xmlFreeDoc(doc);
7552 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007553 }
7554
7555 /*
Daniel Veillard52b48c72003-04-13 19:53:42 +00007556 * try to compile (parts of) the schemas
7557 */
Daniel Veillardce192eb2003-04-16 15:58:05 +00007558 if ((ret->topgrammar != NULL) && (ret->topgrammar->start != NULL)) {
7559 if (ret->topgrammar->start->type != XML_RELAXNG_START) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007560 xmlRelaxNGDefinePtr def;
Daniel Veillardf4e55762003-04-15 23:32:22 +00007561
Daniel Veillard4c004142003-10-07 11:33:24 +00007562 def = xmlRelaxNGNewDefine(ctxt, NULL);
7563 if (def != NULL) {
7564 def->type = XML_RELAXNG_START;
7565 def->content = ret->topgrammar->start;
7566 ret->topgrammar->start = def;
7567 }
7568 }
7569 xmlRelaxNGTryCompile(ctxt, ret->topgrammar->start);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007570 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00007571
7572 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007573 * Transfer the pointer for cleanup at the schema level.
7574 */
7575 ret->doc = doc;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007576 ctxt->document = NULL;
7577 ret->documents = ctxt->documents;
7578 ctxt->documents = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007579
Daniel Veillarde2a5a082003-02-02 14:35:17 +00007580 ret->includes = ctxt->includes;
7581 ctxt->includes = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00007582 ret->defNr = ctxt->defNr;
7583 ret->defTab = ctxt->defTab;
7584 ctxt->defTab = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00007585 if (ctxt->idref == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00007586 ret->idref = 1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007587
7588 return (ret);
7589}
Daniel Veillard4c004142003-10-07 11:33:24 +00007590
Daniel Veillard6eadf632003-01-23 18:29:16 +00007591/**
7592 * xmlRelaxNGSetParserErrors:
7593 * @ctxt: a Relax-NG validation context
7594 * @err: the error callback
7595 * @warn: the warning callback
7596 * @ctx: contextual data for the callbacks
7597 *
7598 * Set the callback functions used to handle errors for a validation context
7599 */
7600void
7601xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007602 xmlRelaxNGValidityErrorFunc err,
7603 xmlRelaxNGValidityWarningFunc warn, void *ctx)
7604{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007605 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007606 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007607 ctxt->error = err;
7608 ctxt->warning = warn;
Daniel Veillardb30ca312005-09-04 13:50:03 +00007609 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007610 ctxt->userData = ctx;
7611}
Daniel Veillard409a8142003-07-18 15:16:57 +00007612
7613/**
7614 * xmlRelaxNGGetParserErrors:
7615 * @ctxt: a Relax-NG validation context
7616 * @err: the error callback result
7617 * @warn: the warning callback result
7618 * @ctx: contextual data for the callbacks result
7619 *
7620 * Get the callback information used to handle errors for a validation context
7621 *
7622 * Returns -1 in case of failure, 0 otherwise.
7623 */
7624int
7625xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007626 xmlRelaxNGValidityErrorFunc * err,
7627 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
7628{
Daniel Veillard409a8142003-07-18 15:16:57 +00007629 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007630 return (-1);
7631 if (err != NULL)
7632 *err = ctxt->error;
7633 if (warn != NULL)
7634 *warn = ctxt->warning;
7635 if (ctx != NULL)
7636 *ctx = ctxt->userData;
7637 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +00007638}
7639
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007640/**
7641 * xmlRelaxNGSetParserStructuredErrors:
7642 * @ctxt: a Relax-NG parser context
7643 * @serror: the error callback
7644 * @ctx: contextual data for the callbacks
7645 *
7646 * Set the callback functions used to handle errors for a parsing context
7647 */
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007648void
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007649xmlRelaxNGSetParserStructuredErrors(xmlRelaxNGParserCtxtPtr ctxt,
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007650 xmlStructuredErrorFunc serror,
7651 void *ctx)
7652{
7653 if (ctxt == NULL)
7654 return;
7655 ctxt->serror = serror;
7656 ctxt->error = NULL;
7657 ctxt->warning = NULL;
7658 ctxt->userData = ctx;
7659}
7660
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007661#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard4c004142003-10-07 11:33:24 +00007662
Daniel Veillard6eadf632003-01-23 18:29:16 +00007663/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007664 * *
7665 * Dump back a compiled form *
7666 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007667 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007668static void xmlRelaxNGDumpDefine(FILE * output,
7669 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007670
7671/**
7672 * xmlRelaxNGDumpDefines:
7673 * @output: the file output
7674 * @defines: a list of define structures
7675 *
7676 * Dump a RelaxNG structure back
7677 */
7678static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007679xmlRelaxNGDumpDefines(FILE * output, xmlRelaxNGDefinePtr defines)
7680{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007681 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007682 xmlRelaxNGDumpDefine(output, defines);
7683 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007684 }
7685}
7686
7687/**
7688 * xmlRelaxNGDumpDefine:
7689 * @output: the file output
7690 * @define: a define structure
7691 *
7692 * Dump a RelaxNG structure back
7693 */
7694static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007695xmlRelaxNGDumpDefine(FILE * output, xmlRelaxNGDefinePtr define)
7696{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007697 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007698 return;
7699 switch (define->type) {
Daniel Veillard6eadf632003-01-23 18:29:16 +00007700 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00007701 fprintf(output, "<empty/>\n");
7702 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007703 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00007704 fprintf(output, "<notAllowed/>\n");
7705 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007706 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007707 fprintf(output, "<text/>\n");
7708 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007709 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007710 fprintf(output, "<element>\n");
7711 if (define->name != NULL) {
7712 fprintf(output, "<name");
7713 if (define->ns != NULL)
7714 fprintf(output, " ns=\"%s\"", define->ns);
7715 fprintf(output, ">%s</name>\n", define->name);
7716 }
7717 xmlRelaxNGDumpDefines(output, define->attrs);
7718 xmlRelaxNGDumpDefines(output, define->content);
7719 fprintf(output, "</element>\n");
7720 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007721 case XML_RELAXNG_LIST:
Daniel Veillard4c004142003-10-07 11:33:24 +00007722 fprintf(output, "<list>\n");
7723 xmlRelaxNGDumpDefines(output, define->content);
7724 fprintf(output, "</list>\n");
7725 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007726 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007727 fprintf(output, "<oneOrMore>\n");
7728 xmlRelaxNGDumpDefines(output, define->content);
7729 fprintf(output, "</oneOrMore>\n");
7730 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007731 case XML_RELAXNG_ZEROORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007732 fprintf(output, "<zeroOrMore>\n");
7733 xmlRelaxNGDumpDefines(output, define->content);
7734 fprintf(output, "</zeroOrMore>\n");
7735 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007736 case XML_RELAXNG_CHOICE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007737 fprintf(output, "<choice>\n");
7738 xmlRelaxNGDumpDefines(output, define->content);
7739 fprintf(output, "</choice>\n");
7740 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007741 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00007742 fprintf(output, "<group>\n");
7743 xmlRelaxNGDumpDefines(output, define->content);
7744 fprintf(output, "</group>\n");
7745 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007746 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007747 fprintf(output, "<interleave>\n");
7748 xmlRelaxNGDumpDefines(output, define->content);
7749 fprintf(output, "</interleave>\n");
7750 break;
7751 case XML_RELAXNG_OPTIONAL:
7752 fprintf(output, "<optional>\n");
7753 xmlRelaxNGDumpDefines(output, define->content);
7754 fprintf(output, "</optional>\n");
7755 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007756 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007757 fprintf(output, "<attribute>\n");
7758 xmlRelaxNGDumpDefines(output, define->content);
7759 fprintf(output, "</attribute>\n");
7760 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007761 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007762 fprintf(output, "<define");
7763 if (define->name != NULL)
7764 fprintf(output, " name=\"%s\"", define->name);
7765 fprintf(output, ">\n");
7766 xmlRelaxNGDumpDefines(output, define->content);
7767 fprintf(output, "</define>\n");
7768 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007769 case XML_RELAXNG_REF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007770 fprintf(output, "<ref");
7771 if (define->name != NULL)
7772 fprintf(output, " name=\"%s\"", define->name);
7773 fprintf(output, ">\n");
7774 xmlRelaxNGDumpDefines(output, define->content);
7775 fprintf(output, "</ref>\n");
7776 break;
Daniel Veillard419a7682003-02-03 23:22:49 +00007777 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007778 fprintf(output, "<parentRef");
7779 if (define->name != NULL)
7780 fprintf(output, " name=\"%s\"", define->name);
7781 fprintf(output, ">\n");
7782 xmlRelaxNGDumpDefines(output, define->content);
7783 fprintf(output, "</parentRef>\n");
7784 break;
7785 case XML_RELAXNG_EXTERNALREF:
7786 fprintf(output, "<externalRef>");
7787 xmlRelaxNGDumpDefines(output, define->content);
7788 fprintf(output, "</externalRef>\n");
7789 break;
Daniel Veillarde431a272003-01-29 23:02:33 +00007790 case XML_RELAXNG_DATATYPE:
Daniel Veillard6eadf632003-01-23 18:29:16 +00007791 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007792 TODO break;
7793 case XML_RELAXNG_START:
7794 case XML_RELAXNG_EXCEPT:
7795 case XML_RELAXNG_PARAM:
7796 TODO break;
7797 case XML_RELAXNG_NOOP:
7798 xmlRelaxNGDumpDefines(output, define->content);
7799 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007800 }
7801}
Daniel Veillard4c004142003-10-07 11:33:24 +00007802
Daniel Veillard6eadf632003-01-23 18:29:16 +00007803/**
7804 * xmlRelaxNGDumpGrammar:
7805 * @output: the file output
7806 * @grammar: a grammar structure
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007807 * @top: is this a top grammar
Daniel Veillard6eadf632003-01-23 18:29:16 +00007808 *
7809 * Dump a RelaxNG structure back
7810 */
7811static void
7812xmlRelaxNGDumpGrammar(FILE * output, xmlRelaxNGGrammarPtr grammar, int top)
7813{
7814 if (grammar == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007815 return;
7816
Daniel Veillard6eadf632003-01-23 18:29:16 +00007817 fprintf(output, "<grammar");
7818 if (top)
Daniel Veillard4c004142003-10-07 11:33:24 +00007819 fprintf(output, " xmlns=\"http://relaxng.org/ns/structure/1.0\"");
7820 switch (grammar->combine) {
7821 case XML_RELAXNG_COMBINE_UNDEFINED:
7822 break;
7823 case XML_RELAXNG_COMBINE_CHOICE:
7824 fprintf(output, " combine=\"choice\"");
7825 break;
7826 case XML_RELAXNG_COMBINE_INTERLEAVE:
7827 fprintf(output, " combine=\"interleave\"");
7828 break;
7829 default:
7830 fprintf(output, " <!-- invalid combine value -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007831 }
7832 fprintf(output, ">\n");
7833 if (grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007834 fprintf(output, " <!-- grammar had no start -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007835 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007836 fprintf(output, "<start>\n");
7837 xmlRelaxNGDumpDefine(output, grammar->start);
7838 fprintf(output, "</start>\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007839 }
7840 /* TODO ? Dump the defines ? */
7841 fprintf(output, "</grammar>\n");
7842}
7843
7844/**
7845 * xmlRelaxNGDump:
7846 * @output: the file output
7847 * @schema: a schema structure
7848 *
7849 * Dump a RelaxNG structure back
7850 */
7851void
7852xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema)
7853{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007854 if (output == NULL)
7855 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007856 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007857 fprintf(output, "RelaxNG empty or failed to compile\n");
7858 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007859 }
7860 fprintf(output, "RelaxNG: ");
7861 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007862 fprintf(output, "no document\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007863 } else if (schema->doc->URL != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007864 fprintf(output, "%s\n", schema->doc->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007865 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007866 fprintf(output, "\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007867 }
7868 if (schema->topgrammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007869 fprintf(output, "RelaxNG has no top grammar\n");
7870 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007871 }
7872 xmlRelaxNGDumpGrammar(output, schema->topgrammar, 1);
7873}
7874
Daniel Veillardfebcca42003-02-16 15:44:18 +00007875/**
7876 * xmlRelaxNGDumpTree:
7877 * @output: the file output
7878 * @schema: a schema structure
7879 *
7880 * Dump the transformed RelaxNG tree.
7881 */
7882void
7883xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema)
7884{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007885 if (output == NULL)
7886 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007887 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007888 fprintf(output, "RelaxNG empty or failed to compile\n");
7889 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007890 }
7891 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007892 fprintf(output, "no document\n");
Daniel Veillardfebcca42003-02-16 15:44:18 +00007893 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007894 xmlDocDump(output, schema->doc);
Daniel Veillardfebcca42003-02-16 15:44:18 +00007895 }
7896}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007897#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardfebcca42003-02-16 15:44:18 +00007898
Daniel Veillard6eadf632003-01-23 18:29:16 +00007899/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007900 * *
7901 * Validation of compiled content *
7902 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007903 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007904static int xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
7905 xmlRelaxNGDefinePtr define);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007906
7907/**
7908 * xmlRelaxNGValidateCompiledCallback:
7909 * @exec: the regular expression instance
7910 * @token: the token which matched
7911 * @transdata: callback data, the define for the subelement if available
7912 @ @inputdata: callback data, the Relax NG validation context
7913 *
7914 * Handle the callback and if needed validate the element children.
7915 */
Daniel Veillard4c004142003-10-07 11:33:24 +00007916static void
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007917xmlRelaxNGValidateCompiledCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00007918 const xmlChar * token,
7919 void *transdata, void *inputdata)
7920{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007921 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
7922 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
7923 int ret;
7924
7925#ifdef DEBUG_COMPILE
7926 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00007927 "Compiled callback for: '%s'\n", token);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007928#endif
7929 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007930 fprintf(stderr, "callback on %s missing context\n", token);
Daniel Veillard4c004142003-10-07 11:33:24 +00007931 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007932 }
7933 if (define == NULL) {
7934 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00007935 return;
7936 fprintf(stderr, "callback on %s missing define\n", token);
7937 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7938 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7939 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007940 }
7941 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007942 fprintf(stderr, "callback on %s missing info\n", token);
7943 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7944 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7945 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007946 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007947 fprintf(stderr, "callback on %s define is not element\n", token);
7948 if (ctxt->errNo == XML_RELAXNG_OK)
7949 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7950 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007951 }
7952 ret = xmlRelaxNGValidateDefinition(ctxt, define);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007953 if (ret != 0)
7954 ctxt->perr = ret;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007955}
7956
7957/**
7958 * xmlRelaxNGValidateCompiledContent:
7959 * @ctxt: the RelaxNG validation context
7960 * @regexp: the regular expression as compiled
7961 * @content: list of children to test against the regexp
7962 *
7963 * Validate the content model of an element or start using the regexp
7964 *
7965 * Returns 0 in case of success, -1 in case of error.
7966 */
7967static int
7968xmlRelaxNGValidateCompiledContent(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007969 xmlRegexpPtr regexp, xmlNodePtr content)
7970{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007971 xmlRegExecCtxtPtr exec;
7972 xmlNodePtr cur;
Daniel Veillard62163602003-04-17 09:36:38 +00007973 int ret = 0;
Daniel Veillard14b56432006-03-09 18:41:40 +00007974 int oldperr;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007975
7976 if ((ctxt == NULL) || (regexp == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00007977 return (-1);
Daniel Veillard14b56432006-03-09 18:41:40 +00007978 oldperr = ctxt->perr;
Daniel Veillard4c004142003-10-07 11:33:24 +00007979 exec = xmlRegNewExecCtxt(regexp,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007980 xmlRelaxNGValidateCompiledCallback, ctxt);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007981 ctxt->perr = 0;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007982 cur = content;
7983 while (cur != NULL) {
7984 ctxt->state->seq = cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00007985 switch (cur->type) {
7986 case XML_TEXT_NODE:
7987 case XML_CDATA_SECTION_NODE:
7988 if (xmlIsBlankNode(cur))
7989 break;
7990 ret = xmlRegExecPushString(exec, BAD_CAST "#text", ctxt);
7991 if (ret < 0) {
7992 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG,
7993 cur->parent->name);
7994 }
7995 break;
7996 case XML_ELEMENT_NODE:
7997 if (cur->ns != NULL) {
7998 ret = xmlRegExecPushString2(exec, cur->name,
7999 cur->ns->href, ctxt);
8000 } else {
8001 ret = xmlRegExecPushString(exec, cur->name, ctxt);
8002 }
8003 if (ret < 0) {
8004 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, cur->name);
8005 }
8006 break;
8007 default:
8008 break;
8009 }
8010 if (ret < 0)
8011 break;
8012 /*
8013 * Switch to next element
8014 */
8015 cur = cur->next;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008016 }
8017 ret = xmlRegExecPushString(exec, NULL, NULL);
8018 if (ret == 1) {
8019 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008020 ctxt->state->seq = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008021 } else if (ret == 0) {
8022 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008023 * TODO: get some of the names needed to exit the current state of exec
8024 */
8025 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8026 ret = -1;
8027 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8028 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008029 } else {
8030 ret = -1;
8031 }
8032 xmlRegFreeExecCtxt(exec);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00008033 /*
8034 * There might be content model errors outside of the pure
8035 * regexp validation, e.g. for attribute values.
8036 */
8037 if ((ret == 0) && (ctxt->perr != 0)) {
8038 ret = ctxt->perr;
8039 }
8040 ctxt->perr = oldperr;
Daniel Veillard4c004142003-10-07 11:33:24 +00008041 return (ret);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008042}
8043
8044/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008045 * *
8046 * Progressive validation of when possible *
8047 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008048 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008049static int xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
8050 xmlRelaxNGDefinePtr defines);
8051static int xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt,
William M. Brack272693c2003-11-14 16:20:34 +00008052 int dolog);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00008053static void xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008054
8055/**
8056 * xmlRelaxNGElemPush:
8057 * @ctxt: the validation context
8058 * @exec: the regexp runtime for the new content model
8059 *
8060 * Push a new regexp for the current node content model on the stack
8061 *
8062 * Returns 0 in case of success and -1 in case of error.
8063 */
8064static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008065xmlRelaxNGElemPush(xmlRelaxNGValidCtxtPtr ctxt, xmlRegExecCtxtPtr exec)
8066{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008067 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008068 ctxt->elemMax = 10;
8069 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlMalloc(ctxt->elemMax *
8070 sizeof
8071 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00008072 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008073 xmlRngVErrMemory(ctxt, "validating\n");
8074 return (-1);
8075 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008076 }
8077 if (ctxt->elemNr >= ctxt->elemMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008078 ctxt->elemMax *= 2;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008079 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlRealloc(ctxt->elemTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00008080 ctxt->elemMax *
8081 sizeof
8082 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00008083 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008084 xmlRngVErrMemory(ctxt, "validating\n");
8085 return (-1);
8086 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008087 }
8088 ctxt->elemTab[ctxt->elemNr++] = exec;
8089 ctxt->elem = exec;
Daniel Veillard4c004142003-10-07 11:33:24 +00008090 return (0);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008091}
8092
8093/**
8094 * xmlRelaxNGElemPop:
8095 * @ctxt: the validation context
8096 *
8097 * Pop the regexp of the current node content model from the stack
8098 *
8099 * Returns the exec or NULL if empty
8100 */
8101static xmlRegExecCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00008102xmlRelaxNGElemPop(xmlRelaxNGValidCtxtPtr ctxt)
8103{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008104 xmlRegExecCtxtPtr ret;
8105
Daniel Veillard4c004142003-10-07 11:33:24 +00008106 if (ctxt->elemNr <= 0)
8107 return (NULL);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008108 ctxt->elemNr--;
8109 ret = ctxt->elemTab[ctxt->elemNr];
8110 ctxt->elemTab[ctxt->elemNr] = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00008111 if (ctxt->elemNr > 0)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008112 ctxt->elem = ctxt->elemTab[ctxt->elemNr - 1];
8113 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008114 ctxt->elem = NULL;
8115 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008116}
8117
8118/**
8119 * xmlRelaxNGValidateProgressiveCallback:
8120 * @exec: the regular expression instance
8121 * @token: the token which matched
8122 * @transdata: callback data, the define for the subelement if available
8123 @ @inputdata: callback data, the Relax NG validation context
8124 *
8125 * Handle the callback and if needed validate the element children.
8126 * some of the in/out informations are passed via the context in @inputdata.
8127 */
Daniel Veillard4c004142003-10-07 11:33:24 +00008128static void
8129xmlRelaxNGValidateProgressiveCallback(xmlRegExecCtxtPtr exec
8130 ATTRIBUTE_UNUSED,
8131 const xmlChar * token,
8132 void *transdata, void *inputdata)
8133{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008134 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
8135 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008136 xmlRelaxNGValidStatePtr state, oldstate;
Daniel Veillard14b56432006-03-09 18:41:40 +00008137 xmlNodePtr node;
Daniel Veillardc3ca5ba2003-05-09 22:26:28 +00008138 int ret = 0, oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008139
8140#ifdef DEBUG_PROGRESSIVE
8141 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00008142 "Progressive callback for: '%s'\n", token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008143#endif
8144 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008145 fprintf(stderr, "callback on %s missing context\n", token);
8146 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008147 }
Daniel Veillard14b56432006-03-09 18:41:40 +00008148 node = ctxt->pnode;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008149 ctxt->pstate = 1;
8150 if (define == NULL) {
8151 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00008152 return;
8153 fprintf(stderr, "callback on %s missing define\n", token);
8154 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8155 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8156 ctxt->pstate = -1;
8157 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008158 }
8159 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008160 fprintf(stderr, "callback on %s missing info\n", token);
8161 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8162 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8163 ctxt->pstate = -1;
8164 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008165 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008166 fprintf(stderr, "callback on %s define is not element\n", token);
8167 if (ctxt->errNo == XML_RELAXNG_OK)
8168 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8169 ctxt->pstate = -1;
8170 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008171 }
8172 if (node->type != XML_ELEMENT_NODE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008173 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
8174 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8175 xmlRelaxNGDumpValidError(ctxt);
8176 ctxt->pstate = -1;
8177 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008178 }
8179 if (define->contModel == NULL) {
8180 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008181 * this node cannot be validated in a streamable fashion
8182 */
Daniel Veillardf4e55762003-04-15 23:32:22 +00008183#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008184 xmlGenericError(xmlGenericErrorContext,
8185 "Element '%s' validation is not streamable\n",
8186 token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008187#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008188 ctxt->pstate = 0;
8189 ctxt->pdef = define;
8190 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008191 }
8192 exec = xmlRegNewExecCtxt(define->contModel,
Daniel Veillard4c004142003-10-07 11:33:24 +00008193 xmlRelaxNGValidateProgressiveCallback, ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008194 if (exec == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008195 ctxt->pstate = -1;
8196 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008197 }
8198 xmlRelaxNGElemPush(ctxt, exec);
8199
8200 /*
8201 * Validate the attributes part of the content.
8202 */
8203 state = xmlRelaxNGNewValidState(ctxt, node);
8204 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008205 ctxt->pstate = -1;
8206 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008207 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008208 oldstate = ctxt->state;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008209 ctxt->state = state;
8210 if (define->attrs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008211 ret = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
8212 if (ret != 0) {
8213 ctxt->pstate = -1;
8214 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
8215 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008216 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008217 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008218 ctxt->state->seq = NULL;
8219 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
8220 if (ret != 0) {
8221 ctxt->pstate = -1;
8222 }
8223 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardce192eb2003-04-16 15:58:05 +00008224 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008225 int tmp = -1, i;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008226
8227 oldflags = ctxt->flags;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008228
Daniel Veillard4c004142003-10-07 11:33:24 +00008229 for (i = 0; i < ctxt->states->nbState; i++) {
8230 state = ctxt->states->tabState[i];
8231 ctxt->state = state;
8232 ctxt->state->seq = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008233
Daniel Veillard4c004142003-10-07 11:33:24 +00008234 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
8235 tmp = 0;
8236 break;
8237 }
8238 }
8239 if (tmp != 0) {
8240 /*
8241 * validation error, log the message for the "best" one
8242 */
8243 ctxt->flags |= FLAGS_IGNORABLE;
8244 xmlRelaxNGLogBestError(ctxt);
8245 }
8246 for (i = 0; i < ctxt->states->nbState; i++) {
8247 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[i]);
8248 }
8249 xmlRelaxNGFreeStates(ctxt, ctxt->states);
8250 ctxt->states = NULL;
8251 if ((ret == 0) && (tmp == -1))
8252 ctxt->pstate = -1;
8253 ctxt->flags = oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008254 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008255 if (ctxt->pstate == -1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008256 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
8257 xmlRelaxNGDumpValidError(ctxt);
8258 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008259 }
8260 ctxt->state = oldstate;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008261}
8262
8263/**
8264 * xmlRelaxNGValidatePushElement:
8265 * @ctxt: the validation context
8266 * @doc: a document instance
8267 * @elem: an element instance
8268 *
8269 * Push a new element start on the RelaxNG validation stack.
8270 *
8271 * returns 1 if no validation problem was found or 0 if validating the
8272 * element requires a full node, and -1 in case of error.
8273 */
8274int
Daniel Veillard33300b42003-04-17 09:09:19 +00008275xmlRelaxNGValidatePushElement(xmlRelaxNGValidCtxtPtr ctxt,
8276 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillardf4e55762003-04-15 23:32:22 +00008277 xmlNodePtr elem)
8278{
8279 int ret = 1;
8280
8281 if ((ctxt == NULL) || (elem == NULL))
8282 return (-1);
8283
8284#ifdef DEBUG_PROGRESSIVE
8285 xmlGenericError(xmlGenericErrorContext, "PushElem %s\n", elem->name);
8286#endif
8287 if (ctxt->elem == 0) {
8288 xmlRelaxNGPtr schema;
8289 xmlRelaxNGGrammarPtr grammar;
8290 xmlRegExecCtxtPtr exec;
8291 xmlRelaxNGDefinePtr define;
8292
8293 schema = ctxt->schema;
8294 if (schema == NULL) {
8295 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8296 return (-1);
8297 }
8298 grammar = schema->topgrammar;
8299 if ((grammar == NULL) || (grammar->start == NULL)) {
8300 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8301 return (-1);
8302 }
8303 define = grammar->start;
8304 if (define->contModel == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008305 ctxt->pdef = define;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008306 return (0);
8307 }
8308 exec = xmlRegNewExecCtxt(define->contModel,
8309 xmlRelaxNGValidateProgressiveCallback,
8310 ctxt);
8311 if (exec == NULL) {
8312 return (-1);
8313 }
8314 xmlRelaxNGElemPush(ctxt, exec);
8315 }
8316 ctxt->pnode = elem;
8317 ctxt->pstate = 0;
8318 if (elem->ns != NULL) {
8319 ret =
8320 xmlRegExecPushString2(ctxt->elem, elem->name, elem->ns->href,
8321 ctxt);
8322 } else {
8323 ret = xmlRegExecPushString(ctxt->elem, elem->name, ctxt);
8324 }
8325 if (ret < 0) {
8326 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, elem->name);
8327 } else {
8328 if (ctxt->pstate == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008329 ret = 0;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008330 else if (ctxt->pstate < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008331 ret = -1;
8332 else
8333 ret = 1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008334 }
8335#ifdef DEBUG_PROGRESSIVE
8336 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008337 xmlGenericError(xmlGenericErrorContext, "PushElem %s failed\n",
8338 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008339#endif
8340 return (ret);
8341}
8342
8343/**
8344 * xmlRelaxNGValidatePushCData:
8345 * @ctxt: the RelaxNG validation context
8346 * @data: some character data read
Michael Woodfb27e2c2012-09-28 08:59:33 +02008347 * @len: the length of the data
Daniel Veillardf4e55762003-04-15 23:32:22 +00008348 *
8349 * check the CData parsed for validation in the current stack
8350 *
8351 * returns 1 if no validation problem was found or -1 otherwise
8352 */
8353int
8354xmlRelaxNGValidatePushCData(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00008355 const xmlChar * data, int len ATTRIBUTE_UNUSED)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008356{
8357 int ret = 1;
8358
8359 if ((ctxt == NULL) || (ctxt->elem == NULL) || (data == NULL))
8360 return (-1);
8361
8362#ifdef DEBUG_PROGRESSIVE
8363 xmlGenericError(xmlGenericErrorContext, "CDATA %s %d\n", data, len);
8364#endif
8365
8366 while (*data != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008367 if (!IS_BLANK_CH(*data))
Daniel Veillardf4e55762003-04-15 23:32:22 +00008368 break;
8369 data++;
8370 }
8371 if (*data == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008372 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008373
8374 ret = xmlRegExecPushString(ctxt->elem, BAD_CAST "#text", ctxt);
8375 if (ret < 0) {
Daniel Veillard33300b42003-04-17 09:09:19 +00008376 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG, BAD_CAST " TODO ");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008377#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008378 xmlGenericError(xmlGenericErrorContext, "CDATA failed\n");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008379#endif
8380
Daniel Veillard4c004142003-10-07 11:33:24 +00008381 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008382 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008383 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008384}
8385
8386/**
8387 * xmlRelaxNGValidatePopElement:
8388 * @ctxt: the RelaxNG validation context
8389 * @doc: a document instance
8390 * @elem: an element instance
8391 *
8392 * Pop the element end from the RelaxNG validation stack.
8393 *
8394 * returns 1 if no validation problem was found or 0 otherwise
8395 */
8396int
8397xmlRelaxNGValidatePopElement(xmlRelaxNGValidCtxtPtr ctxt,
8398 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008399 xmlNodePtr elem)
8400{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008401 int ret;
8402 xmlRegExecCtxtPtr exec;
8403
Daniel Veillard4c004142003-10-07 11:33:24 +00008404 if ((ctxt == NULL) || (ctxt->elem == NULL) || (elem == NULL))
8405 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008406#ifdef DEBUG_PROGRESSIVE
8407 xmlGenericError(xmlGenericErrorContext, "PopElem %s\n", elem->name);
8408#endif
8409 /*
8410 * verify that we reached a terminal state of the content model.
8411 */
8412 exec = xmlRelaxNGElemPop(ctxt);
8413 ret = xmlRegExecPushString(exec, NULL, NULL);
8414 if (ret == 0) {
8415 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008416 * TODO: get some of the names needed to exit the current state of exec
8417 */
8418 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8419 ret = -1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008420 } else if (ret < 0) {
8421 ret = -1;
8422 } else {
8423 ret = 1;
8424 }
8425 xmlRegFreeExecCtxt(exec);
8426#ifdef DEBUG_PROGRESSIVE
8427 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008428 xmlGenericError(xmlGenericErrorContext, "PopElem %s failed\n",
8429 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008430#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008431 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008432}
8433
8434/**
8435 * xmlRelaxNGValidateFullElement:
8436 * @ctxt: the validation context
8437 * @doc: a document instance
8438 * @elem: an element instance
8439 *
8440 * Validate a full subtree when xmlRelaxNGValidatePushElement() returned
8441 * 0 and the content of the node has been expanded.
8442 *
8443 * returns 1 if no validation problem was found or -1 in case of error.
8444 */
8445int
Daniel Veillard33300b42003-04-17 09:09:19 +00008446xmlRelaxNGValidateFullElement(xmlRelaxNGValidCtxtPtr ctxt,
8447 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008448 xmlNodePtr elem)
8449{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008450 int ret;
8451 xmlRelaxNGValidStatePtr state;
8452
Daniel Veillard4c004142003-10-07 11:33:24 +00008453 if ((ctxt == NULL) || (ctxt->pdef == NULL) || (elem == NULL))
8454 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008455#ifdef DEBUG_PROGRESSIVE
8456 xmlGenericError(xmlGenericErrorContext, "FullElem %s\n", elem->name);
8457#endif
8458 state = xmlRelaxNGNewValidState(ctxt, elem->parent);
8459 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008460 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008461 }
8462 state->seq = elem;
8463 ctxt->state = state;
8464 ctxt->errNo = XML_RELAXNG_OK;
8465 ret = xmlRelaxNGValidateDefinition(ctxt, ctxt->pdef);
Daniel Veillard4c004142003-10-07 11:33:24 +00008466 if ((ret != 0) || (ctxt->errNo != XML_RELAXNG_OK))
8467 ret = -1;
8468 else
8469 ret = 1;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02008470 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008471 ctxt->state = NULL;
8472#ifdef DEBUG_PROGRESSIVE
8473 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008474 xmlGenericError(xmlGenericErrorContext, "FullElem %s failed\n",
8475 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008476#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008477 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008478}
8479
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008480/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008481 * *
8482 * Generic interpreted validation implementation *
8483 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008484 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008485static int xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8486 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008487
8488/**
8489 * xmlRelaxNGSkipIgnored:
8490 * @ctxt: a schema validation context
8491 * @node: the top node.
8492 *
8493 * Skip ignorable nodes in that context
8494 *
8495 * Returns the new sibling or NULL in case of error.
8496 */
8497static xmlNodePtr
8498xmlRelaxNGSkipIgnored(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008499 xmlNodePtr node)
8500{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008501 /*
8502 * TODO complete and handle entities
8503 */
8504 while ((node != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00008505 ((node->type == XML_COMMENT_NODE) ||
8506 (node->type == XML_PI_NODE) ||
William M. Brack7217c862004-03-15 02:43:56 +00008507 (node->type == XML_XINCLUDE_START) ||
8508 (node->type == XML_XINCLUDE_END) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00008509 (((node->type == XML_TEXT_NODE) ||
8510 (node->type == XML_CDATA_SECTION_NODE)) &&
8511 ((ctxt->flags & FLAGS_MIXED_CONTENT) ||
8512 (IS_BLANK_NODE(node)))))) {
8513 node = node->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008514 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008515 return (node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008516}
8517
8518/**
Daniel Veillardedc91922003-01-26 00:52:04 +00008519 * xmlRelaxNGNormalize:
8520 * @ctxt: a schema validation context
8521 * @str: the string to normalize
8522 *
8523 * Implements the normalizeWhiteSpace( s ) function from
8524 * section 6.2.9 of the spec
8525 *
8526 * Returns the new string or NULL in case of error.
8527 */
8528static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00008529xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt, const xmlChar * str)
8530{
Daniel Veillardedc91922003-01-26 00:52:04 +00008531 xmlChar *ret, *p;
8532 const xmlChar *tmp;
8533 int len;
Daniel Veillard4c004142003-10-07 11:33:24 +00008534
Daniel Veillardedc91922003-01-26 00:52:04 +00008535 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00008536 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008537 tmp = str;
Daniel Veillard4c004142003-10-07 11:33:24 +00008538 while (*tmp != 0)
8539 tmp++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008540 len = tmp - str;
8541
Daniel Veillard3c908dc2003-04-19 00:07:51 +00008542 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar));
Daniel Veillardedc91922003-01-26 00:52:04 +00008543 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008544 xmlRngVErrMemory(ctxt, "validating\n");
8545 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008546 }
8547 p = ret;
William M. Brack76e95df2003-10-18 16:20:14 +00008548 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008549 str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008550 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008551 if (IS_BLANK_CH(*str)) {
8552 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008553 str++;
8554 if (*str == 0)
8555 break;
8556 *p++ = ' ';
8557 } else
8558 *p++ = *str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008559 }
8560 *p = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008561 return (ret);
Daniel Veillardedc91922003-01-26 00:52:04 +00008562}
8563
8564/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008565 * xmlRelaxNGValidateDatatype:
8566 * @ctxt: a Relax-NG validation context
8567 * @value: the string value
8568 * @type: the datatype definition
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008569 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008570 *
8571 * Validate the given value against the dataype
8572 *
8573 * Returns 0 if the validation succeeded or an error code.
8574 */
8575static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008576xmlRelaxNGValidateDatatype(xmlRelaxNGValidCtxtPtr ctxt,
8577 const xmlChar * value,
8578 xmlRelaxNGDefinePtr define, xmlNodePtr node)
8579{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008580 int ret, tmp;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008581 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008582 void *result = NULL;
8583 xmlRelaxNGDefinePtr cur;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008584
8585 if ((define == NULL) || (define->data == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008586 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008587 }
8588 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008589 if (lib->check != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008590 if ((define->attrs != NULL) &&
8591 (define->attrs->type == XML_RELAXNG_PARAM)) {
8592 ret =
8593 lib->check(lib->data, define->name, value, &result, node);
8594 } else {
8595 ret = lib->check(lib->data, define->name, value, NULL, node);
8596 }
8597 } else
8598 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008599 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008600 VALID_ERR2(XML_RELAXNG_ERR_TYPE, define->name);
8601 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
8602 lib->freef(lib->data, result);
8603 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008604 } else if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008605 ret = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008606 } else if (ret == 2) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008607 VALID_ERR2P(XML_RELAXNG_ERR_DUPID, value);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008608 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008609 VALID_ERR3P(XML_RELAXNG_ERR_TYPEVAL, define->name, value);
8610 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008611 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008612 cur = define->attrs;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008613 while ((ret == 0) && (cur != NULL) && (cur->type == XML_RELAXNG_PARAM)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008614 if (lib->facet != NULL) {
8615 tmp = lib->facet(lib->data, define->name, cur->name,
8616 cur->value, value, result);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008617 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008618 ret = -1;
8619 }
8620 cur = cur->next;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008621 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008622 if ((ret == 0) && (define->content != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008623 const xmlChar *oldvalue, *oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008624
Daniel Veillard4c004142003-10-07 11:33:24 +00008625 oldvalue = ctxt->state->value;
8626 oldendvalue = ctxt->state->endvalue;
8627 ctxt->state->value = (xmlChar *) value;
8628 ctxt->state->endvalue = NULL;
8629 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8630 ctxt->state->value = (xmlChar *) oldvalue;
8631 ctxt->state->endvalue = (xmlChar *) oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008632 }
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008633 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00008634 lib->freef(lib->data, result);
8635 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008636}
8637
8638/**
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008639 * xmlRelaxNGNextValue:
8640 * @ctxt: a Relax-NG validation context
8641 *
8642 * Skip to the next value when validating within a list
8643 *
8644 * Returns 0 if the operation succeeded or an error code.
8645 */
8646static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008647xmlRelaxNGNextValue(xmlRelaxNGValidCtxtPtr ctxt)
8648{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008649 xmlChar *cur;
8650
8651 cur = ctxt->state->value;
8652 if ((cur == NULL) || (ctxt->state->endvalue == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008653 ctxt->state->value = NULL;
8654 ctxt->state->endvalue = NULL;
8655 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008656 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008657 while (*cur != 0)
8658 cur++;
8659 while ((cur != ctxt->state->endvalue) && (*cur == 0))
8660 cur++;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008661 if (cur == ctxt->state->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00008662 ctxt->state->value = NULL;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008663 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008664 ctxt->state->value = cur;
8665 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008666}
8667
8668/**
8669 * xmlRelaxNGValidateValueList:
8670 * @ctxt: a Relax-NG validation context
8671 * @defines: the list of definitions to verify
8672 *
8673 * Validate the given set of definitions for the current value
8674 *
8675 * Returns 0 if the validation succeeded or an error code.
8676 */
8677static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008678xmlRelaxNGValidateValueList(xmlRelaxNGValidCtxtPtr ctxt,
8679 xmlRelaxNGDefinePtr defines)
8680{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008681 int ret = 0;
8682
8683 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008684 ret = xmlRelaxNGValidateValue(ctxt, defines);
8685 if (ret != 0)
8686 break;
8687 defines = defines->next;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008688 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008689 return (ret);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008690}
8691
8692/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00008693 * xmlRelaxNGValidateValue:
8694 * @ctxt: a Relax-NG validation context
8695 * @define: the definition to verify
8696 *
8697 * Validate the given definition for the current value
8698 *
8699 * Returns 0 if the validation succeeded or an error code.
8700 */
8701static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008702xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8703 xmlRelaxNGDefinePtr define)
8704{
Daniel Veillardedc91922003-01-26 00:52:04 +00008705 int ret = 0, oldflags;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008706 xmlChar *value;
8707
8708 value = ctxt->state->value;
8709 switch (define->type) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008710 case XML_RELAXNG_EMPTY:{
8711 if ((value != NULL) && (value[0] != 0)) {
8712 int idx = 0;
Daniel Veillardd4310742003-02-18 21:12:46 +00008713
William M. Brack76e95df2003-10-18 16:20:14 +00008714 while (IS_BLANK_CH(value[idx]))
Daniel Veillard4c004142003-10-07 11:33:24 +00008715 idx++;
8716 if (value[idx] != 0)
8717 ret = -1;
8718 }
8719 break;
8720 }
8721 case XML_RELAXNG_TEXT:
8722 break;
8723 case XML_RELAXNG_VALUE:{
8724 if (!xmlStrEqual(value, define->value)) {
8725 if (define->name != NULL) {
8726 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillardedc91922003-01-26 00:52:04 +00008727
Daniel Veillard4c004142003-10-07 11:33:24 +00008728 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
8729 if ((lib != NULL) && (lib->comp != NULL)) {
8730 ret = lib->comp(lib->data, define->name,
8731 define->value, define->node,
8732 (void *) define->attrs,
8733 value, ctxt->state->node);
8734 } else
8735 ret = -1;
8736 if (ret < 0) {
8737 VALID_ERR2(XML_RELAXNG_ERR_TYPECMP,
8738 define->name);
8739 return (-1);
8740 } else if (ret == 1) {
8741 ret = 0;
8742 } else {
8743 ret = -1;
8744 }
8745 } else {
8746 xmlChar *nval, *nvalue;
Daniel Veillardedc91922003-01-26 00:52:04 +00008747
Daniel Veillard4c004142003-10-07 11:33:24 +00008748 /*
8749 * TODO: trivial optimizations are possible by
8750 * computing at compile-time
8751 */
8752 nval = xmlRelaxNGNormalize(ctxt, define->value);
8753 nvalue = xmlRelaxNGNormalize(ctxt, value);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008754
Daniel Veillard4c004142003-10-07 11:33:24 +00008755 if ((nval == NULL) || (nvalue == NULL) ||
8756 (!xmlStrEqual(nval, nvalue)))
8757 ret = -1;
8758 if (nval != NULL)
8759 xmlFree(nval);
8760 if (nvalue != NULL)
8761 xmlFree(nvalue);
8762 }
8763 }
8764 if (ret == 0)
8765 xmlRelaxNGNextValue(ctxt);
8766 break;
8767 }
8768 case XML_RELAXNG_DATATYPE:{
8769 ret = xmlRelaxNGValidateDatatype(ctxt, value, define,
8770 ctxt->state->seq);
8771 if (ret == 0)
8772 xmlRelaxNGNextValue(ctxt);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008773
Daniel Veillard4c004142003-10-07 11:33:24 +00008774 break;
8775 }
8776 case XML_RELAXNG_CHOICE:{
8777 xmlRelaxNGDefinePtr list = define->content;
8778 xmlChar *oldvalue;
8779
8780 oldflags = ctxt->flags;
8781 ctxt->flags |= FLAGS_IGNORABLE;
8782
8783 oldvalue = ctxt->state->value;
8784 while (list != NULL) {
8785 ret = xmlRelaxNGValidateValue(ctxt, list);
8786 if (ret == 0) {
8787 break;
8788 }
8789 ctxt->state->value = oldvalue;
8790 list = list->next;
8791 }
8792 ctxt->flags = oldflags;
8793 if (ret != 0) {
8794 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8795 xmlRelaxNGDumpValidError(ctxt);
8796 } else {
8797 if (ctxt->errNr > 0)
8798 xmlRelaxNGPopErrors(ctxt, 0);
8799 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008800 break;
8801 }
8802 case XML_RELAXNG_LIST:{
8803 xmlRelaxNGDefinePtr list = define->content;
8804 xmlChar *oldvalue, *oldend, *val, *cur;
8805
Daniel Veillard416589a2003-02-17 17:25:42 +00008806#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008807 int nb_values = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00008808#endif
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008809
Daniel Veillard4c004142003-10-07 11:33:24 +00008810 oldvalue = ctxt->state->value;
8811 oldend = ctxt->state->endvalue;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008812
Daniel Veillard4c004142003-10-07 11:33:24 +00008813 val = xmlStrdup(oldvalue);
8814 if (val == NULL) {
8815 val = xmlStrdup(BAD_CAST "");
8816 }
8817 if (val == NULL) {
8818 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
8819 return (-1);
8820 }
8821 cur = val;
8822 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008823 if (IS_BLANK_CH(*cur)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008824 *cur = 0;
8825 cur++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008826#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008827 nb_values++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008828#endif
William M. Brack76e95df2003-10-18 16:20:14 +00008829 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00008830 *cur++ = 0;
8831 } else
8832 cur++;
8833 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008834#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008835 xmlGenericError(xmlGenericErrorContext,
8836 "list value: '%s' found %d items\n",
8837 oldvalue, nb_values);
8838 nb_values = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008839#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008840 ctxt->state->endvalue = cur;
8841 cur = val;
8842 while ((*cur == 0) && (cur != ctxt->state->endvalue))
8843 cur++;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008844
Daniel Veillard4c004142003-10-07 11:33:24 +00008845 ctxt->state->value = cur;
8846
8847 while (list != NULL) {
8848 if (ctxt->state->value == ctxt->state->endvalue)
8849 ctxt->state->value = NULL;
8850 ret = xmlRelaxNGValidateValue(ctxt, list);
8851 if (ret != 0) {
8852#ifdef DEBUG_LIST
8853 xmlGenericError(xmlGenericErrorContext,
8854 "Failed to validate value: '%s' with %d rule\n",
8855 ctxt->state->value, nb_values);
8856#endif
8857 break;
8858 }
8859#ifdef DEBUG_LIST
8860 nb_values++;
8861#endif
8862 list = list->next;
8863 }
8864
8865 if ((ret == 0) && (ctxt->state->value != NULL) &&
8866 (ctxt->state->value != ctxt->state->endvalue)) {
8867 VALID_ERR2(XML_RELAXNG_ERR_LISTEXTRA,
8868 ctxt->state->value);
8869 ret = -1;
8870 }
8871 xmlFree(val);
8872 ctxt->state->value = oldvalue;
8873 ctxt->state->endvalue = oldend;
8874 break;
8875 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008876 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00008877 ret = xmlRelaxNGValidateValueList(ctxt, define->content);
8878 if (ret != 0) {
8879 break;
8880 }
8881 /* no break on purpose */
8882 case XML_RELAXNG_ZEROORMORE:{
8883 xmlChar *cur, *temp;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008884
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008885 if ((ctxt->state->value == NULL) ||
8886 (*ctxt->state->value == 0)) {
8887 ret = 0;
8888 break;
8889 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008890 oldflags = ctxt->flags;
8891 ctxt->flags |= FLAGS_IGNORABLE;
8892 cur = ctxt->state->value;
8893 temp = NULL;
8894 while ((cur != NULL) && (cur != ctxt->state->endvalue) &&
8895 (temp != cur)) {
8896 temp = cur;
8897 ret =
8898 xmlRelaxNGValidateValueList(ctxt, define->content);
8899 if (ret != 0) {
8900 ctxt->state->value = temp;
8901 ret = 0;
8902 break;
8903 }
8904 cur = ctxt->state->value;
8905 }
8906 ctxt->flags = oldflags;
Daniel Veillard14b56432006-03-09 18:41:40 +00008907 if (ctxt->errNr > 0)
8908 xmlRelaxNGPopErrors(ctxt, 0);
Daniel Veillard4c004142003-10-07 11:33:24 +00008909 break;
8910 }
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008911 case XML_RELAXNG_OPTIONAL:{
8912 xmlChar *temp;
8913
8914 if ((ctxt->state->value == NULL) ||
8915 (*ctxt->state->value == 0)) {
8916 ret = 0;
8917 break;
8918 }
8919 oldflags = ctxt->flags;
8920 ctxt->flags |= FLAGS_IGNORABLE;
8921 temp = ctxt->state->value;
8922 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8923 ctxt->flags = oldflags;
8924 if (ret != 0) {
8925 ctxt->state->value = temp;
8926 if (ctxt->errNr > 0)
8927 xmlRelaxNGPopErrors(ctxt, 0);
8928 ret = 0;
8929 break;
8930 }
8931 if (ctxt->errNr > 0)
8932 xmlRelaxNGPopErrors(ctxt, 0);
8933 break;
8934 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008935 case XML_RELAXNG_EXCEPT:{
8936 xmlRelaxNGDefinePtr list;
Daniel Veillard416589a2003-02-17 17:25:42 +00008937
Daniel Veillard4c004142003-10-07 11:33:24 +00008938 list = define->content;
8939 while (list != NULL) {
8940 ret = xmlRelaxNGValidateValue(ctxt, list);
8941 if (ret == 0) {
8942 ret = -1;
8943 break;
8944 } else
8945 ret = 0;
8946 list = list->next;
8947 }
8948 break;
8949 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008950 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00008951 case XML_RELAXNG_GROUP:{
8952 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008953
Daniel Veillard4c004142003-10-07 11:33:24 +00008954 list = define->content;
8955 while (list != NULL) {
8956 ret = xmlRelaxNGValidateValue(ctxt, list);
8957 if (ret != 0) {
8958 ret = -1;
8959 break;
8960 } else
8961 ret = 0;
8962 list = list->next;
8963 }
8964 break;
8965 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008966 case XML_RELAXNG_REF:
8967 case XML_RELAXNG_PARENTREF:
Daniel Veillard25a1ce92008-06-02 16:04:12 +00008968 if (define->content == NULL) {
Daniel Veillard81c51e12009-08-14 18:52:10 +02008969 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
8970 ret = -1;
8971 } else {
8972 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8973 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008974 break;
8975 default:
8976 TODO ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008977 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008978 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008979}
8980
8981/**
8982 * xmlRelaxNGValidateValueContent:
8983 * @ctxt: a Relax-NG validation context
8984 * @defines: the list of definitions to verify
8985 *
8986 * Validate the given definitions for the current value
8987 *
8988 * Returns 0 if the validation succeeded or an error code.
8989 */
8990static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008991xmlRelaxNGValidateValueContent(xmlRelaxNGValidCtxtPtr ctxt,
8992 xmlRelaxNGDefinePtr defines)
8993{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008994 int ret = 0;
8995
8996 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008997 ret = xmlRelaxNGValidateValue(ctxt, defines);
8998 if (ret != 0)
8999 break;
9000 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009001 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009002 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009003}
9004
9005/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009006 * xmlRelaxNGAttributeMatch:
9007 * @ctxt: a Relax-NG validation context
9008 * @define: the definition to check
9009 * @prop: the attribute
9010 *
9011 * Check if the attribute matches the definition nameClass
9012 *
9013 * Returns 1 if the attribute matches, 0 if no, or -1 in case of error
9014 */
9015static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009016xmlRelaxNGAttributeMatch(xmlRelaxNGValidCtxtPtr ctxt,
9017 xmlRelaxNGDefinePtr define, xmlAttrPtr prop)
9018{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009019 int ret;
9020
9021 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009022 if (!xmlStrEqual(define->name, prop->name))
9023 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009024 }
9025 if (define->ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009026 if (define->ns[0] == 0) {
9027 if (prop->ns != NULL)
9028 return (0);
9029 } else {
9030 if ((prop->ns == NULL) ||
9031 (!xmlStrEqual(define->ns, prop->ns->href)))
9032 return (0);
9033 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009034 }
9035 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009036 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009037 define = define->nameClass;
9038 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009039 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009040
Daniel Veillard4c004142003-10-07 11:33:24 +00009041 list = define->content;
9042 while (list != NULL) {
9043 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9044 if (ret == 1)
9045 return (0);
9046 if (ret < 0)
9047 return (ret);
9048 list = list->next;
9049 }
Shaun McCance6473a412013-10-23 14:51:33 -04009050 } else if (define->type == XML_RELAXNG_CHOICE) {
9051 xmlRelaxNGDefinePtr list;
9052
9053 list = define->nameClass;
9054 while (list != NULL) {
9055 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9056 if (ret == 1)
9057 return (1);
9058 if (ret < 0)
9059 return (ret);
9060 list = list->next;
9061 }
9062 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009063 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009064 TODO}
9065 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009066}
9067
9068/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00009069 * xmlRelaxNGValidateAttribute:
9070 * @ctxt: a Relax-NG validation context
9071 * @define: the definition to verify
9072 *
9073 * Validate the given attribute definition for that node
9074 *
9075 * Returns 0 if the validation succeeded or an error code.
9076 */
9077static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009078xmlRelaxNGValidateAttribute(xmlRelaxNGValidCtxtPtr ctxt,
9079 xmlRelaxNGDefinePtr define)
9080{
Daniel Veillard6eadf632003-01-23 18:29:16 +00009081 int ret = 0, i;
9082 xmlChar *value, *oldvalue;
9083 xmlAttrPtr prop = NULL, tmp;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00009084 xmlNodePtr oldseq;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009085
Daniel Veillard1ed7f362003-02-03 10:57:45 +00009086 if (ctxt->state->nbAttrLeft <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009087 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009088 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009089 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9090 tmp = ctxt->state->attrs[i];
9091 if ((tmp != NULL) && (xmlStrEqual(define->name, tmp->name))) {
9092 if ((((define->ns == NULL) || (define->ns[0] == 0)) &&
9093 (tmp->ns == NULL)) ||
9094 ((tmp->ns != NULL) &&
9095 (xmlStrEqual(define->ns, tmp->ns->href)))) {
9096 prop = tmp;
9097 break;
9098 }
9099 }
9100 }
9101 if (prop != NULL) {
9102 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9103 oldvalue = ctxt->state->value;
9104 oldseq = ctxt->state->seq;
9105 ctxt->state->seq = (xmlNodePtr) prop;
9106 ctxt->state->value = value;
9107 ctxt->state->endvalue = NULL;
9108 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9109 if (ctxt->state->value != NULL)
9110 value = ctxt->state->value;
9111 if (value != NULL)
9112 xmlFree(value);
9113 ctxt->state->value = oldvalue;
9114 ctxt->state->seq = oldseq;
9115 if (ret == 0) {
9116 /*
9117 * flag the attribute as processed
9118 */
9119 ctxt->state->attrs[i] = NULL;
9120 ctxt->state->nbAttrLeft--;
9121 }
9122 } else {
9123 ret = -1;
9124 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009125#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009126 xmlGenericError(xmlGenericErrorContext,
9127 "xmlRelaxNGValidateAttribute(%s): %d\n",
9128 define->name, ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009129#endif
9130 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009131 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9132 tmp = ctxt->state->attrs[i];
9133 if ((tmp != NULL) &&
9134 (xmlRelaxNGAttributeMatch(ctxt, define, tmp) == 1)) {
9135 prop = tmp;
9136 break;
9137 }
9138 }
9139 if (prop != NULL) {
9140 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9141 oldvalue = ctxt->state->value;
9142 oldseq = ctxt->state->seq;
9143 ctxt->state->seq = (xmlNodePtr) prop;
9144 ctxt->state->value = value;
9145 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9146 if (ctxt->state->value != NULL)
9147 value = ctxt->state->value;
9148 if (value != NULL)
9149 xmlFree(value);
9150 ctxt->state->value = oldvalue;
9151 ctxt->state->seq = oldseq;
9152 if (ret == 0) {
9153 /*
9154 * flag the attribute as processed
9155 */
9156 ctxt->state->attrs[i] = NULL;
9157 ctxt->state->nbAttrLeft--;
9158 }
9159 } else {
9160 ret = -1;
9161 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009162#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009163 if (define->ns != NULL) {
9164 xmlGenericError(xmlGenericErrorContext,
9165 "xmlRelaxNGValidateAttribute(nsName ns = %s): %d\n",
9166 define->ns, ret);
9167 } else {
9168 xmlGenericError(xmlGenericErrorContext,
9169 "xmlRelaxNGValidateAttribute(anyName): %d\n",
9170 ret);
9171 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009172#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +00009173 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009174
9175 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009176}
9177
9178/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009179 * xmlRelaxNGValidateAttributeList:
9180 * @ctxt: a Relax-NG validation context
9181 * @define: the list of definition to verify
9182 *
9183 * Validate the given node against the list of attribute definitions
9184 *
9185 * Returns 0 if the validation succeeded or an error code.
9186 */
9187static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009188xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
9189 xmlRelaxNGDefinePtr defines)
9190{
Daniel Veillardce192eb2003-04-16 15:58:05 +00009191 int ret = 0, res;
9192 int needmore = 0;
9193 xmlRelaxNGDefinePtr cur;
9194
9195 cur = defines;
9196 while (cur != NULL) {
9197 if (cur->type == XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009198 if (xmlRelaxNGValidateAttribute(ctxt, cur) != 0)
9199 ret = -1;
9200 } else
9201 needmore = 1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009202 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009203 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009204 if (!needmore)
Daniel Veillard4c004142003-10-07 11:33:24 +00009205 return (ret);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009206 cur = defines;
9207 while (cur != NULL) {
9208 if (cur->type != XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009209 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9210 res = xmlRelaxNGValidateDefinition(ctxt, cur);
9211 if (res < 0)
9212 ret = -1;
9213 } else {
9214 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9215 return (-1);
9216 }
9217 if (res == -1) /* continues on -2 */
9218 break;
9219 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009220 cur = cur->next;
9221 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009222
9223 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009224}
9225
9226/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009227 * xmlRelaxNGNodeMatchesList:
9228 * @node: the node
9229 * @list: a NULL terminated array of definitions
9230 *
9231 * Check if a node can be matched by one of the definitions
9232 *
9233 * Returns 1 if matches 0 otherwise
9234 */
9235static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009236xmlRelaxNGNodeMatchesList(xmlNodePtr node, xmlRelaxNGDefinePtr * list)
9237{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009238 xmlRelaxNGDefinePtr cur;
Daniel Veillard0e3d3ce2003-03-21 12:43:18 +00009239 int i = 0, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009240
9241 if ((node == NULL) || (list == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00009242 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009243
9244 cur = list[i++];
9245 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009246 if ((node->type == XML_ELEMENT_NODE) &&
9247 (cur->type == XML_RELAXNG_ELEMENT)) {
9248 tmp = xmlRelaxNGElementMatch(NULL, cur, node);
9249 if (tmp == 1)
9250 return (1);
9251 } else if (((node->type == XML_TEXT_NODE) ||
9252 (node->type == XML_CDATA_SECTION_NODE)) &&
9253 (cur->type == XML_RELAXNG_TEXT)) {
9254 return (1);
9255 }
9256 cur = list[i++];
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009257 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009258 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009259}
9260
9261/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009262 * xmlRelaxNGValidateInterleave:
9263 * @ctxt: a Relax-NG validation context
9264 * @define: the definition to verify
9265 *
9266 * Validate an interleave definition for a node.
9267 *
9268 * Returns 0 if the validation succeeded or an error code.
9269 */
9270static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009271xmlRelaxNGValidateInterleave(xmlRelaxNGValidCtxtPtr ctxt,
9272 xmlRelaxNGDefinePtr define)
9273{
William M. Brack779af002003-08-01 15:55:39 +00009274 int ret = 0, i, nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009275 int errNr = ctxt->errNr;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009276 int oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009277
9278 xmlRelaxNGValidStatePtr oldstate;
9279 xmlRelaxNGPartitionPtr partitions;
9280 xmlRelaxNGInterleaveGroupPtr group = NULL;
9281 xmlNodePtr cur, start, last = NULL, lastchg = NULL, lastelem;
9282 xmlNodePtr *list = NULL, *lasts = NULL;
9283
9284 if (define->data != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009285 partitions = (xmlRelaxNGPartitionPtr) define->data;
9286 nbgroups = partitions->nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009287 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009288 VALID_ERR(XML_RELAXNG_ERR_INTERNODATA);
9289 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009290 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009291 /*
9292 * Optimizations for MIXED
9293 */
9294 oldflags = ctxt->flags;
Daniel Veillarde063f482003-03-21 16:53:17 +00009295 if (define->dflags & IS_MIXED) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009296 ctxt->flags |= FLAGS_MIXED_CONTENT;
9297 if (nbgroups == 2) {
9298 /*
9299 * this is a pure <mixed> case
9300 */
9301 if (ctxt->state != NULL)
9302 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9303 ctxt->state->seq);
9304 if (partitions->groups[0]->rule->type == XML_RELAXNG_TEXT)
9305 ret = xmlRelaxNGValidateDefinition(ctxt,
9306 partitions->groups[1]->
9307 rule);
9308 else
9309 ret = xmlRelaxNGValidateDefinition(ctxt,
9310 partitions->groups[0]->
9311 rule);
9312 if (ret == 0) {
9313 if (ctxt->state != NULL)
9314 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9315 ctxt->state->
9316 seq);
9317 }
9318 ctxt->flags = oldflags;
9319 return (ret);
9320 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009321 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009322
9323 /*
9324 * Build arrays to store the first and last node of the chain
9325 * pertaining to each group
9326 */
9327 list = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9328 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009329 xmlRngVErrMemory(ctxt, "validating\n");
9330 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009331 }
9332 memset(list, 0, nbgroups * sizeof(xmlNodePtr));
9333 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9334 if (lasts == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009335 xmlRngVErrMemory(ctxt, "validating\n");
9336 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009337 }
9338 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr));
9339
9340 /*
9341 * Walk the sequence of children finding the right group and
9342 * sorting them in sequences.
9343 */
9344 cur = ctxt->state->seq;
9345 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9346 start = cur;
9347 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009348 ctxt->state->seq = cur;
9349 if ((partitions->triage != NULL) &&
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009350 (partitions->flags & IS_DETERMINIST)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009351 void *tmp = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009352
Daniel Veillard4c004142003-10-07 11:33:24 +00009353 if ((cur->type == XML_TEXT_NODE) ||
9354 (cur->type == XML_CDATA_SECTION_NODE)) {
9355 tmp = xmlHashLookup2(partitions->triage, BAD_CAST "#text",
9356 NULL);
9357 } else if (cur->type == XML_ELEMENT_NODE) {
9358 if (cur->ns != NULL) {
9359 tmp = xmlHashLookup2(partitions->triage, cur->name,
9360 cur->ns->href);
9361 if (tmp == NULL)
9362 tmp = xmlHashLookup2(partitions->triage,
9363 BAD_CAST "#any",
9364 cur->ns->href);
9365 } else
9366 tmp =
9367 xmlHashLookup2(partitions->triage, cur->name,
9368 NULL);
9369 if (tmp == NULL)
9370 tmp =
9371 xmlHashLookup2(partitions->triage, BAD_CAST "#any",
9372 NULL);
9373 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009374
Daniel Veillard4c004142003-10-07 11:33:24 +00009375 if (tmp == NULL) {
9376 i = nbgroups;
9377 } else {
9378 i = ((long) tmp) - 1;
9379 if (partitions->flags & IS_NEEDCHECK) {
9380 group = partitions->groups[i];
9381 if (!xmlRelaxNGNodeMatchesList(cur, group->defs))
9382 i = nbgroups;
9383 }
9384 }
9385 } else {
9386 for (i = 0; i < nbgroups; i++) {
9387 group = partitions->groups[i];
9388 if (group == NULL)
9389 continue;
9390 if (xmlRelaxNGNodeMatchesList(cur, group->defs))
9391 break;
9392 }
9393 }
9394 /*
9395 * We break as soon as an element not matched is found
9396 */
9397 if (i >= nbgroups) {
9398 break;
9399 }
9400 if (lasts[i] != NULL) {
9401 lasts[i]->next = cur;
9402 lasts[i] = cur;
9403 } else {
9404 list[i] = cur;
9405 lasts[i] = cur;
9406 }
9407 if (cur->next != NULL)
9408 lastchg = cur->next;
9409 else
9410 lastchg = cur;
9411 cur = xmlRelaxNGSkipIgnored(ctxt, cur->next);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009412 }
9413 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009414 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9415 ret = -1;
9416 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009417 }
9418 lastelem = cur;
9419 oldstate = ctxt->state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009420 for (i = 0; i < nbgroups; i++) {
9421 ctxt->state = xmlRelaxNGCopyValidState(ctxt, oldstate);
Gaurav Gupta6d753992014-07-14 16:01:10 +08009422 if (ctxt->state == NULL) {
9423 ret = -1;
9424 break;
9425 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009426 group = partitions->groups[i];
9427 if (lasts[i] != NULL) {
9428 last = lasts[i]->next;
9429 lasts[i]->next = NULL;
9430 }
9431 ctxt->state->seq = list[i];
9432 ret = xmlRelaxNGValidateDefinition(ctxt, group->rule);
9433 if (ret != 0)
9434 break;
9435 if (ctxt->state != NULL) {
9436 cur = ctxt->state->seq;
9437 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9438 xmlRelaxNGFreeValidState(ctxt, oldstate);
9439 oldstate = ctxt->state;
9440 ctxt->state = NULL;
9441 if (cur != NULL) {
9442 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9443 ret = -1;
9444 ctxt->state = oldstate;
9445 goto done;
9446 }
9447 } else if (ctxt->states != NULL) {
9448 int j;
9449 int found = 0;
Daniel Veillard87254c82006-02-19 15:27:17 +00009450 int best = -1;
9451 int lowattr = -1;
9452
9453 /*
9454 * PBM: what happen if there is attributes checks in the interleaves
9455 */
Daniel Veillardfd573f12003-03-16 17:52:32 +00009456
Daniel Veillard4c004142003-10-07 11:33:24 +00009457 for (j = 0; j < ctxt->states->nbState; j++) {
9458 cur = ctxt->states->tabState[j]->seq;
9459 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9460 if (cur == NULL) {
Daniel Veillard87254c82006-02-19 15:27:17 +00009461 if (found == 0) {
9462 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9463 best = j;
9464 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009465 found = 1;
Daniel Veillard87254c82006-02-19 15:27:17 +00009466 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9467 /* try to keep the latest one to mach old heuristic */
9468 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9469 best = j;
9470 }
9471 if (lowattr == 0)
9472 break;
9473 } else if (found == 0) {
9474 if (lowattr == -1) {
9475 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9476 best = j;
9477 } else
9478 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9479 /* try to keep the latest one to mach old heuristic */
9480 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9481 best = j;
9482 }
9483 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009484 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009485 /*
9486 * BIG PBM: here we pick only one restarting point :-(
9487 */
Daniel Veillard4c004142003-10-07 11:33:24 +00009488 if (ctxt->states->nbState > 0) {
9489 xmlRelaxNGFreeValidState(ctxt, oldstate);
Daniel Veillard87254c82006-02-19 15:27:17 +00009490 if (best != -1) {
9491 oldstate = ctxt->states->tabState[best];
9492 ctxt->states->tabState[best] = NULL;
9493 } else {
9494 oldstate =
9495 ctxt->states->tabState[ctxt->states->nbState - 1];
9496 ctxt->states->tabState[ctxt->states->nbState - 1] = NULL;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02009497 ctxt->states->nbState--;
Daniel Veillard87254c82006-02-19 15:27:17 +00009498 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009499 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009500 for (j = 0; j < ctxt->states->nbState ; j++) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009501 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[j]);
9502 }
9503 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9504 ctxt->states = NULL;
9505 if (found == 0) {
Daniel Veillard76d36452009-09-07 11:19:33 +02009506 if (cur == NULL) {
Ben Waltona7a6a4b2010-03-15 10:06:36 +01009507 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA,
9508 (const xmlChar *) "noname");
Daniel Veillard76d36452009-09-07 11:19:33 +02009509 } else {
9510 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9511 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009512 ret = -1;
9513 ctxt->state = oldstate;
9514 goto done;
9515 }
9516 } else {
9517 ret = -1;
9518 break;
9519 }
9520 if (lasts[i] != NULL) {
9521 lasts[i]->next = last;
9522 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009523 }
9524 if (ctxt->state != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009525 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009526 ctxt->state = oldstate;
9527 ctxt->state->seq = lastelem;
9528 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009529 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9530 ret = -1;
9531 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009532 }
9533
Daniel Veillard4c004142003-10-07 11:33:24 +00009534 done:
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009535 ctxt->flags = oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009536 /*
9537 * builds the next links chain from the prev one
9538 */
9539 cur = lastchg;
9540 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009541 if ((cur == start) || (cur->prev == NULL))
9542 break;
9543 cur->prev->next = cur;
9544 cur = cur->prev;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009545 }
9546 if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009547 if (ctxt->errNr > errNr)
9548 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009549 }
9550
9551 xmlFree(list);
9552 xmlFree(lasts);
Daniel Veillard4c004142003-10-07 11:33:24 +00009553 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009554}
9555
9556/**
9557 * xmlRelaxNGValidateDefinitionList:
9558 * @ctxt: a Relax-NG validation context
9559 * @define: the list of definition to verify
9560 *
9561 * Validate the given node content against the (list) of definitions
9562 *
9563 * Returns 0 if the validation succeeded or an error code.
9564 */
9565static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009566xmlRelaxNGValidateDefinitionList(xmlRelaxNGValidCtxtPtr ctxt,
9567 xmlRelaxNGDefinePtr defines)
9568{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009569 int ret = 0, res;
9570
9571
Daniel Veillard952379b2003-03-17 15:37:12 +00009572 if (defines == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009573 VALID_ERR2(XML_RELAXNG_ERR_INTERNAL,
9574 BAD_CAST "NULL definition list");
9575 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00009576 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009577 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009578 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9579 res = xmlRelaxNGValidateDefinition(ctxt, defines);
9580 if (res < 0)
9581 ret = -1;
9582 } else {
9583 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9584 return (-1);
9585 }
9586 if (res == -1) /* continues on -2 */
9587 break;
9588 defines = defines->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009589 }
9590
Daniel Veillard4c004142003-10-07 11:33:24 +00009591 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009592}
9593
9594/**
9595 * xmlRelaxNGElementMatch:
Daniel Veillard416589a2003-02-17 17:25:42 +00009596 * @ctxt: a Relax-NG validation context
9597 * @define: the definition to check
Daniel Veillardfd573f12003-03-16 17:52:32 +00009598 * @elem: the element
Daniel Veillard416589a2003-02-17 17:25:42 +00009599 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009600 * Check if the element matches the definition nameClass
Daniel Veillard416589a2003-02-17 17:25:42 +00009601 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009602 * Returns 1 if the element matches, 0 if no, or -1 in case of error
Daniel Veillard416589a2003-02-17 17:25:42 +00009603 */
9604static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009605xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
9606 xmlRelaxNGDefinePtr define, xmlNodePtr elem)
9607{
Daniel Veillard580ced82003-03-21 21:22:48 +00009608 int ret = 0, oldflags = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00009609
Daniel Veillardfd573f12003-03-16 17:52:32 +00009610 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009611 if (!xmlStrEqual(elem->name, define->name)) {
9612 VALID_ERR3(XML_RELAXNG_ERR_ELEMNAME, define->name, elem->name);
9613 return (0);
9614 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009615 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009616 if ((define->ns != NULL) && (define->ns[0] != 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009617 if (elem->ns == NULL) {
9618 VALID_ERR2(XML_RELAXNG_ERR_ELEMNONS, elem->name);
9619 return (0);
9620 } else if (!xmlStrEqual(elem->ns->href, define->ns)) {
9621 VALID_ERR3(XML_RELAXNG_ERR_ELEMWRONGNS,
9622 elem->name, define->ns);
9623 return (0);
9624 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009625 } else if ((elem->ns != NULL) && (define->ns != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00009626 (define->name == NULL)) {
9627 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, elem->name);
9628 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009629 } else if ((elem->ns != NULL) && (define->name != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009630 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, define->name);
9631 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009632 }
9633
9634 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009635 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009636
9637 define = define->nameClass;
9638 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009639 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009640
Daniel Veillard4c004142003-10-07 11:33:24 +00009641 if (ctxt != NULL) {
9642 oldflags = ctxt->flags;
9643 ctxt->flags |= FLAGS_IGNORABLE;
9644 }
9645
9646 list = define->content;
9647 while (list != NULL) {
9648 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9649 if (ret == 1) {
9650 if (ctxt != NULL)
9651 ctxt->flags = oldflags;
9652 return (0);
9653 }
9654 if (ret < 0) {
9655 if (ctxt != NULL)
9656 ctxt->flags = oldflags;
9657 return (ret);
9658 }
9659 list = list->next;
9660 }
9661 ret = 1;
9662 if (ctxt != NULL) {
9663 ctxt->flags = oldflags;
9664 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009665 } else if (define->type == XML_RELAXNG_CHOICE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009666 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009667
Daniel Veillard4c004142003-10-07 11:33:24 +00009668 if (ctxt != NULL) {
9669 oldflags = ctxt->flags;
9670 ctxt->flags |= FLAGS_IGNORABLE;
9671 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009672
Daniel Veillard4c004142003-10-07 11:33:24 +00009673 list = define->nameClass;
9674 while (list != NULL) {
9675 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9676 if (ret == 1) {
9677 if (ctxt != NULL)
9678 ctxt->flags = oldflags;
9679 return (1);
9680 }
9681 if (ret < 0) {
9682 if (ctxt != NULL)
9683 ctxt->flags = oldflags;
9684 return (ret);
9685 }
9686 list = list->next;
9687 }
9688 if (ctxt != NULL) {
9689 if (ret != 0) {
9690 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9691 xmlRelaxNGDumpValidError(ctxt);
9692 } else {
9693 if (ctxt->errNr > 0)
9694 xmlRelaxNGPopErrors(ctxt, 0);
9695 }
9696 }
9697 ret = 0;
9698 if (ctxt != NULL) {
9699 ctxt->flags = oldflags;
9700 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009701 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009702 TODO ret = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009703 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009704 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009705}
9706
9707/**
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009708 * xmlRelaxNGBestState:
9709 * @ctxt: a Relax-NG validation context
9710 *
9711 * Find the "best" state in the ctxt->states list of states to report
9712 * errors about. I.e. a state with no element left in the child list
9713 * or the one with the less attributes left.
9714 * This is called only if a falidation error was detected
9715 *
9716 * Returns the index of the "best" state or -1 in case of error
9717 */
9718static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009719xmlRelaxNGBestState(xmlRelaxNGValidCtxtPtr ctxt)
9720{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009721 xmlRelaxNGValidStatePtr state;
9722 int i, tmp;
9723 int best = -1;
9724 int value = 1000000;
9725
9726 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9727 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009728 return (-1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009729
Daniel Veillard4c004142003-10-07 11:33:24 +00009730 for (i = 0; i < ctxt->states->nbState; i++) {
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009731 state = ctxt->states->tabState[i];
Daniel Veillard4c004142003-10-07 11:33:24 +00009732 if (state == NULL)
9733 continue;
9734 if (state->seq != NULL) {
9735 if ((best == -1) || (value > 100000)) {
9736 value = 100000;
9737 best = i;
9738 }
9739 } else {
9740 tmp = state->nbAttrLeft;
9741 if ((best == -1) || (value > tmp)) {
9742 value = tmp;
9743 best = i;
9744 }
9745 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009746 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009747 return (best);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009748}
9749
9750/**
9751 * xmlRelaxNGLogBestError:
9752 * @ctxt: a Relax-NG validation context
9753 *
9754 * Find the "best" state in the ctxt->states list of states to report
9755 * errors about and log it.
9756 */
9757static void
Daniel Veillard4c004142003-10-07 11:33:24 +00009758xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt)
9759{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009760 int best;
9761
9762 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9763 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009764 return;
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009765
9766 best = xmlRelaxNGBestState(ctxt);
9767 if ((best >= 0) && (best < ctxt->states->nbState)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009768 ctxt->state = ctxt->states->tabState[best];
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009769
Daniel Veillard4c004142003-10-07 11:33:24 +00009770 xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009771 }
9772}
9773
9774/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009775 * xmlRelaxNGValidateElementEnd:
9776 * @ctxt: a Relax-NG validation context
William M. Brack272693c2003-11-14 16:20:34 +00009777 * @dolog: indicate that error logging should be done
Daniel Veillardfd573f12003-03-16 17:52:32 +00009778 *
9779 * Validate the end of the element, implements check that
9780 * there is nothing left not consumed in the element content
9781 * or in the attribute list.
9782 *
9783 * Returns 0 if the validation succeeded or an error code.
9784 */
9785static int
William M. Brack272693c2003-11-14 16:20:34 +00009786xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt, int dolog)
Daniel Veillard4c004142003-10-07 11:33:24 +00009787{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009788 int i;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009789 xmlRelaxNGValidStatePtr state;
9790
9791 state = ctxt->state;
9792 if (state->seq != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009793 state->seq = xmlRelaxNGSkipIgnored(ctxt, state->seq);
9794 if (state->seq != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009795 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009796 VALID_ERR3(XML_RELAXNG_ERR_EXTRACONTENT,
9797 state->node->name, state->seq->name);
9798 }
9799 return (-1);
9800 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009801 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009802 for (i = 0; i < state->nbAttrs; i++) {
9803 if (state->attrs[i] != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009804 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009805 VALID_ERR3(XML_RELAXNG_ERR_INVALIDATTR,
9806 state->attrs[i]->name, state->node->name);
9807 }
9808 return (-1 - i);
9809 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009810 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009811 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009812}
9813
9814/**
9815 * xmlRelaxNGValidateState:
9816 * @ctxt: a Relax-NG validation context
9817 * @define: the definition to verify
9818 *
9819 * Validate the current state against the definition
9820 *
9821 * Returns 0 if the validation succeeded or an error code.
9822 */
9823static int
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009824xmlRelaxNGValidateState(xmlRelaxNGValidCtxtPtr ctxt,
9825 xmlRelaxNGDefinePtr define)
9826{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009827 xmlNodePtr node;
9828 int ret = 0, i, tmp, oldflags, errNr;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009829 xmlRelaxNGValidStatePtr oldstate = NULL, state;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009830
9831 if (define == NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009832 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
9833 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009834 }
9835
9836 if (ctxt->state != NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009837 node = ctxt->state->seq;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009838 } else {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009839 node = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009840 }
9841#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009842 for (i = 0; i < ctxt->depth; i++)
9843 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009844 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009845 "Start validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +00009846 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009847 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009848 if ((node != NULL) && (node->name != NULL))
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009849 xmlGenericError(xmlGenericErrorContext, "on %s\n", node->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009850 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009851 xmlGenericError(xmlGenericErrorContext, "\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009852#endif
9853 ctxt->depth++;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009854 switch (define->type) {
9855 case XML_RELAXNG_EMPTY:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009856 node = xmlRelaxNGSkipIgnored(ctxt, node);
9857 ret = 0;
9858 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009859 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009860 ret = -1;
9861 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009862 case XML_RELAXNG_TEXT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009863 while ((node != NULL) &&
9864 ((node->type == XML_TEXT_NODE) ||
9865 (node->type == XML_COMMENT_NODE) ||
9866 (node->type == XML_PI_NODE) ||
9867 (node->type == XML_CDATA_SECTION_NODE)))
9868 node = node->next;
9869 ctxt->state->seq = node;
9870 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009871 case XML_RELAXNG_ELEMENT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009872 errNr = ctxt->errNr;
9873 node = xmlRelaxNGSkipIgnored(ctxt, node);
9874 if (node == NULL) {
9875 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, define->name);
9876 ret = -1;
9877 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9878 xmlRelaxNGDumpValidError(ctxt);
9879 break;
9880 }
9881 if (node->type != XML_ELEMENT_NODE) {
9882 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
9883 ret = -1;
9884 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9885 xmlRelaxNGDumpValidError(ctxt);
9886 break;
9887 }
9888 /*
9889 * This node was already validated successfully against
9890 * this definition.
9891 */
Daniel Veillard807daf82004-02-22 22:13:27 +00009892 if (node->psvi == define) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009893 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
9894 if (ctxt->errNr > errNr)
9895 xmlRelaxNGPopErrors(ctxt, errNr);
9896 if (ctxt->errNr != 0) {
9897 while ((ctxt->err != NULL) &&
9898 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME)
9899 && (xmlStrEqual(ctxt->err->arg2, node->name)))
9900 ||
9901 ((ctxt->err->err ==
9902 XML_RELAXNG_ERR_ELEMEXTRANS)
9903 && (xmlStrEqual(ctxt->err->arg1, node->name)))
9904 || (ctxt->err->err == XML_RELAXNG_ERR_NOELEM)
9905 || (ctxt->err->err ==
9906 XML_RELAXNG_ERR_NOTELEM)))
9907 xmlRelaxNGValidErrorPop(ctxt);
9908 }
9909 break;
9910 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009911
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009912 ret = xmlRelaxNGElementMatch(ctxt, define, node);
9913 if (ret <= 0) {
9914 ret = -1;
9915 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9916 xmlRelaxNGDumpValidError(ctxt);
9917 break;
9918 }
9919 ret = 0;
9920 if (ctxt->errNr != 0) {
9921 if (ctxt->errNr > errNr)
9922 xmlRelaxNGPopErrors(ctxt, errNr);
9923 while ((ctxt->err != NULL) &&
9924 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME) &&
9925 (xmlStrEqual(ctxt->err->arg2, node->name))) ||
9926 ((ctxt->err->err == XML_RELAXNG_ERR_ELEMEXTRANS) &&
9927 (xmlStrEqual(ctxt->err->arg1, node->name))) ||
9928 (ctxt->err->err == XML_RELAXNG_ERR_NOELEM) ||
9929 (ctxt->err->err == XML_RELAXNG_ERR_NOTELEM)))
9930 xmlRelaxNGValidErrorPop(ctxt);
9931 }
9932 errNr = ctxt->errNr;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009933
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009934 oldflags = ctxt->flags;
9935 if (ctxt->flags & FLAGS_MIXED_CONTENT) {
9936 ctxt->flags -= FLAGS_MIXED_CONTENT;
9937 }
9938 state = xmlRelaxNGNewValidState(ctxt, node);
9939 if (state == NULL) {
9940 ret = -1;
9941 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9942 xmlRelaxNGDumpValidError(ctxt);
9943 break;
9944 }
Daniel Veillard7fe1f3a2003-03-31 22:13:33 +00009945
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009946 oldstate = ctxt->state;
9947 ctxt->state = state;
9948 if (define->attrs != NULL) {
9949 tmp = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
9950 if (tmp != 0) {
9951 ret = -1;
9952 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
9953 }
9954 }
9955 if (define->contModel != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009956 xmlRelaxNGValidStatePtr nstate, tmpstate = ctxt->state;
9957 xmlRelaxNGStatesPtr tmpstates = ctxt->states;
9958 xmlNodePtr nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009959
Daniel Veillard4c004142003-10-07 11:33:24 +00009960 nstate = xmlRelaxNGNewValidState(ctxt, node);
9961 ctxt->state = nstate;
9962 ctxt->states = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009963
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009964 tmp = xmlRelaxNGValidateCompiledContent(ctxt,
9965 define->contModel,
9966 ctxt->state->seq);
Daniel Veillard4c004142003-10-07 11:33:24 +00009967 nseq = ctxt->state->seq;
9968 ctxt->state = tmpstate;
9969 ctxt->states = tmpstates;
9970 xmlRelaxNGFreeValidState(ctxt, nstate);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009971
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009972#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00009973 xmlGenericError(xmlGenericErrorContext,
9974 "Validating content of '%s' : %d\n",
9975 define->name, tmp);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009976#endif
Daniel Veillardce192eb2003-04-16 15:58:05 +00009977 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009978 ret = -1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009979
9980 if (ctxt->states != NULL) {
9981 tmp = -1;
9982
Daniel Veillardce192eb2003-04-16 15:58:05 +00009983 for (i = 0; i < ctxt->states->nbState; i++) {
9984 state = ctxt->states->tabState[i];
9985 ctxt->state = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009986 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009987
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009988 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardce192eb2003-04-16 15:58:05 +00009989 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00009990 break;
9991 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009992 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009993 if (tmp != 0) {
9994 /*
9995 * validation error, log the message for the "best" one
9996 */
9997 ctxt->flags |= FLAGS_IGNORABLE;
9998 xmlRelaxNGLogBestError(ctxt);
9999 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010000 for (i = 0; i < ctxt->states->nbState; i++) {
10001 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010002 ctxt->states->
10003 tabState[i]);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010004 }
10005 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10006 ctxt->flags = oldflags;
10007 ctxt->states = NULL;
10008 if ((ret == 0) && (tmp == -1))
10009 ret = -1;
10010 } else {
10011 state = ctxt->state;
Daniel Veillardd8ed1052007-06-12 09:24:46 +000010012 if (ctxt->state != NULL)
10013 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +000010014 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010015 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010016 xmlRelaxNGFreeValidState(ctxt, state);
10017 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010018 } else {
10019 if (define->content != NULL) {
10020 tmp = xmlRelaxNGValidateDefinitionList(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010021 define->
10022 content);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010023 if (tmp != 0) {
10024 ret = -1;
10025 if (ctxt->state == NULL) {
10026 ctxt->state = oldstate;
10027 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10028 node->name);
10029 ctxt->state = NULL;
10030 } else {
10031 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10032 node->name);
10033 }
10034
10035 }
10036 }
10037 if (ctxt->states != NULL) {
10038 tmp = -1;
10039
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010040 for (i = 0; i < ctxt->states->nbState; i++) {
10041 state = ctxt->states->tabState[i];
10042 ctxt->state = state;
10043
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010044 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010045 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +000010046 break;
10047 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010048 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010049 if (tmp != 0) {
10050 /*
10051 * validation error, log the message for the "best" one
10052 */
10053 ctxt->flags |= FLAGS_IGNORABLE;
10054 xmlRelaxNGLogBestError(ctxt);
10055 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010056 for (i = 0; i < ctxt->states->nbState; i++) {
10057 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010058 ctxt->states->tabState[i]);
10059 ctxt->states->tabState[i] = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010060 }
10061 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10062 ctxt->flags = oldflags;
10063 ctxt->states = NULL;
10064 if ((ret == 0) && (tmp == -1))
10065 ret = -1;
10066 } else {
10067 state = ctxt->state;
10068 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010069 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010070 xmlRelaxNGFreeValidState(ctxt, state);
10071 }
10072 }
10073 if (ret == 0) {
Daniel Veillard807daf82004-02-22 22:13:27 +000010074 node->psvi = define;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010075 }
10076 ctxt->flags = oldflags;
10077 ctxt->state = oldstate;
10078 if (oldstate != NULL)
10079 oldstate->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
10080 if (ret != 0) {
10081 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10082 xmlRelaxNGDumpValidError(ctxt);
10083 ret = 0;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010084#if 0
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010085 } else {
10086 ret = -2;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010087#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010088 }
10089 } else {
10090 if (ctxt->errNr > errNr)
10091 xmlRelaxNGPopErrors(ctxt, errNr);
10092 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010093
10094#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010095 xmlGenericError(xmlGenericErrorContext,
10096 "xmlRelaxNGValidateDefinition(): validated %s : %d",
10097 node->name, ret);
10098 if (oldstate == NULL)
10099 xmlGenericError(xmlGenericErrorContext, ": no state\n");
10100 else if (oldstate->seq == NULL)
10101 xmlGenericError(xmlGenericErrorContext, ": done\n");
10102 else if (oldstate->seq->type == XML_ELEMENT_NODE)
10103 xmlGenericError(xmlGenericErrorContext, ": next elem %s\n",
10104 oldstate->seq->name);
10105 else
10106 xmlGenericError(xmlGenericErrorContext, ": next %s %d\n",
10107 oldstate->seq->name, oldstate->seq->type);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010108#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010109 break;
10110 case XML_RELAXNG_OPTIONAL:{
10111 errNr = ctxt->errNr;
10112 oldflags = ctxt->flags;
10113 ctxt->flags |= FLAGS_IGNORABLE;
10114 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10115 ret =
10116 xmlRelaxNGValidateDefinitionList(ctxt,
10117 define->content);
10118 if (ret != 0) {
10119 if (ctxt->state != NULL)
10120 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10121 ctxt->state = oldstate;
10122 ctxt->flags = oldflags;
10123 ret = 0;
10124 if (ctxt->errNr > errNr)
10125 xmlRelaxNGPopErrors(ctxt, errNr);
10126 break;
10127 }
10128 if (ctxt->states != NULL) {
10129 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10130 } else {
10131 ctxt->states = xmlRelaxNGNewStates(ctxt, 1);
10132 if (ctxt->states == NULL) {
10133 xmlRelaxNGFreeValidState(ctxt, oldstate);
10134 ctxt->flags = oldflags;
10135 ret = -1;
10136 if (ctxt->errNr > errNr)
10137 xmlRelaxNGPopErrors(ctxt, errNr);
10138 break;
10139 }
10140 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10141 xmlRelaxNGAddStates(ctxt, ctxt->states, ctxt->state);
10142 ctxt->state = NULL;
10143 }
10144 ctxt->flags = oldflags;
10145 ret = 0;
10146 if (ctxt->errNr > errNr)
10147 xmlRelaxNGPopErrors(ctxt, errNr);
10148 break;
10149 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010150 case XML_RELAXNG_ONEORMORE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010151 errNr = ctxt->errNr;
10152 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10153 if (ret != 0) {
10154 break;
10155 }
10156 if (ctxt->errNr > errNr)
10157 xmlRelaxNGPopErrors(ctxt, errNr);
10158 /* no break on purpose */
10159 case XML_RELAXNG_ZEROORMORE:{
10160 int progress;
10161 xmlRelaxNGStatesPtr states = NULL, res = NULL;
10162 int base, j;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010163
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010164 errNr = ctxt->errNr;
10165 res = xmlRelaxNGNewStates(ctxt, 1);
10166 if (res == NULL) {
10167 ret = -1;
10168 break;
10169 }
10170 /*
10171 * All the input states are also exit states
10172 */
10173 if (ctxt->state != NULL) {
10174 xmlRelaxNGAddStates(ctxt, res,
10175 xmlRelaxNGCopyValidState(ctxt,
10176 ctxt->
10177 state));
10178 } else {
10179 for (j = 0; j < ctxt->states->nbState; j++) {
10180 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010181 xmlRelaxNGCopyValidState(ctxt,
10182 ctxt->states->tabState[j]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010183 }
10184 }
10185 oldflags = ctxt->flags;
10186 ctxt->flags |= FLAGS_IGNORABLE;
10187 do {
10188 progress = 0;
10189 base = res->nbState;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010190
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010191 if (ctxt->states != NULL) {
10192 states = ctxt->states;
10193 for (i = 0; i < states->nbState; i++) {
10194 ctxt->state = states->tabState[i];
10195 ctxt->states = NULL;
10196 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10197 define->
10198 content);
10199 if (ret == 0) {
10200 if (ctxt->state != NULL) {
10201 tmp = xmlRelaxNGAddStates(ctxt, res,
10202 ctxt->state);
10203 ctxt->state = NULL;
10204 if (tmp == 1)
10205 progress = 1;
10206 } else if (ctxt->states != NULL) {
10207 for (j = 0; j < ctxt->states->nbState;
10208 j++) {
10209 tmp =
10210 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010211 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010212 if (tmp == 1)
10213 progress = 1;
10214 }
10215 xmlRelaxNGFreeStates(ctxt,
10216 ctxt->states);
10217 ctxt->states = NULL;
10218 }
10219 } else {
10220 if (ctxt->state != NULL) {
10221 xmlRelaxNGFreeValidState(ctxt,
10222 ctxt->state);
10223 ctxt->state = NULL;
10224 }
10225 }
10226 }
10227 } else {
10228 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10229 define->
10230 content);
10231 if (ret != 0) {
10232 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10233 ctxt->state = NULL;
10234 } else {
10235 base = res->nbState;
10236 if (ctxt->state != NULL) {
10237 tmp = xmlRelaxNGAddStates(ctxt, res,
10238 ctxt->state);
10239 ctxt->state = NULL;
10240 if (tmp == 1)
10241 progress = 1;
10242 } else if (ctxt->states != NULL) {
10243 for (j = 0; j < ctxt->states->nbState; j++) {
10244 tmp = xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010245 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010246 if (tmp == 1)
10247 progress = 1;
10248 }
10249 if (states == NULL) {
10250 states = ctxt->states;
10251 } else {
10252 xmlRelaxNGFreeStates(ctxt,
10253 ctxt->states);
10254 }
10255 ctxt->states = NULL;
10256 }
10257 }
10258 }
10259 if (progress) {
10260 /*
10261 * Collect all the new nodes added at that step
10262 * and make them the new node set
10263 */
10264 if (res->nbState - base == 1) {
10265 ctxt->state = xmlRelaxNGCopyValidState(ctxt,
10266 res->
10267 tabState
10268 [base]);
10269 } else {
10270 if (states == NULL) {
10271 xmlRelaxNGNewStates(ctxt,
10272 res->nbState - base);
Daniel Veillard14b56432006-03-09 18:41:40 +000010273 states = ctxt->states;
10274 if (states == NULL) {
10275 progress = 0;
10276 break;
10277 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010278 }
10279 states->nbState = 0;
10280 for (i = base; i < res->nbState; i++)
10281 xmlRelaxNGAddStates(ctxt, states,
10282 xmlRelaxNGCopyValidState
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010283 (ctxt, res->tabState[i]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010284 ctxt->states = states;
10285 }
10286 }
10287 } while (progress == 1);
10288 if (states != NULL) {
10289 xmlRelaxNGFreeStates(ctxt, states);
10290 }
10291 ctxt->states = res;
10292 ctxt->flags = oldflags;
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010293#if 0
10294 /*
Daniel Veillard4c004142003-10-07 11:33:24 +000010295 * errors may have to be propagated back...
10296 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010297 if (ctxt->errNr > errNr)
10298 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010299#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010300 ret = 0;
10301 break;
10302 }
10303 case XML_RELAXNG_CHOICE:{
10304 xmlRelaxNGDefinePtr list = NULL;
10305 xmlRelaxNGStatesPtr states = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010306
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010307 node = xmlRelaxNGSkipIgnored(ctxt, node);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010308
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010309 errNr = ctxt->errNr;
Daniel Veillard9186a1f2005-01-15 12:38:10 +000010310 if ((define->dflags & IS_TRIABLE) && (define->data != NULL) &&
10311 (node != NULL)) {
10312 /*
10313 * node == NULL can't be optimized since IS_TRIABLE
10314 * doesn't account for choice which may lead to
10315 * only attributes.
10316 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010317 xmlHashTablePtr triage =
10318 (xmlHashTablePtr) define->data;
Daniel Veillarde063f482003-03-21 16:53:17 +000010319
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010320 /*
10321 * Something we can optimize cleanly there is only one
10322 * possble branch out !
10323 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010324 if ((node->type == XML_TEXT_NODE) ||
10325 (node->type == XML_CDATA_SECTION_NODE)) {
10326 list =
10327 xmlHashLookup2(triage, BAD_CAST "#text", NULL);
10328 } else if (node->type == XML_ELEMENT_NODE) {
10329 if (node->ns != NULL) {
10330 list = xmlHashLookup2(triage, node->name,
10331 node->ns->href);
10332 if (list == NULL)
10333 list =
10334 xmlHashLookup2(triage, BAD_CAST "#any",
10335 node->ns->href);
10336 } else
10337 list =
10338 xmlHashLookup2(triage, node->name, NULL);
10339 if (list == NULL)
10340 list =
10341 xmlHashLookup2(triage, BAD_CAST "#any",
10342 NULL);
10343 }
10344 if (list == NULL) {
10345 ret = -1;
William M. Brack2f076062004-03-21 11:21:14 +000010346 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, node->name);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010347 break;
10348 }
10349 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10350 if (ret == 0) {
10351 }
10352 break;
10353 }
Daniel Veillarde063f482003-03-21 16:53:17 +000010354
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010355 list = define->content;
10356 oldflags = ctxt->flags;
10357 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010358
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010359 while (list != NULL) {
10360 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10361 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10362 if (ret == 0) {
10363 if (states == NULL) {
10364 states = xmlRelaxNGNewStates(ctxt, 1);
10365 }
10366 if (ctxt->state != NULL) {
10367 xmlRelaxNGAddStates(ctxt, states, ctxt->state);
10368 } else if (ctxt->states != NULL) {
10369 for (i = 0; i < ctxt->states->nbState; i++) {
10370 xmlRelaxNGAddStates(ctxt, states,
10371 ctxt->states->
10372 tabState[i]);
10373 }
10374 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10375 ctxt->states = NULL;
10376 }
10377 } else {
10378 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10379 }
10380 ctxt->state = oldstate;
10381 list = list->next;
10382 }
10383 if (states != NULL) {
10384 xmlRelaxNGFreeValidState(ctxt, oldstate);
10385 ctxt->states = states;
10386 ctxt->state = NULL;
10387 ret = 0;
10388 } else {
10389 ctxt->states = NULL;
10390 }
10391 ctxt->flags = oldflags;
10392 if (ret != 0) {
10393 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10394 xmlRelaxNGDumpValidError(ctxt);
10395 }
10396 } else {
10397 if (ctxt->errNr > errNr)
10398 xmlRelaxNGPopErrors(ctxt, errNr);
10399 }
10400 break;
10401 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010402 case XML_RELAXNG_DEF:
10403 case XML_RELAXNG_GROUP:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010404 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10405 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010406 case XML_RELAXNG_INTERLEAVE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010407 ret = xmlRelaxNGValidateInterleave(ctxt, define);
10408 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010409 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010410 ret = xmlRelaxNGValidateAttribute(ctxt, define);
10411 break;
Daniel Veillardf4e55762003-04-15 23:32:22 +000010412 case XML_RELAXNG_START:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010413 case XML_RELAXNG_NOOP:
Daniel Veillardfd573f12003-03-16 17:52:32 +000010414 case XML_RELAXNG_REF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010415 case XML_RELAXNG_EXTERNALREF:
Daniel Veillard952379b2003-03-17 15:37:12 +000010416 case XML_RELAXNG_PARENTREF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010417 ret = xmlRelaxNGValidateDefinition(ctxt, define->content);
10418 break;
10419 case XML_RELAXNG_DATATYPE:{
10420 xmlNodePtr child;
10421 xmlChar *content = NULL;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010422
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010423 child = node;
10424 while (child != NULL) {
10425 if (child->type == XML_ELEMENT_NODE) {
10426 VALID_ERR2(XML_RELAXNG_ERR_DATAELEM,
10427 node->parent->name);
10428 ret = -1;
10429 break;
10430 } else if ((child->type == XML_TEXT_NODE) ||
10431 (child->type == XML_CDATA_SECTION_NODE)) {
10432 content = xmlStrcat(content, child->content);
10433 }
10434 /* TODO: handle entities ... */
10435 child = child->next;
10436 }
10437 if (ret == -1) {
10438 if (content != NULL)
10439 xmlFree(content);
10440 break;
10441 }
10442 if (content == NULL) {
10443 content = xmlStrdup(BAD_CAST "");
10444 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010445 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010446 ret = -1;
10447 break;
10448 }
10449 }
10450 ret = xmlRelaxNGValidateDatatype(ctxt, content, define,
10451 ctxt->state->seq);
10452 if (ret == -1) {
10453 VALID_ERR2(XML_RELAXNG_ERR_DATATYPE, define->name);
10454 } else if (ret == 0) {
10455 ctxt->state->seq = NULL;
10456 }
10457 if (content != NULL)
10458 xmlFree(content);
10459 break;
10460 }
10461 case XML_RELAXNG_VALUE:{
10462 xmlChar *content = NULL;
10463 xmlChar *oldvalue;
10464 xmlNodePtr child;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010465
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010466 child = node;
10467 while (child != NULL) {
10468 if (child->type == XML_ELEMENT_NODE) {
10469 VALID_ERR2(XML_RELAXNG_ERR_VALELEM,
10470 node->parent->name);
10471 ret = -1;
10472 break;
10473 } else if ((child->type == XML_TEXT_NODE) ||
10474 (child->type == XML_CDATA_SECTION_NODE)) {
10475 content = xmlStrcat(content, child->content);
10476 }
10477 /* TODO: handle entities ... */
10478 child = child->next;
10479 }
10480 if (ret == -1) {
10481 if (content != NULL)
10482 xmlFree(content);
10483 break;
10484 }
10485 if (content == NULL) {
10486 content = xmlStrdup(BAD_CAST "");
10487 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010488 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010489 ret = -1;
10490 break;
10491 }
10492 }
10493 oldvalue = ctxt->state->value;
10494 ctxt->state->value = content;
10495 ret = xmlRelaxNGValidateValue(ctxt, define);
10496 ctxt->state->value = oldvalue;
10497 if (ret == -1) {
10498 VALID_ERR2(XML_RELAXNG_ERR_VALUE, define->name);
10499 } else if (ret == 0) {
10500 ctxt->state->seq = NULL;
10501 }
10502 if (content != NULL)
10503 xmlFree(content);
10504 break;
10505 }
10506 case XML_RELAXNG_LIST:{
10507 xmlChar *content;
10508 xmlNodePtr child;
10509 xmlChar *oldvalue, *oldendvalue;
10510 int len;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010511
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010512 /*
10513 * Make sure it's only text nodes
10514 */
10515
10516 content = NULL;
10517 child = node;
10518 while (child != NULL) {
10519 if (child->type == XML_ELEMENT_NODE) {
10520 VALID_ERR2(XML_RELAXNG_ERR_LISTELEM,
10521 node->parent->name);
10522 ret = -1;
10523 break;
10524 } else if ((child->type == XML_TEXT_NODE) ||
10525 (child->type == XML_CDATA_SECTION_NODE)) {
10526 content = xmlStrcat(content, child->content);
10527 }
10528 /* TODO: handle entities ... */
10529 child = child->next;
10530 }
10531 if (ret == -1) {
10532 if (content != NULL)
10533 xmlFree(content);
10534 break;
10535 }
10536 if (content == NULL) {
10537 content = xmlStrdup(BAD_CAST "");
10538 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010539 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010540 ret = -1;
10541 break;
10542 }
10543 }
10544 len = xmlStrlen(content);
10545 oldvalue = ctxt->state->value;
10546 oldendvalue = ctxt->state->endvalue;
10547 ctxt->state->value = content;
10548 ctxt->state->endvalue = content + len;
10549 ret = xmlRelaxNGValidateValue(ctxt, define);
10550 ctxt->state->value = oldvalue;
10551 ctxt->state->endvalue = oldendvalue;
10552 if (ret == -1) {
10553 VALID_ERR(XML_RELAXNG_ERR_LIST);
10554 } else if ((ret == 0) && (node != NULL)) {
10555 ctxt->state->seq = node->next;
10556 }
10557 if (content != NULL)
10558 xmlFree(content);
10559 break;
10560 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010561 case XML_RELAXNG_EXCEPT:
10562 case XML_RELAXNG_PARAM:
10563 TODO ret = -1;
10564 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010565 }
10566 ctxt->depth--;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010567#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010568 for (i = 0; i < ctxt->depth; i++)
10569 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010570 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010571 "Validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +000010572 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010573 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010574 if (ret == 0)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010575 xmlGenericError(xmlGenericErrorContext, "suceeded\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010576 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010577 xmlGenericError(xmlGenericErrorContext, "failed\n");
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010578#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010579 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010580}
10581
10582/**
Daniel Veillardfd573f12003-03-16 17:52:32 +000010583 * xmlRelaxNGValidateDefinition:
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010584 * @ctxt: a Relax-NG validation context
10585 * @define: the definition to verify
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010586 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010587 * Validate the current node lists against the definition
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010588 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010589 * Returns 0 if the validation succeeded or an error code.
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010590 */
10591static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010592xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
10593 xmlRelaxNGDefinePtr define)
10594{
Daniel Veillardfd573f12003-03-16 17:52:32 +000010595 xmlRelaxNGStatesPtr states, res;
10596 int i, j, k, ret, oldflags;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010597
Daniel Veillardfd573f12003-03-16 17:52:32 +000010598 /*
10599 * We should NOT have both ctxt->state and ctxt->states
10600 */
10601 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010602 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10603 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010604 }
10605
10606 if ((ctxt->states == NULL) || (ctxt->states->nbState == 1)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010607 if (ctxt->states != NULL) {
10608 ctxt->state = ctxt->states->tabState[0];
10609 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10610 ctxt->states = NULL;
10611 }
10612 ret = xmlRelaxNGValidateState(ctxt, define);
10613 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10614 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10615 ctxt->state = NULL;
10616 }
10617 if ((ctxt->states != NULL) && (ctxt->states->nbState == 1)) {
10618 ctxt->state = ctxt->states->tabState[0];
10619 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10620 ctxt->states = NULL;
10621 }
10622 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010623 }
10624
10625 states = ctxt->states;
10626 ctxt->states = NULL;
10627 res = NULL;
10628 j = 0;
10629 oldflags = ctxt->flags;
10630 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +000010631 for (i = 0; i < states->nbState; i++) {
10632 ctxt->state = states->tabState[i];
10633 ctxt->states = NULL;
10634 ret = xmlRelaxNGValidateState(ctxt, define);
10635 /*
10636 * We should NOT have both ctxt->state and ctxt->states
10637 */
10638 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10639 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10640 ctxt->state = NULL;
10641 }
10642 if (ret == 0) {
10643 if (ctxt->states == NULL) {
10644 if (res != NULL) {
10645 /* add the state to the container */
10646 xmlRelaxNGAddStates(ctxt, res, ctxt->state);
10647 ctxt->state = NULL;
10648 } else {
10649 /* add the state directly in states */
10650 states->tabState[j++] = ctxt->state;
10651 ctxt->state = NULL;
10652 }
10653 } else {
10654 if (res == NULL) {
10655 /* make it the new container and copy other results */
10656 res = ctxt->states;
10657 ctxt->states = NULL;
10658 for (k = 0; k < j; k++)
10659 xmlRelaxNGAddStates(ctxt, res,
10660 states->tabState[k]);
10661 } else {
10662 /* add all the new results to res and reff the container */
10663 for (k = 0; k < ctxt->states->nbState; k++)
10664 xmlRelaxNGAddStates(ctxt, res,
10665 ctxt->states->tabState[k]);
10666 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10667 ctxt->states = NULL;
10668 }
10669 }
10670 } else {
10671 if (ctxt->state != NULL) {
10672 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10673 ctxt->state = NULL;
10674 } else if (ctxt->states != NULL) {
10675 for (k = 0; k < ctxt->states->nbState; k++)
10676 xmlRelaxNGFreeValidState(ctxt,
10677 ctxt->states->tabState[k]);
10678 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10679 ctxt->states = NULL;
10680 }
10681 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010682 }
10683 ctxt->flags = oldflags;
10684 if (res != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010685 xmlRelaxNGFreeStates(ctxt, states);
10686 ctxt->states = res;
10687 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010688 } else if (j > 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010689 states->nbState = j;
10690 ctxt->states = states;
10691 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010692 } else if (j == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010693 ctxt->state = states->tabState[0];
10694 xmlRelaxNGFreeStates(ctxt, states);
10695 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010696 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +000010697 ret = -1;
10698 xmlRelaxNGFreeStates(ctxt, states);
10699 if (ctxt->states != NULL) {
10700 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10701 ctxt->states = NULL;
10702 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010703 }
10704 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010705 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10706 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010707 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010708 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010709}
10710
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010711/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000010712 * xmlRelaxNGValidateDocument:
10713 * @ctxt: a Relax-NG validation context
10714 * @doc: the document
10715 *
10716 * Validate the given document
10717 *
10718 * Returns 0 if the validation succeeded or an error code.
10719 */
10720static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010721xmlRelaxNGValidateDocument(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
10722{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010723 int ret;
10724 xmlRelaxNGPtr schema;
10725 xmlRelaxNGGrammarPtr grammar;
10726 xmlRelaxNGValidStatePtr state;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010727 xmlNodePtr node;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010728
10729 if ((ctxt == NULL) || (ctxt->schema == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000010730 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010731
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010732 ctxt->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010733 schema = ctxt->schema;
10734 grammar = schema->topgrammar;
10735 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010736 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
10737 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010738 }
10739 state = xmlRelaxNGNewValidState(ctxt, NULL);
10740 ctxt->state = state;
10741 ret = xmlRelaxNGValidateDefinition(ctxt, grammar->start);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010742 if ((ctxt->state != NULL) && (state->seq != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010743 state = ctxt->state;
10744 node = state->seq;
10745 node = xmlRelaxNGSkipIgnored(ctxt, node);
10746 if (node != NULL) {
10747 if (ret != -1) {
10748 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10749 ret = -1;
10750 }
10751 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010752 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010753 int i;
10754 int tmp = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010755
Daniel Veillard4c004142003-10-07 11:33:24 +000010756 for (i = 0; i < ctxt->states->nbState; i++) {
10757 state = ctxt->states->tabState[i];
10758 node = state->seq;
10759 node = xmlRelaxNGSkipIgnored(ctxt, node);
10760 if (node == NULL)
10761 tmp = 0;
10762 xmlRelaxNGFreeValidState(ctxt, state);
10763 }
10764 if (tmp == -1) {
10765 if (ret != -1) {
10766 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10767 ret = -1;
10768 }
10769 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010770 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010771 if (ctxt->state != NULL) {
10772 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillard4c004142003-10-07 11:33:24 +000010773 ctxt->state = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010774 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010775 if (ret != 0)
10776 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010777#ifdef DEBUG
10778 else if (ctxt->errNr != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010779 ctxt->error(ctxt->userData,
10780 "%d Extra error messages left on stack !\n",
10781 ctxt->errNr);
10782 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010783 }
10784#endif
Daniel Veillardf54cd532004-02-25 11:52:31 +000010785#ifdef LIBXML_VALID_ENABLED
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010786 if (ctxt->idref == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010787 xmlValidCtxt vctxt;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010788
Daniel Veillard4c004142003-10-07 11:33:24 +000010789 memset(&vctxt, 0, sizeof(xmlValidCtxt));
10790 vctxt.valid = 1;
10791 vctxt.error = ctxt->error;
10792 vctxt.warning = ctxt->warning;
10793 vctxt.userData = ctxt->userData;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010794
Daniel Veillard4c004142003-10-07 11:33:24 +000010795 if (xmlValidateDocumentFinal(&vctxt, doc) != 1)
10796 ret = -1;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010797 }
Daniel Veillardf54cd532004-02-25 11:52:31 +000010798#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010799 if ((ret == 0) && (ctxt->errNo != XML_RELAXNG_OK))
Daniel Veillard4c004142003-10-07 11:33:24 +000010800 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010801
Daniel Veillard4c004142003-10-07 11:33:24 +000010802 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010803}
10804
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020010805/**
10806 * xmlRelaxNGCleanPSVI:
10807 * @node: an input element or document
10808 *
10809 * Call this routine to speed up XPath computation on static documents.
10810 * This stamps all the element nodes with the document order
10811 * Like for line information, the order is kept in the element->content
10812 * field, the value stored is actually - the node number (starting at -1)
10813 * to be able to differentiate from line numbers.
10814 *
10815 * Returns the number of elements found in the document or -1 in case
10816 * of error.
10817 */
10818static void
10819xmlRelaxNGCleanPSVI(xmlNodePtr node) {
10820 xmlNodePtr cur;
10821
10822 if ((node == NULL) ||
10823 ((node->type != XML_ELEMENT_NODE) &&
10824 (node->type != XML_DOCUMENT_NODE) &&
10825 (node->type != XML_HTML_DOCUMENT_NODE)))
10826 return;
10827 if (node->type == XML_ELEMENT_NODE)
10828 node->psvi = NULL;
10829
10830 cur = node->children;
10831 while (cur != NULL) {
10832 if (cur->type == XML_ELEMENT_NODE) {
10833 cur->psvi = NULL;
10834 if (cur->children != NULL) {
10835 cur = cur->children;
10836 continue;
10837 }
10838 }
10839 if (cur->next != NULL) {
10840 cur = cur->next;
10841 continue;
10842 }
10843 do {
10844 cur = cur->parent;
10845 if (cur == NULL)
10846 break;
10847 if (cur == node) {
10848 cur = NULL;
10849 break;
10850 }
10851 if (cur->next != NULL) {
10852 cur = cur->next;
10853 break;
10854 }
10855 } while (cur != NULL);
10856 }
10857 return;
10858}
Daniel Veillardfd573f12003-03-16 17:52:32 +000010859/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +080010860 * *
10861 * Validation interfaces *
10862 * *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010863 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +000010864
Daniel Veillard6eadf632003-01-23 18:29:16 +000010865/**
10866 * xmlRelaxNGNewValidCtxt:
10867 * @schema: a precompiled XML RelaxNGs
10868 *
10869 * Create an XML RelaxNGs validation context based on the given schema
10870 *
10871 * Returns the validation context or NULL in case of error
10872 */
10873xmlRelaxNGValidCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +000010874xmlRelaxNGNewValidCtxt(xmlRelaxNGPtr schema)
10875{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010876 xmlRelaxNGValidCtxtPtr ret;
10877
10878 ret = (xmlRelaxNGValidCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGValidCtxt));
10879 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010880 xmlRngVErrMemory(NULL, "building context\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +000010881 return (NULL);
10882 }
10883 memset(ret, 0, sizeof(xmlRelaxNGValidCtxt));
10884 ret->schema = schema;
Daniel Veillard1703c5f2003-02-10 14:28:44 +000010885 ret->error = xmlGenericError;
10886 ret->userData = xmlGenericErrorContext;
Daniel Veillard42f12e92003-03-07 18:32:59 +000010887 ret->errNr = 0;
10888 ret->errMax = 0;
10889 ret->err = NULL;
10890 ret->errTab = NULL;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010891 if (schema != NULL)
10892 ret->idref = schema->idref;
Daniel Veillard798024a2003-03-19 10:36:09 +000010893 ret->states = NULL;
10894 ret->freeState = NULL;
10895 ret->freeStates = NULL;
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010896 ret->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010897 return (ret);
10898}
10899
10900/**
10901 * xmlRelaxNGFreeValidCtxt:
10902 * @ctxt: the schema validation context
10903 *
10904 * Free the resources associated to the schema validation context
10905 */
10906void
Daniel Veillard4c004142003-10-07 11:33:24 +000010907xmlRelaxNGFreeValidCtxt(xmlRelaxNGValidCtxtPtr ctxt)
10908{
Daniel Veillard798024a2003-03-19 10:36:09 +000010909 int k;
10910
Daniel Veillard6eadf632003-01-23 18:29:16 +000010911 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010912 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010913 if (ctxt->states != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010914 xmlRelaxNGFreeStates(NULL, ctxt->states);
Daniel Veillard798024a2003-03-19 10:36:09 +000010915 if (ctxt->freeState != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010916 for (k = 0; k < ctxt->freeState->nbState; k++) {
10917 xmlRelaxNGFreeValidState(NULL, ctxt->freeState->tabState[k]);
10918 }
10919 xmlRelaxNGFreeStates(NULL, ctxt->freeState);
Daniel Veillard798024a2003-03-19 10:36:09 +000010920 }
Daniel Veillard798024a2003-03-19 10:36:09 +000010921 if (ctxt->freeStates != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010922 for (k = 0; k < ctxt->freeStatesNr; k++) {
10923 xmlRelaxNGFreeStates(NULL, ctxt->freeStates[k]);
10924 }
10925 xmlFree(ctxt->freeStates);
Daniel Veillard798024a2003-03-19 10:36:09 +000010926 }
Daniel Veillard42f12e92003-03-07 18:32:59 +000010927 if (ctxt->errTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010928 xmlFree(ctxt->errTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010929 if (ctxt->elemTab != NULL) {
10930 xmlRegExecCtxtPtr exec;
10931
Daniel Veillard4c004142003-10-07 11:33:24 +000010932 exec = xmlRelaxNGElemPop(ctxt);
10933 while (exec != NULL) {
10934 xmlRegFreeExecCtxt(exec);
10935 exec = xmlRelaxNGElemPop(ctxt);
10936 }
10937 xmlFree(ctxt->elemTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010938 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010939 xmlFree(ctxt);
10940}
10941
10942/**
10943 * xmlRelaxNGSetValidErrors:
10944 * @ctxt: a Relax-NG validation context
10945 * @err: the error function
10946 * @warn: the warning function
10947 * @ctx: the functions context
10948 *
10949 * Set the error and warning callback informations
10950 */
10951void
10952xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010953 xmlRelaxNGValidityErrorFunc err,
10954 xmlRelaxNGValidityWarningFunc warn, void *ctx)
10955{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010956 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010957 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010958 ctxt->error = err;
10959 ctxt->warning = warn;
10960 ctxt->userData = ctx;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010961 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010962}
10963
10964/**
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010965 * xmlRelaxNGSetValidStructuredErrors:
10966 * @ctxt: a Relax-NG validation context
10967 * @serror: the structured error function
10968 * @ctx: the functions context
10969 *
10970 * Set the structured error callback
10971 */
10972void
10973xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillardb30ca312005-09-04 13:50:03 +000010974 xmlStructuredErrorFunc serror, void *ctx)
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010975{
10976 if (ctxt == NULL)
10977 return;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010978 ctxt->serror = serror;
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010979 ctxt->error = NULL;
10980 ctxt->warning = NULL;
10981 ctxt->userData = ctx;
10982}
10983
10984/**
Daniel Veillard409a8142003-07-18 15:16:57 +000010985 * xmlRelaxNGGetValidErrors:
10986 * @ctxt: a Relax-NG validation context
10987 * @err: the error function result
10988 * @warn: the warning function result
10989 * @ctx: the functions context result
10990 *
10991 * Get the error and warning callback informations
10992 *
10993 * Returns -1 in case of error and 0 otherwise
10994 */
10995int
10996xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010997 xmlRelaxNGValidityErrorFunc * err,
10998 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
10999{
Daniel Veillard409a8142003-07-18 15:16:57 +000011000 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000011001 return (-1);
11002 if (err != NULL)
11003 *err = ctxt->error;
11004 if (warn != NULL)
11005 *warn = ctxt->warning;
11006 if (ctx != NULL)
11007 *ctx = ctxt->userData;
11008 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +000011009}
11010
11011/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000011012 * xmlRelaxNGValidateDoc:
11013 * @ctxt: a Relax-NG validation context
11014 * @doc: a parsed document tree
11015 *
11016 * Validate a document tree in memory.
11017 *
11018 * Returns 0 if the document is valid, a positive error code
11019 * number otherwise and -1 in case of internal or API error.
11020 */
11021int
Daniel Veillard4c004142003-10-07 11:33:24 +000011022xmlRelaxNGValidateDoc(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
11023{
Daniel Veillard6eadf632003-01-23 18:29:16 +000011024 int ret;
11025
11026 if ((ctxt == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000011027 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011028
11029 ctxt->doc = doc;
11030
11031 ret = xmlRelaxNGValidateDocument(ctxt, doc);
Daniel Veillard71531f32003-02-05 13:19:53 +000011032 /*
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020011033 * Remove all left PSVI
11034 */
11035 xmlRelaxNGCleanPSVI((xmlNodePtr) doc);
11036
11037 /*
Daniel Veillard71531f32003-02-05 13:19:53 +000011038 * TODO: build error codes
11039 */
11040 if (ret == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +000011041 return (1);
11042 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011043}
11044
Daniel Veillard5d4644e2005-04-01 13:11:58 +000011045#define bottom_relaxng
11046#include "elfgcchack.h"
Daniel Veillard6eadf632003-01-23 18:29:16 +000011047#endif /* LIBXML_SCHEMAS_ENABLED */