blob: 57ae972ba9f8a16f1f275c6c2fd48d676aeb8427 [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 /*
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007346 * Since we are about to delete cur, if its nsDef is non-NULL we
William M. Brack8eabb052004-06-07 14:15:54 +00007347 * 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 */
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007352 if ((cur->nsDef != NULL) && (cur->parent != NULL)) {
William M. Brack8eabb052004-06-07 14:15:54 +00007353 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)) {
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007370 if ((cur->parent != NULL) &&
7371 (cur->parent->type == XML_ELEMENT_NODE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007372 if ((!xmlStrEqual(cur->parent->name, BAD_CAST "value"))
7373 &&
7374 (!xmlStrEqual
7375 (cur->parent->name, BAD_CAST "param")))
7376 delete = cur;
7377 } else {
7378 delete = cur;
7379 goto skip_children;
7380 }
7381 }
7382 } else {
7383 delete = cur;
7384 goto skip_children;
7385 }
7386
7387 /*
7388 * Skip to next node
7389 */
7390 if (cur->children != NULL) {
7391 if ((cur->children->type != XML_ENTITY_DECL) &&
7392 (cur->children->type != XML_ENTITY_REF_NODE) &&
7393 (cur->children->type != XML_ENTITY_NODE)) {
7394 cur = cur->children;
7395 continue;
7396 }
7397 }
7398 skip_children:
7399 if (cur->next != NULL) {
7400 cur = cur->next;
7401 continue;
7402 }
7403
7404 do {
7405 cur = cur->parent;
7406 if (cur == NULL)
7407 break;
7408 if (cur == root) {
7409 cur = NULL;
7410 break;
7411 }
7412 if (cur->next != NULL) {
7413 cur = cur->next;
7414 break;
7415 }
7416 } while (cur != NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007417 }
7418 if (delete != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007419 xmlUnlinkNode(delete);
7420 xmlFreeNode(delete);
7421 delete = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007422 }
Daniel Veillardc5312d72003-02-21 17:14:10 +00007423}
Daniel Veillard6eadf632003-01-23 18:29:16 +00007424
Daniel Veillardc5312d72003-02-21 17:14:10 +00007425/**
7426 * xmlRelaxNGCleanupDoc:
7427 * @ctxt: a Relax-NG parser context
7428 * @doc: an xmldocPtr document pointer
7429 *
7430 * Cleanup the document from unwanted nodes for parsing, resolve
7431 * Include and externalRef lookups.
7432 *
7433 * Returns the cleaned up document or NULL in case of error
7434 */
7435static xmlDocPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00007436xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt, xmlDocPtr doc)
7437{
Daniel Veillardc5312d72003-02-21 17:14:10 +00007438 xmlNodePtr root;
7439
7440 /*
7441 * Extract the root
7442 */
7443 root = xmlDocGetRootElement(doc);
7444 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007445 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
7446 ctxt->URL, NULL);
Daniel Veillardc5312d72003-02-21 17:14:10 +00007447 return (NULL);
7448 }
7449 xmlRelaxNGCleanupTree(ctxt, root);
Daniel Veillard4c004142003-10-07 11:33:24 +00007450 return (doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007451}
7452
7453/**
7454 * xmlRelaxNGParse:
7455 * @ctxt: a Relax-NG parser context
7456 *
7457 * parse a schema definition resource and build an internal
7458 * XML Shema struture which can be used to validate instances.
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007459 *
7460 * Returns the internal XML RelaxNG structure built from the resource or
7461 * NULL in case of error
7462 */
7463xmlRelaxNGPtr
7464xmlRelaxNGParse(xmlRelaxNGParserCtxtPtr ctxt)
7465{
7466 xmlRelaxNGPtr ret = NULL;
7467 xmlDocPtr doc;
7468 xmlNodePtr root;
7469
7470 xmlRelaxNGInitTypes();
7471
7472 if (ctxt == NULL)
7473 return (NULL);
7474
7475 /*
7476 * First step is to parse the input document into an DOM/Infoset
7477 */
7478 if (ctxt->URL != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007479 doc = xmlReadFile((const char *) ctxt->URL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007480 if (doc == NULL) {
7481 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7482 "xmlRelaxNGParse: could not load %s\n", ctxt->URL,
7483 NULL);
7484 return (NULL);
7485 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007486 } else if (ctxt->buffer != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007487 doc = xmlReadMemory(ctxt->buffer, ctxt->size,NULL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007488 if (doc == NULL) {
7489 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7490 "xmlRelaxNGParse: could not parse schemas\n", NULL,
7491 NULL);
7492 return (NULL);
7493 }
7494 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7495 ctxt->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
Daniel Veillard33300b42003-04-17 09:09:19 +00007496 } else if (ctxt->document != NULL) {
7497 doc = ctxt->document;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007498 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007499 xmlRngPErr(ctxt, NULL, XML_RNGP_EMPTY,
7500 "xmlRelaxNGParse: nothing to parse\n", NULL, NULL);
7501 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007502 }
7503 ctxt->document = doc;
7504
7505 /*
7506 * Some preprocessing of the document content
7507 */
7508 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
7509 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007510 xmlFreeDoc(ctxt->document);
7511 ctxt->document = NULL;
7512 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007513 }
7514
Daniel Veillard6eadf632003-01-23 18:29:16 +00007515 /*
7516 * Then do the parsing for good
7517 */
7518 root = xmlDocGetRootElement(doc);
7519 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007520 xmlRngPErr(ctxt, (xmlNodePtr) doc,
7521 XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
William M. Brack700f9872006-05-06 03:16:22 +00007522 (ctxt->URL ? ctxt->URL : BAD_CAST "schemas"), NULL);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007523
Daniel Veillard3f845a92006-04-13 07:33:44 +00007524 xmlFreeDoc(ctxt->document);
7525 ctxt->document = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007526 return (NULL);
7527 }
7528 ret = xmlRelaxNGParseDocument(ctxt, root);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007529 if (ret == NULL) {
Daniel Veillard3f845a92006-04-13 07:33:44 +00007530 xmlFreeDoc(ctxt->document);
7531 ctxt->document = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007532 return (NULL);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007533 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00007534
7535 /*
Daniel Veillardfd573f12003-03-16 17:52:32 +00007536 * Check the ref/defines links
7537 */
7538 /*
7539 * try to preprocess interleaves
7540 */
7541 if (ctxt->interleaves != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007542 xmlHashScan(ctxt->interleaves,
7543 (xmlHashScanner) xmlRelaxNGComputeInterleaves, ctxt);
Daniel Veillardfd573f12003-03-16 17:52:32 +00007544 }
7545
7546 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007547 * if there was a parsing error return NULL
7548 */
7549 if (ctxt->nbErrors > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007550 xmlRelaxNGFree(ret);
7551 ctxt->document = NULL;
7552 xmlFreeDoc(doc);
7553 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007554 }
7555
7556 /*
Daniel Veillard52b48c72003-04-13 19:53:42 +00007557 * try to compile (parts of) the schemas
7558 */
Daniel Veillardce192eb2003-04-16 15:58:05 +00007559 if ((ret->topgrammar != NULL) && (ret->topgrammar->start != NULL)) {
7560 if (ret->topgrammar->start->type != XML_RELAXNG_START) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007561 xmlRelaxNGDefinePtr def;
Daniel Veillardf4e55762003-04-15 23:32:22 +00007562
Daniel Veillard4c004142003-10-07 11:33:24 +00007563 def = xmlRelaxNGNewDefine(ctxt, NULL);
7564 if (def != NULL) {
7565 def->type = XML_RELAXNG_START;
7566 def->content = ret->topgrammar->start;
7567 ret->topgrammar->start = def;
7568 }
7569 }
7570 xmlRelaxNGTryCompile(ctxt, ret->topgrammar->start);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007571 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00007572
7573 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007574 * Transfer the pointer for cleanup at the schema level.
7575 */
7576 ret->doc = doc;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007577 ctxt->document = NULL;
7578 ret->documents = ctxt->documents;
7579 ctxt->documents = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007580
Daniel Veillarde2a5a082003-02-02 14:35:17 +00007581 ret->includes = ctxt->includes;
7582 ctxt->includes = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00007583 ret->defNr = ctxt->defNr;
7584 ret->defTab = ctxt->defTab;
7585 ctxt->defTab = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00007586 if (ctxt->idref == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00007587 ret->idref = 1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007588
7589 return (ret);
7590}
Daniel Veillard4c004142003-10-07 11:33:24 +00007591
Daniel Veillard6eadf632003-01-23 18:29:16 +00007592/**
7593 * xmlRelaxNGSetParserErrors:
7594 * @ctxt: a Relax-NG validation context
7595 * @err: the error callback
7596 * @warn: the warning callback
7597 * @ctx: contextual data for the callbacks
7598 *
7599 * Set the callback functions used to handle errors for a validation context
7600 */
7601void
7602xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007603 xmlRelaxNGValidityErrorFunc err,
7604 xmlRelaxNGValidityWarningFunc warn, void *ctx)
7605{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007606 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007607 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007608 ctxt->error = err;
7609 ctxt->warning = warn;
Daniel Veillardb30ca312005-09-04 13:50:03 +00007610 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007611 ctxt->userData = ctx;
7612}
Daniel Veillard409a8142003-07-18 15:16:57 +00007613
7614/**
7615 * xmlRelaxNGGetParserErrors:
7616 * @ctxt: a Relax-NG validation context
7617 * @err: the error callback result
7618 * @warn: the warning callback result
7619 * @ctx: contextual data for the callbacks result
7620 *
7621 * Get the callback information used to handle errors for a validation context
7622 *
7623 * Returns -1 in case of failure, 0 otherwise.
7624 */
7625int
7626xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007627 xmlRelaxNGValidityErrorFunc * err,
7628 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
7629{
Daniel Veillard409a8142003-07-18 15:16:57 +00007630 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007631 return (-1);
7632 if (err != NULL)
7633 *err = ctxt->error;
7634 if (warn != NULL)
7635 *warn = ctxt->warning;
7636 if (ctx != NULL)
7637 *ctx = ctxt->userData;
7638 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +00007639}
7640
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007641/**
7642 * xmlRelaxNGSetParserStructuredErrors:
7643 * @ctxt: a Relax-NG parser context
7644 * @serror: the error callback
7645 * @ctx: contextual data for the callbacks
7646 *
7647 * Set the callback functions used to handle errors for a parsing context
7648 */
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007649void
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007650xmlRelaxNGSetParserStructuredErrors(xmlRelaxNGParserCtxtPtr ctxt,
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007651 xmlStructuredErrorFunc serror,
7652 void *ctx)
7653{
7654 if (ctxt == NULL)
7655 return;
7656 ctxt->serror = serror;
7657 ctxt->error = NULL;
7658 ctxt->warning = NULL;
7659 ctxt->userData = ctx;
7660}
7661
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007662#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard4c004142003-10-07 11:33:24 +00007663
Daniel Veillard6eadf632003-01-23 18:29:16 +00007664/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007665 * *
7666 * Dump back a compiled form *
7667 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007668 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007669static void xmlRelaxNGDumpDefine(FILE * output,
7670 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007671
7672/**
7673 * xmlRelaxNGDumpDefines:
7674 * @output: the file output
7675 * @defines: a list of define structures
7676 *
7677 * Dump a RelaxNG structure back
7678 */
7679static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007680xmlRelaxNGDumpDefines(FILE * output, xmlRelaxNGDefinePtr defines)
7681{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007682 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007683 xmlRelaxNGDumpDefine(output, defines);
7684 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007685 }
7686}
7687
7688/**
7689 * xmlRelaxNGDumpDefine:
7690 * @output: the file output
7691 * @define: a define structure
7692 *
7693 * Dump a RelaxNG structure back
7694 */
7695static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007696xmlRelaxNGDumpDefine(FILE * output, xmlRelaxNGDefinePtr define)
7697{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007698 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007699 return;
7700 switch (define->type) {
Daniel Veillard6eadf632003-01-23 18:29:16 +00007701 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00007702 fprintf(output, "<empty/>\n");
7703 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007704 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00007705 fprintf(output, "<notAllowed/>\n");
7706 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007707 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007708 fprintf(output, "<text/>\n");
7709 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007710 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007711 fprintf(output, "<element>\n");
7712 if (define->name != NULL) {
7713 fprintf(output, "<name");
7714 if (define->ns != NULL)
7715 fprintf(output, " ns=\"%s\"", define->ns);
7716 fprintf(output, ">%s</name>\n", define->name);
7717 }
7718 xmlRelaxNGDumpDefines(output, define->attrs);
7719 xmlRelaxNGDumpDefines(output, define->content);
7720 fprintf(output, "</element>\n");
7721 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007722 case XML_RELAXNG_LIST:
Daniel Veillard4c004142003-10-07 11:33:24 +00007723 fprintf(output, "<list>\n");
7724 xmlRelaxNGDumpDefines(output, define->content);
7725 fprintf(output, "</list>\n");
7726 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007727 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007728 fprintf(output, "<oneOrMore>\n");
7729 xmlRelaxNGDumpDefines(output, define->content);
7730 fprintf(output, "</oneOrMore>\n");
7731 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007732 case XML_RELAXNG_ZEROORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007733 fprintf(output, "<zeroOrMore>\n");
7734 xmlRelaxNGDumpDefines(output, define->content);
7735 fprintf(output, "</zeroOrMore>\n");
7736 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007737 case XML_RELAXNG_CHOICE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007738 fprintf(output, "<choice>\n");
7739 xmlRelaxNGDumpDefines(output, define->content);
7740 fprintf(output, "</choice>\n");
7741 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007742 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00007743 fprintf(output, "<group>\n");
7744 xmlRelaxNGDumpDefines(output, define->content);
7745 fprintf(output, "</group>\n");
7746 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007747 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007748 fprintf(output, "<interleave>\n");
7749 xmlRelaxNGDumpDefines(output, define->content);
7750 fprintf(output, "</interleave>\n");
7751 break;
7752 case XML_RELAXNG_OPTIONAL:
7753 fprintf(output, "<optional>\n");
7754 xmlRelaxNGDumpDefines(output, define->content);
7755 fprintf(output, "</optional>\n");
7756 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007757 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007758 fprintf(output, "<attribute>\n");
7759 xmlRelaxNGDumpDefines(output, define->content);
7760 fprintf(output, "</attribute>\n");
7761 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007762 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007763 fprintf(output, "<define");
7764 if (define->name != NULL)
7765 fprintf(output, " name=\"%s\"", define->name);
7766 fprintf(output, ">\n");
7767 xmlRelaxNGDumpDefines(output, define->content);
7768 fprintf(output, "</define>\n");
7769 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007770 case XML_RELAXNG_REF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007771 fprintf(output, "<ref");
7772 if (define->name != NULL)
7773 fprintf(output, " name=\"%s\"", define->name);
7774 fprintf(output, ">\n");
7775 xmlRelaxNGDumpDefines(output, define->content);
7776 fprintf(output, "</ref>\n");
7777 break;
Daniel Veillard419a7682003-02-03 23:22:49 +00007778 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007779 fprintf(output, "<parentRef");
7780 if (define->name != NULL)
7781 fprintf(output, " name=\"%s\"", define->name);
7782 fprintf(output, ">\n");
7783 xmlRelaxNGDumpDefines(output, define->content);
7784 fprintf(output, "</parentRef>\n");
7785 break;
7786 case XML_RELAXNG_EXTERNALREF:
7787 fprintf(output, "<externalRef>");
7788 xmlRelaxNGDumpDefines(output, define->content);
7789 fprintf(output, "</externalRef>\n");
7790 break;
Daniel Veillarde431a272003-01-29 23:02:33 +00007791 case XML_RELAXNG_DATATYPE:
Daniel Veillard6eadf632003-01-23 18:29:16 +00007792 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007793 TODO break;
7794 case XML_RELAXNG_START:
7795 case XML_RELAXNG_EXCEPT:
7796 case XML_RELAXNG_PARAM:
7797 TODO break;
7798 case XML_RELAXNG_NOOP:
7799 xmlRelaxNGDumpDefines(output, define->content);
7800 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007801 }
7802}
Daniel Veillard4c004142003-10-07 11:33:24 +00007803
Daniel Veillard6eadf632003-01-23 18:29:16 +00007804/**
7805 * xmlRelaxNGDumpGrammar:
7806 * @output: the file output
7807 * @grammar: a grammar structure
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007808 * @top: is this a top grammar
Daniel Veillard6eadf632003-01-23 18:29:16 +00007809 *
7810 * Dump a RelaxNG structure back
7811 */
7812static void
7813xmlRelaxNGDumpGrammar(FILE * output, xmlRelaxNGGrammarPtr grammar, int top)
7814{
7815 if (grammar == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007816 return;
7817
Daniel Veillard6eadf632003-01-23 18:29:16 +00007818 fprintf(output, "<grammar");
7819 if (top)
Daniel Veillard4c004142003-10-07 11:33:24 +00007820 fprintf(output, " xmlns=\"http://relaxng.org/ns/structure/1.0\"");
7821 switch (grammar->combine) {
7822 case XML_RELAXNG_COMBINE_UNDEFINED:
7823 break;
7824 case XML_RELAXNG_COMBINE_CHOICE:
7825 fprintf(output, " combine=\"choice\"");
7826 break;
7827 case XML_RELAXNG_COMBINE_INTERLEAVE:
7828 fprintf(output, " combine=\"interleave\"");
7829 break;
7830 default:
7831 fprintf(output, " <!-- invalid combine value -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007832 }
7833 fprintf(output, ">\n");
7834 if (grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007835 fprintf(output, " <!-- grammar had no start -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007836 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007837 fprintf(output, "<start>\n");
7838 xmlRelaxNGDumpDefine(output, grammar->start);
7839 fprintf(output, "</start>\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007840 }
7841 /* TODO ? Dump the defines ? */
7842 fprintf(output, "</grammar>\n");
7843}
7844
7845/**
7846 * xmlRelaxNGDump:
7847 * @output: the file output
7848 * @schema: a schema structure
7849 *
7850 * Dump a RelaxNG structure back
7851 */
7852void
7853xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema)
7854{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007855 if (output == NULL)
7856 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007857 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007858 fprintf(output, "RelaxNG empty or failed to compile\n");
7859 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007860 }
7861 fprintf(output, "RelaxNG: ");
7862 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007863 fprintf(output, "no document\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007864 } else if (schema->doc->URL != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007865 fprintf(output, "%s\n", schema->doc->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007866 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007867 fprintf(output, "\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007868 }
7869 if (schema->topgrammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007870 fprintf(output, "RelaxNG has no top grammar\n");
7871 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007872 }
7873 xmlRelaxNGDumpGrammar(output, schema->topgrammar, 1);
7874}
7875
Daniel Veillardfebcca42003-02-16 15:44:18 +00007876/**
7877 * xmlRelaxNGDumpTree:
7878 * @output: the file output
7879 * @schema: a schema structure
7880 *
7881 * Dump the transformed RelaxNG tree.
7882 */
7883void
7884xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema)
7885{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007886 if (output == NULL)
7887 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007888 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007889 fprintf(output, "RelaxNG empty or failed to compile\n");
7890 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007891 }
7892 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007893 fprintf(output, "no document\n");
Daniel Veillardfebcca42003-02-16 15:44:18 +00007894 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007895 xmlDocDump(output, schema->doc);
Daniel Veillardfebcca42003-02-16 15:44:18 +00007896 }
7897}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007898#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardfebcca42003-02-16 15:44:18 +00007899
Daniel Veillard6eadf632003-01-23 18:29:16 +00007900/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007901 * *
7902 * Validation of compiled content *
7903 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007904 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007905static int xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
7906 xmlRelaxNGDefinePtr define);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007907
7908/**
7909 * xmlRelaxNGValidateCompiledCallback:
7910 * @exec: the regular expression instance
7911 * @token: the token which matched
7912 * @transdata: callback data, the define for the subelement if available
7913 @ @inputdata: callback data, the Relax NG validation context
7914 *
7915 * Handle the callback and if needed validate the element children.
7916 */
Daniel Veillard4c004142003-10-07 11:33:24 +00007917static void
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007918xmlRelaxNGValidateCompiledCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00007919 const xmlChar * token,
7920 void *transdata, void *inputdata)
7921{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007922 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
7923 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
7924 int ret;
7925
7926#ifdef DEBUG_COMPILE
7927 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00007928 "Compiled callback for: '%s'\n", token);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007929#endif
7930 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007931 fprintf(stderr, "callback on %s missing context\n", token);
Daniel Veillard4c004142003-10-07 11:33:24 +00007932 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007933 }
7934 if (define == NULL) {
7935 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00007936 return;
7937 fprintf(stderr, "callback on %s missing define\n", token);
7938 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7939 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7940 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007941 }
7942 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007943 fprintf(stderr, "callback on %s missing info\n", token);
7944 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7945 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7946 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007947 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007948 fprintf(stderr, "callback on %s define is not element\n", token);
7949 if (ctxt->errNo == XML_RELAXNG_OK)
7950 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7951 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007952 }
7953 ret = xmlRelaxNGValidateDefinition(ctxt, define);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007954 if (ret != 0)
7955 ctxt->perr = ret;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007956}
7957
7958/**
7959 * xmlRelaxNGValidateCompiledContent:
7960 * @ctxt: the RelaxNG validation context
7961 * @regexp: the regular expression as compiled
7962 * @content: list of children to test against the regexp
7963 *
7964 * Validate the content model of an element or start using the regexp
7965 *
7966 * Returns 0 in case of success, -1 in case of error.
7967 */
7968static int
7969xmlRelaxNGValidateCompiledContent(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007970 xmlRegexpPtr regexp, xmlNodePtr content)
7971{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007972 xmlRegExecCtxtPtr exec;
7973 xmlNodePtr cur;
Daniel Veillard62163602003-04-17 09:36:38 +00007974 int ret = 0;
Daniel Veillard14b56432006-03-09 18:41:40 +00007975 int oldperr;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007976
7977 if ((ctxt == NULL) || (regexp == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00007978 return (-1);
Daniel Veillard14b56432006-03-09 18:41:40 +00007979 oldperr = ctxt->perr;
Daniel Veillard4c004142003-10-07 11:33:24 +00007980 exec = xmlRegNewExecCtxt(regexp,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007981 xmlRelaxNGValidateCompiledCallback, ctxt);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007982 ctxt->perr = 0;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007983 cur = content;
7984 while (cur != NULL) {
7985 ctxt->state->seq = cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00007986 switch (cur->type) {
7987 case XML_TEXT_NODE:
7988 case XML_CDATA_SECTION_NODE:
7989 if (xmlIsBlankNode(cur))
7990 break;
7991 ret = xmlRegExecPushString(exec, BAD_CAST "#text", ctxt);
7992 if (ret < 0) {
7993 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG,
7994 cur->parent->name);
7995 }
7996 break;
7997 case XML_ELEMENT_NODE:
7998 if (cur->ns != NULL) {
7999 ret = xmlRegExecPushString2(exec, cur->name,
8000 cur->ns->href, ctxt);
8001 } else {
8002 ret = xmlRegExecPushString(exec, cur->name, ctxt);
8003 }
8004 if (ret < 0) {
8005 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, cur->name);
8006 }
8007 break;
8008 default:
8009 break;
8010 }
8011 if (ret < 0)
8012 break;
8013 /*
8014 * Switch to next element
8015 */
8016 cur = cur->next;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008017 }
8018 ret = xmlRegExecPushString(exec, NULL, NULL);
8019 if (ret == 1) {
8020 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008021 ctxt->state->seq = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008022 } else if (ret == 0) {
8023 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008024 * TODO: get some of the names needed to exit the current state of exec
8025 */
8026 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8027 ret = -1;
8028 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8029 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008030 } else {
8031 ret = -1;
8032 }
8033 xmlRegFreeExecCtxt(exec);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00008034 /*
8035 * There might be content model errors outside of the pure
8036 * regexp validation, e.g. for attribute values.
8037 */
8038 if ((ret == 0) && (ctxt->perr != 0)) {
8039 ret = ctxt->perr;
8040 }
8041 ctxt->perr = oldperr;
Daniel Veillard4c004142003-10-07 11:33:24 +00008042 return (ret);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008043}
8044
8045/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008046 * *
8047 * Progressive validation of when possible *
8048 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008049 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008050static int xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
8051 xmlRelaxNGDefinePtr defines);
8052static int xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt,
William M. Brack272693c2003-11-14 16:20:34 +00008053 int dolog);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00008054static void xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008055
8056/**
8057 * xmlRelaxNGElemPush:
8058 * @ctxt: the validation context
8059 * @exec: the regexp runtime for the new content model
8060 *
8061 * Push a new regexp for the current node content model on the stack
8062 *
8063 * Returns 0 in case of success and -1 in case of error.
8064 */
8065static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008066xmlRelaxNGElemPush(xmlRelaxNGValidCtxtPtr ctxt, xmlRegExecCtxtPtr exec)
8067{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008068 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008069 ctxt->elemMax = 10;
8070 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlMalloc(ctxt->elemMax *
8071 sizeof
8072 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00008073 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008074 xmlRngVErrMemory(ctxt, "validating\n");
8075 return (-1);
8076 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008077 }
8078 if (ctxt->elemNr >= ctxt->elemMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008079 ctxt->elemMax *= 2;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008080 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlRealloc(ctxt->elemTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00008081 ctxt->elemMax *
8082 sizeof
8083 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00008084 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008085 xmlRngVErrMemory(ctxt, "validating\n");
8086 return (-1);
8087 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008088 }
8089 ctxt->elemTab[ctxt->elemNr++] = exec;
8090 ctxt->elem = exec;
Daniel Veillard4c004142003-10-07 11:33:24 +00008091 return (0);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008092}
8093
8094/**
8095 * xmlRelaxNGElemPop:
8096 * @ctxt: the validation context
8097 *
8098 * Pop the regexp of the current node content model from the stack
8099 *
8100 * Returns the exec or NULL if empty
8101 */
8102static xmlRegExecCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00008103xmlRelaxNGElemPop(xmlRelaxNGValidCtxtPtr ctxt)
8104{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008105 xmlRegExecCtxtPtr ret;
8106
Daniel Veillard4c004142003-10-07 11:33:24 +00008107 if (ctxt->elemNr <= 0)
8108 return (NULL);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008109 ctxt->elemNr--;
8110 ret = ctxt->elemTab[ctxt->elemNr];
8111 ctxt->elemTab[ctxt->elemNr] = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00008112 if (ctxt->elemNr > 0)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008113 ctxt->elem = ctxt->elemTab[ctxt->elemNr - 1];
8114 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008115 ctxt->elem = NULL;
8116 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008117}
8118
8119/**
8120 * xmlRelaxNGValidateProgressiveCallback:
8121 * @exec: the regular expression instance
8122 * @token: the token which matched
8123 * @transdata: callback data, the define for the subelement if available
8124 @ @inputdata: callback data, the Relax NG validation context
8125 *
8126 * Handle the callback and if needed validate the element children.
8127 * some of the in/out informations are passed via the context in @inputdata.
8128 */
Daniel Veillard4c004142003-10-07 11:33:24 +00008129static void
8130xmlRelaxNGValidateProgressiveCallback(xmlRegExecCtxtPtr exec
8131 ATTRIBUTE_UNUSED,
8132 const xmlChar * token,
8133 void *transdata, void *inputdata)
8134{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008135 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
8136 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008137 xmlRelaxNGValidStatePtr state, oldstate;
Daniel Veillard14b56432006-03-09 18:41:40 +00008138 xmlNodePtr node;
Daniel Veillardc3ca5ba2003-05-09 22:26:28 +00008139 int ret = 0, oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008140
8141#ifdef DEBUG_PROGRESSIVE
8142 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00008143 "Progressive callback for: '%s'\n", token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008144#endif
8145 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008146 fprintf(stderr, "callback on %s missing context\n", token);
8147 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008148 }
Daniel Veillard14b56432006-03-09 18:41:40 +00008149 node = ctxt->pnode;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008150 ctxt->pstate = 1;
8151 if (define == NULL) {
8152 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00008153 return;
8154 fprintf(stderr, "callback on %s missing define\n", token);
8155 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8156 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8157 ctxt->pstate = -1;
8158 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008159 }
8160 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008161 fprintf(stderr, "callback on %s missing info\n", token);
8162 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8163 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8164 ctxt->pstate = -1;
8165 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008166 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008167 fprintf(stderr, "callback on %s define is not element\n", token);
8168 if (ctxt->errNo == XML_RELAXNG_OK)
8169 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8170 ctxt->pstate = -1;
8171 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008172 }
8173 if (node->type != XML_ELEMENT_NODE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008174 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
8175 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8176 xmlRelaxNGDumpValidError(ctxt);
8177 ctxt->pstate = -1;
8178 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008179 }
8180 if (define->contModel == NULL) {
8181 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008182 * this node cannot be validated in a streamable fashion
8183 */
Daniel Veillardf4e55762003-04-15 23:32:22 +00008184#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008185 xmlGenericError(xmlGenericErrorContext,
8186 "Element '%s' validation is not streamable\n",
8187 token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008188#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008189 ctxt->pstate = 0;
8190 ctxt->pdef = define;
8191 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008192 }
8193 exec = xmlRegNewExecCtxt(define->contModel,
Daniel Veillard4c004142003-10-07 11:33:24 +00008194 xmlRelaxNGValidateProgressiveCallback, ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008195 if (exec == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008196 ctxt->pstate = -1;
8197 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008198 }
8199 xmlRelaxNGElemPush(ctxt, exec);
8200
8201 /*
8202 * Validate the attributes part of the content.
8203 */
8204 state = xmlRelaxNGNewValidState(ctxt, node);
8205 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008206 ctxt->pstate = -1;
8207 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008208 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008209 oldstate = ctxt->state;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008210 ctxt->state = state;
8211 if (define->attrs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008212 ret = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
8213 if (ret != 0) {
8214 ctxt->pstate = -1;
8215 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
8216 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008217 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008218 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008219 ctxt->state->seq = NULL;
8220 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
8221 if (ret != 0) {
8222 ctxt->pstate = -1;
8223 }
8224 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardce192eb2003-04-16 15:58:05 +00008225 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008226 int tmp = -1, i;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008227
8228 oldflags = ctxt->flags;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008229
Daniel Veillard4c004142003-10-07 11:33:24 +00008230 for (i = 0; i < ctxt->states->nbState; i++) {
8231 state = ctxt->states->tabState[i];
8232 ctxt->state = state;
8233 ctxt->state->seq = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008234
Daniel Veillard4c004142003-10-07 11:33:24 +00008235 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
8236 tmp = 0;
8237 break;
8238 }
8239 }
8240 if (tmp != 0) {
8241 /*
8242 * validation error, log the message for the "best" one
8243 */
8244 ctxt->flags |= FLAGS_IGNORABLE;
8245 xmlRelaxNGLogBestError(ctxt);
8246 }
8247 for (i = 0; i < ctxt->states->nbState; i++) {
8248 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[i]);
8249 }
8250 xmlRelaxNGFreeStates(ctxt, ctxt->states);
8251 ctxt->states = NULL;
8252 if ((ret == 0) && (tmp == -1))
8253 ctxt->pstate = -1;
8254 ctxt->flags = oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008255 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008256 if (ctxt->pstate == -1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008257 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
8258 xmlRelaxNGDumpValidError(ctxt);
8259 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008260 }
8261 ctxt->state = oldstate;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008262}
8263
8264/**
8265 * xmlRelaxNGValidatePushElement:
8266 * @ctxt: the validation context
8267 * @doc: a document instance
8268 * @elem: an element instance
8269 *
8270 * Push a new element start on the RelaxNG validation stack.
8271 *
8272 * returns 1 if no validation problem was found or 0 if validating the
8273 * element requires a full node, and -1 in case of error.
8274 */
8275int
Daniel Veillard33300b42003-04-17 09:09:19 +00008276xmlRelaxNGValidatePushElement(xmlRelaxNGValidCtxtPtr ctxt,
8277 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillardf4e55762003-04-15 23:32:22 +00008278 xmlNodePtr elem)
8279{
8280 int ret = 1;
8281
8282 if ((ctxt == NULL) || (elem == NULL))
8283 return (-1);
8284
8285#ifdef DEBUG_PROGRESSIVE
8286 xmlGenericError(xmlGenericErrorContext, "PushElem %s\n", elem->name);
8287#endif
8288 if (ctxt->elem == 0) {
8289 xmlRelaxNGPtr schema;
8290 xmlRelaxNGGrammarPtr grammar;
8291 xmlRegExecCtxtPtr exec;
8292 xmlRelaxNGDefinePtr define;
8293
8294 schema = ctxt->schema;
8295 if (schema == NULL) {
8296 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8297 return (-1);
8298 }
8299 grammar = schema->topgrammar;
8300 if ((grammar == NULL) || (grammar->start == NULL)) {
8301 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8302 return (-1);
8303 }
8304 define = grammar->start;
8305 if (define->contModel == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008306 ctxt->pdef = define;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008307 return (0);
8308 }
8309 exec = xmlRegNewExecCtxt(define->contModel,
8310 xmlRelaxNGValidateProgressiveCallback,
8311 ctxt);
8312 if (exec == NULL) {
8313 return (-1);
8314 }
8315 xmlRelaxNGElemPush(ctxt, exec);
8316 }
8317 ctxt->pnode = elem;
8318 ctxt->pstate = 0;
8319 if (elem->ns != NULL) {
8320 ret =
8321 xmlRegExecPushString2(ctxt->elem, elem->name, elem->ns->href,
8322 ctxt);
8323 } else {
8324 ret = xmlRegExecPushString(ctxt->elem, elem->name, ctxt);
8325 }
8326 if (ret < 0) {
8327 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, elem->name);
8328 } else {
8329 if (ctxt->pstate == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008330 ret = 0;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008331 else if (ctxt->pstate < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008332 ret = -1;
8333 else
8334 ret = 1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008335 }
8336#ifdef DEBUG_PROGRESSIVE
8337 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008338 xmlGenericError(xmlGenericErrorContext, "PushElem %s failed\n",
8339 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008340#endif
8341 return (ret);
8342}
8343
8344/**
8345 * xmlRelaxNGValidatePushCData:
8346 * @ctxt: the RelaxNG validation context
8347 * @data: some character data read
Michael Woodfb27e2c2012-09-28 08:59:33 +02008348 * @len: the length of the data
Daniel Veillardf4e55762003-04-15 23:32:22 +00008349 *
8350 * check the CData parsed for validation in the current stack
8351 *
8352 * returns 1 if no validation problem was found or -1 otherwise
8353 */
8354int
8355xmlRelaxNGValidatePushCData(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00008356 const xmlChar * data, int len ATTRIBUTE_UNUSED)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008357{
8358 int ret = 1;
8359
8360 if ((ctxt == NULL) || (ctxt->elem == NULL) || (data == NULL))
8361 return (-1);
8362
8363#ifdef DEBUG_PROGRESSIVE
8364 xmlGenericError(xmlGenericErrorContext, "CDATA %s %d\n", data, len);
8365#endif
8366
8367 while (*data != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008368 if (!IS_BLANK_CH(*data))
Daniel Veillardf4e55762003-04-15 23:32:22 +00008369 break;
8370 data++;
8371 }
8372 if (*data == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008373 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008374
8375 ret = xmlRegExecPushString(ctxt->elem, BAD_CAST "#text", ctxt);
8376 if (ret < 0) {
Daniel Veillard33300b42003-04-17 09:09:19 +00008377 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG, BAD_CAST " TODO ");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008378#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008379 xmlGenericError(xmlGenericErrorContext, "CDATA failed\n");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008380#endif
8381
Daniel Veillard4c004142003-10-07 11:33:24 +00008382 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008383 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008384 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008385}
8386
8387/**
8388 * xmlRelaxNGValidatePopElement:
8389 * @ctxt: the RelaxNG validation context
8390 * @doc: a document instance
8391 * @elem: an element instance
8392 *
8393 * Pop the element end from the RelaxNG validation stack.
8394 *
8395 * returns 1 if no validation problem was found or 0 otherwise
8396 */
8397int
8398xmlRelaxNGValidatePopElement(xmlRelaxNGValidCtxtPtr ctxt,
8399 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008400 xmlNodePtr elem)
8401{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008402 int ret;
8403 xmlRegExecCtxtPtr exec;
8404
Daniel Veillard4c004142003-10-07 11:33:24 +00008405 if ((ctxt == NULL) || (ctxt->elem == NULL) || (elem == NULL))
8406 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008407#ifdef DEBUG_PROGRESSIVE
8408 xmlGenericError(xmlGenericErrorContext, "PopElem %s\n", elem->name);
8409#endif
8410 /*
8411 * verify that we reached a terminal state of the content model.
8412 */
8413 exec = xmlRelaxNGElemPop(ctxt);
8414 ret = xmlRegExecPushString(exec, NULL, NULL);
8415 if (ret == 0) {
8416 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008417 * TODO: get some of the names needed to exit the current state of exec
8418 */
8419 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8420 ret = -1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008421 } else if (ret < 0) {
8422 ret = -1;
8423 } else {
8424 ret = 1;
8425 }
8426 xmlRegFreeExecCtxt(exec);
8427#ifdef DEBUG_PROGRESSIVE
8428 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008429 xmlGenericError(xmlGenericErrorContext, "PopElem %s failed\n",
8430 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008431#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008432 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008433}
8434
8435/**
8436 * xmlRelaxNGValidateFullElement:
8437 * @ctxt: the validation context
8438 * @doc: a document instance
8439 * @elem: an element instance
8440 *
8441 * Validate a full subtree when xmlRelaxNGValidatePushElement() returned
8442 * 0 and the content of the node has been expanded.
8443 *
8444 * returns 1 if no validation problem was found or -1 in case of error.
8445 */
8446int
Daniel Veillard33300b42003-04-17 09:09:19 +00008447xmlRelaxNGValidateFullElement(xmlRelaxNGValidCtxtPtr ctxt,
8448 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008449 xmlNodePtr elem)
8450{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008451 int ret;
8452 xmlRelaxNGValidStatePtr state;
8453
Daniel Veillard4c004142003-10-07 11:33:24 +00008454 if ((ctxt == NULL) || (ctxt->pdef == NULL) || (elem == NULL))
8455 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008456#ifdef DEBUG_PROGRESSIVE
8457 xmlGenericError(xmlGenericErrorContext, "FullElem %s\n", elem->name);
8458#endif
8459 state = xmlRelaxNGNewValidState(ctxt, elem->parent);
8460 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008461 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008462 }
8463 state->seq = elem;
8464 ctxt->state = state;
8465 ctxt->errNo = XML_RELAXNG_OK;
8466 ret = xmlRelaxNGValidateDefinition(ctxt, ctxt->pdef);
Daniel Veillard4c004142003-10-07 11:33:24 +00008467 if ((ret != 0) || (ctxt->errNo != XML_RELAXNG_OK))
8468 ret = -1;
8469 else
8470 ret = 1;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02008471 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008472 ctxt->state = NULL;
8473#ifdef DEBUG_PROGRESSIVE
8474 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008475 xmlGenericError(xmlGenericErrorContext, "FullElem %s failed\n",
8476 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008477#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008478 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008479}
8480
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008481/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008482 * *
8483 * Generic interpreted validation implementation *
8484 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008485 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008486static int xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8487 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008488
8489/**
8490 * xmlRelaxNGSkipIgnored:
8491 * @ctxt: a schema validation context
8492 * @node: the top node.
8493 *
8494 * Skip ignorable nodes in that context
8495 *
8496 * Returns the new sibling or NULL in case of error.
8497 */
8498static xmlNodePtr
8499xmlRelaxNGSkipIgnored(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008500 xmlNodePtr node)
8501{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008502 /*
8503 * TODO complete and handle entities
8504 */
8505 while ((node != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00008506 ((node->type == XML_COMMENT_NODE) ||
8507 (node->type == XML_PI_NODE) ||
William M. Brack7217c862004-03-15 02:43:56 +00008508 (node->type == XML_XINCLUDE_START) ||
8509 (node->type == XML_XINCLUDE_END) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00008510 (((node->type == XML_TEXT_NODE) ||
8511 (node->type == XML_CDATA_SECTION_NODE)) &&
8512 ((ctxt->flags & FLAGS_MIXED_CONTENT) ||
8513 (IS_BLANK_NODE(node)))))) {
8514 node = node->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008515 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008516 return (node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008517}
8518
8519/**
Daniel Veillardedc91922003-01-26 00:52:04 +00008520 * xmlRelaxNGNormalize:
8521 * @ctxt: a schema validation context
8522 * @str: the string to normalize
8523 *
8524 * Implements the normalizeWhiteSpace( s ) function from
8525 * section 6.2.9 of the spec
8526 *
8527 * Returns the new string or NULL in case of error.
8528 */
8529static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00008530xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt, const xmlChar * str)
8531{
Daniel Veillardedc91922003-01-26 00:52:04 +00008532 xmlChar *ret, *p;
8533 const xmlChar *tmp;
8534 int len;
Daniel Veillard4c004142003-10-07 11:33:24 +00008535
Daniel Veillardedc91922003-01-26 00:52:04 +00008536 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00008537 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008538 tmp = str;
Daniel Veillard4c004142003-10-07 11:33:24 +00008539 while (*tmp != 0)
8540 tmp++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008541 len = tmp - str;
8542
Daniel Veillard3c908dc2003-04-19 00:07:51 +00008543 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar));
Daniel Veillardedc91922003-01-26 00:52:04 +00008544 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008545 xmlRngVErrMemory(ctxt, "validating\n");
8546 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008547 }
8548 p = ret;
William M. Brack76e95df2003-10-18 16:20:14 +00008549 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008550 str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008551 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008552 if (IS_BLANK_CH(*str)) {
8553 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008554 str++;
8555 if (*str == 0)
8556 break;
8557 *p++ = ' ';
8558 } else
8559 *p++ = *str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008560 }
8561 *p = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008562 return (ret);
Daniel Veillardedc91922003-01-26 00:52:04 +00008563}
8564
8565/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008566 * xmlRelaxNGValidateDatatype:
8567 * @ctxt: a Relax-NG validation context
8568 * @value: the string value
8569 * @type: the datatype definition
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008570 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008571 *
8572 * Validate the given value against the dataype
8573 *
8574 * Returns 0 if the validation succeeded or an error code.
8575 */
8576static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008577xmlRelaxNGValidateDatatype(xmlRelaxNGValidCtxtPtr ctxt,
8578 const xmlChar * value,
8579 xmlRelaxNGDefinePtr define, xmlNodePtr node)
8580{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008581 int ret, tmp;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008582 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008583 void *result = NULL;
8584 xmlRelaxNGDefinePtr cur;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008585
8586 if ((define == NULL) || (define->data == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008587 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008588 }
8589 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008590 if (lib->check != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008591 if ((define->attrs != NULL) &&
8592 (define->attrs->type == XML_RELAXNG_PARAM)) {
8593 ret =
8594 lib->check(lib->data, define->name, value, &result, node);
8595 } else {
8596 ret = lib->check(lib->data, define->name, value, NULL, node);
8597 }
8598 } else
8599 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008600 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008601 VALID_ERR2(XML_RELAXNG_ERR_TYPE, define->name);
8602 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
8603 lib->freef(lib->data, result);
8604 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008605 } else if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008606 ret = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008607 } else if (ret == 2) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008608 VALID_ERR2P(XML_RELAXNG_ERR_DUPID, value);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008609 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008610 VALID_ERR3P(XML_RELAXNG_ERR_TYPEVAL, define->name, value);
8611 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008612 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008613 cur = define->attrs;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008614 while ((ret == 0) && (cur != NULL) && (cur->type == XML_RELAXNG_PARAM)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008615 if (lib->facet != NULL) {
8616 tmp = lib->facet(lib->data, define->name, cur->name,
8617 cur->value, value, result);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008618 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008619 ret = -1;
8620 }
8621 cur = cur->next;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008622 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008623 if ((ret == 0) && (define->content != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008624 const xmlChar *oldvalue, *oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008625
Daniel Veillard4c004142003-10-07 11:33:24 +00008626 oldvalue = ctxt->state->value;
8627 oldendvalue = ctxt->state->endvalue;
8628 ctxt->state->value = (xmlChar *) value;
8629 ctxt->state->endvalue = NULL;
8630 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8631 ctxt->state->value = (xmlChar *) oldvalue;
8632 ctxt->state->endvalue = (xmlChar *) oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008633 }
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008634 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00008635 lib->freef(lib->data, result);
8636 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008637}
8638
8639/**
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008640 * xmlRelaxNGNextValue:
8641 * @ctxt: a Relax-NG validation context
8642 *
8643 * Skip to the next value when validating within a list
8644 *
8645 * Returns 0 if the operation succeeded or an error code.
8646 */
8647static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008648xmlRelaxNGNextValue(xmlRelaxNGValidCtxtPtr ctxt)
8649{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008650 xmlChar *cur;
8651
8652 cur = ctxt->state->value;
8653 if ((cur == NULL) || (ctxt->state->endvalue == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008654 ctxt->state->value = NULL;
8655 ctxt->state->endvalue = NULL;
8656 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008657 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008658 while (*cur != 0)
8659 cur++;
8660 while ((cur != ctxt->state->endvalue) && (*cur == 0))
8661 cur++;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008662 if (cur == ctxt->state->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00008663 ctxt->state->value = NULL;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008664 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008665 ctxt->state->value = cur;
8666 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008667}
8668
8669/**
8670 * xmlRelaxNGValidateValueList:
8671 * @ctxt: a Relax-NG validation context
8672 * @defines: the list of definitions to verify
8673 *
8674 * Validate the given set of definitions for the current value
8675 *
8676 * Returns 0 if the validation succeeded or an error code.
8677 */
8678static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008679xmlRelaxNGValidateValueList(xmlRelaxNGValidCtxtPtr ctxt,
8680 xmlRelaxNGDefinePtr defines)
8681{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008682 int ret = 0;
8683
8684 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008685 ret = xmlRelaxNGValidateValue(ctxt, defines);
8686 if (ret != 0)
8687 break;
8688 defines = defines->next;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008689 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008690 return (ret);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008691}
8692
8693/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00008694 * xmlRelaxNGValidateValue:
8695 * @ctxt: a Relax-NG validation context
8696 * @define: the definition to verify
8697 *
8698 * Validate the given definition for the current value
8699 *
8700 * Returns 0 if the validation succeeded or an error code.
8701 */
8702static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008703xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8704 xmlRelaxNGDefinePtr define)
8705{
Daniel Veillardedc91922003-01-26 00:52:04 +00008706 int ret = 0, oldflags;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008707 xmlChar *value;
8708
8709 value = ctxt->state->value;
8710 switch (define->type) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008711 case XML_RELAXNG_EMPTY:{
8712 if ((value != NULL) && (value[0] != 0)) {
8713 int idx = 0;
Daniel Veillardd4310742003-02-18 21:12:46 +00008714
William M. Brack76e95df2003-10-18 16:20:14 +00008715 while (IS_BLANK_CH(value[idx]))
Daniel Veillard4c004142003-10-07 11:33:24 +00008716 idx++;
8717 if (value[idx] != 0)
8718 ret = -1;
8719 }
8720 break;
8721 }
8722 case XML_RELAXNG_TEXT:
8723 break;
8724 case XML_RELAXNG_VALUE:{
8725 if (!xmlStrEqual(value, define->value)) {
8726 if (define->name != NULL) {
8727 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillardedc91922003-01-26 00:52:04 +00008728
Daniel Veillard4c004142003-10-07 11:33:24 +00008729 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
8730 if ((lib != NULL) && (lib->comp != NULL)) {
8731 ret = lib->comp(lib->data, define->name,
8732 define->value, define->node,
8733 (void *) define->attrs,
8734 value, ctxt->state->node);
8735 } else
8736 ret = -1;
8737 if (ret < 0) {
8738 VALID_ERR2(XML_RELAXNG_ERR_TYPECMP,
8739 define->name);
8740 return (-1);
8741 } else if (ret == 1) {
8742 ret = 0;
8743 } else {
8744 ret = -1;
8745 }
8746 } else {
8747 xmlChar *nval, *nvalue;
Daniel Veillardedc91922003-01-26 00:52:04 +00008748
Daniel Veillard4c004142003-10-07 11:33:24 +00008749 /*
8750 * TODO: trivial optimizations are possible by
8751 * computing at compile-time
8752 */
8753 nval = xmlRelaxNGNormalize(ctxt, define->value);
8754 nvalue = xmlRelaxNGNormalize(ctxt, value);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008755
Daniel Veillard4c004142003-10-07 11:33:24 +00008756 if ((nval == NULL) || (nvalue == NULL) ||
8757 (!xmlStrEqual(nval, nvalue)))
8758 ret = -1;
8759 if (nval != NULL)
8760 xmlFree(nval);
8761 if (nvalue != NULL)
8762 xmlFree(nvalue);
8763 }
8764 }
8765 if (ret == 0)
8766 xmlRelaxNGNextValue(ctxt);
8767 break;
8768 }
8769 case XML_RELAXNG_DATATYPE:{
8770 ret = xmlRelaxNGValidateDatatype(ctxt, value, define,
8771 ctxt->state->seq);
8772 if (ret == 0)
8773 xmlRelaxNGNextValue(ctxt);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008774
Daniel Veillard4c004142003-10-07 11:33:24 +00008775 break;
8776 }
8777 case XML_RELAXNG_CHOICE:{
8778 xmlRelaxNGDefinePtr list = define->content;
8779 xmlChar *oldvalue;
8780
8781 oldflags = ctxt->flags;
8782 ctxt->flags |= FLAGS_IGNORABLE;
8783
8784 oldvalue = ctxt->state->value;
8785 while (list != NULL) {
8786 ret = xmlRelaxNGValidateValue(ctxt, list);
8787 if (ret == 0) {
8788 break;
8789 }
8790 ctxt->state->value = oldvalue;
8791 list = list->next;
8792 }
8793 ctxt->flags = oldflags;
8794 if (ret != 0) {
8795 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8796 xmlRelaxNGDumpValidError(ctxt);
8797 } else {
8798 if (ctxt->errNr > 0)
8799 xmlRelaxNGPopErrors(ctxt, 0);
8800 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008801 break;
8802 }
8803 case XML_RELAXNG_LIST:{
8804 xmlRelaxNGDefinePtr list = define->content;
8805 xmlChar *oldvalue, *oldend, *val, *cur;
8806
Daniel Veillard416589a2003-02-17 17:25:42 +00008807#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008808 int nb_values = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00008809#endif
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008810
Daniel Veillard4c004142003-10-07 11:33:24 +00008811 oldvalue = ctxt->state->value;
8812 oldend = ctxt->state->endvalue;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008813
Daniel Veillard4c004142003-10-07 11:33:24 +00008814 val = xmlStrdup(oldvalue);
8815 if (val == NULL) {
8816 val = xmlStrdup(BAD_CAST "");
8817 }
8818 if (val == NULL) {
8819 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
8820 return (-1);
8821 }
8822 cur = val;
8823 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008824 if (IS_BLANK_CH(*cur)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008825 *cur = 0;
8826 cur++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008827#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008828 nb_values++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008829#endif
William M. Brack76e95df2003-10-18 16:20:14 +00008830 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00008831 *cur++ = 0;
8832 } else
8833 cur++;
8834 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008835#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008836 xmlGenericError(xmlGenericErrorContext,
8837 "list value: '%s' found %d items\n",
8838 oldvalue, nb_values);
8839 nb_values = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008840#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008841 ctxt->state->endvalue = cur;
8842 cur = val;
8843 while ((*cur == 0) && (cur != ctxt->state->endvalue))
8844 cur++;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008845
Daniel Veillard4c004142003-10-07 11:33:24 +00008846 ctxt->state->value = cur;
8847
8848 while (list != NULL) {
8849 if (ctxt->state->value == ctxt->state->endvalue)
8850 ctxt->state->value = NULL;
8851 ret = xmlRelaxNGValidateValue(ctxt, list);
8852 if (ret != 0) {
8853#ifdef DEBUG_LIST
8854 xmlGenericError(xmlGenericErrorContext,
8855 "Failed to validate value: '%s' with %d rule\n",
8856 ctxt->state->value, nb_values);
8857#endif
8858 break;
8859 }
8860#ifdef DEBUG_LIST
8861 nb_values++;
8862#endif
8863 list = list->next;
8864 }
8865
8866 if ((ret == 0) && (ctxt->state->value != NULL) &&
8867 (ctxt->state->value != ctxt->state->endvalue)) {
8868 VALID_ERR2(XML_RELAXNG_ERR_LISTEXTRA,
8869 ctxt->state->value);
8870 ret = -1;
8871 }
8872 xmlFree(val);
8873 ctxt->state->value = oldvalue;
8874 ctxt->state->endvalue = oldend;
8875 break;
8876 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008877 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00008878 ret = xmlRelaxNGValidateValueList(ctxt, define->content);
8879 if (ret != 0) {
8880 break;
8881 }
8882 /* no break on purpose */
8883 case XML_RELAXNG_ZEROORMORE:{
8884 xmlChar *cur, *temp;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008885
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008886 if ((ctxt->state->value == NULL) ||
8887 (*ctxt->state->value == 0)) {
8888 ret = 0;
8889 break;
8890 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008891 oldflags = ctxt->flags;
8892 ctxt->flags |= FLAGS_IGNORABLE;
8893 cur = ctxt->state->value;
8894 temp = NULL;
8895 while ((cur != NULL) && (cur != ctxt->state->endvalue) &&
8896 (temp != cur)) {
8897 temp = cur;
8898 ret =
8899 xmlRelaxNGValidateValueList(ctxt, define->content);
8900 if (ret != 0) {
8901 ctxt->state->value = temp;
8902 ret = 0;
8903 break;
8904 }
8905 cur = ctxt->state->value;
8906 }
8907 ctxt->flags = oldflags;
Daniel Veillard14b56432006-03-09 18:41:40 +00008908 if (ctxt->errNr > 0)
8909 xmlRelaxNGPopErrors(ctxt, 0);
Daniel Veillard4c004142003-10-07 11:33:24 +00008910 break;
8911 }
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008912 case XML_RELAXNG_OPTIONAL:{
8913 xmlChar *temp;
8914
8915 if ((ctxt->state->value == NULL) ||
8916 (*ctxt->state->value == 0)) {
8917 ret = 0;
8918 break;
8919 }
8920 oldflags = ctxt->flags;
8921 ctxt->flags |= FLAGS_IGNORABLE;
8922 temp = ctxt->state->value;
8923 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8924 ctxt->flags = oldflags;
8925 if (ret != 0) {
8926 ctxt->state->value = temp;
8927 if (ctxt->errNr > 0)
8928 xmlRelaxNGPopErrors(ctxt, 0);
8929 ret = 0;
8930 break;
8931 }
8932 if (ctxt->errNr > 0)
8933 xmlRelaxNGPopErrors(ctxt, 0);
8934 break;
8935 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008936 case XML_RELAXNG_EXCEPT:{
8937 xmlRelaxNGDefinePtr list;
Daniel Veillard416589a2003-02-17 17:25:42 +00008938
Daniel Veillard4c004142003-10-07 11:33:24 +00008939 list = define->content;
8940 while (list != NULL) {
8941 ret = xmlRelaxNGValidateValue(ctxt, list);
8942 if (ret == 0) {
8943 ret = -1;
8944 break;
8945 } else
8946 ret = 0;
8947 list = list->next;
8948 }
8949 break;
8950 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008951 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00008952 case XML_RELAXNG_GROUP:{
8953 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008954
Daniel Veillard4c004142003-10-07 11:33:24 +00008955 list = define->content;
8956 while (list != NULL) {
8957 ret = xmlRelaxNGValidateValue(ctxt, list);
8958 if (ret != 0) {
8959 ret = -1;
8960 break;
8961 } else
8962 ret = 0;
8963 list = list->next;
8964 }
8965 break;
8966 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008967 case XML_RELAXNG_REF:
8968 case XML_RELAXNG_PARENTREF:
Daniel Veillard25a1ce92008-06-02 16:04:12 +00008969 if (define->content == NULL) {
Daniel Veillard81c51e12009-08-14 18:52:10 +02008970 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
8971 ret = -1;
8972 } else {
8973 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8974 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008975 break;
8976 default:
8977 TODO ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008978 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008979 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008980}
8981
8982/**
8983 * xmlRelaxNGValidateValueContent:
8984 * @ctxt: a Relax-NG validation context
8985 * @defines: the list of definitions to verify
8986 *
8987 * Validate the given definitions for the current value
8988 *
8989 * Returns 0 if the validation succeeded or an error code.
8990 */
8991static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008992xmlRelaxNGValidateValueContent(xmlRelaxNGValidCtxtPtr ctxt,
8993 xmlRelaxNGDefinePtr defines)
8994{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008995 int ret = 0;
8996
8997 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008998 ret = xmlRelaxNGValidateValue(ctxt, defines);
8999 if (ret != 0)
9000 break;
9001 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009002 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009003 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009004}
9005
9006/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009007 * xmlRelaxNGAttributeMatch:
9008 * @ctxt: a Relax-NG validation context
9009 * @define: the definition to check
9010 * @prop: the attribute
9011 *
9012 * Check if the attribute matches the definition nameClass
9013 *
9014 * Returns 1 if the attribute matches, 0 if no, or -1 in case of error
9015 */
9016static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009017xmlRelaxNGAttributeMatch(xmlRelaxNGValidCtxtPtr ctxt,
9018 xmlRelaxNGDefinePtr define, xmlAttrPtr prop)
9019{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009020 int ret;
9021
9022 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009023 if (!xmlStrEqual(define->name, prop->name))
9024 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009025 }
9026 if (define->ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009027 if (define->ns[0] == 0) {
9028 if (prop->ns != NULL)
9029 return (0);
9030 } else {
9031 if ((prop->ns == NULL) ||
9032 (!xmlStrEqual(define->ns, prop->ns->href)))
9033 return (0);
9034 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009035 }
9036 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009037 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009038 define = define->nameClass;
9039 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009040 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009041
Daniel Veillard4c004142003-10-07 11:33:24 +00009042 list = define->content;
9043 while (list != NULL) {
9044 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9045 if (ret == 1)
9046 return (0);
9047 if (ret < 0)
9048 return (ret);
9049 list = list->next;
9050 }
Shaun McCance6473a412013-10-23 14:51:33 -04009051 } else if (define->type == XML_RELAXNG_CHOICE) {
9052 xmlRelaxNGDefinePtr list;
9053
9054 list = define->nameClass;
9055 while (list != NULL) {
9056 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9057 if (ret == 1)
9058 return (1);
9059 if (ret < 0)
9060 return (ret);
9061 list = list->next;
9062 }
9063 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009064 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009065 TODO}
9066 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009067}
9068
9069/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00009070 * xmlRelaxNGValidateAttribute:
9071 * @ctxt: a Relax-NG validation context
9072 * @define: the definition to verify
9073 *
9074 * Validate the given attribute definition for that node
9075 *
9076 * Returns 0 if the validation succeeded or an error code.
9077 */
9078static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009079xmlRelaxNGValidateAttribute(xmlRelaxNGValidCtxtPtr ctxt,
9080 xmlRelaxNGDefinePtr define)
9081{
Daniel Veillard6eadf632003-01-23 18:29:16 +00009082 int ret = 0, i;
9083 xmlChar *value, *oldvalue;
9084 xmlAttrPtr prop = NULL, tmp;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00009085 xmlNodePtr oldseq;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009086
Daniel Veillard1ed7f362003-02-03 10:57:45 +00009087 if (ctxt->state->nbAttrLeft <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009088 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009089 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009090 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9091 tmp = ctxt->state->attrs[i];
9092 if ((tmp != NULL) && (xmlStrEqual(define->name, tmp->name))) {
9093 if ((((define->ns == NULL) || (define->ns[0] == 0)) &&
9094 (tmp->ns == NULL)) ||
9095 ((tmp->ns != NULL) &&
9096 (xmlStrEqual(define->ns, tmp->ns->href)))) {
9097 prop = tmp;
9098 break;
9099 }
9100 }
9101 }
9102 if (prop != NULL) {
9103 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9104 oldvalue = ctxt->state->value;
9105 oldseq = ctxt->state->seq;
9106 ctxt->state->seq = (xmlNodePtr) prop;
9107 ctxt->state->value = value;
9108 ctxt->state->endvalue = NULL;
9109 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9110 if (ctxt->state->value != NULL)
9111 value = ctxt->state->value;
9112 if (value != NULL)
9113 xmlFree(value);
9114 ctxt->state->value = oldvalue;
9115 ctxt->state->seq = oldseq;
9116 if (ret == 0) {
9117 /*
9118 * flag the attribute as processed
9119 */
9120 ctxt->state->attrs[i] = NULL;
9121 ctxt->state->nbAttrLeft--;
9122 }
9123 } else {
9124 ret = -1;
9125 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009126#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009127 xmlGenericError(xmlGenericErrorContext,
9128 "xmlRelaxNGValidateAttribute(%s): %d\n",
9129 define->name, ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009130#endif
9131 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009132 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9133 tmp = ctxt->state->attrs[i];
9134 if ((tmp != NULL) &&
9135 (xmlRelaxNGAttributeMatch(ctxt, define, tmp) == 1)) {
9136 prop = tmp;
9137 break;
9138 }
9139 }
9140 if (prop != NULL) {
9141 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9142 oldvalue = ctxt->state->value;
9143 oldseq = ctxt->state->seq;
9144 ctxt->state->seq = (xmlNodePtr) prop;
9145 ctxt->state->value = value;
9146 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9147 if (ctxt->state->value != NULL)
9148 value = ctxt->state->value;
9149 if (value != NULL)
9150 xmlFree(value);
9151 ctxt->state->value = oldvalue;
9152 ctxt->state->seq = oldseq;
9153 if (ret == 0) {
9154 /*
9155 * flag the attribute as processed
9156 */
9157 ctxt->state->attrs[i] = NULL;
9158 ctxt->state->nbAttrLeft--;
9159 }
9160 } else {
9161 ret = -1;
9162 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009163#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009164 if (define->ns != NULL) {
9165 xmlGenericError(xmlGenericErrorContext,
9166 "xmlRelaxNGValidateAttribute(nsName ns = %s): %d\n",
9167 define->ns, ret);
9168 } else {
9169 xmlGenericError(xmlGenericErrorContext,
9170 "xmlRelaxNGValidateAttribute(anyName): %d\n",
9171 ret);
9172 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009173#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +00009174 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009175
9176 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009177}
9178
9179/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009180 * xmlRelaxNGValidateAttributeList:
9181 * @ctxt: a Relax-NG validation context
9182 * @define: the list of definition to verify
9183 *
9184 * Validate the given node against the list of attribute definitions
9185 *
9186 * Returns 0 if the validation succeeded or an error code.
9187 */
9188static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009189xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
9190 xmlRelaxNGDefinePtr defines)
9191{
Daniel Veillardce192eb2003-04-16 15:58:05 +00009192 int ret = 0, res;
9193 int needmore = 0;
9194 xmlRelaxNGDefinePtr cur;
9195
9196 cur = defines;
9197 while (cur != NULL) {
9198 if (cur->type == XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009199 if (xmlRelaxNGValidateAttribute(ctxt, cur) != 0)
9200 ret = -1;
9201 } else
9202 needmore = 1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009203 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009204 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009205 if (!needmore)
Daniel Veillard4c004142003-10-07 11:33:24 +00009206 return (ret);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009207 cur = defines;
9208 while (cur != NULL) {
9209 if (cur->type != XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009210 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9211 res = xmlRelaxNGValidateDefinition(ctxt, cur);
9212 if (res < 0)
9213 ret = -1;
9214 } else {
9215 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9216 return (-1);
9217 }
9218 if (res == -1) /* continues on -2 */
9219 break;
9220 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009221 cur = cur->next;
9222 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009223
9224 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009225}
9226
9227/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009228 * xmlRelaxNGNodeMatchesList:
9229 * @node: the node
9230 * @list: a NULL terminated array of definitions
9231 *
9232 * Check if a node can be matched by one of the definitions
9233 *
9234 * Returns 1 if matches 0 otherwise
9235 */
9236static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009237xmlRelaxNGNodeMatchesList(xmlNodePtr node, xmlRelaxNGDefinePtr * list)
9238{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009239 xmlRelaxNGDefinePtr cur;
Daniel Veillard0e3d3ce2003-03-21 12:43:18 +00009240 int i = 0, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009241
9242 if ((node == NULL) || (list == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00009243 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009244
9245 cur = list[i++];
9246 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009247 if ((node->type == XML_ELEMENT_NODE) &&
9248 (cur->type == XML_RELAXNG_ELEMENT)) {
9249 tmp = xmlRelaxNGElementMatch(NULL, cur, node);
9250 if (tmp == 1)
9251 return (1);
9252 } else if (((node->type == XML_TEXT_NODE) ||
9253 (node->type == XML_CDATA_SECTION_NODE)) &&
9254 (cur->type == XML_RELAXNG_TEXT)) {
9255 return (1);
9256 }
9257 cur = list[i++];
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009258 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009259 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009260}
9261
9262/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009263 * xmlRelaxNGValidateInterleave:
9264 * @ctxt: a Relax-NG validation context
9265 * @define: the definition to verify
9266 *
9267 * Validate an interleave definition for a node.
9268 *
9269 * Returns 0 if the validation succeeded or an error code.
9270 */
9271static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009272xmlRelaxNGValidateInterleave(xmlRelaxNGValidCtxtPtr ctxt,
9273 xmlRelaxNGDefinePtr define)
9274{
William M. Brack779af002003-08-01 15:55:39 +00009275 int ret = 0, i, nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009276 int errNr = ctxt->errNr;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009277 int oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009278
9279 xmlRelaxNGValidStatePtr oldstate;
9280 xmlRelaxNGPartitionPtr partitions;
9281 xmlRelaxNGInterleaveGroupPtr group = NULL;
9282 xmlNodePtr cur, start, last = NULL, lastchg = NULL, lastelem;
9283 xmlNodePtr *list = NULL, *lasts = NULL;
9284
9285 if (define->data != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009286 partitions = (xmlRelaxNGPartitionPtr) define->data;
9287 nbgroups = partitions->nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009288 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009289 VALID_ERR(XML_RELAXNG_ERR_INTERNODATA);
9290 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009291 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009292 /*
9293 * Optimizations for MIXED
9294 */
9295 oldflags = ctxt->flags;
Daniel Veillarde063f482003-03-21 16:53:17 +00009296 if (define->dflags & IS_MIXED) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009297 ctxt->flags |= FLAGS_MIXED_CONTENT;
9298 if (nbgroups == 2) {
9299 /*
9300 * this is a pure <mixed> case
9301 */
9302 if (ctxt->state != NULL)
9303 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9304 ctxt->state->seq);
9305 if (partitions->groups[0]->rule->type == XML_RELAXNG_TEXT)
9306 ret = xmlRelaxNGValidateDefinition(ctxt,
9307 partitions->groups[1]->
9308 rule);
9309 else
9310 ret = xmlRelaxNGValidateDefinition(ctxt,
9311 partitions->groups[0]->
9312 rule);
9313 if (ret == 0) {
9314 if (ctxt->state != NULL)
9315 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9316 ctxt->state->
9317 seq);
9318 }
9319 ctxt->flags = oldflags;
9320 return (ret);
9321 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009322 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009323
9324 /*
9325 * Build arrays to store the first and last node of the chain
9326 * pertaining to each group
9327 */
9328 list = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9329 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009330 xmlRngVErrMemory(ctxt, "validating\n");
9331 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009332 }
9333 memset(list, 0, nbgroups * sizeof(xmlNodePtr));
9334 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9335 if (lasts == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009336 xmlRngVErrMemory(ctxt, "validating\n");
9337 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009338 }
9339 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr));
9340
9341 /*
9342 * Walk the sequence of children finding the right group and
9343 * sorting them in sequences.
9344 */
9345 cur = ctxt->state->seq;
9346 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9347 start = cur;
9348 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009349 ctxt->state->seq = cur;
9350 if ((partitions->triage != NULL) &&
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009351 (partitions->flags & IS_DETERMINIST)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009352 void *tmp = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009353
Daniel Veillard4c004142003-10-07 11:33:24 +00009354 if ((cur->type == XML_TEXT_NODE) ||
9355 (cur->type == XML_CDATA_SECTION_NODE)) {
9356 tmp = xmlHashLookup2(partitions->triage, BAD_CAST "#text",
9357 NULL);
9358 } else if (cur->type == XML_ELEMENT_NODE) {
9359 if (cur->ns != NULL) {
9360 tmp = xmlHashLookup2(partitions->triage, cur->name,
9361 cur->ns->href);
9362 if (tmp == NULL)
9363 tmp = xmlHashLookup2(partitions->triage,
9364 BAD_CAST "#any",
9365 cur->ns->href);
9366 } else
9367 tmp =
9368 xmlHashLookup2(partitions->triage, cur->name,
9369 NULL);
9370 if (tmp == NULL)
9371 tmp =
9372 xmlHashLookup2(partitions->triage, BAD_CAST "#any",
9373 NULL);
9374 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009375
Daniel Veillard4c004142003-10-07 11:33:24 +00009376 if (tmp == NULL) {
9377 i = nbgroups;
9378 } else {
9379 i = ((long) tmp) - 1;
9380 if (partitions->flags & IS_NEEDCHECK) {
9381 group = partitions->groups[i];
9382 if (!xmlRelaxNGNodeMatchesList(cur, group->defs))
9383 i = nbgroups;
9384 }
9385 }
9386 } else {
9387 for (i = 0; i < nbgroups; i++) {
9388 group = partitions->groups[i];
9389 if (group == NULL)
9390 continue;
9391 if (xmlRelaxNGNodeMatchesList(cur, group->defs))
9392 break;
9393 }
9394 }
9395 /*
9396 * We break as soon as an element not matched is found
9397 */
9398 if (i >= nbgroups) {
9399 break;
9400 }
9401 if (lasts[i] != NULL) {
9402 lasts[i]->next = cur;
9403 lasts[i] = cur;
9404 } else {
9405 list[i] = cur;
9406 lasts[i] = cur;
9407 }
9408 if (cur->next != NULL)
9409 lastchg = cur->next;
9410 else
9411 lastchg = cur;
9412 cur = xmlRelaxNGSkipIgnored(ctxt, cur->next);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009413 }
9414 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009415 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9416 ret = -1;
9417 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009418 }
9419 lastelem = cur;
9420 oldstate = ctxt->state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009421 for (i = 0; i < nbgroups; i++) {
9422 ctxt->state = xmlRelaxNGCopyValidState(ctxt, oldstate);
Gaurav Gupta6d753992014-07-14 16:01:10 +08009423 if (ctxt->state == NULL) {
9424 ret = -1;
9425 break;
9426 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009427 group = partitions->groups[i];
9428 if (lasts[i] != NULL) {
9429 last = lasts[i]->next;
9430 lasts[i]->next = NULL;
9431 }
9432 ctxt->state->seq = list[i];
9433 ret = xmlRelaxNGValidateDefinition(ctxt, group->rule);
9434 if (ret != 0)
9435 break;
9436 if (ctxt->state != NULL) {
9437 cur = ctxt->state->seq;
9438 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9439 xmlRelaxNGFreeValidState(ctxt, oldstate);
9440 oldstate = ctxt->state;
9441 ctxt->state = NULL;
9442 if (cur != NULL) {
9443 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9444 ret = -1;
9445 ctxt->state = oldstate;
9446 goto done;
9447 }
9448 } else if (ctxt->states != NULL) {
9449 int j;
9450 int found = 0;
Daniel Veillard87254c82006-02-19 15:27:17 +00009451 int best = -1;
9452 int lowattr = -1;
9453
9454 /*
9455 * PBM: what happen if there is attributes checks in the interleaves
9456 */
Daniel Veillardfd573f12003-03-16 17:52:32 +00009457
Daniel Veillard4c004142003-10-07 11:33:24 +00009458 for (j = 0; j < ctxt->states->nbState; j++) {
9459 cur = ctxt->states->tabState[j]->seq;
9460 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9461 if (cur == NULL) {
Daniel Veillard87254c82006-02-19 15:27:17 +00009462 if (found == 0) {
9463 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9464 best = j;
9465 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009466 found = 1;
Daniel Veillard87254c82006-02-19 15:27:17 +00009467 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9468 /* try to keep the latest one to mach old heuristic */
9469 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9470 best = j;
9471 }
9472 if (lowattr == 0)
9473 break;
9474 } else if (found == 0) {
9475 if (lowattr == -1) {
9476 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9477 best = j;
9478 } else
9479 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9480 /* try to keep the latest one to mach old heuristic */
9481 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9482 best = j;
9483 }
9484 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009485 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009486 /*
9487 * BIG PBM: here we pick only one restarting point :-(
9488 */
Daniel Veillard4c004142003-10-07 11:33:24 +00009489 if (ctxt->states->nbState > 0) {
9490 xmlRelaxNGFreeValidState(ctxt, oldstate);
Daniel Veillard87254c82006-02-19 15:27:17 +00009491 if (best != -1) {
9492 oldstate = ctxt->states->tabState[best];
9493 ctxt->states->tabState[best] = NULL;
9494 } else {
9495 oldstate =
9496 ctxt->states->tabState[ctxt->states->nbState - 1];
9497 ctxt->states->tabState[ctxt->states->nbState - 1] = NULL;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02009498 ctxt->states->nbState--;
Daniel Veillard87254c82006-02-19 15:27:17 +00009499 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009500 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009501 for (j = 0; j < ctxt->states->nbState ; j++) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009502 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[j]);
9503 }
9504 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9505 ctxt->states = NULL;
9506 if (found == 0) {
Daniel Veillard76d36452009-09-07 11:19:33 +02009507 if (cur == NULL) {
Ben Waltona7a6a4b2010-03-15 10:06:36 +01009508 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA,
9509 (const xmlChar *) "noname");
Daniel Veillard76d36452009-09-07 11:19:33 +02009510 } else {
9511 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9512 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009513 ret = -1;
9514 ctxt->state = oldstate;
9515 goto done;
9516 }
9517 } else {
9518 ret = -1;
9519 break;
9520 }
9521 if (lasts[i] != NULL) {
9522 lasts[i]->next = last;
9523 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009524 }
9525 if (ctxt->state != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009526 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009527 ctxt->state = oldstate;
9528 ctxt->state->seq = lastelem;
9529 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009530 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9531 ret = -1;
9532 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009533 }
9534
Daniel Veillard4c004142003-10-07 11:33:24 +00009535 done:
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009536 ctxt->flags = oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009537 /*
9538 * builds the next links chain from the prev one
9539 */
9540 cur = lastchg;
9541 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009542 if ((cur == start) || (cur->prev == NULL))
9543 break;
9544 cur->prev->next = cur;
9545 cur = cur->prev;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009546 }
9547 if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009548 if (ctxt->errNr > errNr)
9549 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009550 }
9551
9552 xmlFree(list);
9553 xmlFree(lasts);
Daniel Veillard4c004142003-10-07 11:33:24 +00009554 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009555}
9556
9557/**
9558 * xmlRelaxNGValidateDefinitionList:
9559 * @ctxt: a Relax-NG validation context
9560 * @define: the list of definition to verify
9561 *
9562 * Validate the given node content against the (list) of definitions
9563 *
9564 * Returns 0 if the validation succeeded or an error code.
9565 */
9566static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009567xmlRelaxNGValidateDefinitionList(xmlRelaxNGValidCtxtPtr ctxt,
9568 xmlRelaxNGDefinePtr defines)
9569{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009570 int ret = 0, res;
9571
9572
Daniel Veillard952379b2003-03-17 15:37:12 +00009573 if (defines == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009574 VALID_ERR2(XML_RELAXNG_ERR_INTERNAL,
9575 BAD_CAST "NULL definition list");
9576 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00009577 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009578 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009579 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9580 res = xmlRelaxNGValidateDefinition(ctxt, defines);
9581 if (res < 0)
9582 ret = -1;
9583 } else {
9584 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9585 return (-1);
9586 }
9587 if (res == -1) /* continues on -2 */
9588 break;
9589 defines = defines->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009590 }
9591
Daniel Veillard4c004142003-10-07 11:33:24 +00009592 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009593}
9594
9595/**
9596 * xmlRelaxNGElementMatch:
Daniel Veillard416589a2003-02-17 17:25:42 +00009597 * @ctxt: a Relax-NG validation context
9598 * @define: the definition to check
Daniel Veillardfd573f12003-03-16 17:52:32 +00009599 * @elem: the element
Daniel Veillard416589a2003-02-17 17:25:42 +00009600 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009601 * Check if the element matches the definition nameClass
Daniel Veillard416589a2003-02-17 17:25:42 +00009602 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009603 * Returns 1 if the element matches, 0 if no, or -1 in case of error
Daniel Veillard416589a2003-02-17 17:25:42 +00009604 */
9605static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009606xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
9607 xmlRelaxNGDefinePtr define, xmlNodePtr elem)
9608{
Daniel Veillard580ced82003-03-21 21:22:48 +00009609 int ret = 0, oldflags = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00009610
Daniel Veillardfd573f12003-03-16 17:52:32 +00009611 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009612 if (!xmlStrEqual(elem->name, define->name)) {
9613 VALID_ERR3(XML_RELAXNG_ERR_ELEMNAME, define->name, elem->name);
9614 return (0);
9615 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009616 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009617 if ((define->ns != NULL) && (define->ns[0] != 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009618 if (elem->ns == NULL) {
9619 VALID_ERR2(XML_RELAXNG_ERR_ELEMNONS, elem->name);
9620 return (0);
9621 } else if (!xmlStrEqual(elem->ns->href, define->ns)) {
9622 VALID_ERR3(XML_RELAXNG_ERR_ELEMWRONGNS,
9623 elem->name, define->ns);
9624 return (0);
9625 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009626 } else if ((elem->ns != NULL) && (define->ns != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00009627 (define->name == NULL)) {
9628 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, elem->name);
9629 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009630 } else if ((elem->ns != NULL) && (define->name != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009631 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, define->name);
9632 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009633 }
9634
9635 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009636 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009637
9638 define = define->nameClass;
9639 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009640 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009641
Daniel Veillard4c004142003-10-07 11:33:24 +00009642 if (ctxt != NULL) {
9643 oldflags = ctxt->flags;
9644 ctxt->flags |= FLAGS_IGNORABLE;
9645 }
9646
9647 list = define->content;
9648 while (list != NULL) {
9649 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9650 if (ret == 1) {
9651 if (ctxt != NULL)
9652 ctxt->flags = oldflags;
9653 return (0);
9654 }
9655 if (ret < 0) {
9656 if (ctxt != NULL)
9657 ctxt->flags = oldflags;
9658 return (ret);
9659 }
9660 list = list->next;
9661 }
9662 ret = 1;
9663 if (ctxt != NULL) {
9664 ctxt->flags = oldflags;
9665 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009666 } else if (define->type == XML_RELAXNG_CHOICE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009667 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009668
Daniel Veillard4c004142003-10-07 11:33:24 +00009669 if (ctxt != NULL) {
9670 oldflags = ctxt->flags;
9671 ctxt->flags |= FLAGS_IGNORABLE;
9672 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009673
Daniel Veillard4c004142003-10-07 11:33:24 +00009674 list = define->nameClass;
9675 while (list != NULL) {
9676 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9677 if (ret == 1) {
9678 if (ctxt != NULL)
9679 ctxt->flags = oldflags;
9680 return (1);
9681 }
9682 if (ret < 0) {
9683 if (ctxt != NULL)
9684 ctxt->flags = oldflags;
9685 return (ret);
9686 }
9687 list = list->next;
9688 }
9689 if (ctxt != NULL) {
9690 if (ret != 0) {
9691 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9692 xmlRelaxNGDumpValidError(ctxt);
9693 } else {
9694 if (ctxt->errNr > 0)
9695 xmlRelaxNGPopErrors(ctxt, 0);
9696 }
9697 }
9698 ret = 0;
9699 if (ctxt != NULL) {
9700 ctxt->flags = oldflags;
9701 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009702 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009703 TODO ret = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009704 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009705 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009706}
9707
9708/**
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009709 * xmlRelaxNGBestState:
9710 * @ctxt: a Relax-NG validation context
9711 *
9712 * Find the "best" state in the ctxt->states list of states to report
9713 * errors about. I.e. a state with no element left in the child list
9714 * or the one with the less attributes left.
9715 * This is called only if a falidation error was detected
9716 *
9717 * Returns the index of the "best" state or -1 in case of error
9718 */
9719static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009720xmlRelaxNGBestState(xmlRelaxNGValidCtxtPtr ctxt)
9721{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009722 xmlRelaxNGValidStatePtr state;
9723 int i, tmp;
9724 int best = -1;
9725 int value = 1000000;
9726
9727 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9728 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009729 return (-1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009730
Daniel Veillard4c004142003-10-07 11:33:24 +00009731 for (i = 0; i < ctxt->states->nbState; i++) {
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009732 state = ctxt->states->tabState[i];
Daniel Veillard4c004142003-10-07 11:33:24 +00009733 if (state == NULL)
9734 continue;
9735 if (state->seq != NULL) {
9736 if ((best == -1) || (value > 100000)) {
9737 value = 100000;
9738 best = i;
9739 }
9740 } else {
9741 tmp = state->nbAttrLeft;
9742 if ((best == -1) || (value > tmp)) {
9743 value = tmp;
9744 best = i;
9745 }
9746 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009747 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009748 return (best);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009749}
9750
9751/**
9752 * xmlRelaxNGLogBestError:
9753 * @ctxt: a Relax-NG validation context
9754 *
9755 * Find the "best" state in the ctxt->states list of states to report
9756 * errors about and log it.
9757 */
9758static void
Daniel Veillard4c004142003-10-07 11:33:24 +00009759xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt)
9760{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009761 int best;
9762
9763 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9764 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009765 return;
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009766
9767 best = xmlRelaxNGBestState(ctxt);
9768 if ((best >= 0) && (best < ctxt->states->nbState)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009769 ctxt->state = ctxt->states->tabState[best];
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009770
Daniel Veillard4c004142003-10-07 11:33:24 +00009771 xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009772 }
9773}
9774
9775/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009776 * xmlRelaxNGValidateElementEnd:
9777 * @ctxt: a Relax-NG validation context
William M. Brack272693c2003-11-14 16:20:34 +00009778 * @dolog: indicate that error logging should be done
Daniel Veillardfd573f12003-03-16 17:52:32 +00009779 *
9780 * Validate the end of the element, implements check that
9781 * there is nothing left not consumed in the element content
9782 * or in the attribute list.
9783 *
9784 * Returns 0 if the validation succeeded or an error code.
9785 */
9786static int
William M. Brack272693c2003-11-14 16:20:34 +00009787xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt, int dolog)
Daniel Veillard4c004142003-10-07 11:33:24 +00009788{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009789 int i;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009790 xmlRelaxNGValidStatePtr state;
9791
9792 state = ctxt->state;
9793 if (state->seq != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009794 state->seq = xmlRelaxNGSkipIgnored(ctxt, state->seq);
9795 if (state->seq != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009796 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009797 VALID_ERR3(XML_RELAXNG_ERR_EXTRACONTENT,
9798 state->node->name, state->seq->name);
9799 }
9800 return (-1);
9801 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009802 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009803 for (i = 0; i < state->nbAttrs; i++) {
9804 if (state->attrs[i] != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009805 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009806 VALID_ERR3(XML_RELAXNG_ERR_INVALIDATTR,
9807 state->attrs[i]->name, state->node->name);
9808 }
9809 return (-1 - i);
9810 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009811 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009812 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009813}
9814
9815/**
9816 * xmlRelaxNGValidateState:
9817 * @ctxt: a Relax-NG validation context
9818 * @define: the definition to verify
9819 *
9820 * Validate the current state against the definition
9821 *
9822 * Returns 0 if the validation succeeded or an error code.
9823 */
9824static int
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009825xmlRelaxNGValidateState(xmlRelaxNGValidCtxtPtr ctxt,
9826 xmlRelaxNGDefinePtr define)
9827{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009828 xmlNodePtr node;
9829 int ret = 0, i, tmp, oldflags, errNr;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009830 xmlRelaxNGValidStatePtr oldstate = NULL, state;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009831
9832 if (define == NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009833 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
9834 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009835 }
9836
9837 if (ctxt->state != NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009838 node = ctxt->state->seq;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009839 } else {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009840 node = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009841 }
9842#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009843 for (i = 0; i < ctxt->depth; i++)
9844 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009845 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009846 "Start validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +00009847 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009848 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009849 if ((node != NULL) && (node->name != NULL))
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009850 xmlGenericError(xmlGenericErrorContext, "on %s\n", node->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009851 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009852 xmlGenericError(xmlGenericErrorContext, "\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009853#endif
9854 ctxt->depth++;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009855 switch (define->type) {
9856 case XML_RELAXNG_EMPTY:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009857 node = xmlRelaxNGSkipIgnored(ctxt, node);
9858 ret = 0;
9859 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009860 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009861 ret = -1;
9862 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009863 case XML_RELAXNG_TEXT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009864 while ((node != NULL) &&
9865 ((node->type == XML_TEXT_NODE) ||
9866 (node->type == XML_COMMENT_NODE) ||
9867 (node->type == XML_PI_NODE) ||
9868 (node->type == XML_CDATA_SECTION_NODE)))
9869 node = node->next;
9870 ctxt->state->seq = node;
9871 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009872 case XML_RELAXNG_ELEMENT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009873 errNr = ctxt->errNr;
9874 node = xmlRelaxNGSkipIgnored(ctxt, node);
9875 if (node == NULL) {
9876 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, define->name);
9877 ret = -1;
9878 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9879 xmlRelaxNGDumpValidError(ctxt);
9880 break;
9881 }
9882 if (node->type != XML_ELEMENT_NODE) {
9883 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
9884 ret = -1;
9885 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9886 xmlRelaxNGDumpValidError(ctxt);
9887 break;
9888 }
9889 /*
9890 * This node was already validated successfully against
9891 * this definition.
9892 */
Daniel Veillard807daf82004-02-22 22:13:27 +00009893 if (node->psvi == define) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009894 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
9895 if (ctxt->errNr > errNr)
9896 xmlRelaxNGPopErrors(ctxt, errNr);
9897 if (ctxt->errNr != 0) {
9898 while ((ctxt->err != NULL) &&
9899 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME)
9900 && (xmlStrEqual(ctxt->err->arg2, node->name)))
9901 ||
9902 ((ctxt->err->err ==
9903 XML_RELAXNG_ERR_ELEMEXTRANS)
9904 && (xmlStrEqual(ctxt->err->arg1, node->name)))
9905 || (ctxt->err->err == XML_RELAXNG_ERR_NOELEM)
9906 || (ctxt->err->err ==
9907 XML_RELAXNG_ERR_NOTELEM)))
9908 xmlRelaxNGValidErrorPop(ctxt);
9909 }
9910 break;
9911 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009912
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009913 ret = xmlRelaxNGElementMatch(ctxt, define, node);
9914 if (ret <= 0) {
9915 ret = -1;
9916 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9917 xmlRelaxNGDumpValidError(ctxt);
9918 break;
9919 }
9920 ret = 0;
9921 if (ctxt->errNr != 0) {
9922 if (ctxt->errNr > errNr)
9923 xmlRelaxNGPopErrors(ctxt, errNr);
9924 while ((ctxt->err != NULL) &&
9925 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME) &&
9926 (xmlStrEqual(ctxt->err->arg2, node->name))) ||
9927 ((ctxt->err->err == XML_RELAXNG_ERR_ELEMEXTRANS) &&
9928 (xmlStrEqual(ctxt->err->arg1, node->name))) ||
9929 (ctxt->err->err == XML_RELAXNG_ERR_NOELEM) ||
9930 (ctxt->err->err == XML_RELAXNG_ERR_NOTELEM)))
9931 xmlRelaxNGValidErrorPop(ctxt);
9932 }
9933 errNr = ctxt->errNr;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009934
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009935 oldflags = ctxt->flags;
9936 if (ctxt->flags & FLAGS_MIXED_CONTENT) {
9937 ctxt->flags -= FLAGS_MIXED_CONTENT;
9938 }
9939 state = xmlRelaxNGNewValidState(ctxt, node);
9940 if (state == NULL) {
9941 ret = -1;
9942 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9943 xmlRelaxNGDumpValidError(ctxt);
9944 break;
9945 }
Daniel Veillard7fe1f3a2003-03-31 22:13:33 +00009946
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009947 oldstate = ctxt->state;
9948 ctxt->state = state;
9949 if (define->attrs != NULL) {
9950 tmp = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
9951 if (tmp != 0) {
9952 ret = -1;
9953 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
9954 }
9955 }
9956 if (define->contModel != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009957 xmlRelaxNGValidStatePtr nstate, tmpstate = ctxt->state;
9958 xmlRelaxNGStatesPtr tmpstates = ctxt->states;
9959 xmlNodePtr nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009960
Daniel Veillard4c004142003-10-07 11:33:24 +00009961 nstate = xmlRelaxNGNewValidState(ctxt, node);
9962 ctxt->state = nstate;
9963 ctxt->states = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009964
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009965 tmp = xmlRelaxNGValidateCompiledContent(ctxt,
9966 define->contModel,
9967 ctxt->state->seq);
Daniel Veillard4c004142003-10-07 11:33:24 +00009968 nseq = ctxt->state->seq;
9969 ctxt->state = tmpstate;
9970 ctxt->states = tmpstates;
9971 xmlRelaxNGFreeValidState(ctxt, nstate);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009972
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009973#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00009974 xmlGenericError(xmlGenericErrorContext,
9975 "Validating content of '%s' : %d\n",
9976 define->name, tmp);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009977#endif
Daniel Veillardce192eb2003-04-16 15:58:05 +00009978 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009979 ret = -1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009980
9981 if (ctxt->states != NULL) {
9982 tmp = -1;
9983
Daniel Veillardce192eb2003-04-16 15:58:05 +00009984 for (i = 0; i < ctxt->states->nbState; i++) {
9985 state = ctxt->states->tabState[i];
9986 ctxt->state = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009987 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009988
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009989 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardce192eb2003-04-16 15:58:05 +00009990 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00009991 break;
9992 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009993 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009994 if (tmp != 0) {
9995 /*
9996 * validation error, log the message for the "best" one
9997 */
9998 ctxt->flags |= FLAGS_IGNORABLE;
9999 xmlRelaxNGLogBestError(ctxt);
10000 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010001 for (i = 0; i < ctxt->states->nbState; i++) {
10002 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010003 ctxt->states->
10004 tabState[i]);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010005 }
10006 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10007 ctxt->flags = oldflags;
10008 ctxt->states = NULL;
10009 if ((ret == 0) && (tmp == -1))
10010 ret = -1;
10011 } else {
10012 state = ctxt->state;
Daniel Veillardd8ed1052007-06-12 09:24:46 +000010013 if (ctxt->state != NULL)
10014 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +000010015 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010016 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010017 xmlRelaxNGFreeValidState(ctxt, state);
10018 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010019 } else {
10020 if (define->content != NULL) {
10021 tmp = xmlRelaxNGValidateDefinitionList(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010022 define->
10023 content);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010024 if (tmp != 0) {
10025 ret = -1;
10026 if (ctxt->state == NULL) {
10027 ctxt->state = oldstate;
10028 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10029 node->name);
10030 ctxt->state = NULL;
10031 } else {
10032 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10033 node->name);
10034 }
10035
10036 }
10037 }
10038 if (ctxt->states != NULL) {
10039 tmp = -1;
10040
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010041 for (i = 0; i < ctxt->states->nbState; i++) {
10042 state = ctxt->states->tabState[i];
10043 ctxt->state = state;
10044
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010045 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010046 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +000010047 break;
10048 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010049 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010050 if (tmp != 0) {
10051 /*
10052 * validation error, log the message for the "best" one
10053 */
10054 ctxt->flags |= FLAGS_IGNORABLE;
10055 xmlRelaxNGLogBestError(ctxt);
10056 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010057 for (i = 0; i < ctxt->states->nbState; i++) {
10058 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010059 ctxt->states->tabState[i]);
10060 ctxt->states->tabState[i] = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010061 }
10062 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10063 ctxt->flags = oldflags;
10064 ctxt->states = NULL;
10065 if ((ret == 0) && (tmp == -1))
10066 ret = -1;
10067 } else {
10068 state = ctxt->state;
10069 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010070 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010071 xmlRelaxNGFreeValidState(ctxt, state);
10072 }
10073 }
10074 if (ret == 0) {
Daniel Veillard807daf82004-02-22 22:13:27 +000010075 node->psvi = define;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010076 }
10077 ctxt->flags = oldflags;
10078 ctxt->state = oldstate;
10079 if (oldstate != NULL)
10080 oldstate->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
10081 if (ret != 0) {
10082 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10083 xmlRelaxNGDumpValidError(ctxt);
10084 ret = 0;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010085#if 0
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010086 } else {
10087 ret = -2;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010088#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010089 }
10090 } else {
10091 if (ctxt->errNr > errNr)
10092 xmlRelaxNGPopErrors(ctxt, errNr);
10093 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010094
10095#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010096 xmlGenericError(xmlGenericErrorContext,
10097 "xmlRelaxNGValidateDefinition(): validated %s : %d",
10098 node->name, ret);
10099 if (oldstate == NULL)
10100 xmlGenericError(xmlGenericErrorContext, ": no state\n");
10101 else if (oldstate->seq == NULL)
10102 xmlGenericError(xmlGenericErrorContext, ": done\n");
10103 else if (oldstate->seq->type == XML_ELEMENT_NODE)
10104 xmlGenericError(xmlGenericErrorContext, ": next elem %s\n",
10105 oldstate->seq->name);
10106 else
10107 xmlGenericError(xmlGenericErrorContext, ": next %s %d\n",
10108 oldstate->seq->name, oldstate->seq->type);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010109#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010110 break;
10111 case XML_RELAXNG_OPTIONAL:{
10112 errNr = ctxt->errNr;
10113 oldflags = ctxt->flags;
10114 ctxt->flags |= FLAGS_IGNORABLE;
10115 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10116 ret =
10117 xmlRelaxNGValidateDefinitionList(ctxt,
10118 define->content);
10119 if (ret != 0) {
10120 if (ctxt->state != NULL)
10121 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10122 ctxt->state = oldstate;
10123 ctxt->flags = oldflags;
10124 ret = 0;
10125 if (ctxt->errNr > errNr)
10126 xmlRelaxNGPopErrors(ctxt, errNr);
10127 break;
10128 }
10129 if (ctxt->states != NULL) {
10130 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10131 } else {
10132 ctxt->states = xmlRelaxNGNewStates(ctxt, 1);
10133 if (ctxt->states == NULL) {
10134 xmlRelaxNGFreeValidState(ctxt, oldstate);
10135 ctxt->flags = oldflags;
10136 ret = -1;
10137 if (ctxt->errNr > errNr)
10138 xmlRelaxNGPopErrors(ctxt, errNr);
10139 break;
10140 }
10141 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10142 xmlRelaxNGAddStates(ctxt, ctxt->states, ctxt->state);
10143 ctxt->state = NULL;
10144 }
10145 ctxt->flags = oldflags;
10146 ret = 0;
10147 if (ctxt->errNr > errNr)
10148 xmlRelaxNGPopErrors(ctxt, errNr);
10149 break;
10150 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010151 case XML_RELAXNG_ONEORMORE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010152 errNr = ctxt->errNr;
10153 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10154 if (ret != 0) {
10155 break;
10156 }
10157 if (ctxt->errNr > errNr)
10158 xmlRelaxNGPopErrors(ctxt, errNr);
10159 /* no break on purpose */
10160 case XML_RELAXNG_ZEROORMORE:{
10161 int progress;
10162 xmlRelaxNGStatesPtr states = NULL, res = NULL;
10163 int base, j;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010164
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010165 errNr = ctxt->errNr;
10166 res = xmlRelaxNGNewStates(ctxt, 1);
10167 if (res == NULL) {
10168 ret = -1;
10169 break;
10170 }
10171 /*
10172 * All the input states are also exit states
10173 */
10174 if (ctxt->state != NULL) {
10175 xmlRelaxNGAddStates(ctxt, res,
10176 xmlRelaxNGCopyValidState(ctxt,
10177 ctxt->
10178 state));
10179 } else {
10180 for (j = 0; j < ctxt->states->nbState; j++) {
10181 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010182 xmlRelaxNGCopyValidState(ctxt,
10183 ctxt->states->tabState[j]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010184 }
10185 }
10186 oldflags = ctxt->flags;
10187 ctxt->flags |= FLAGS_IGNORABLE;
10188 do {
10189 progress = 0;
10190 base = res->nbState;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010191
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010192 if (ctxt->states != NULL) {
10193 states = ctxt->states;
10194 for (i = 0; i < states->nbState; i++) {
10195 ctxt->state = states->tabState[i];
10196 ctxt->states = NULL;
10197 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10198 define->
10199 content);
10200 if (ret == 0) {
10201 if (ctxt->state != NULL) {
10202 tmp = xmlRelaxNGAddStates(ctxt, res,
10203 ctxt->state);
10204 ctxt->state = NULL;
10205 if (tmp == 1)
10206 progress = 1;
10207 } else if (ctxt->states != NULL) {
10208 for (j = 0; j < ctxt->states->nbState;
10209 j++) {
10210 tmp =
10211 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010212 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010213 if (tmp == 1)
10214 progress = 1;
10215 }
10216 xmlRelaxNGFreeStates(ctxt,
10217 ctxt->states);
10218 ctxt->states = NULL;
10219 }
10220 } else {
10221 if (ctxt->state != NULL) {
10222 xmlRelaxNGFreeValidState(ctxt,
10223 ctxt->state);
10224 ctxt->state = NULL;
10225 }
10226 }
10227 }
10228 } else {
10229 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10230 define->
10231 content);
10232 if (ret != 0) {
10233 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10234 ctxt->state = NULL;
10235 } else {
10236 base = res->nbState;
10237 if (ctxt->state != NULL) {
10238 tmp = xmlRelaxNGAddStates(ctxt, res,
10239 ctxt->state);
10240 ctxt->state = NULL;
10241 if (tmp == 1)
10242 progress = 1;
10243 } else if (ctxt->states != NULL) {
10244 for (j = 0; j < ctxt->states->nbState; j++) {
10245 tmp = xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010246 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010247 if (tmp == 1)
10248 progress = 1;
10249 }
10250 if (states == NULL) {
10251 states = ctxt->states;
10252 } else {
10253 xmlRelaxNGFreeStates(ctxt,
10254 ctxt->states);
10255 }
10256 ctxt->states = NULL;
10257 }
10258 }
10259 }
10260 if (progress) {
10261 /*
10262 * Collect all the new nodes added at that step
10263 * and make them the new node set
10264 */
10265 if (res->nbState - base == 1) {
10266 ctxt->state = xmlRelaxNGCopyValidState(ctxt,
10267 res->
10268 tabState
10269 [base]);
10270 } else {
10271 if (states == NULL) {
10272 xmlRelaxNGNewStates(ctxt,
10273 res->nbState - base);
Daniel Veillard14b56432006-03-09 18:41:40 +000010274 states = ctxt->states;
10275 if (states == NULL) {
10276 progress = 0;
10277 break;
10278 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010279 }
10280 states->nbState = 0;
10281 for (i = base; i < res->nbState; i++)
10282 xmlRelaxNGAddStates(ctxt, states,
10283 xmlRelaxNGCopyValidState
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010284 (ctxt, res->tabState[i]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010285 ctxt->states = states;
10286 }
10287 }
10288 } while (progress == 1);
10289 if (states != NULL) {
10290 xmlRelaxNGFreeStates(ctxt, states);
10291 }
10292 ctxt->states = res;
10293 ctxt->flags = oldflags;
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010294#if 0
10295 /*
Daniel Veillard4c004142003-10-07 11:33:24 +000010296 * errors may have to be propagated back...
10297 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010298 if (ctxt->errNr > errNr)
10299 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010300#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010301 ret = 0;
10302 break;
10303 }
10304 case XML_RELAXNG_CHOICE:{
10305 xmlRelaxNGDefinePtr list = NULL;
10306 xmlRelaxNGStatesPtr states = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010307
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010308 node = xmlRelaxNGSkipIgnored(ctxt, node);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010309
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010310 errNr = ctxt->errNr;
Daniel Veillard9186a1f2005-01-15 12:38:10 +000010311 if ((define->dflags & IS_TRIABLE) && (define->data != NULL) &&
10312 (node != NULL)) {
10313 /*
10314 * node == NULL can't be optimized since IS_TRIABLE
10315 * doesn't account for choice which may lead to
10316 * only attributes.
10317 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010318 xmlHashTablePtr triage =
10319 (xmlHashTablePtr) define->data;
Daniel Veillarde063f482003-03-21 16:53:17 +000010320
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010321 /*
10322 * Something we can optimize cleanly there is only one
10323 * possble branch out !
10324 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010325 if ((node->type == XML_TEXT_NODE) ||
10326 (node->type == XML_CDATA_SECTION_NODE)) {
10327 list =
10328 xmlHashLookup2(triage, BAD_CAST "#text", NULL);
10329 } else if (node->type == XML_ELEMENT_NODE) {
10330 if (node->ns != NULL) {
10331 list = xmlHashLookup2(triage, node->name,
10332 node->ns->href);
10333 if (list == NULL)
10334 list =
10335 xmlHashLookup2(triage, BAD_CAST "#any",
10336 node->ns->href);
10337 } else
10338 list =
10339 xmlHashLookup2(triage, node->name, NULL);
10340 if (list == NULL)
10341 list =
10342 xmlHashLookup2(triage, BAD_CAST "#any",
10343 NULL);
10344 }
10345 if (list == NULL) {
10346 ret = -1;
William M. Brack2f076062004-03-21 11:21:14 +000010347 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, node->name);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010348 break;
10349 }
10350 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10351 if (ret == 0) {
10352 }
10353 break;
10354 }
Daniel Veillarde063f482003-03-21 16:53:17 +000010355
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010356 list = define->content;
10357 oldflags = ctxt->flags;
10358 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010359
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010360 while (list != NULL) {
10361 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10362 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10363 if (ret == 0) {
10364 if (states == NULL) {
10365 states = xmlRelaxNGNewStates(ctxt, 1);
10366 }
10367 if (ctxt->state != NULL) {
10368 xmlRelaxNGAddStates(ctxt, states, ctxt->state);
10369 } else if (ctxt->states != NULL) {
10370 for (i = 0; i < ctxt->states->nbState; i++) {
10371 xmlRelaxNGAddStates(ctxt, states,
10372 ctxt->states->
10373 tabState[i]);
10374 }
10375 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10376 ctxt->states = NULL;
10377 }
10378 } else {
10379 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10380 }
10381 ctxt->state = oldstate;
10382 list = list->next;
10383 }
10384 if (states != NULL) {
10385 xmlRelaxNGFreeValidState(ctxt, oldstate);
10386 ctxt->states = states;
10387 ctxt->state = NULL;
10388 ret = 0;
10389 } else {
10390 ctxt->states = NULL;
10391 }
10392 ctxt->flags = oldflags;
10393 if (ret != 0) {
10394 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10395 xmlRelaxNGDumpValidError(ctxt);
10396 }
10397 } else {
10398 if (ctxt->errNr > errNr)
10399 xmlRelaxNGPopErrors(ctxt, errNr);
10400 }
10401 break;
10402 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010403 case XML_RELAXNG_DEF:
10404 case XML_RELAXNG_GROUP:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010405 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10406 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010407 case XML_RELAXNG_INTERLEAVE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010408 ret = xmlRelaxNGValidateInterleave(ctxt, define);
10409 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010410 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010411 ret = xmlRelaxNGValidateAttribute(ctxt, define);
10412 break;
Daniel Veillardf4e55762003-04-15 23:32:22 +000010413 case XML_RELAXNG_START:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010414 case XML_RELAXNG_NOOP:
Daniel Veillardfd573f12003-03-16 17:52:32 +000010415 case XML_RELAXNG_REF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010416 case XML_RELAXNG_EXTERNALREF:
Daniel Veillard952379b2003-03-17 15:37:12 +000010417 case XML_RELAXNG_PARENTREF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010418 ret = xmlRelaxNGValidateDefinition(ctxt, define->content);
10419 break;
10420 case XML_RELAXNG_DATATYPE:{
10421 xmlNodePtr child;
10422 xmlChar *content = NULL;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010423
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010424 child = node;
10425 while (child != NULL) {
10426 if (child->type == XML_ELEMENT_NODE) {
10427 VALID_ERR2(XML_RELAXNG_ERR_DATAELEM,
10428 node->parent->name);
10429 ret = -1;
10430 break;
10431 } else if ((child->type == XML_TEXT_NODE) ||
10432 (child->type == XML_CDATA_SECTION_NODE)) {
10433 content = xmlStrcat(content, child->content);
10434 }
10435 /* TODO: handle entities ... */
10436 child = child->next;
10437 }
10438 if (ret == -1) {
10439 if (content != NULL)
10440 xmlFree(content);
10441 break;
10442 }
10443 if (content == NULL) {
10444 content = xmlStrdup(BAD_CAST "");
10445 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010446 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010447 ret = -1;
10448 break;
10449 }
10450 }
10451 ret = xmlRelaxNGValidateDatatype(ctxt, content, define,
10452 ctxt->state->seq);
10453 if (ret == -1) {
10454 VALID_ERR2(XML_RELAXNG_ERR_DATATYPE, define->name);
10455 } else if (ret == 0) {
10456 ctxt->state->seq = NULL;
10457 }
10458 if (content != NULL)
10459 xmlFree(content);
10460 break;
10461 }
10462 case XML_RELAXNG_VALUE:{
10463 xmlChar *content = NULL;
10464 xmlChar *oldvalue;
10465 xmlNodePtr child;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010466
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010467 child = node;
10468 while (child != NULL) {
10469 if (child->type == XML_ELEMENT_NODE) {
10470 VALID_ERR2(XML_RELAXNG_ERR_VALELEM,
10471 node->parent->name);
10472 ret = -1;
10473 break;
10474 } else if ((child->type == XML_TEXT_NODE) ||
10475 (child->type == XML_CDATA_SECTION_NODE)) {
10476 content = xmlStrcat(content, child->content);
10477 }
10478 /* TODO: handle entities ... */
10479 child = child->next;
10480 }
10481 if (ret == -1) {
10482 if (content != NULL)
10483 xmlFree(content);
10484 break;
10485 }
10486 if (content == NULL) {
10487 content = xmlStrdup(BAD_CAST "");
10488 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010489 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010490 ret = -1;
10491 break;
10492 }
10493 }
10494 oldvalue = ctxt->state->value;
10495 ctxt->state->value = content;
10496 ret = xmlRelaxNGValidateValue(ctxt, define);
10497 ctxt->state->value = oldvalue;
10498 if (ret == -1) {
10499 VALID_ERR2(XML_RELAXNG_ERR_VALUE, define->name);
10500 } else if (ret == 0) {
10501 ctxt->state->seq = NULL;
10502 }
10503 if (content != NULL)
10504 xmlFree(content);
10505 break;
10506 }
10507 case XML_RELAXNG_LIST:{
10508 xmlChar *content;
10509 xmlNodePtr child;
10510 xmlChar *oldvalue, *oldendvalue;
10511 int len;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010512
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010513 /*
10514 * Make sure it's only text nodes
10515 */
10516
10517 content = NULL;
10518 child = node;
10519 while (child != NULL) {
10520 if (child->type == XML_ELEMENT_NODE) {
10521 VALID_ERR2(XML_RELAXNG_ERR_LISTELEM,
10522 node->parent->name);
10523 ret = -1;
10524 break;
10525 } else if ((child->type == XML_TEXT_NODE) ||
10526 (child->type == XML_CDATA_SECTION_NODE)) {
10527 content = xmlStrcat(content, child->content);
10528 }
10529 /* TODO: handle entities ... */
10530 child = child->next;
10531 }
10532 if (ret == -1) {
10533 if (content != NULL)
10534 xmlFree(content);
10535 break;
10536 }
10537 if (content == NULL) {
10538 content = xmlStrdup(BAD_CAST "");
10539 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010540 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010541 ret = -1;
10542 break;
10543 }
10544 }
10545 len = xmlStrlen(content);
10546 oldvalue = ctxt->state->value;
10547 oldendvalue = ctxt->state->endvalue;
10548 ctxt->state->value = content;
10549 ctxt->state->endvalue = content + len;
10550 ret = xmlRelaxNGValidateValue(ctxt, define);
10551 ctxt->state->value = oldvalue;
10552 ctxt->state->endvalue = oldendvalue;
10553 if (ret == -1) {
10554 VALID_ERR(XML_RELAXNG_ERR_LIST);
10555 } else if ((ret == 0) && (node != NULL)) {
10556 ctxt->state->seq = node->next;
10557 }
10558 if (content != NULL)
10559 xmlFree(content);
10560 break;
10561 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010562 case XML_RELAXNG_EXCEPT:
10563 case XML_RELAXNG_PARAM:
10564 TODO ret = -1;
10565 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010566 }
10567 ctxt->depth--;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010568#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010569 for (i = 0; i < ctxt->depth; i++)
10570 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010571 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010572 "Validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +000010573 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010574 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010575 if (ret == 0)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010576 xmlGenericError(xmlGenericErrorContext, "suceeded\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010577 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010578 xmlGenericError(xmlGenericErrorContext, "failed\n");
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010579#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010580 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010581}
10582
10583/**
Daniel Veillardfd573f12003-03-16 17:52:32 +000010584 * xmlRelaxNGValidateDefinition:
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010585 * @ctxt: a Relax-NG validation context
10586 * @define: the definition to verify
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010587 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010588 * Validate the current node lists against the definition
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010589 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010590 * Returns 0 if the validation succeeded or an error code.
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010591 */
10592static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010593xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
10594 xmlRelaxNGDefinePtr define)
10595{
Daniel Veillardfd573f12003-03-16 17:52:32 +000010596 xmlRelaxNGStatesPtr states, res;
10597 int i, j, k, ret, oldflags;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010598
Daniel Veillardfd573f12003-03-16 17:52:32 +000010599 /*
10600 * We should NOT have both ctxt->state and ctxt->states
10601 */
10602 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010603 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10604 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010605 }
10606
10607 if ((ctxt->states == NULL) || (ctxt->states->nbState == 1)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010608 if (ctxt->states != NULL) {
10609 ctxt->state = ctxt->states->tabState[0];
10610 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10611 ctxt->states = NULL;
10612 }
10613 ret = xmlRelaxNGValidateState(ctxt, define);
10614 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10615 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10616 ctxt->state = NULL;
10617 }
10618 if ((ctxt->states != NULL) && (ctxt->states->nbState == 1)) {
10619 ctxt->state = ctxt->states->tabState[0];
10620 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10621 ctxt->states = NULL;
10622 }
10623 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010624 }
10625
10626 states = ctxt->states;
10627 ctxt->states = NULL;
10628 res = NULL;
10629 j = 0;
10630 oldflags = ctxt->flags;
10631 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +000010632 for (i = 0; i < states->nbState; i++) {
10633 ctxt->state = states->tabState[i];
10634 ctxt->states = NULL;
10635 ret = xmlRelaxNGValidateState(ctxt, define);
10636 /*
10637 * We should NOT have both ctxt->state and ctxt->states
10638 */
10639 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10640 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10641 ctxt->state = NULL;
10642 }
10643 if (ret == 0) {
10644 if (ctxt->states == NULL) {
10645 if (res != NULL) {
10646 /* add the state to the container */
10647 xmlRelaxNGAddStates(ctxt, res, ctxt->state);
10648 ctxt->state = NULL;
10649 } else {
10650 /* add the state directly in states */
10651 states->tabState[j++] = ctxt->state;
10652 ctxt->state = NULL;
10653 }
10654 } else {
10655 if (res == NULL) {
10656 /* make it the new container and copy other results */
10657 res = ctxt->states;
10658 ctxt->states = NULL;
10659 for (k = 0; k < j; k++)
10660 xmlRelaxNGAddStates(ctxt, res,
10661 states->tabState[k]);
10662 } else {
10663 /* add all the new results to res and reff the container */
10664 for (k = 0; k < ctxt->states->nbState; k++)
10665 xmlRelaxNGAddStates(ctxt, res,
10666 ctxt->states->tabState[k]);
10667 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10668 ctxt->states = NULL;
10669 }
10670 }
10671 } else {
10672 if (ctxt->state != NULL) {
10673 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10674 ctxt->state = NULL;
10675 } else if (ctxt->states != NULL) {
10676 for (k = 0; k < ctxt->states->nbState; k++)
10677 xmlRelaxNGFreeValidState(ctxt,
10678 ctxt->states->tabState[k]);
10679 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10680 ctxt->states = NULL;
10681 }
10682 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010683 }
10684 ctxt->flags = oldflags;
10685 if (res != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010686 xmlRelaxNGFreeStates(ctxt, states);
10687 ctxt->states = res;
10688 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010689 } else if (j > 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010690 states->nbState = j;
10691 ctxt->states = states;
10692 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010693 } else if (j == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010694 ctxt->state = states->tabState[0];
10695 xmlRelaxNGFreeStates(ctxt, states);
10696 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010697 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +000010698 ret = -1;
10699 xmlRelaxNGFreeStates(ctxt, states);
10700 if (ctxt->states != NULL) {
10701 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10702 ctxt->states = NULL;
10703 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010704 }
10705 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010706 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10707 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010708 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010709 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010710}
10711
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010712/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000010713 * xmlRelaxNGValidateDocument:
10714 * @ctxt: a Relax-NG validation context
10715 * @doc: the document
10716 *
10717 * Validate the given document
10718 *
10719 * Returns 0 if the validation succeeded or an error code.
10720 */
10721static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010722xmlRelaxNGValidateDocument(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
10723{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010724 int ret;
10725 xmlRelaxNGPtr schema;
10726 xmlRelaxNGGrammarPtr grammar;
10727 xmlRelaxNGValidStatePtr state;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010728 xmlNodePtr node;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010729
10730 if ((ctxt == NULL) || (ctxt->schema == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000010731 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010732
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010733 ctxt->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010734 schema = ctxt->schema;
10735 grammar = schema->topgrammar;
10736 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010737 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
10738 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010739 }
10740 state = xmlRelaxNGNewValidState(ctxt, NULL);
10741 ctxt->state = state;
10742 ret = xmlRelaxNGValidateDefinition(ctxt, grammar->start);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010743 if ((ctxt->state != NULL) && (state->seq != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010744 state = ctxt->state;
10745 node = state->seq;
10746 node = xmlRelaxNGSkipIgnored(ctxt, node);
10747 if (node != NULL) {
10748 if (ret != -1) {
10749 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10750 ret = -1;
10751 }
10752 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010753 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010754 int i;
10755 int tmp = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010756
Daniel Veillard4c004142003-10-07 11:33:24 +000010757 for (i = 0; i < ctxt->states->nbState; i++) {
10758 state = ctxt->states->tabState[i];
10759 node = state->seq;
10760 node = xmlRelaxNGSkipIgnored(ctxt, node);
10761 if (node == NULL)
10762 tmp = 0;
10763 xmlRelaxNGFreeValidState(ctxt, state);
10764 }
10765 if (tmp == -1) {
10766 if (ret != -1) {
10767 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10768 ret = -1;
10769 }
10770 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010771 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010772 if (ctxt->state != NULL) {
10773 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillard4c004142003-10-07 11:33:24 +000010774 ctxt->state = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010775 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010776 if (ret != 0)
10777 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010778#ifdef DEBUG
10779 else if (ctxt->errNr != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010780 ctxt->error(ctxt->userData,
10781 "%d Extra error messages left on stack !\n",
10782 ctxt->errNr);
10783 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010784 }
10785#endif
Daniel Veillardf54cd532004-02-25 11:52:31 +000010786#ifdef LIBXML_VALID_ENABLED
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010787 if (ctxt->idref == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010788 xmlValidCtxt vctxt;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010789
Daniel Veillard4c004142003-10-07 11:33:24 +000010790 memset(&vctxt, 0, sizeof(xmlValidCtxt));
10791 vctxt.valid = 1;
10792 vctxt.error = ctxt->error;
10793 vctxt.warning = ctxt->warning;
10794 vctxt.userData = ctxt->userData;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010795
Daniel Veillard4c004142003-10-07 11:33:24 +000010796 if (xmlValidateDocumentFinal(&vctxt, doc) != 1)
10797 ret = -1;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010798 }
Daniel Veillardf54cd532004-02-25 11:52:31 +000010799#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010800 if ((ret == 0) && (ctxt->errNo != XML_RELAXNG_OK))
Daniel Veillard4c004142003-10-07 11:33:24 +000010801 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010802
Daniel Veillard4c004142003-10-07 11:33:24 +000010803 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010804}
10805
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020010806/**
10807 * xmlRelaxNGCleanPSVI:
10808 * @node: an input element or document
10809 *
10810 * Call this routine to speed up XPath computation on static documents.
10811 * This stamps all the element nodes with the document order
10812 * Like for line information, the order is kept in the element->content
10813 * field, the value stored is actually - the node number (starting at -1)
10814 * to be able to differentiate from line numbers.
10815 *
10816 * Returns the number of elements found in the document or -1 in case
10817 * of error.
10818 */
10819static void
10820xmlRelaxNGCleanPSVI(xmlNodePtr node) {
10821 xmlNodePtr cur;
10822
10823 if ((node == NULL) ||
10824 ((node->type != XML_ELEMENT_NODE) &&
10825 (node->type != XML_DOCUMENT_NODE) &&
10826 (node->type != XML_HTML_DOCUMENT_NODE)))
10827 return;
10828 if (node->type == XML_ELEMENT_NODE)
10829 node->psvi = NULL;
10830
10831 cur = node->children;
10832 while (cur != NULL) {
10833 if (cur->type == XML_ELEMENT_NODE) {
10834 cur->psvi = NULL;
10835 if (cur->children != NULL) {
10836 cur = cur->children;
10837 continue;
10838 }
10839 }
10840 if (cur->next != NULL) {
10841 cur = cur->next;
10842 continue;
10843 }
10844 do {
10845 cur = cur->parent;
10846 if (cur == NULL)
10847 break;
10848 if (cur == node) {
10849 cur = NULL;
10850 break;
10851 }
10852 if (cur->next != NULL) {
10853 cur = cur->next;
10854 break;
10855 }
10856 } while (cur != NULL);
10857 }
10858 return;
10859}
Daniel Veillardfd573f12003-03-16 17:52:32 +000010860/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +080010861 * *
10862 * Validation interfaces *
10863 * *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010864 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +000010865
Daniel Veillard6eadf632003-01-23 18:29:16 +000010866/**
10867 * xmlRelaxNGNewValidCtxt:
10868 * @schema: a precompiled XML RelaxNGs
10869 *
10870 * Create an XML RelaxNGs validation context based on the given schema
10871 *
10872 * Returns the validation context or NULL in case of error
10873 */
10874xmlRelaxNGValidCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +000010875xmlRelaxNGNewValidCtxt(xmlRelaxNGPtr schema)
10876{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010877 xmlRelaxNGValidCtxtPtr ret;
10878
10879 ret = (xmlRelaxNGValidCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGValidCtxt));
10880 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010881 xmlRngVErrMemory(NULL, "building context\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +000010882 return (NULL);
10883 }
10884 memset(ret, 0, sizeof(xmlRelaxNGValidCtxt));
10885 ret->schema = schema;
Daniel Veillard1703c5f2003-02-10 14:28:44 +000010886 ret->error = xmlGenericError;
10887 ret->userData = xmlGenericErrorContext;
Daniel Veillard42f12e92003-03-07 18:32:59 +000010888 ret->errNr = 0;
10889 ret->errMax = 0;
10890 ret->err = NULL;
10891 ret->errTab = NULL;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010892 if (schema != NULL)
10893 ret->idref = schema->idref;
Daniel Veillard798024a2003-03-19 10:36:09 +000010894 ret->states = NULL;
10895 ret->freeState = NULL;
10896 ret->freeStates = NULL;
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010897 ret->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010898 return (ret);
10899}
10900
10901/**
10902 * xmlRelaxNGFreeValidCtxt:
10903 * @ctxt: the schema validation context
10904 *
10905 * Free the resources associated to the schema validation context
10906 */
10907void
Daniel Veillard4c004142003-10-07 11:33:24 +000010908xmlRelaxNGFreeValidCtxt(xmlRelaxNGValidCtxtPtr ctxt)
10909{
Daniel Veillard798024a2003-03-19 10:36:09 +000010910 int k;
10911
Daniel Veillard6eadf632003-01-23 18:29:16 +000010912 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010913 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010914 if (ctxt->states != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010915 xmlRelaxNGFreeStates(NULL, ctxt->states);
Daniel Veillard798024a2003-03-19 10:36:09 +000010916 if (ctxt->freeState != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010917 for (k = 0; k < ctxt->freeState->nbState; k++) {
10918 xmlRelaxNGFreeValidState(NULL, ctxt->freeState->tabState[k]);
10919 }
10920 xmlRelaxNGFreeStates(NULL, ctxt->freeState);
Daniel Veillard798024a2003-03-19 10:36:09 +000010921 }
Daniel Veillard798024a2003-03-19 10:36:09 +000010922 if (ctxt->freeStates != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010923 for (k = 0; k < ctxt->freeStatesNr; k++) {
10924 xmlRelaxNGFreeStates(NULL, ctxt->freeStates[k]);
10925 }
10926 xmlFree(ctxt->freeStates);
Daniel Veillard798024a2003-03-19 10:36:09 +000010927 }
Daniel Veillard42f12e92003-03-07 18:32:59 +000010928 if (ctxt->errTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010929 xmlFree(ctxt->errTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010930 if (ctxt->elemTab != NULL) {
10931 xmlRegExecCtxtPtr exec;
10932
Daniel Veillard4c004142003-10-07 11:33:24 +000010933 exec = xmlRelaxNGElemPop(ctxt);
10934 while (exec != NULL) {
10935 xmlRegFreeExecCtxt(exec);
10936 exec = xmlRelaxNGElemPop(ctxt);
10937 }
10938 xmlFree(ctxt->elemTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010939 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010940 xmlFree(ctxt);
10941}
10942
10943/**
10944 * xmlRelaxNGSetValidErrors:
10945 * @ctxt: a Relax-NG validation context
10946 * @err: the error function
10947 * @warn: the warning function
10948 * @ctx: the functions context
10949 *
10950 * Set the error and warning callback informations
10951 */
10952void
10953xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010954 xmlRelaxNGValidityErrorFunc err,
10955 xmlRelaxNGValidityWarningFunc warn, void *ctx)
10956{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010957 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010958 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010959 ctxt->error = err;
10960 ctxt->warning = warn;
10961 ctxt->userData = ctx;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010962 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010963}
10964
10965/**
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010966 * xmlRelaxNGSetValidStructuredErrors:
10967 * @ctxt: a Relax-NG validation context
10968 * @serror: the structured error function
10969 * @ctx: the functions context
10970 *
10971 * Set the structured error callback
10972 */
10973void
10974xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillardb30ca312005-09-04 13:50:03 +000010975 xmlStructuredErrorFunc serror, void *ctx)
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010976{
10977 if (ctxt == NULL)
10978 return;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010979 ctxt->serror = serror;
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010980 ctxt->error = NULL;
10981 ctxt->warning = NULL;
10982 ctxt->userData = ctx;
10983}
10984
10985/**
Daniel Veillard409a8142003-07-18 15:16:57 +000010986 * xmlRelaxNGGetValidErrors:
10987 * @ctxt: a Relax-NG validation context
10988 * @err: the error function result
10989 * @warn: the warning function result
10990 * @ctx: the functions context result
10991 *
10992 * Get the error and warning callback informations
10993 *
10994 * Returns -1 in case of error and 0 otherwise
10995 */
10996int
10997xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010998 xmlRelaxNGValidityErrorFunc * err,
10999 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
11000{
Daniel Veillard409a8142003-07-18 15:16:57 +000011001 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000011002 return (-1);
11003 if (err != NULL)
11004 *err = ctxt->error;
11005 if (warn != NULL)
11006 *warn = ctxt->warning;
11007 if (ctx != NULL)
11008 *ctx = ctxt->userData;
11009 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +000011010}
11011
11012/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000011013 * xmlRelaxNGValidateDoc:
11014 * @ctxt: a Relax-NG validation context
11015 * @doc: a parsed document tree
11016 *
11017 * Validate a document tree in memory.
11018 *
11019 * Returns 0 if the document is valid, a positive error code
11020 * number otherwise and -1 in case of internal or API error.
11021 */
11022int
Daniel Veillard4c004142003-10-07 11:33:24 +000011023xmlRelaxNGValidateDoc(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
11024{
Daniel Veillard6eadf632003-01-23 18:29:16 +000011025 int ret;
11026
11027 if ((ctxt == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000011028 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011029
11030 ctxt->doc = doc;
11031
11032 ret = xmlRelaxNGValidateDocument(ctxt, doc);
Daniel Veillard71531f32003-02-05 13:19:53 +000011033 /*
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020011034 * Remove all left PSVI
11035 */
11036 xmlRelaxNGCleanPSVI((xmlNodePtr) doc);
11037
11038 /*
Daniel Veillard71531f32003-02-05 13:19:53 +000011039 * TODO: build error codes
11040 */
11041 if (ret == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +000011042 return (1);
11043 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011044}
11045
Daniel Veillard5d4644e2005-04-01 13:11:58 +000011046#define bottom_relaxng
11047#include "elfgcchack.h"
Daniel Veillard6eadf632003-01-23 18:29:16 +000011048#endif /* LIBXML_SCHEMAS_ENABLED */