blob: 3d3e69c0e3621b6d044234695bb5f4661b214397 [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 */
David Kilzer4472c3a2016-05-13 15:13:17 +0800510static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillard4c004142003-10-07 11:33:24 +0000511xmlRngPErr(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 */
David Kilzer4472c3a2016-05-13 15:13:17 +0800544static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillard4c004142003-10-07 11:33:24 +0000545xmlRngVErr(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];
Chun-wei Fand77e5fc2016-05-31 21:04:50 +08002091 xmlChar *result;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002092
2093 if (arg1 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002094 arg1 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002095 if (arg2 == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002096 arg2 = BAD_CAST "";
Daniel Veillard42f12e92003-03-07 18:32:59 +00002097
2098 msg[0] = 0;
2099 switch (err) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002100 case XML_RELAXNG_OK:
2101 return (NULL);
2102 case XML_RELAXNG_ERR_MEMORY:
2103 return (xmlCharStrdup("out of memory\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002104 case XML_RELAXNG_ERR_TYPE:
Daniel Veillard4c004142003-10-07 11:33:24 +00002105 snprintf(msg, 1000, "failed to validate type %s\n", arg1);
2106 break;
2107 case XML_RELAXNG_ERR_TYPEVAL:
2108 snprintf(msg, 1000, "Type %s doesn't allow value '%s'\n", arg1,
2109 arg2);
2110 break;
2111 case XML_RELAXNG_ERR_DUPID:
2112 snprintf(msg, 1000, "ID %s redefined\n", arg1);
2113 break;
2114 case XML_RELAXNG_ERR_TYPECMP:
2115 snprintf(msg, 1000, "failed to compare type %s\n", arg1);
2116 break;
2117 case XML_RELAXNG_ERR_NOSTATE:
2118 return (xmlCharStrdup("Internal error: no state\n"));
2119 case XML_RELAXNG_ERR_NODEFINE:
2120 return (xmlCharStrdup("Internal error: no define\n"));
2121 case XML_RELAXNG_ERR_INTERNAL:
2122 snprintf(msg, 1000, "Internal error: %s\n", arg1);
2123 break;
2124 case XML_RELAXNG_ERR_LISTEXTRA:
2125 snprintf(msg, 1000, "Extra data in list: %s\n", arg1);
2126 break;
2127 case XML_RELAXNG_ERR_INTERNODATA:
2128 return (xmlCharStrdup
2129 ("Internal: interleave block has no data\n"));
2130 case XML_RELAXNG_ERR_INTERSEQ:
2131 return (xmlCharStrdup("Invalid sequence in interleave\n"));
2132 case XML_RELAXNG_ERR_INTEREXTRA:
2133 snprintf(msg, 1000, "Extra element %s in interleave\n", arg1);
2134 break;
2135 case XML_RELAXNG_ERR_ELEMNAME:
2136 snprintf(msg, 1000, "Expecting element %s, got %s\n", arg1,
2137 arg2);
2138 break;
2139 case XML_RELAXNG_ERR_ELEMNONS:
2140 snprintf(msg, 1000, "Expecting a namespace for element %s\n",
2141 arg1);
2142 break;
2143 case XML_RELAXNG_ERR_ELEMWRONGNS:
2144 snprintf(msg, 1000,
2145 "Element %s has wrong namespace: expecting %s\n", arg1,
2146 arg2);
2147 break;
2148 case XML_RELAXNG_ERR_ELEMWRONG:
2149 snprintf(msg, 1000, "Did not expect element %s there\n", arg1);
2150 break;
2151 case XML_RELAXNG_ERR_TEXTWRONG:
2152 snprintf(msg, 1000,
2153 "Did not expect text in element %s content\n", arg1);
2154 break;
2155 case XML_RELAXNG_ERR_ELEMEXTRANS:
2156 snprintf(msg, 1000, "Expecting no namespace for element %s\n",
2157 arg1);
2158 break;
2159 case XML_RELAXNG_ERR_ELEMNOTEMPTY:
2160 snprintf(msg, 1000, "Expecting element %s to be empty\n", arg1);
2161 break;
2162 case XML_RELAXNG_ERR_NOELEM:
2163 snprintf(msg, 1000, "Expecting an element %s, got nothing\n",
2164 arg1);
2165 break;
2166 case XML_RELAXNG_ERR_NOTELEM:
2167 return (xmlCharStrdup("Expecting an element got text\n"));
2168 case XML_RELAXNG_ERR_ATTRVALID:
2169 snprintf(msg, 1000, "Element %s failed to validate attributes\n",
2170 arg1);
2171 break;
2172 case XML_RELAXNG_ERR_CONTENTVALID:
2173 snprintf(msg, 1000, "Element %s failed to validate content\n",
2174 arg1);
2175 break;
2176 case XML_RELAXNG_ERR_EXTRACONTENT:
2177 snprintf(msg, 1000, "Element %s has extra content: %s\n",
2178 arg1, arg2);
2179 break;
2180 case XML_RELAXNG_ERR_INVALIDATTR:
2181 snprintf(msg, 1000, "Invalid attribute %s for element %s\n",
2182 arg1, arg2);
2183 break;
2184 case XML_RELAXNG_ERR_LACKDATA:
2185 snprintf(msg, 1000, "Datatype element %s contains no data\n",
2186 arg1);
2187 break;
2188 case XML_RELAXNG_ERR_DATAELEM:
2189 snprintf(msg, 1000, "Datatype element %s has child elements\n",
2190 arg1);
2191 break;
2192 case XML_RELAXNG_ERR_VALELEM:
2193 snprintf(msg, 1000, "Value element %s has child elements\n",
2194 arg1);
2195 break;
2196 case XML_RELAXNG_ERR_LISTELEM:
2197 snprintf(msg, 1000, "List element %s has child elements\n",
2198 arg1);
2199 break;
2200 case XML_RELAXNG_ERR_DATATYPE:
2201 snprintf(msg, 1000, "Error validating datatype %s\n", arg1);
2202 break;
2203 case XML_RELAXNG_ERR_VALUE:
2204 snprintf(msg, 1000, "Error validating value %s\n", arg1);
2205 break;
2206 case XML_RELAXNG_ERR_LIST:
2207 return (xmlCharStrdup("Error validating list\n"));
2208 case XML_RELAXNG_ERR_NOGRAMMAR:
2209 return (xmlCharStrdup("No top grammar defined\n"));
2210 case XML_RELAXNG_ERR_EXTRADATA:
2211 return (xmlCharStrdup("Extra data in the document\n"));
2212 default:
2213 return (xmlCharStrdup("Unknown error !\n"));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002214 }
2215 if (msg[0] == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002216 snprintf(msg, 1000, "Unknown error code %d\n", err);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002217 }
Daniel Veillardadbb0e62003-05-10 20:02:45 +00002218 msg[1000 - 1] = 0;
Chun-wei Fand77e5fc2016-05-31 21:04:50 +08002219 result = xmlCharStrdup(msg);
David Kilzer502f6a62016-05-23 14:58:41 +08002220 return (xmlEscapeFormatString(&result));
Daniel Veillard42f12e92003-03-07 18:32:59 +00002221}
2222
2223/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002224 * xmlRelaxNGShowValidError:
2225 * @ctxt: the validation context
2226 * @err: the error number
2227 * @node: the node
2228 * @child: the node child generating the problem.
2229 * @arg1: the first argument
2230 * @arg2: the second argument
2231 *
2232 * Show a validation error.
2233 */
2234static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002235xmlRelaxNGShowValidError(xmlRelaxNGValidCtxtPtr ctxt,
2236 xmlRelaxNGValidErr err, xmlNodePtr node,
2237 xmlNodePtr child, const xmlChar * arg1,
2238 const xmlChar * arg2)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002239{
2240 xmlChar *msg;
2241
Daniel Veillardb30ca312005-09-04 13:50:03 +00002242 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillardf03a8cd2005-09-04 12:01:57 +00002243 return;
2244
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002245#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002246 xmlGenericError(xmlGenericErrorContext, "Show error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002247#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002248 msg = xmlRelaxNGGetErrorString(err, arg1, arg2);
2249 if (msg == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002250 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002251
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002252 if (ctxt->errNo == XML_RELAXNG_OK)
Daniel Veillard4c004142003-10-07 11:33:24 +00002253 ctxt->errNo = err;
2254 xmlRngVErr(ctxt, (child == NULL ? node : child), err,
2255 (const char *) msg, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002256 xmlFree(msg);
2257}
2258
2259/**
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002260 * xmlRelaxNGPopErrors:
2261 * @ctxt: the validation context
2262 * @level: the error level in the stack
2263 *
2264 * pop and discard all errors until the given level is reached
2265 */
2266static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002267xmlRelaxNGPopErrors(xmlRelaxNGValidCtxtPtr ctxt, int level)
2268{
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002269 int i;
2270 xmlRelaxNGValidErrorPtr err;
2271
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002272#ifdef DEBUG_ERROR
2273 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002274 "Pop errors till level %d\n", level);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002275#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002276 for (i = level; i < ctxt->errNr; i++) {
2277 err = &ctxt->errTab[i];
2278 if (err->flags & ERROR_IS_DUP) {
2279 if (err->arg1 != NULL)
2280 xmlFree((xmlChar *) err->arg1);
2281 err->arg1 = NULL;
2282 if (err->arg2 != NULL)
2283 xmlFree((xmlChar *) err->arg2);
2284 err->arg2 = NULL;
2285 err->flags = 0;
2286 }
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002287 }
2288 ctxt->errNr = level;
Daniel Veillard580ced82003-03-21 21:22:48 +00002289 if (ctxt->errNr <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002290 ctxt->err = NULL;
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002291}
Daniel Veillard4c004142003-10-07 11:33:24 +00002292
Daniel Veillard28c52ab2003-03-18 11:39:17 +00002293/**
Daniel Veillard42f12e92003-03-07 18:32:59 +00002294 * xmlRelaxNGDumpValidError:
2295 * @ctxt: the validation context
2296 *
2297 * Show all validation error over a given index.
2298 */
2299static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002300xmlRelaxNGDumpValidError(xmlRelaxNGValidCtxtPtr ctxt)
2301{
Daniel Veillard5f1946a2003-03-31 16:38:16 +00002302 int i, j, k;
Daniel Veillard580ced82003-03-21 21:22:48 +00002303 xmlRelaxNGValidErrorPtr err, dup;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002304
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002305#ifdef DEBUG_ERROR
2306 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00002307 "Dumping error stack %d errors\n", ctxt->errNr);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002308#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002309 for (i = 0, k = 0; i < ctxt->errNr; i++) {
2310 err = &ctxt->errTab[i];
2311 if (k < MAX_ERROR) {
2312 for (j = 0; j < i; j++) {
2313 dup = &ctxt->errTab[j];
2314 if ((err->err == dup->err) && (err->node == dup->node) &&
2315 (xmlStrEqual(err->arg1, dup->arg1)) &&
2316 (xmlStrEqual(err->arg2, dup->arg2))) {
2317 goto skip;
2318 }
2319 }
2320 xmlRelaxNGShowValidError(ctxt, err->err, err->node, err->seq,
2321 err->arg1, err->arg2);
2322 k++;
2323 }
2324 skip:
2325 if (err->flags & ERROR_IS_DUP) {
2326 if (err->arg1 != NULL)
2327 xmlFree((xmlChar *) err->arg1);
2328 err->arg1 = NULL;
2329 if (err->arg2 != NULL)
2330 xmlFree((xmlChar *) err->arg2);
2331 err->arg2 = NULL;
2332 err->flags = 0;
2333 }
Daniel Veillard42f12e92003-03-07 18:32:59 +00002334 }
2335 ctxt->errNr = 0;
2336}
Daniel Veillard4c004142003-10-07 11:33:24 +00002337
Daniel Veillard42f12e92003-03-07 18:32:59 +00002338/**
2339 * xmlRelaxNGAddValidError:
2340 * @ctxt: the validation context
2341 * @err: the error number
2342 * @arg1: the first argument
2343 * @arg2: the second argument
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002344 * @dup: need to dup the args
Daniel Veillard42f12e92003-03-07 18:32:59 +00002345 *
2346 * Register a validation error, either generating it if it's sure
2347 * or stacking it for later handling if unsure.
2348 */
2349static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002350xmlRelaxNGAddValidError(xmlRelaxNGValidCtxtPtr ctxt,
2351 xmlRelaxNGValidErr err, const xmlChar * arg1,
2352 const xmlChar * arg2, int dup)
Daniel Veillard42f12e92003-03-07 18:32:59 +00002353{
Daniel Veillardb30ca312005-09-04 13:50:03 +00002354 if (ctxt == NULL)
2355 return;
2356 if (ctxt->flags & FLAGS_NOERROR)
Daniel Veillard4c004142003-10-07 11:33:24 +00002357 return;
Daniel Veillard42f12e92003-03-07 18:32:59 +00002358
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002359#ifdef DEBUG_ERROR
Daniel Veillard4c004142003-10-07 11:33:24 +00002360 xmlGenericError(xmlGenericErrorContext, "Adding error %d\n", err);
Daniel Veillarda507fbf2003-03-31 16:09:37 +00002361#endif
Daniel Veillard42f12e92003-03-07 18:32:59 +00002362 /*
2363 * generate the error directly
2364 */
William M. Brack60929622004-03-27 17:54:18 +00002365 if (((ctxt->flags & FLAGS_IGNORABLE) == 0) ||
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002366 (ctxt->flags & FLAGS_NEGATIVE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002367 xmlNodePtr node, seq;
2368
2369 /*
2370 * Flush first any stacked error which might be the
2371 * real cause of the problem.
2372 */
2373 if (ctxt->errNr != 0)
2374 xmlRelaxNGDumpValidError(ctxt);
2375 if (ctxt->state != NULL) {
2376 node = ctxt->state->node;
2377 seq = ctxt->state->seq;
2378 } else {
2379 node = seq = NULL;
2380 }
Daniel Veillardec18c962009-08-26 18:37:43 +02002381 if ((node == NULL) && (seq == NULL)) {
2382 node = ctxt->pnode;
2383 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002384 xmlRelaxNGShowValidError(ctxt, err, node, seq, arg1, arg2);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002385 }
2386 /*
2387 * Stack the error for later processing if needed
2388 */
2389 else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002390 xmlRelaxNGValidErrorPush(ctxt, err, arg1, arg2, dup);
Daniel Veillard42f12e92003-03-07 18:32:59 +00002391 }
2392}
2393
Daniel Veillard6eadf632003-01-23 18:29:16 +00002394
2395/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002396 * *
2397 * Type library hooks *
2398 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00002399 ************************************************************************/
Daniel Veillardea3f3982003-01-26 19:45:18 +00002400static xmlChar *xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00002401 const xmlChar * str);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002402
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002403/**
2404 * xmlRelaxNGSchemaTypeHave:
2405 * @data: data needed for the library
2406 * @type: the type name
2407 *
2408 * Check if the given type is provided by
2409 * the W3C XMLSchema Datatype library.
2410 *
2411 * Returns 1 if yes, 0 if no and -1 in case of error.
2412 */
2413static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002414xmlRelaxNGSchemaTypeHave(void *data ATTRIBUTE_UNUSED, const xmlChar * type)
2415{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002416 xmlSchemaTypePtr typ;
2417
2418 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002419 return (-1);
2420 typ = xmlSchemaGetPredefinedType(type,
2421 BAD_CAST
2422 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002423 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002424 return (0);
2425 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002426}
2427
2428/**
2429 * xmlRelaxNGSchemaTypeCheck:
2430 * @data: data needed for the library
2431 * @type: the type name
2432 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002433 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002434 *
2435 * Check if the given type and value are validated by
2436 * the W3C XMLSchema Datatype library.
2437 *
2438 * Returns 1 if yes, 0 if no and -1 in case of error.
2439 */
2440static int
2441xmlRelaxNGSchemaTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002442 const xmlChar * type,
2443 const xmlChar * value,
2444 void **result, xmlNodePtr node)
2445{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002446 xmlSchemaTypePtr typ;
2447 int ret;
2448
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002449 if ((type == NULL) || (value == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002450 return (-1);
2451 typ = xmlSchemaGetPredefinedType(type,
2452 BAD_CAST
2453 "http://www.w3.org/2001/XMLSchema");
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002454 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002455 return (-1);
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002456 ret = xmlSchemaValPredefTypeNode(typ, value,
Daniel Veillard4c004142003-10-07 11:33:24 +00002457 (xmlSchemaValPtr *) result, node);
2458 if (ret == 2) /* special ID error code */
2459 return (2);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002460 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002461 return (1);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00002462 if (ret > 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002463 return (0);
2464 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002465}
2466
2467/**
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002468 * xmlRelaxNGSchemaFacetCheck:
2469 * @data: data needed for the library
2470 * @type: the type name
2471 * @facet: the facet name
2472 * @val: the facet value
2473 * @strval: the string value
2474 * @value: the value to check
2475 *
2476 * Function provided by a type library to check a value facet
2477 *
2478 * Returns 1 if yes, 0 if no and -1 in case of error.
2479 */
2480static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002481xmlRelaxNGSchemaFacetCheck(void *data ATTRIBUTE_UNUSED,
2482 const xmlChar * type, const xmlChar * facetname,
2483 const xmlChar * val, const xmlChar * strval,
2484 void *value)
2485{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002486 xmlSchemaFacetPtr facet;
2487 xmlSchemaTypePtr typ;
2488 int ret;
2489
2490 if ((type == NULL) || (strval == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002491 return (-1);
2492 typ = xmlSchemaGetPredefinedType(type,
2493 BAD_CAST
2494 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002495 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002496 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002497
2498 facet = xmlSchemaNewFacet();
2499 if (facet == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002500 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002501
Daniel Veillard4c004142003-10-07 11:33:24 +00002502 if (xmlStrEqual(facetname, BAD_CAST "minInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002503 facet->type = XML_SCHEMA_FACET_MININCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002504 } else if (xmlStrEqual(facetname, BAD_CAST "minExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002505 facet->type = XML_SCHEMA_FACET_MINEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002506 } else if (xmlStrEqual(facetname, BAD_CAST "maxInclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002507 facet->type = XML_SCHEMA_FACET_MAXINCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002508 } else if (xmlStrEqual(facetname, BAD_CAST "maxExclusive")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002509 facet->type = XML_SCHEMA_FACET_MAXEXCLUSIVE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002510 } else if (xmlStrEqual(facetname, BAD_CAST "totalDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002511 facet->type = XML_SCHEMA_FACET_TOTALDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002512 } else if (xmlStrEqual(facetname, BAD_CAST "fractionDigits")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002513 facet->type = XML_SCHEMA_FACET_FRACTIONDIGITS;
Daniel Veillard4c004142003-10-07 11:33:24 +00002514 } else if (xmlStrEqual(facetname, BAD_CAST "pattern")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002515 facet->type = XML_SCHEMA_FACET_PATTERN;
Daniel Veillard4c004142003-10-07 11:33:24 +00002516 } else if (xmlStrEqual(facetname, BAD_CAST "enumeration")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002517 facet->type = XML_SCHEMA_FACET_ENUMERATION;
Daniel Veillard4c004142003-10-07 11:33:24 +00002518 } else if (xmlStrEqual(facetname, BAD_CAST "whiteSpace")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002519 facet->type = XML_SCHEMA_FACET_WHITESPACE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002520 } else if (xmlStrEqual(facetname, BAD_CAST "length")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002521 facet->type = XML_SCHEMA_FACET_LENGTH;
Daniel Veillard4c004142003-10-07 11:33:24 +00002522 } else if (xmlStrEqual(facetname, BAD_CAST "maxLength")) {
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002523 facet->type = XML_SCHEMA_FACET_MAXLENGTH;
2524 } else if (xmlStrEqual(facetname, BAD_CAST "minLength")) {
2525 facet->type = XML_SCHEMA_FACET_MINLENGTH;
2526 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002527 xmlSchemaFreeFacet(facet);
2528 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002529 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00002530 facet->value = val;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002531 ret = xmlSchemaCheckFacet(facet, typ, NULL, type);
2532 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002533 xmlSchemaFreeFacet(facet);
2534 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002535 }
2536 ret = xmlSchemaValidateFacet(typ, facet, strval, value);
2537 xmlSchemaFreeFacet(facet);
2538 if (ret != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002539 return (-1);
2540 return (0);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002541}
2542
2543/**
Daniel Veillard80b19092003-03-28 13:29:53 +00002544 * xmlRelaxNGSchemaFreeValue:
2545 * @data: data needed for the library
2546 * @value: the value to free
2547 *
2548 * Function provided by a type library to free a Schemas value
2549 *
2550 * Returns 1 if yes, 0 if no and -1 in case of error.
2551 */
2552static void
Daniel Veillard4c004142003-10-07 11:33:24 +00002553xmlRelaxNGSchemaFreeValue(void *data ATTRIBUTE_UNUSED, void *value)
2554{
Daniel Veillard80b19092003-03-28 13:29:53 +00002555 xmlSchemaFreeValue(value);
2556}
2557
2558/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002559 * xmlRelaxNGSchemaTypeCompare:
2560 * @data: data needed for the library
2561 * @type: the type name
2562 * @value1: the first value
2563 * @value2: the second value
2564 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002565 * Compare two values for equality accordingly a type from the W3C XMLSchema
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002566 * Datatype library.
2567 *
Daniel Veillard80b19092003-03-28 13:29:53 +00002568 * Returns 1 if equal, 0 if no and -1 in case of error.
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002569 */
2570static int
2571xmlRelaxNGSchemaTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002572 const xmlChar * type,
2573 const xmlChar * value1,
2574 xmlNodePtr ctxt1,
2575 void *comp1,
2576 const xmlChar * value2, xmlNodePtr ctxt2)
2577{
Daniel Veillard80b19092003-03-28 13:29:53 +00002578 int ret;
2579 xmlSchemaTypePtr typ;
2580 xmlSchemaValPtr res1 = NULL, res2 = NULL;
2581
2582 if ((type == NULL) || (value1 == NULL) || (value2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00002583 return (-1);
2584 typ = xmlSchemaGetPredefinedType(type,
2585 BAD_CAST
2586 "http://www.w3.org/2001/XMLSchema");
Daniel Veillard80b19092003-03-28 13:29:53 +00002587 if (typ == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002588 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002589 if (comp1 == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002590 ret = xmlSchemaValPredefTypeNode(typ, value1, &res1, ctxt1);
2591 if (ret != 0)
2592 return (-1);
2593 if (res1 == NULL)
2594 return (-1);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002595 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00002596 res1 = (xmlSchemaValPtr) comp1;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002597 }
2598 ret = xmlSchemaValPredefTypeNode(typ, value2, &res2, ctxt2);
Daniel Veillard80b19092003-03-28 13:29:53 +00002599 if (ret != 0) {
Gaurav7d4e2592013-09-30 11:27:41 +08002600 if (res1 != (xmlSchemaValPtr) comp1)
Daniel Veillardf4644032005-06-13 11:41:31 +00002601 xmlSchemaFreeValue(res1);
Daniel Veillard4c004142003-10-07 11:33:24 +00002602 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002603 }
Daniel Veillard80b19092003-03-28 13:29:53 +00002604 ret = xmlSchemaCompareValues(res1, res2);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00002605 if (res1 != (xmlSchemaValPtr) comp1)
Daniel Veillard4c004142003-10-07 11:33:24 +00002606 xmlSchemaFreeValue(res1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002607 xmlSchemaFreeValue(res2);
2608 if (ret == -2)
Daniel Veillard4c004142003-10-07 11:33:24 +00002609 return (-1);
Daniel Veillard80b19092003-03-28 13:29:53 +00002610 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002611 return (1);
2612 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002613}
Daniel Veillard4c004142003-10-07 11:33:24 +00002614
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002615/**
2616 * xmlRelaxNGDefaultTypeHave:
2617 * @data: data needed for the library
2618 * @type: the type name
2619 *
2620 * Check if the given type is provided by
2621 * the default datatype library.
2622 *
2623 * Returns 1 if yes, 0 if no and -1 in case of error.
2624 */
2625static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002626xmlRelaxNGDefaultTypeHave(void *data ATTRIBUTE_UNUSED,
2627 const xmlChar * type)
2628{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002629 if (type == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002630 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002631 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002632 return (1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002633 if (xmlStrEqual(type, BAD_CAST "token"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002634 return (1);
2635 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002636}
2637
2638/**
2639 * xmlRelaxNGDefaultTypeCheck:
2640 * @data: data needed for the library
2641 * @type: the type name
2642 * @value: the value to check
Daniel Veillardc3da18a2003-03-18 00:31:04 +00002643 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002644 *
2645 * Check if the given type and value are validated by
2646 * the default datatype library.
2647 *
2648 * Returns 1 if yes, 0 if no and -1 in case of error.
2649 */
2650static int
2651xmlRelaxNGDefaultTypeCheck(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002652 const xmlChar * type ATTRIBUTE_UNUSED,
2653 const xmlChar * value ATTRIBUTE_UNUSED,
2654 void **result ATTRIBUTE_UNUSED,
2655 xmlNodePtr node ATTRIBUTE_UNUSED)
2656{
Daniel Veillardd4310742003-02-18 21:12:46 +00002657 if (value == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002658 return (-1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002659 if (xmlStrEqual(type, BAD_CAST "string"))
Daniel Veillard4c004142003-10-07 11:33:24 +00002660 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002661 if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002662 return (1);
Daniel Veillardd4310742003-02-18 21:12:46 +00002663 }
2664
Daniel Veillard4c004142003-10-07 11:33:24 +00002665 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002666}
2667
2668/**
2669 * xmlRelaxNGDefaultTypeCompare:
2670 * @data: data needed for the library
2671 * @type: the type name
2672 * @value1: the first value
2673 * @value2: the second value
2674 *
2675 * Compare two values accordingly a type from the default
2676 * datatype library.
2677 *
2678 * Returns 1 if yes, 0 if no and -1 in case of error.
2679 */
2680static int
2681xmlRelaxNGDefaultTypeCompare(void *data ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00002682 const xmlChar * type,
2683 const xmlChar * value1,
2684 xmlNodePtr ctxt1 ATTRIBUTE_UNUSED,
2685 void *comp1 ATTRIBUTE_UNUSED,
2686 const xmlChar * value2,
2687 xmlNodePtr ctxt2 ATTRIBUTE_UNUSED)
2688{
Daniel Veillardea3f3982003-01-26 19:45:18 +00002689 int ret = -1;
2690
2691 if (xmlStrEqual(type, BAD_CAST "string")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002692 ret = xmlStrEqual(value1, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002693 } else if (xmlStrEqual(type, BAD_CAST "token")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002694 if (!xmlStrEqual(value1, value2)) {
2695 xmlChar *nval, *nvalue;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002696
Daniel Veillard4c004142003-10-07 11:33:24 +00002697 /*
2698 * TODO: trivial optimizations are possible by
2699 * computing at compile-time
2700 */
2701 nval = xmlRelaxNGNormalize(NULL, value1);
2702 nvalue = xmlRelaxNGNormalize(NULL, value2);
Daniel Veillardea3f3982003-01-26 19:45:18 +00002703
Daniel Veillard4c004142003-10-07 11:33:24 +00002704 if ((nval == NULL) || (nvalue == NULL))
2705 ret = -1;
2706 else if (xmlStrEqual(nval, nvalue))
2707 ret = 1;
2708 else
2709 ret = 0;
2710 if (nval != NULL)
2711 xmlFree(nval);
2712 if (nvalue != NULL)
2713 xmlFree(nvalue);
2714 } else
2715 ret = 1;
Daniel Veillardea3f3982003-01-26 19:45:18 +00002716 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002717 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002718}
Daniel Veillard4c004142003-10-07 11:33:24 +00002719
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002720static int xmlRelaxNGTypeInitialized = 0;
2721static xmlHashTablePtr xmlRelaxNGRegisteredTypes = NULL;
2722
2723/**
2724 * xmlRelaxNGFreeTypeLibrary:
2725 * @lib: the type library structure
2726 * @namespace: the URI bound to the library
2727 *
2728 * Free the structure associated to the type library
2729 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00002730static void
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002731xmlRelaxNGFreeTypeLibrary(xmlRelaxNGTypeLibraryPtr lib,
Daniel Veillard4c004142003-10-07 11:33:24 +00002732 const xmlChar * namespace ATTRIBUTE_UNUSED)
2733{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002734 if (lib == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002735 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002736 if (lib->namespace != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00002737 xmlFree((xmlChar *) lib->namespace);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002738 xmlFree(lib);
2739}
2740
2741/**
2742 * xmlRelaxNGRegisterTypeLibrary:
2743 * @namespace: the URI bound to the library
2744 * @data: data associated to the library
2745 * @have: the provide function
2746 * @check: the checking function
2747 * @comp: the comparison function
2748 *
2749 * Register a new type library
2750 *
2751 * Returns 0 in case of success and -1 in case of error.
2752 */
2753static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002754xmlRelaxNGRegisterTypeLibrary(const xmlChar * namespace, void *data,
2755 xmlRelaxNGTypeHave have,
2756 xmlRelaxNGTypeCheck check,
2757 xmlRelaxNGTypeCompare comp,
2758 xmlRelaxNGFacetCheck facet,
2759 xmlRelaxNGTypeFree freef)
2760{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002761 xmlRelaxNGTypeLibraryPtr lib;
2762 int ret;
2763
2764 if ((xmlRelaxNGRegisteredTypes == NULL) || (namespace == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00002765 (check == NULL) || (comp == NULL))
2766 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002767 if (xmlHashLookup(xmlRelaxNGRegisteredTypes, namespace) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002768 xmlGenericError(xmlGenericErrorContext,
2769 "Relax-NG types library '%s' already registered\n",
2770 namespace);
2771 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002772 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002773 lib =
2774 (xmlRelaxNGTypeLibraryPtr)
2775 xmlMalloc(sizeof(xmlRelaxNGTypeLibrary));
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002776 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002777 xmlRngVErrMemory(NULL, "adding types library\n");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002778 return (-1);
2779 }
2780 memset(lib, 0, sizeof(xmlRelaxNGTypeLibrary));
2781 lib->namespace = xmlStrdup(namespace);
2782 lib->data = data;
2783 lib->have = have;
2784 lib->comp = comp;
2785 lib->check = check;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00002786 lib->facet = facet;
2787 lib->freef = freef;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002788 ret = xmlHashAddEntry(xmlRelaxNGRegisteredTypes, namespace, lib);
2789 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002790 xmlGenericError(xmlGenericErrorContext,
2791 "Relax-NG types library failed to register '%s'\n",
2792 namespace);
2793 xmlRelaxNGFreeTypeLibrary(lib, namespace);
2794 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002795 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002796 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002797}
2798
2799/**
2800 * xmlRelaxNGInitTypes:
2801 *
2802 * Initilize the default type libraries.
2803 *
2804 * Returns 0 in case of success and -1 in case of error.
2805 */
Daniel Veillarddd6d3002004-11-03 14:20:29 +00002806int
Daniel Veillard4c004142003-10-07 11:33:24 +00002807xmlRelaxNGInitTypes(void)
2808{
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002809 if (xmlRelaxNGTypeInitialized != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002810 return (0);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002811 xmlRelaxNGRegisteredTypes = xmlHashCreate(10);
2812 if (xmlRelaxNGRegisteredTypes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002813 xmlGenericError(xmlGenericErrorContext,
2814 "Failed to allocate sh table for Relax-NG types\n");
2815 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002816 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002817 xmlRelaxNGRegisterTypeLibrary(BAD_CAST
2818 "http://www.w3.org/2001/XMLSchema-datatypes",
2819 NULL, xmlRelaxNGSchemaTypeHave,
2820 xmlRelaxNGSchemaTypeCheck,
2821 xmlRelaxNGSchemaTypeCompare,
2822 xmlRelaxNGSchemaFacetCheck,
2823 xmlRelaxNGSchemaFreeValue);
2824 xmlRelaxNGRegisterTypeLibrary(xmlRelaxNGNs, NULL,
2825 xmlRelaxNGDefaultTypeHave,
2826 xmlRelaxNGDefaultTypeCheck,
2827 xmlRelaxNGDefaultTypeCompare, NULL,
2828 NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002829 xmlRelaxNGTypeInitialized = 1;
Daniel Veillard4c004142003-10-07 11:33:24 +00002830 return (0);
Daniel Veillard6eadf632003-01-23 18:29:16 +00002831}
2832
2833/**
2834 * xmlRelaxNGCleanupTypes:
2835 *
2836 * Cleanup the default Schemas type library associated to RelaxNG
2837 */
Daniel Veillard4c004142003-10-07 11:33:24 +00002838void
2839xmlRelaxNGCleanupTypes(void)
2840{
Daniel Veillarda84c0b32003-06-02 16:58:46 +00002841 xmlSchemaCleanupTypes();
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002842 if (xmlRelaxNGTypeInitialized == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00002843 return;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002844 xmlHashFree(xmlRelaxNGRegisteredTypes, (xmlHashDeallocator)
Daniel Veillard4c004142003-10-07 11:33:24 +00002845 xmlRelaxNGFreeTypeLibrary);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00002846 xmlRelaxNGTypeInitialized = 0;
Daniel Veillard6eadf632003-01-23 18:29:16 +00002847}
2848
2849/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002850 * *
2851 * Compiling element content into regexp *
2852 * *
Daniel Veillard952379b2003-03-17 15:37:12 +00002853 * Sometime the element content can be compiled into a pure regexp, *
2854 * This allows a faster execution and streamability at that level *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002855 * *
Daniel Veillard952379b2003-03-17 15:37:12 +00002856 ************************************************************************/
2857
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02002858/* from automata.c but not exported */
2859void xmlAutomataSetFlags(xmlAutomataPtr am, int flags);
2860
2861
Daniel Veillard52b48c72003-04-13 19:53:42 +00002862static int xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt,
2863 xmlRelaxNGDefinePtr def);
2864
Daniel Veillard952379b2003-03-17 15:37:12 +00002865/**
2866 * xmlRelaxNGIsCompileable:
2867 * @define: the definition to check
2868 *
2869 * Check if a definition is nullable.
2870 *
2871 * Returns 1 if yes, 0 if no and -1 in case of error
2872 */
2873static int
Daniel Veillard4c004142003-10-07 11:33:24 +00002874xmlRelaxNGIsCompileable(xmlRelaxNGDefinePtr def)
2875{
Daniel Veillard52b48c72003-04-13 19:53:42 +00002876 int ret = -1;
2877
Daniel Veillard952379b2003-03-17 15:37:12 +00002878 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002879 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00002880 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00002881 if ((def->type != XML_RELAXNG_ELEMENT) &&
2882 (def->dflags & IS_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002883 return (1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00002884 if ((def->type != XML_RELAXNG_ELEMENT) &&
2885 (def->dflags & IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002886 return (0);
2887 switch (def->type) {
Daniel Veillard952379b2003-03-17 15:37:12 +00002888 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002889 ret = xmlRelaxNGIsCompileable(def->content);
2890 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002891 case XML_RELAXNG_TEXT:
Daniel Veillard952379b2003-03-17 15:37:12 +00002892 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00002893 ret = 1;
2894 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002895 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00002896 /*
2897 * Check if the element content is compileable
2898 */
2899 if (((def->dflags & IS_NOT_COMPILABLE) == 0) &&
2900 ((def->dflags & IS_COMPILABLE) == 0)) {
2901 xmlRelaxNGDefinePtr list;
2902
2903 list = def->content;
2904 while (list != NULL) {
2905 ret = xmlRelaxNGIsCompileable(list);
2906 if (ret != 1)
2907 break;
2908 list = list->next;
2909 }
William M. Brack60929622004-03-27 17:54:18 +00002910 /*
2911 * Because the routine is recursive, we must guard against
2912 * discovering both COMPILABLE and NOT_COMPILABLE
2913 */
2914 if (ret == 0) {
2915 def->dflags &= ~IS_COMPILABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +00002916 def->dflags |= IS_NOT_COMPILABLE;
William M. Brack60929622004-03-27 17:54:18 +00002917 }
2918 if ((ret == 1) && !(def->dflags &= IS_NOT_COMPILABLE))
Daniel Veillard4c004142003-10-07 11:33:24 +00002919 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002920#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00002921 if (ret == 1) {
2922 xmlGenericError(xmlGenericErrorContext,
2923 "element content for %s is compilable\n",
2924 def->name);
2925 } else if (ret == 0) {
2926 xmlGenericError(xmlGenericErrorContext,
2927 "element content for %s is not compilable\n",
2928 def->name);
2929 } else {
2930 xmlGenericError(xmlGenericErrorContext,
2931 "Problem in RelaxNGIsCompileable for element %s\n",
2932 def->name);
2933 }
Daniel Veillardd94849b2003-07-28 13:02:24 +00002934#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00002935 }
2936 /*
2937 * All elements return a compileable status unless they
2938 * are generic like anyName
2939 */
2940 if ((def->nameClass != NULL) || (def->name == NULL))
2941 ret = 0;
2942 else
2943 ret = 1;
2944 return (ret);
Daniel Veillard2134ab12003-07-23 19:56:29 +00002945 case XML_RELAXNG_REF:
2946 case XML_RELAXNG_EXTERNALREF:
2947 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00002948 if (def->depth == -20) {
2949 return (1);
2950 } else {
2951 xmlRelaxNGDefinePtr list;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002952
Daniel Veillard4c004142003-10-07 11:33:24 +00002953 def->depth = -20;
2954 list = def->content;
2955 while (list != NULL) {
2956 ret = xmlRelaxNGIsCompileable(list);
2957 if (ret != 1)
2958 break;
2959 list = list->next;
2960 }
2961 }
2962 break;
Daniel Veillard2134ab12003-07-23 19:56:29 +00002963 case XML_RELAXNG_START:
Daniel Veillard952379b2003-03-17 15:37:12 +00002964 case XML_RELAXNG_OPTIONAL:
2965 case XML_RELAXNG_ZEROORMORE:
2966 case XML_RELAXNG_ONEORMORE:
2967 case XML_RELAXNG_CHOICE:
2968 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00002969 case XML_RELAXNG_DEF:{
2970 xmlRelaxNGDefinePtr list;
Daniel Veillard952379b2003-03-17 15:37:12 +00002971
Daniel Veillard4c004142003-10-07 11:33:24 +00002972 list = def->content;
2973 while (list != NULL) {
2974 ret = xmlRelaxNGIsCompileable(list);
2975 if (ret != 1)
2976 break;
2977 list = list->next;
2978 }
2979 break;
2980 }
Daniel Veillard952379b2003-03-17 15:37:12 +00002981 case XML_RELAXNG_EXCEPT:
2982 case XML_RELAXNG_ATTRIBUTE:
2983 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard52b48c72003-04-13 19:53:42 +00002984 case XML_RELAXNG_DATATYPE:
2985 case XML_RELAXNG_LIST:
2986 case XML_RELAXNG_PARAM:
2987 case XML_RELAXNG_VALUE:
Daniel Veillard952379b2003-03-17 15:37:12 +00002988 case XML_RELAXNG_NOT_ALLOWED:
William M. Brack7e29c0a2004-04-02 09:07:22 +00002989 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00002990 break;
Daniel Veillard952379b2003-03-17 15:37:12 +00002991 }
Daniel Veillard4c004142003-10-07 11:33:24 +00002992 if (ret == 0)
2993 def->dflags |= IS_NOT_COMPILABLE;
2994 if (ret == 1)
2995 def->dflags |= IS_COMPILABLE;
Daniel Veillardd94849b2003-07-28 13:02:24 +00002996#ifdef DEBUG_COMPILE
2997 if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00002998 xmlGenericError(xmlGenericErrorContext,
2999 "RelaxNGIsCompileable %s : true\n",
3000 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00003001 } else if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003002 xmlGenericError(xmlGenericErrorContext,
3003 "RelaxNGIsCompileable %s : false\n",
3004 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00003005 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003006 xmlGenericError(xmlGenericErrorContext,
3007 "Problem in RelaxNGIsCompileable %s\n",
3008 xmlRelaxNGDefName(def));
Daniel Veillardd94849b2003-07-28 13:02:24 +00003009 }
3010#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003011 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003012}
3013
3014/**
3015 * xmlRelaxNGCompile:
3016 * ctxt: the RelaxNG parser context
3017 * @define: the definition tree to compile
3018 *
3019 * Compile the set of definitions, it works recursively, till the
3020 * element boundaries, where it tries to compile the content if possible
3021 *
3022 * Returns 0 if success and -1 in case of error
3023 */
3024static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003025xmlRelaxNGCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3026{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003027 int ret = 0;
3028 xmlRelaxNGDefinePtr list;
3029
Daniel Veillard4c004142003-10-07 11:33:24 +00003030 if ((ctxt == NULL) || (def == NULL))
3031 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003032
Daniel Veillard4c004142003-10-07 11:33:24 +00003033 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003034 case XML_RELAXNG_START:
3035 if ((xmlRelaxNGIsCompileable(def) == 1) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003036 xmlAutomataPtr oldam = ctxt->am;
3037 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003038
3039 def->depth = -25;
3040
Daniel Veillard4c004142003-10-07 11:33:24 +00003041 list = def->content;
3042 ctxt->am = xmlNewAutomata();
3043 if (ctxt->am == NULL)
3044 return (-1);
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003045
3046 /*
3047 * assume identical strings but not same pointer are different
3048 * atoms, needed for non-determinism detection
3049 * That way if 2 elements with the same name are in a choice
3050 * branch the automata is found non-deterministic and
3051 * we fallback to the normal validation which does the right
3052 * thing of exploring both choices.
3053 */
3054 xmlAutomataSetFlags(ctxt->am, 1);
3055
Daniel Veillard4c004142003-10-07 11:33:24 +00003056 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3057 while (list != NULL) {
3058 xmlRelaxNGCompile(ctxt, list);
3059 list = list->next;
3060 }
3061 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
Noam9313ae82012-05-15 11:03:46 +08003062 if (xmlAutomataIsDeterminist(ctxt->am))
3063 def->contModel = xmlAutomataCompile(ctxt->am);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003064
Daniel Veillard4c004142003-10-07 11:33:24 +00003065 xmlFreeAutomata(ctxt->am);
3066 ctxt->state = oldstate;
3067 ctxt->am = oldam;
3068 }
3069 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003070 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003071 if ((ctxt->am != NULL) && (def->name != NULL)) {
3072 ctxt->state = xmlAutomataNewTransition2(ctxt->am,
3073 ctxt->state, NULL,
3074 def->name, def->ns,
3075 def);
3076 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003077 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003078 xmlAutomataPtr oldam = ctxt->am;
3079 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003080
3081 def->depth = -25;
3082
Daniel Veillard4c004142003-10-07 11:33:24 +00003083 list = def->content;
3084 ctxt->am = xmlNewAutomata();
3085 if (ctxt->am == NULL)
3086 return (-1);
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003087 xmlAutomataSetFlags(ctxt->am, 1);
Daniel Veillard4c004142003-10-07 11:33:24 +00003088 ctxt->state = xmlAutomataGetInitState(ctxt->am);
3089 while (list != NULL) {
3090 xmlRelaxNGCompile(ctxt, list);
3091 list = list->next;
3092 }
3093 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
3094 def->contModel = xmlAutomataCompile(ctxt->am);
3095 if (!xmlRegexpIsDeterminist(def->contModel)) {
Daniel Veillard1ba2aca2009-08-31 16:47:39 +02003096#ifdef DEBUG_COMPILE
3097 xmlGenericError(xmlGenericErrorContext,
3098 "Content model not determinist %s\n",
3099 def->name);
3100#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003101 /*
3102 * we can only use the automata if it is determinist
3103 */
3104 xmlRegFreeRegexp(def->contModel);
3105 def->contModel = NULL;
3106 }
3107 xmlFreeAutomata(ctxt->am);
3108 ctxt->state = oldstate;
3109 ctxt->am = oldam;
3110 } else {
3111 xmlAutomataPtr oldam = ctxt->am;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003112
Daniel Veillard4c004142003-10-07 11:33:24 +00003113 /*
3114 * we can't build the content model for this element content
3115 * but it still might be possible to build it for some of its
3116 * children, recurse.
3117 */
3118 ret = xmlRelaxNGTryCompile(ctxt, def);
3119 ctxt->am = oldam;
3120 }
3121 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003122 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003123 ret = xmlRelaxNGCompile(ctxt, def->content);
3124 break;
3125 case XML_RELAXNG_OPTIONAL:{
3126 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003127
Daniel Veillardfd780772009-08-26 18:35:29 +02003128 list = def->content;
3129 while (list != NULL) {
3130 xmlRelaxNGCompile(ctxt, list);
3131 list = list->next;
3132 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003133 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
3134 break;
3135 }
3136 case XML_RELAXNG_ZEROORMORE:{
3137 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003138
Daniel Veillard4c004142003-10-07 11:33:24 +00003139 ctxt->state =
3140 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3141 oldstate = ctxt->state;
3142 list = def->content;
3143 while (list != NULL) {
3144 xmlRelaxNGCompile(ctxt, list);
3145 list = list->next;
3146 }
3147 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3148 ctxt->state =
3149 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3150 break;
3151 }
3152 case XML_RELAXNG_ONEORMORE:{
3153 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003154
Daniel Veillard4c004142003-10-07 11:33:24 +00003155 list = def->content;
3156 while (list != NULL) {
3157 xmlRelaxNGCompile(ctxt, list);
3158 list = list->next;
3159 }
3160 oldstate = ctxt->state;
3161 list = def->content;
3162 while (list != NULL) {
3163 xmlRelaxNGCompile(ctxt, list);
3164 list = list->next;
3165 }
3166 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate);
3167 ctxt->state =
3168 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3169 break;
3170 }
3171 case XML_RELAXNG_CHOICE:{
3172 xmlAutomataStatePtr target = NULL;
3173 xmlAutomataStatePtr oldstate = ctxt->state;
3174
3175 list = def->content;
3176 while (list != NULL) {
3177 ctxt->state = oldstate;
3178 ret = xmlRelaxNGCompile(ctxt, list);
3179 if (ret != 0)
3180 break;
3181 if (target == NULL)
3182 target = ctxt->state;
3183 else {
3184 xmlAutomataNewEpsilon(ctxt->am, ctxt->state,
3185 target);
3186 }
3187 list = list->next;
3188 }
3189 ctxt->state = target;
3190
3191 break;
3192 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003193 case XML_RELAXNG_REF:
3194 case XML_RELAXNG_EXTERNALREF:
3195 case XML_RELAXNG_PARENTREF:
Daniel Veillard52b48c72003-04-13 19:53:42 +00003196 case XML_RELAXNG_GROUP:
3197 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003198 list = def->content;
3199 while (list != NULL) {
3200 ret = xmlRelaxNGCompile(ctxt, list);
3201 if (ret != 0)
3202 break;
3203 list = list->next;
3204 }
3205 break;
3206 case XML_RELAXNG_TEXT:{
3207 xmlAutomataStatePtr oldstate;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003208
Daniel Veillard4c004142003-10-07 11:33:24 +00003209 ctxt->state =
3210 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3211 oldstate = ctxt->state;
3212 xmlRelaxNGCompile(ctxt, def->content);
3213 xmlAutomataNewTransition(ctxt->am, ctxt->state,
3214 ctxt->state, BAD_CAST "#text",
3215 NULL);
3216 ctxt->state =
3217 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
3218 break;
3219 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003220 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00003221 ctxt->state =
3222 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
3223 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003224 case XML_RELAXNG_EXCEPT:
3225 case XML_RELAXNG_ATTRIBUTE:
3226 case XML_RELAXNG_INTERLEAVE:
3227 case XML_RELAXNG_NOT_ALLOWED:
3228 case XML_RELAXNG_DATATYPE:
3229 case XML_RELAXNG_LIST:
3230 case XML_RELAXNG_PARAM:
3231 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003232 /* This should not happen and generate an internal error */
3233 fprintf(stderr, "RNG internal error trying to compile %s\n",
3234 xmlRelaxNGDefName(def));
3235 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003236 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003237 return (ret);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003238}
3239
3240/**
3241 * xmlRelaxNGTryCompile:
3242 * ctxt: the RelaxNG parser context
3243 * @define: the definition tree to compile
3244 *
3245 * Try to compile the set of definitions, it works recursively,
3246 * possibly ignoring parts which cannot be compiled.
3247 *
3248 * Returns 0 if success and -1 in case of error
3249 */
3250static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003251xmlRelaxNGTryCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
3252{
Daniel Veillard52b48c72003-04-13 19:53:42 +00003253 int ret = 0;
3254 xmlRelaxNGDefinePtr list;
3255
Daniel Veillard4c004142003-10-07 11:33:24 +00003256 if ((ctxt == NULL) || (def == NULL))
3257 return (-1);
Daniel Veillard52b48c72003-04-13 19:53:42 +00003258
3259 if ((def->type == XML_RELAXNG_START) ||
3260 (def->type == XML_RELAXNG_ELEMENT)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003261 ret = xmlRelaxNGIsCompileable(def);
3262 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
3263 ctxt->am = NULL;
3264 ret = xmlRelaxNGCompile(ctxt, def);
Daniel Veillard2134ab12003-07-23 19:56:29 +00003265#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00003266 if (ret == 0) {
3267 if (def->type == XML_RELAXNG_START)
3268 xmlGenericError(xmlGenericErrorContext,
3269 "compiled the start\n");
3270 else
3271 xmlGenericError(xmlGenericErrorContext,
3272 "compiled element %s\n", def->name);
3273 } else {
3274 if (def->type == XML_RELAXNG_START)
3275 xmlGenericError(xmlGenericErrorContext,
3276 "failed to compile the start\n");
3277 else
3278 xmlGenericError(xmlGenericErrorContext,
3279 "failed to compile element %s\n",
3280 def->name);
3281 }
Daniel Veillard2134ab12003-07-23 19:56:29 +00003282#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00003283 return (ret);
3284 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00003285 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003286 switch (def->type) {
Daniel Veillard52b48c72003-04-13 19:53:42 +00003287 case XML_RELAXNG_NOOP:
Daniel Veillard4c004142003-10-07 11:33:24 +00003288 ret = xmlRelaxNGTryCompile(ctxt, def->content);
3289 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003290 case XML_RELAXNG_TEXT:
3291 case XML_RELAXNG_DATATYPE:
3292 case XML_RELAXNG_LIST:
3293 case XML_RELAXNG_PARAM:
3294 case XML_RELAXNG_VALUE:
3295 case XML_RELAXNG_EMPTY:
3296 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003297 ret = 0;
3298 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003299 case XML_RELAXNG_OPTIONAL:
3300 case XML_RELAXNG_ZEROORMORE:
3301 case XML_RELAXNG_ONEORMORE:
3302 case XML_RELAXNG_CHOICE:
3303 case XML_RELAXNG_GROUP:
3304 case XML_RELAXNG_DEF:
Daniel Veillard2134ab12003-07-23 19:56:29 +00003305 case XML_RELAXNG_START:
3306 case XML_RELAXNG_REF:
3307 case XML_RELAXNG_EXTERNALREF:
3308 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00003309 list = def->content;
3310 while (list != NULL) {
3311 ret = xmlRelaxNGTryCompile(ctxt, list);
3312 if (ret != 0)
3313 break;
3314 list = list->next;
3315 }
3316 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003317 case XML_RELAXNG_EXCEPT:
3318 case XML_RELAXNG_ATTRIBUTE:
3319 case XML_RELAXNG_INTERLEAVE:
3320 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00003321 ret = 0;
3322 break;
Daniel Veillard52b48c72003-04-13 19:53:42 +00003323 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003324 return (ret);
Daniel Veillard952379b2003-03-17 15:37:12 +00003325}
3326
3327/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003328 * *
3329 * Parsing functions *
3330 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00003331 ************************************************************************/
3332
Daniel Veillard4c004142003-10-07 11:33:24 +00003333static xmlRelaxNGDefinePtr xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr
3334 ctxt, xmlNodePtr node);
3335static xmlRelaxNGDefinePtr xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr
3336 ctxt, xmlNodePtr node);
3337static xmlRelaxNGDefinePtr xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr
3338 ctxt, xmlNodePtr nodes,
3339 int group);
3340static xmlRelaxNGDefinePtr xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr
3341 ctxt, xmlNodePtr node);
3342static xmlRelaxNGPtr xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt,
3343 xmlNodePtr node);
3344static int xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
3345 xmlNodePtr nodes);
3346static xmlRelaxNGDefinePtr xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr
3347 ctxt, xmlNodePtr node,
3348 xmlRelaxNGDefinePtr
3349 def);
3350static xmlRelaxNGGrammarPtr xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr
3351 ctxt, xmlNodePtr nodes);
3352static int xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
3353 xmlRelaxNGDefinePtr define,
3354 xmlNodePtr elem);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003355
3356
Daniel Veillard249d7bb2003-03-19 21:02:29 +00003357#define IS_BLANK_NODE(n) (xmlRelaxNGIsBlank((n)->content))
Daniel Veillard6eadf632003-01-23 18:29:16 +00003358
3359/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00003360 * xmlRelaxNGIsNullable:
3361 * @define: the definition to verify
3362 *
3363 * Check if a definition is nullable.
3364 *
3365 * Returns 1 if yes, 0 if no and -1 in case of error
3366 */
3367static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003368xmlRelaxNGIsNullable(xmlRelaxNGDefinePtr define)
3369{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003370 int ret;
Daniel Veillard4c004142003-10-07 11:33:24 +00003371
Daniel Veillardfd573f12003-03-16 17:52:32 +00003372 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003373 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003374
Daniel Veillarde063f482003-03-21 16:53:17 +00003375 if (define->dflags & IS_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003376 return (1);
Daniel Veillarde063f482003-03-21 16:53:17 +00003377 if (define->dflags & IS_NOT_NULLABLE)
Daniel Veillard4c004142003-10-07 11:33:24 +00003378 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003379 switch (define->type) {
3380 case XML_RELAXNG_EMPTY:
3381 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00003382 ret = 1;
3383 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003384 case XML_RELAXNG_NOOP:
3385 case XML_RELAXNG_DEF:
3386 case XML_RELAXNG_REF:
3387 case XML_RELAXNG_EXTERNALREF:
3388 case XML_RELAXNG_PARENTREF:
3389 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003390 ret = xmlRelaxNGIsNullable(define->content);
3391 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003392 case XML_RELAXNG_EXCEPT:
3393 case XML_RELAXNG_NOT_ALLOWED:
3394 case XML_RELAXNG_ELEMENT:
3395 case XML_RELAXNG_DATATYPE:
3396 case XML_RELAXNG_PARAM:
3397 case XML_RELAXNG_VALUE:
3398 case XML_RELAXNG_LIST:
3399 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003400 ret = 0;
3401 break;
3402 case XML_RELAXNG_CHOICE:{
3403 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003404
Daniel Veillard4c004142003-10-07 11:33:24 +00003405 while (list != NULL) {
3406 ret = xmlRelaxNGIsNullable(list);
3407 if (ret != 0)
3408 goto done;
3409 list = list->next;
3410 }
3411 ret = 0;
3412 break;
3413 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003414 case XML_RELAXNG_START:
3415 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00003416 case XML_RELAXNG_GROUP:{
3417 xmlRelaxNGDefinePtr list = define->content;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003418
Daniel Veillard4c004142003-10-07 11:33:24 +00003419 while (list != NULL) {
3420 ret = xmlRelaxNGIsNullable(list);
3421 if (ret != 1)
3422 goto done;
3423 list = list->next;
3424 }
3425 return (1);
3426 }
3427 default:
3428 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003429 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003430 done:
Daniel Veillardfd573f12003-03-16 17:52:32 +00003431 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003432 define->dflags |= IS_NOT_NULLABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00003433 if (ret == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00003434 define->dflags |= IS_NULLABLE;
3435 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003436}
3437
3438/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00003439 * xmlRelaxNGIsBlank:
3440 * @str: a string
3441 *
3442 * Check if a string is ignorable c.f. 4.2. Whitespace
3443 *
3444 * Returns 1 if the string is NULL or made of blanks chars, 0 otherwise
3445 */
3446static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003447xmlRelaxNGIsBlank(xmlChar * str)
3448{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003449 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003450 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003451 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00003452 if (!(IS_BLANK_CH(*str)))
Daniel Veillard4c004142003-10-07 11:33:24 +00003453 return (0);
3454 str++;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003455 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003456 return (1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003457}
3458
Daniel Veillard6eadf632003-01-23 18:29:16 +00003459/**
3460 * xmlRelaxNGGetDataTypeLibrary:
3461 * @ctxt: a Relax-NG parser context
3462 * @node: the current data or value element
3463 *
3464 * Applies algorithm from 4.3. datatypeLibrary attribute
3465 *
3466 * Returns the datatypeLibary value or NULL if not found
3467 */
3468static xmlChar *
3469xmlRelaxNGGetDataTypeLibrary(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00003470 xmlNodePtr node)
3471{
Daniel Veillard6eadf632003-01-23 18:29:16 +00003472 xmlChar *ret, *escape;
3473
Daniel Veillardd44b9362009-09-07 12:15:08 +02003474 if (node == NULL)
3475 return(NULL);
3476
Daniel Veillard6eadf632003-01-23 18:29:16 +00003477 if ((IS_RELAXNG(node, "data")) || (IS_RELAXNG(node, "value"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003478 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3479 if (ret != NULL) {
3480 if (ret[0] == 0) {
3481 xmlFree(ret);
3482 return (NULL);
3483 }
3484 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3485 if (escape == NULL) {
3486 return (ret);
3487 }
3488 xmlFree(ret);
3489 return (escape);
3490 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00003491 }
3492 node = node->parent;
3493 while ((node != NULL) && (node->type == XML_ELEMENT_NODE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003494 ret = xmlGetProp(node, BAD_CAST "datatypeLibrary");
3495 if (ret != NULL) {
3496 if (ret[0] == 0) {
3497 xmlFree(ret);
3498 return (NULL);
3499 }
3500 escape = xmlURIEscapeStr(ret, BAD_CAST ":/#?");
3501 if (escape == NULL) {
3502 return (ret);
3503 }
3504 xmlFree(ret);
3505 return (escape);
3506 }
3507 node = node->parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00003508 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003509 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00003510}
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003511
3512/**
Daniel Veillardedc91922003-01-26 00:52:04 +00003513 * xmlRelaxNGParseValue:
3514 * @ctxt: a Relax-NG parser context
3515 * @node: the data node.
3516 *
3517 * parse the content of a RelaxNG value node.
3518 *
3519 * Returns the definition pointer or NULL in case of error
3520 */
3521static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003522xmlRelaxNGParseValue(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3523{
Daniel Veillardedc91922003-01-26 00:52:04 +00003524 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillard5f1946a2003-03-31 16:38:16 +00003525 xmlRelaxNGTypeLibraryPtr lib = NULL;
Daniel Veillardedc91922003-01-26 00:52:04 +00003526 xmlChar *type;
3527 xmlChar *library;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003528 int success = 0;
Daniel Veillardedc91922003-01-26 00:52:04 +00003529
Daniel Veillardfd573f12003-03-16 17:52:32 +00003530 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00003531 if (def == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003532 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00003533 def->type = XML_RELAXNG_VALUE;
Daniel Veillardedc91922003-01-26 00:52:04 +00003534
3535 type = xmlGetProp(node, BAD_CAST "type");
3536 if (type != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003537 xmlRelaxNGNormExtSpace(type);
3538 if (xmlValidateNCName(type, 0)) {
3539 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3540 "value type '%s' is not an NCName\n", type, NULL);
3541 }
3542 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3543 if (library == NULL)
3544 library =
3545 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillardedc91922003-01-26 00:52:04 +00003546
Daniel Veillard4c004142003-10-07 11:33:24 +00003547 def->name = type;
3548 def->ns = library;
Daniel Veillardedc91922003-01-26 00:52:04 +00003549
Daniel Veillard4c004142003-10-07 11:33:24 +00003550 lib = (xmlRelaxNGTypeLibraryPtr)
3551 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
3552 if (lib == NULL) {
3553 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3554 "Use of unregistered type library '%s'\n", library,
3555 NULL);
3556 def->data = NULL;
3557 } else {
3558 def->data = lib;
3559 if (lib->have == NULL) {
3560 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3561 "Internal error with type library '%s': no 'have'\n",
3562 library, NULL);
3563 } else {
3564 success = lib->have(lib->data, def->name);
3565 if (success != 1) {
3566 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3567 "Error type '%s' is not exported by type library '%s'\n",
3568 def->name, library);
3569 }
3570 }
3571 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003572 }
3573 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003574 def->value = xmlStrdup(BAD_CAST "");
Daniel Veillard39eb88b2003-03-11 11:21:28 +00003575 } else if (((node->children->type != XML_TEXT_NODE) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00003576 (node->children->type != XML_CDATA_SECTION_NODE)) ||
3577 (node->children->next != NULL)) {
3578 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_EXPECTED,
3579 "Expecting a single text value for <value>content\n",
3580 NULL, NULL);
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003581 } else if (def != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003582 def->value = xmlNodeGetContent(node);
3583 if (def->value == NULL) {
3584 xmlRngPErr(ctxt, node, XML_RNGP_VALUE_NO_CONTENT,
3585 "Element <value> has no content\n", NULL, NULL);
3586 } else if ((lib != NULL) && (lib->check != NULL) && (success == 1)) {
3587 void *val = NULL;
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003588
Daniel Veillard4c004142003-10-07 11:33:24 +00003589 success =
3590 lib->check(lib->data, def->name, def->value, &val, node);
3591 if (success != 1) {
3592 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_VALUE,
3593 "Value '%s' is not acceptable for type '%s'\n",
3594 def->value, def->name);
3595 } else {
3596 if (val != NULL)
3597 def->attrs = val;
3598 }
3599 }
Daniel Veillardedc91922003-01-26 00:52:04 +00003600 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003601 return (def);
Daniel Veillardedc91922003-01-26 00:52:04 +00003602}
3603
3604/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003605 * xmlRelaxNGParseData:
3606 * @ctxt: a Relax-NG parser context
3607 * @node: the data node.
3608 *
3609 * parse the content of a RelaxNG data node.
3610 *
3611 * Returns the definition pointer or NULL in case of error
3612 */
3613static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00003614xmlRelaxNGParseData(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
3615{
Daniel Veillard14b56432006-03-09 18:41:40 +00003616 xmlRelaxNGDefinePtr def = NULL, except;
Daniel Veillard8fe98712003-02-19 00:19:14 +00003617 xmlRelaxNGDefinePtr param, lastparam = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003618 xmlRelaxNGTypeLibraryPtr lib;
3619 xmlChar *type;
3620 xmlChar *library;
3621 xmlNodePtr content;
3622 int tmp;
3623
3624 type = xmlGetProp(node, BAD_CAST "type");
3625 if (type == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003626 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_MISSING, "data has no type\n", NULL,
3627 NULL);
3628 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003629 }
Daniel Veillardd2298792003-02-14 16:54:11 +00003630 xmlRelaxNGNormExtSpace(type);
3631 if (xmlValidateNCName(type, 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003632 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_VALUE,
3633 "data type '%s' is not an NCName\n", type, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00003634 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003635 library = xmlRelaxNGGetDataTypeLibrary(ctxt, node);
3636 if (library == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00003637 library =
3638 xmlStrdup(BAD_CAST "http://relaxng.org/ns/structure/1.0");
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003639
Daniel Veillardfd573f12003-03-16 17:52:32 +00003640 def = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003641 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003642 xmlFree(type);
3643 return (NULL);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003644 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003645 def->type = XML_RELAXNG_DATATYPE;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003646 def->name = type;
3647 def->ns = library;
3648
3649 lib = (xmlRelaxNGTypeLibraryPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00003650 xmlHashLookup(xmlRelaxNGRegisteredTypes, library);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003651 if (lib == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003652 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_TYPE_LIB,
3653 "Use of unregistered type library '%s'\n", library,
3654 NULL);
3655 def->data = NULL;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003656 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003657 def->data = lib;
3658 if (lib->have == NULL) {
3659 xmlRngPErr(ctxt, node, XML_RNGP_ERROR_TYPE_LIB,
3660 "Internal error with type library '%s': no 'have'\n",
3661 library, NULL);
3662 } else {
3663 tmp = lib->have(lib->data, def->name);
3664 if (tmp != 1) {
3665 xmlRngPErr(ctxt, node, XML_RNGP_TYPE_NOT_FOUND,
3666 "Error type '%s' is not exported by type library '%s'\n",
3667 def->name, library);
3668 } else
3669 if ((xmlStrEqual
3670 (library,
3671 BAD_CAST
3672 "http://www.w3.org/2001/XMLSchema-datatypes"))
3673 && ((xmlStrEqual(def->name, BAD_CAST "IDREF"))
3674 || (xmlStrEqual(def->name, BAD_CAST "IDREFS")))) {
3675 ctxt->idref = 1;
3676 }
3677 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003678 }
3679 content = node->children;
Daniel Veillard416589a2003-02-17 17:25:42 +00003680
3681 /*
3682 * Handle optional params
3683 */
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003684 while (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003685 if (!xmlStrEqual(content->name, BAD_CAST "param"))
3686 break;
3687 if (xmlStrEqual(library,
3688 BAD_CAST "http://relaxng.org/ns/structure/1.0")) {
3689 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_FORBIDDEN,
3690 "Type library '%s' does not allow type parameters\n",
3691 library, NULL);
3692 content = content->next;
3693 while ((content != NULL) &&
3694 (xmlStrEqual(content->name, BAD_CAST "param")))
3695 content = content->next;
3696 } else {
3697 param = xmlRelaxNGNewDefine(ctxt, node);
3698 if (param != NULL) {
3699 param->type = XML_RELAXNG_PARAM;
3700 param->name = xmlGetProp(content, BAD_CAST "name");
3701 if (param->name == NULL) {
3702 xmlRngPErr(ctxt, node, XML_RNGP_PARAM_NAME_MISSING,
3703 "param has no name\n", NULL, NULL);
3704 }
3705 param->value = xmlNodeGetContent(content);
3706 if (lastparam == NULL) {
3707 def->attrs = lastparam = param;
3708 } else {
3709 lastparam->next = param;
3710 lastparam = param;
3711 }
3712 if (lib != NULL) {
3713 }
3714 }
3715 content = content->next;
3716 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003717 }
Daniel Veillard416589a2003-02-17 17:25:42 +00003718 /*
3719 * Handle optional except
3720 */
Daniel Veillard4c004142003-10-07 11:33:24 +00003721 if ((content != NULL)
3722 && (xmlStrEqual(content->name, BAD_CAST "except"))) {
3723 xmlNodePtr child;
Daniel Veillard14b56432006-03-09 18:41:40 +00003724 xmlRelaxNGDefinePtr tmp2, last = NULL;
Daniel Veillard416589a2003-02-17 17:25:42 +00003725
Daniel Veillard4c004142003-10-07 11:33:24 +00003726 except = xmlRelaxNGNewDefine(ctxt, node);
3727 if (except == NULL) {
3728 return (def);
3729 }
3730 except->type = XML_RELAXNG_EXCEPT;
3731 child = content->children;
Daniel Veillard14b56432006-03-09 18:41:40 +00003732 def->content = except;
Daniel Veillard4c004142003-10-07 11:33:24 +00003733 if (child == NULL) {
3734 xmlRngPErr(ctxt, content, XML_RNGP_EXCEPT_NO_CONTENT,
3735 "except has no content\n", NULL, NULL);
3736 }
3737 while (child != NULL) {
3738 tmp2 = xmlRelaxNGParsePattern(ctxt, child);
3739 if (tmp2 != NULL) {
Daniel Veillard14b56432006-03-09 18:41:40 +00003740 if (last == NULL) {
3741 except->content = last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003742 } else {
Daniel Veillard14b56432006-03-09 18:41:40 +00003743 last->next = tmp2;
3744 last = tmp2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003745 }
3746 }
3747 child = child->next;
3748 }
3749 content = content->next;
Daniel Veillard416589a2003-02-17 17:25:42 +00003750 }
3751 /*
3752 * Check there is no unhandled data
3753 */
3754 if (content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003755 xmlRngPErr(ctxt, content, XML_RNGP_DATA_CONTENT,
3756 "Element data has unexpected content %s\n",
3757 content->name, NULL);
Daniel Veillard416589a2003-02-17 17:25:42 +00003758 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003759
Daniel Veillard4c004142003-10-07 11:33:24 +00003760 return (def);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00003761}
3762
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003763static const xmlChar *invalidName = BAD_CAST "\1";
3764
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003765/**
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003766 * xmlRelaxNGCompareNameClasses:
3767 * @defs1: the first element/attribute defs
3768 * @defs2: the second element/attribute defs
3769 * @name: the restriction on the name
3770 * @ns: the restriction on the namespace
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003771 *
3772 * Compare the 2 lists of element definitions. The comparison is
3773 * that if both lists do not accept the same QNames, it returns 1
3774 * If the 2 lists can accept the same QName the comparison returns 0
3775 *
3776 * Returns 1 disttinct, 0 if equal
3777 */
3778static int
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003779xmlRelaxNGCompareNameClasses(xmlRelaxNGDefinePtr def1,
Daniel Veillard4c004142003-10-07 11:33:24 +00003780 xmlRelaxNGDefinePtr def2)
3781{
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003782 int ret = 1;
3783 xmlNode node;
3784 xmlNs ns;
3785 xmlRelaxNGValidCtxt ctxt;
Daniel Veillard4c004142003-10-07 11:33:24 +00003786
Daniel Veillard42f12e92003-03-07 18:32:59 +00003787 memset(&ctxt, 0, sizeof(xmlRelaxNGValidCtxt));
3788
Daniel Veillardb30ca312005-09-04 13:50:03 +00003789 ctxt.flags = FLAGS_IGNORABLE | FLAGS_NOERROR;
3790
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003791 if ((def1->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003792 (def1->type == XML_RELAXNG_ATTRIBUTE)) {
3793 if (def2->type == XML_RELAXNG_TEXT)
3794 return (1);
3795 if (def1->name != NULL) {
3796 node.name = def1->name;
3797 } else {
3798 node.name = invalidName;
3799 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003800 if (def1->ns != NULL) {
3801 if (def1->ns[0] == 0) {
3802 node.ns = NULL;
3803 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003804 node.ns = &ns;
Daniel Veillard4c004142003-10-07 11:33:24 +00003805 ns.href = def1->ns;
3806 }
3807 } else {
William M. Bracka74a6ff2004-04-02 14:03:22 +00003808 node.ns = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00003809 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003810 if (xmlRelaxNGElementMatch(&ctxt, def2, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003811 if (def1->nameClass != NULL) {
3812 ret = xmlRelaxNGCompareNameClasses(def1->nameClass, def2);
3813 } else {
3814 ret = 0;
3815 }
3816 } else {
3817 ret = 1;
3818 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003819 } else if (def1->type == XML_RELAXNG_TEXT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003820 if (def2->type == XML_RELAXNG_TEXT)
3821 return (0);
3822 return (1);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003823 } else if (def1->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard2fab2352015-03-16 08:38:36 +08003824 ret = xmlRelaxNGCompareNameClasses(def1->content, def2);
3825 if (ret == 0)
3826 ret = 1;
3827 else if (ret == 1)
3828 ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003829 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003830 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003831 }
3832 if (ret == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003833 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003834 if ((def2->type == XML_RELAXNG_ELEMENT) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00003835 (def2->type == XML_RELAXNG_ATTRIBUTE)) {
3836 if (def2->name != NULL) {
3837 node.name = def2->name;
3838 } else {
3839 node.name = invalidName;
3840 }
3841 node.ns = &ns;
3842 if (def2->ns != NULL) {
3843 if (def2->ns[0] == 0) {
3844 node.ns = NULL;
3845 } else {
3846 ns.href = def2->ns;
3847 }
3848 } else {
3849 ns.href = invalidName;
3850 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00003851 if (xmlRelaxNGElementMatch(&ctxt, def1, &node)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003852 if (def2->nameClass != NULL) {
3853 ret = xmlRelaxNGCompareNameClasses(def2->nameClass, def1);
3854 } else {
3855 ret = 0;
3856 }
3857 } else {
3858 ret = 1;
3859 }
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003860 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00003861 TODO ret = 0;
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003862 }
3863
Daniel Veillard4c004142003-10-07 11:33:24 +00003864 return (ret);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00003865}
3866
3867/**
3868 * xmlRelaxNGCompareElemDefLists:
3869 * @ctxt: a Relax-NG parser context
3870 * @defs1: the first list of element/attribute defs
3871 * @defs2: the second list of element/attribute defs
3872 *
3873 * Compare the 2 lists of element or attribute definitions. The comparison
3874 * is that if both lists do not accept the same QNames, it returns 1
3875 * If the 2 lists can accept the same QName the comparison returns 0
3876 *
3877 * Returns 1 disttinct, 0 if equal
3878 */
3879static int
Daniel Veillard4c004142003-10-07 11:33:24 +00003880xmlRelaxNGCompareElemDefLists(xmlRelaxNGParserCtxtPtr ctxt
3881 ATTRIBUTE_UNUSED, xmlRelaxNGDefinePtr * def1,
3882 xmlRelaxNGDefinePtr * def2)
3883{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003884 xmlRelaxNGDefinePtr *basedef2 = def2;
Daniel Veillard4c004142003-10-07 11:33:24 +00003885
Daniel Veillard154877e2003-01-30 12:17:05 +00003886 if ((def1 == NULL) || (def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003887 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003888 if ((*def1 == NULL) || (*def2 == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00003889 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003890 while (*def1 != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003891 while ((*def2) != NULL) {
3892 if (xmlRelaxNGCompareNameClasses(*def1, *def2) == 0)
3893 return (0);
3894 def2++;
3895 }
3896 def2 = basedef2;
3897 def1++;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003898 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003899 return (1);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003900}
3901
3902/**
Daniel Veillardce192eb2003-04-16 15:58:05 +00003903 * xmlRelaxNGGenerateAttributes:
3904 * @ctxt: a Relax-NG parser context
3905 * @def: the definition definition
3906 *
3907 * Check if the definition can only generate attributes
3908 *
3909 * Returns 1 if yes, 0 if no and -1 in case of error.
3910 */
3911static int
3912xmlRelaxNGGenerateAttributes(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003913 xmlRelaxNGDefinePtr def)
3914{
Daniel Veillardce192eb2003-04-16 15:58:05 +00003915 xmlRelaxNGDefinePtr parent, cur, tmp;
3916
3917 /*
3918 * Don't run that check in case of error. Infinite recursion
3919 * becomes possible.
3920 */
3921 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00003922 return (-1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003923
3924 parent = NULL;
3925 cur = def;
3926 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00003927 if ((cur->type == XML_RELAXNG_ELEMENT) ||
3928 (cur->type == XML_RELAXNG_TEXT) ||
3929 (cur->type == XML_RELAXNG_DATATYPE) ||
3930 (cur->type == XML_RELAXNG_PARAM) ||
3931 (cur->type == XML_RELAXNG_LIST) ||
3932 (cur->type == XML_RELAXNG_VALUE) ||
3933 (cur->type == XML_RELAXNG_EMPTY))
3934 return (0);
3935 if ((cur->type == XML_RELAXNG_CHOICE) ||
3936 (cur->type == XML_RELAXNG_INTERLEAVE) ||
3937 (cur->type == XML_RELAXNG_GROUP) ||
3938 (cur->type == XML_RELAXNG_ONEORMORE) ||
3939 (cur->type == XML_RELAXNG_ZEROORMORE) ||
3940 (cur->type == XML_RELAXNG_OPTIONAL) ||
3941 (cur->type == XML_RELAXNG_PARENTREF) ||
3942 (cur->type == XML_RELAXNG_EXTERNALREF) ||
3943 (cur->type == XML_RELAXNG_REF) ||
3944 (cur->type == XML_RELAXNG_DEF)) {
3945 if (cur->content != NULL) {
3946 parent = cur;
3947 cur = cur->content;
3948 tmp = cur;
3949 while (tmp != NULL) {
3950 tmp->parent = parent;
3951 tmp = tmp->next;
3952 }
3953 continue;
3954 }
3955 }
3956 if (cur == def)
3957 break;
3958 if (cur->next != NULL) {
3959 cur = cur->next;
3960 continue;
3961 }
3962 do {
3963 cur = cur->parent;
3964 if (cur == NULL)
3965 break;
3966 if (cur == def)
3967 return (1);
3968 if (cur->next != NULL) {
3969 cur = cur->next;
3970 break;
3971 }
3972 } while (cur != NULL);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003973 }
Daniel Veillard4c004142003-10-07 11:33:24 +00003974 return (1);
Daniel Veillardce192eb2003-04-16 15:58:05 +00003975}
Daniel Veillard4c004142003-10-07 11:33:24 +00003976
Daniel Veillardce192eb2003-04-16 15:58:05 +00003977/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003978 * xmlRelaxNGGetElements:
3979 * @ctxt: a Relax-NG parser context
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003980 * @def: the definition definition
3981 * @eora: gather elements (0) or attributes (1)
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003982 *
3983 * Compute the list of top elements a definition can generate
3984 *
3985 * Returns a list of elements or NULL if none was found.
3986 */
3987static xmlRelaxNGDefinePtr *
3988xmlRelaxNGGetElements(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00003989 xmlRelaxNGDefinePtr def, int eora)
3990{
Daniel Veillardfd573f12003-03-16 17:52:32 +00003991 xmlRelaxNGDefinePtr *ret = NULL, parent, cur, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00003992 int len = 0;
3993 int max = 0;
3994
Daniel Veillard44e1dd02003-02-21 23:23:28 +00003995 /*
3996 * Don't run that check in case of error. Infinite recursion
3997 * becomes possible.
3998 */
3999 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004000 return (NULL);
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004001
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004002 parent = NULL;
4003 cur = def;
4004 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004005 if (((eora == 0) && ((cur->type == XML_RELAXNG_ELEMENT) ||
4006 (cur->type == XML_RELAXNG_TEXT))) ||
4007 ((eora == 1) && (cur->type == XML_RELAXNG_ATTRIBUTE))) {
4008 if (ret == NULL) {
4009 max = 10;
4010 ret = (xmlRelaxNGDefinePtr *)
4011 xmlMalloc((max + 1) * sizeof(xmlRelaxNGDefinePtr));
4012 if (ret == NULL) {
4013 xmlRngPErrMemory(ctxt, "getting element list\n");
4014 return (NULL);
4015 }
4016 } else if (max <= len) {
Daniel Veillard079f6a72004-09-23 13:15:03 +00004017 xmlRelaxNGDefinePtr *temp;
4018
Daniel Veillard4c004142003-10-07 11:33:24 +00004019 max *= 2;
Daniel Veillard079f6a72004-09-23 13:15:03 +00004020 temp = xmlRealloc(ret,
Daniel Veillard4c004142003-10-07 11:33:24 +00004021 (max + 1) * sizeof(xmlRelaxNGDefinePtr));
Daniel Veillard079f6a72004-09-23 13:15:03 +00004022 if (temp == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004023 xmlRngPErrMemory(ctxt, "getting element list\n");
Daniel Veillard079f6a72004-09-23 13:15:03 +00004024 xmlFree(ret);
Daniel Veillard4c004142003-10-07 11:33:24 +00004025 return (NULL);
4026 }
Daniel Veillard079f6a72004-09-23 13:15:03 +00004027 ret = temp;
Daniel Veillard4c004142003-10-07 11:33:24 +00004028 }
4029 ret[len++] = cur;
4030 ret[len] = NULL;
4031 } else if ((cur->type == XML_RELAXNG_CHOICE) ||
4032 (cur->type == XML_RELAXNG_INTERLEAVE) ||
4033 (cur->type == XML_RELAXNG_GROUP) ||
4034 (cur->type == XML_RELAXNG_ONEORMORE) ||
4035 (cur->type == XML_RELAXNG_ZEROORMORE) ||
4036 (cur->type == XML_RELAXNG_OPTIONAL) ||
4037 (cur->type == XML_RELAXNG_PARENTREF) ||
4038 (cur->type == XML_RELAXNG_REF) ||
William M. Brack236c8c02004-03-20 11:32:36 +00004039 (cur->type == XML_RELAXNG_DEF) ||
4040 (cur->type == XML_RELAXNG_EXTERNALREF)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004041 /*
4042 * Don't go within elements or attributes or string values.
4043 * Just gather the element top list
4044 */
4045 if (cur->content != NULL) {
4046 parent = cur;
4047 cur = cur->content;
4048 tmp = cur;
4049 while (tmp != NULL) {
4050 tmp->parent = parent;
4051 tmp = tmp->next;
4052 }
4053 continue;
4054 }
4055 }
4056 if (cur == def)
4057 break;
4058 if (cur->next != NULL) {
4059 cur = cur->next;
4060 continue;
4061 }
4062 do {
4063 cur = cur->parent;
4064 if (cur == NULL)
4065 break;
4066 if (cur == def)
4067 return (ret);
4068 if (cur->next != NULL) {
4069 cur = cur->next;
4070 break;
4071 }
4072 } while (cur != NULL);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004073 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004074 return (ret);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004075}
Daniel Veillard4c004142003-10-07 11:33:24 +00004076
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004077/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004078 * xmlRelaxNGCheckChoiceDeterminism:
4079 * @ctxt: a Relax-NG parser context
4080 * @def: the choice definition
4081 *
4082 * Also used to find indeterministic pattern in choice
4083 */
4084static void
4085xmlRelaxNGCheckChoiceDeterminism(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004086 xmlRelaxNGDefinePtr def)
4087{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004088 xmlRelaxNGDefinePtr **list;
4089 xmlRelaxNGDefinePtr cur;
4090 int nbchild = 0, i, j, ret;
4091 int is_nullable = 0;
4092 int is_indeterminist = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004093 xmlHashTablePtr triage = NULL;
4094 int is_triable = 1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004095
Daniel Veillard4c004142003-10-07 11:33:24 +00004096 if ((def == NULL) || (def->type != XML_RELAXNG_CHOICE))
4097 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004098
Daniel Veillarde063f482003-03-21 16:53:17 +00004099 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004100 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004101
Daniel Veillardfd573f12003-03-16 17:52:32 +00004102 /*
4103 * Don't run that check in case of error. Infinite recursion
4104 * becomes possible.
4105 */
4106 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004107 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004108
4109 is_nullable = xmlRelaxNGIsNullable(def);
4110
4111 cur = def->content;
4112 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004113 nbchild++;
4114 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004115 }
4116
4117 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004118 sizeof(xmlRelaxNGDefinePtr
4119 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004120 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004121 xmlRngPErrMemory(ctxt, "building choice\n");
4122 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004123 }
4124 i = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004125 /*
4126 * a bit strong but safe
4127 */
4128 if (is_nullable == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004129 triage = xmlHashCreate(10);
Daniel Veillarde063f482003-03-21 16:53:17 +00004130 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004131 is_triable = 0;
Daniel Veillarde063f482003-03-21 16:53:17 +00004132 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004133 cur = def->content;
4134 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004135 list[i] = xmlRelaxNGGetElements(ctxt, cur, 0);
4136 if ((list[i] == NULL) || (list[i][0] == NULL)) {
4137 is_triable = 0;
4138 } else if (is_triable == 1) {
4139 xmlRelaxNGDefinePtr *tmp;
4140 int res;
Daniel Veillarde063f482003-03-21 16:53:17 +00004141
Daniel Veillard4c004142003-10-07 11:33:24 +00004142 tmp = list[i];
4143 while ((*tmp != NULL) && (is_triable == 1)) {
4144 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4145 res = xmlHashAddEntry2(triage,
4146 BAD_CAST "#text", NULL,
4147 (void *) cur);
4148 if (res != 0)
4149 is_triable = -1;
4150 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4151 ((*tmp)->name != NULL)) {
4152 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4153 res = xmlHashAddEntry2(triage,
4154 (*tmp)->name, NULL,
4155 (void *) cur);
4156 else
4157 res = xmlHashAddEntry2(triage,
4158 (*tmp)->name, (*tmp)->ns,
4159 (void *) cur);
4160 if (res != 0)
4161 is_triable = -1;
4162 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4163 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4164 res = xmlHashAddEntry2(triage,
4165 BAD_CAST "#any", NULL,
4166 (void *) cur);
4167 else
4168 res = xmlHashAddEntry2(triage,
4169 BAD_CAST "#any", (*tmp)->ns,
4170 (void *) cur);
4171 if (res != 0)
4172 is_triable = -1;
4173 } else {
4174 is_triable = -1;
4175 }
4176 tmp++;
4177 }
4178 }
4179 i++;
4180 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004181 }
4182
Daniel Veillard4c004142003-10-07 11:33:24 +00004183 for (i = 0; i < nbchild; i++) {
4184 if (list[i] == NULL)
4185 continue;
4186 for (j = 0; j < i; j++) {
4187 if (list[j] == NULL)
4188 continue;
4189 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4190 if (ret == 0) {
4191 is_indeterminist = 1;
4192 }
4193 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004194 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004195 for (i = 0; i < nbchild; i++) {
4196 if (list[i] != NULL)
4197 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004198 }
4199
4200 xmlFree(list);
4201 if (is_indeterminist) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004202 def->dflags |= IS_INDETERMINIST;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004203 }
Daniel Veillarde063f482003-03-21 16:53:17 +00004204 if (is_triable == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004205 def->dflags |= IS_TRIABLE;
4206 def->data = triage;
Daniel Veillarde063f482003-03-21 16:53:17 +00004207 } else if (triage != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004208 xmlHashFree(triage, NULL);
Daniel Veillarde063f482003-03-21 16:53:17 +00004209 }
4210 def->dflags |= IS_PROCESSED;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004211}
4212
4213/**
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004214 * xmlRelaxNGCheckGroupAttrs:
4215 * @ctxt: a Relax-NG parser context
4216 * @def: the group definition
4217 *
4218 * Detects violations of rule 7.3
4219 */
4220static void
4221xmlRelaxNGCheckGroupAttrs(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00004222 xmlRelaxNGDefinePtr def)
4223{
Daniel Veillardfd573f12003-03-16 17:52:32 +00004224 xmlRelaxNGDefinePtr **list;
4225 xmlRelaxNGDefinePtr cur;
4226 int nbchild = 0, i, j, ret;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004227
4228 if ((def == NULL) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00004229 ((def->type != XML_RELAXNG_GROUP) &&
4230 (def->type != XML_RELAXNG_ELEMENT)))
4231 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004232
Daniel Veillarde063f482003-03-21 16:53:17 +00004233 if (def->dflags & IS_PROCESSED)
Daniel Veillard4c004142003-10-07 11:33:24 +00004234 return;
Daniel Veillarde063f482003-03-21 16:53:17 +00004235
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004236 /*
4237 * Don't run that check in case of error. Infinite recursion
4238 * becomes possible.
4239 */
4240 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004241 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004242
Daniel Veillardfd573f12003-03-16 17:52:32 +00004243 cur = def->attrs;
4244 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004245 nbchild++;
4246 cur = cur->next;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004247 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004248 cur = def->content;
4249 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004250 nbchild++;
4251 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004252 }
4253
4254 list = (xmlRelaxNGDefinePtr **) xmlMalloc(nbchild *
Daniel Veillard4c004142003-10-07 11:33:24 +00004255 sizeof(xmlRelaxNGDefinePtr
4256 *));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004257 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004258 xmlRngPErrMemory(ctxt, "building group\n");
4259 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004260 }
4261 i = 0;
4262 cur = def->attrs;
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 cur = def->content;
4269 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004270 list[i] = xmlRelaxNGGetElements(ctxt, cur, 1);
4271 i++;
4272 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004273 }
4274
Daniel Veillard4c004142003-10-07 11:33:24 +00004275 for (i = 0; i < nbchild; i++) {
4276 if (list[i] == NULL)
4277 continue;
4278 for (j = 0; j < i; j++) {
4279 if (list[j] == NULL)
4280 continue;
4281 ret = xmlRelaxNGCompareElemDefLists(ctxt, list[i], list[j]);
4282 if (ret == 0) {
4283 xmlRngPErr(ctxt, def->node, XML_RNGP_GROUP_ATTR_CONFLICT,
4284 "Attributes conflicts in group\n", NULL, NULL);
4285 }
4286 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004287 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004288 for (i = 0; i < nbchild; i++) {
4289 if (list[i] != NULL)
4290 xmlFree(list[i]);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004291 }
4292
4293 xmlFree(list);
Daniel Veillarde063f482003-03-21 16:53:17 +00004294 def->dflags |= IS_PROCESSED;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004295}
4296
4297/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00004298 * xmlRelaxNGComputeInterleaves:
4299 * @def: the interleave definition
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004300 * @ctxt: a Relax-NG parser context
Daniel Veillardfd573f12003-03-16 17:52:32 +00004301 * @name: the definition name
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004302 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00004303 * A lot of work for preprocessing interleave definitions
4304 * is potentially needed to get a decent execution speed at runtime
4305 * - trying to get a total order on the element nodes generated
4306 * by the interleaves, order the list of interleave definitions
4307 * following that order.
4308 * - if <text/> is used to handle mixed content, it is better to
4309 * flag this in the define and simplify the runtime checking
4310 * algorithm
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004311 */
4312static void
Daniel Veillardfd573f12003-03-16 17:52:32 +00004313xmlRelaxNGComputeInterleaves(xmlRelaxNGDefinePtr def,
Daniel Veillard4c004142003-10-07 11:33:24 +00004314 xmlRelaxNGParserCtxtPtr ctxt,
4315 xmlChar * name ATTRIBUTE_UNUSED)
4316{
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004317 xmlRelaxNGDefinePtr cur, *tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004318
Daniel Veillardfd573f12003-03-16 17:52:32 +00004319 xmlRelaxNGPartitionPtr partitions = NULL;
4320 xmlRelaxNGInterleaveGroupPtr *groups = NULL;
4321 xmlRelaxNGInterleaveGroupPtr group;
Daniel Veillard4c004142003-10-07 11:33:24 +00004322 int i, j, ret, res;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004323 int nbgroups = 0;
4324 int nbchild = 0;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004325 int is_mixed = 0;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004326 int is_determinist = 1;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004327
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004328 /*
4329 * Don't run that check in case of error. Infinite recursion
4330 * becomes possible.
4331 */
4332 if (ctxt->nbErrors != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004333 return;
Daniel Veillard44e1dd02003-02-21 23:23:28 +00004334
Daniel Veillardfd573f12003-03-16 17:52:32 +00004335#ifdef DEBUG_INTERLEAVE
4336 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00004337 "xmlRelaxNGComputeInterleaves(%s)\n", name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004338#endif
4339 cur = def->content;
4340 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004341 nbchild++;
4342 cur = cur->next;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004343 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004344
Daniel Veillardfd573f12003-03-16 17:52:32 +00004345#ifdef DEBUG_INTERLEAVE
4346 xmlGenericError(xmlGenericErrorContext, " %d child\n", nbchild);
4347#endif
4348 groups = (xmlRelaxNGInterleaveGroupPtr *)
Daniel Veillard4c004142003-10-07 11:33:24 +00004349 xmlMalloc(nbchild * sizeof(xmlRelaxNGInterleaveGroupPtr));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004350 if (groups == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004351 goto error;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004352 cur = def->content;
4353 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004354 groups[nbgroups] = (xmlRelaxNGInterleaveGroupPtr)
4355 xmlMalloc(sizeof(xmlRelaxNGInterleaveGroup));
4356 if (groups[nbgroups] == NULL)
4357 goto error;
4358 if (cur->type == XML_RELAXNG_TEXT)
4359 is_mixed++;
4360 groups[nbgroups]->rule = cur;
4361 groups[nbgroups]->defs = xmlRelaxNGGetElements(ctxt, cur, 0);
4362 groups[nbgroups]->attrs = xmlRelaxNGGetElements(ctxt, cur, 1);
4363 nbgroups++;
4364 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004365 }
4366#ifdef DEBUG_INTERLEAVE
4367 xmlGenericError(xmlGenericErrorContext, " %d groups\n", nbgroups);
4368#endif
4369
4370 /*
4371 * Let's check that all rules makes a partitions according to 7.4
4372 */
4373 partitions = (xmlRelaxNGPartitionPtr)
Daniel Veillard4c004142003-10-07 11:33:24 +00004374 xmlMalloc(sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004375 if (partitions == NULL)
4376 goto error;
Daniel Veillard20863822003-03-22 17:51:47 +00004377 memset(partitions, 0, sizeof(xmlRelaxNGPartition));
Daniel Veillardfd573f12003-03-16 17:52:32 +00004378 partitions->nbgroups = nbgroups;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004379 partitions->triage = xmlHashCreate(nbgroups);
Daniel Veillard4c004142003-10-07 11:33:24 +00004380 for (i = 0; i < nbgroups; i++) {
4381 group = groups[i];
4382 for (j = i + 1; j < nbgroups; j++) {
4383 if (groups[j] == NULL)
4384 continue;
4385
4386 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->defs,
4387 groups[j]->defs);
4388 if (ret == 0) {
4389 xmlRngPErr(ctxt, def->node, XML_RNGP_ELEM_TEXT_CONFLICT,
4390 "Element or text conflicts in interleave\n",
4391 NULL, NULL);
4392 }
4393 ret = xmlRelaxNGCompareElemDefLists(ctxt, group->attrs,
4394 groups[j]->attrs);
4395 if (ret == 0) {
4396 xmlRngPErr(ctxt, def->node, XML_RNGP_ATTR_CONFLICT,
4397 "Attributes conflicts in interleave\n", NULL,
4398 NULL);
4399 }
4400 }
4401 tmp = group->defs;
4402 if ((tmp != NULL) && (*tmp != NULL)) {
4403 while (*tmp != NULL) {
4404 if ((*tmp)->type == XML_RELAXNG_TEXT) {
4405 res = xmlHashAddEntry2(partitions->triage,
4406 BAD_CAST "#text", NULL,
4407 (void *) (long) (i + 1));
4408 if (res != 0)
4409 is_determinist = -1;
4410 } else if (((*tmp)->type == XML_RELAXNG_ELEMENT) &&
4411 ((*tmp)->name != NULL)) {
4412 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4413 res = xmlHashAddEntry2(partitions->triage,
4414 (*tmp)->name, NULL,
4415 (void *) (long) (i + 1));
4416 else
4417 res = xmlHashAddEntry2(partitions->triage,
4418 (*tmp)->name, (*tmp)->ns,
4419 (void *) (long) (i + 1));
4420 if (res != 0)
4421 is_determinist = -1;
4422 } else if ((*tmp)->type == XML_RELAXNG_ELEMENT) {
4423 if (((*tmp)->ns == NULL) || ((*tmp)->ns[0] == 0))
4424 res = xmlHashAddEntry2(partitions->triage,
4425 BAD_CAST "#any", NULL,
4426 (void *) (long) (i + 1));
4427 else
4428 res = xmlHashAddEntry2(partitions->triage,
4429 BAD_CAST "#any", (*tmp)->ns,
4430 (void *) (long) (i + 1));
4431 if ((*tmp)->nameClass != NULL)
4432 is_determinist = 2;
4433 if (res != 0)
4434 is_determinist = -1;
4435 } else {
4436 is_determinist = -1;
4437 }
4438 tmp++;
4439 }
4440 } else {
4441 is_determinist = 0;
4442 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004443 }
4444 partitions->groups = groups;
4445
4446 /*
4447 * and save the partition list back in the def
4448 */
4449 def->data = partitions;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00004450 if (is_mixed != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00004451 def->dflags |= IS_MIXED;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004452 if (is_determinist == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00004453 partitions->flags = IS_DETERMINIST;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00004454 if (is_determinist == 2)
Daniel Veillard4c004142003-10-07 11:33:24 +00004455 partitions->flags = IS_DETERMINIST | IS_NEEDCHECK;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004456 return;
4457
Daniel Veillard4c004142003-10-07 11:33:24 +00004458 error:
4459 xmlRngPErrMemory(ctxt, "in interleave computation\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004460 if (groups != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004461 for (i = 0; i < nbgroups; i++)
4462 if (groups[i] != NULL) {
4463 if (groups[i]->defs != NULL)
4464 xmlFree(groups[i]->defs);
4465 xmlFree(groups[i]);
4466 }
4467 xmlFree(groups);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004468 }
4469 xmlRelaxNGFreePartition(partitions);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004470}
4471
4472/**
4473 * xmlRelaxNGParseInterleave:
4474 * @ctxt: a Relax-NG parser context
4475 * @node: the data node.
4476 *
4477 * parse the content of a RelaxNG interleave node.
4478 *
4479 * Returns the definition pointer or NULL in case of error
4480 */
4481static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004482xmlRelaxNGParseInterleave(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4483{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004484 xmlRelaxNGDefinePtr def = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004485 xmlRelaxNGDefinePtr last = NULL, cur;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004486 xmlNodePtr child;
4487
Daniel Veillardfd573f12003-03-16 17:52:32 +00004488 def = xmlRelaxNGNewDefine(ctxt, node);
4489 if (def == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004490 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004491 }
4492 def->type = XML_RELAXNG_INTERLEAVE;
4493
4494 if (ctxt->interleaves == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00004495 ctxt->interleaves = xmlHashCreate(10);
Daniel Veillardfd573f12003-03-16 17:52:32 +00004496 if (ctxt->interleaves == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004497 xmlRngPErrMemory(ctxt, "create interleaves\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00004498 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004499 char name[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00004500
Daniel Veillard4c004142003-10-07 11:33:24 +00004501 snprintf(name, 32, "interleave%d", ctxt->nbInterleaves++);
4502 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST name, def) < 0) {
4503 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_ADD,
4504 "Failed to add %s to hash table\n",
4505 (const xmlChar *) name, NULL);
4506 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004507 }
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004508 child = node->children;
Daniel Veillardd2298792003-02-14 16:54:11 +00004509 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004510 xmlRngPErr(ctxt, node, XML_RNGP_INTERLEAVE_NO_CONTENT,
4511 "Element interleave is empty\n", NULL, NULL);
Daniel Veillard1564e6e2003-03-15 21:30:25 +00004512 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004513 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004514 if (IS_RELAXNG(child, "element")) {
4515 cur = xmlRelaxNGParseElement(ctxt, child);
4516 } else {
4517 cur = xmlRelaxNGParsePattern(ctxt, child);
4518 }
4519 if (cur != NULL) {
4520 cur->parent = def;
4521 if (last == NULL) {
4522 def->content = last = cur;
4523 } else {
4524 last->next = cur;
4525 last = cur;
4526 }
4527 }
4528 child = child->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00004529 }
4530
Daniel Veillard4c004142003-10-07 11:33:24 +00004531 return (def);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00004532}
Daniel Veillard6eadf632003-01-23 18:29:16 +00004533
4534/**
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004535 * xmlRelaxNGParseInclude:
4536 * @ctxt: a Relax-NG parser context
4537 * @node: the include node
4538 *
4539 * Integrate the content of an include node in the current grammar
4540 *
4541 * Returns 0 in case of success or -1 in case of error
4542 */
4543static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004544xmlRelaxNGParseInclude(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4545{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004546 xmlRelaxNGIncludePtr incl;
4547 xmlNodePtr root;
4548 int ret = 0, tmp;
4549
Daniel Veillard807daf82004-02-22 22:13:27 +00004550 incl = node->psvi;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004551 if (incl == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004552 xmlRngPErr(ctxt, node, XML_RNGP_INCLUDE_EMPTY,
4553 "Include node has no data\n", NULL, NULL);
4554 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004555 }
4556 root = xmlDocGetRootElement(incl->doc);
4557 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004558 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY, "Include document is empty\n",
4559 NULL, NULL);
4560 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004561 }
4562 if (!xmlStrEqual(root->name, BAD_CAST "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004563 xmlRngPErr(ctxt, node, XML_RNGP_GRAMMAR_MISSING,
4564 "Include document root is not a grammar\n", NULL, NULL);
4565 return (-1);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004566 }
4567
4568 /*
4569 * Merge the definition from both the include and the internal list
4570 */
4571 if (root->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004572 tmp = xmlRelaxNGParseGrammarContent(ctxt, root->children);
4573 if (tmp != 0)
4574 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004575 }
4576 if (node->children != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004577 tmp = xmlRelaxNGParseGrammarContent(ctxt, node->children);
4578 if (tmp != 0)
4579 ret = -1;
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004580 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004581 return (ret);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004582}
4583
4584/**
Daniel Veillard276be4a2003-01-24 01:03:34 +00004585 * xmlRelaxNGParseDefine:
4586 * @ctxt: a Relax-NG parser context
4587 * @node: the define node
4588 *
4589 * parse the content of a RelaxNG define element node.
4590 *
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004591 * Returns 0 in case of success or -1 in case of error
Daniel Veillard276be4a2003-01-24 01:03:34 +00004592 */
4593static int
Daniel Veillard4c004142003-10-07 11:33:24 +00004594xmlRelaxNGParseDefine(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4595{
Daniel Veillard276be4a2003-01-24 01:03:34 +00004596 xmlChar *name;
4597 int ret = 0, tmp;
4598 xmlRelaxNGDefinePtr def;
4599 const xmlChar *olddefine;
4600
4601 name = xmlGetProp(node, BAD_CAST "name");
4602 if (name == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004603 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_NAME_MISSING,
4604 "define has no name\n", NULL, NULL);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004605 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004606 xmlRelaxNGNormExtSpace(name);
4607 if (xmlValidateNCName(name, 0)) {
4608 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_DEFINE_NAME,
4609 "define name '%s' is not an NCName\n", name, NULL);
4610 }
4611 def = xmlRelaxNGNewDefine(ctxt, node);
4612 if (def == NULL) {
4613 xmlFree(name);
4614 return (-1);
4615 }
4616 def->type = XML_RELAXNG_DEF;
4617 def->name = name;
4618 if (node->children == NULL) {
4619 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_EMPTY,
4620 "define has no children\n", NULL, NULL);
4621 } else {
4622 olddefine = ctxt->define;
4623 ctxt->define = name;
4624 def->content =
4625 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4626 ctxt->define = olddefine;
4627 }
4628 if (ctxt->grammar->defs == NULL)
4629 ctxt->grammar->defs = xmlHashCreate(10);
4630 if (ctxt->grammar->defs == NULL) {
4631 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4632 "Could not create definition hash\n", NULL, NULL);
4633 ret = -1;
4634 } else {
4635 tmp = xmlHashAddEntry(ctxt->grammar->defs, name, def);
4636 if (tmp < 0) {
4637 xmlRelaxNGDefinePtr prev;
Daniel Veillard154877e2003-01-30 12:17:05 +00004638
Daniel Veillard4c004142003-10-07 11:33:24 +00004639 prev = xmlHashLookup(ctxt->grammar->defs, name);
4640 if (prev == NULL) {
4641 xmlRngPErr(ctxt, node, XML_RNGP_DEFINE_CREATE_FAILED,
4642 "Internal error on define aggregation of %s\n",
4643 name, NULL);
4644 ret = -1;
4645 } else {
4646 while (prev->nextHash != NULL)
4647 prev = prev->nextHash;
4648 prev->nextHash = def;
4649 }
4650 }
4651 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00004652 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004653 return (ret);
Daniel Veillard276be4a2003-01-24 01:03:34 +00004654}
4655
4656/**
Daniel Veillard81c51e12009-08-14 18:52:10 +02004657 * xmlRelaxNGParseImportRef:
4658 * @payload: the parser context
4659 * @data: the current grammar
4660 * @name: the reference name
4661 *
4662 * Import import one references into the current grammar
4663 */
4664static void
4665xmlRelaxNGParseImportRef(void *payload, void *data, xmlChar *name) {
4666 xmlRelaxNGParserCtxtPtr ctxt = (xmlRelaxNGParserCtxtPtr) data;
4667 xmlRelaxNGDefinePtr def = (xmlRelaxNGDefinePtr) payload;
4668 int tmp;
4669
Daniel Veillardaa422d92009-09-24 11:31:48 +02004670 def->dflags |= IS_EXTERNAL_REF;
4671
Daniel Veillard81c51e12009-08-14 18:52:10 +02004672 tmp = xmlHashAddEntry(ctxt->grammar->refs, name, def);
4673 if (tmp < 0) {
4674 xmlRelaxNGDefinePtr prev;
4675
4676 prev = (xmlRelaxNGDefinePtr)
4677 xmlHashLookup(ctxt->grammar->refs, def->name);
4678 if (prev == NULL) {
4679 if (def->name != NULL) {
4680 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4681 "Error refs definitions '%s'\n",
4682 def->name, NULL);
4683 } else {
4684 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4685 "Error refs definitions\n",
4686 NULL, NULL);
4687 }
4688 } else {
4689 def->nextHash = prev->nextHash;
4690 prev->nextHash = def;
4691 }
4692 }
4693}
4694
4695/**
4696 * xmlRelaxNGParseImportRefs:
4697 * @ctxt: the parser context
4698 * @grammar: the sub grammar
4699 *
4700 * Import references from the subgrammar into the current grammar
4701 *
4702 * Returns 0 in case of success, -1 in case of failure
4703 */
4704static int
4705xmlRelaxNGParseImportRefs(xmlRelaxNGParserCtxtPtr ctxt,
4706 xmlRelaxNGGrammarPtr grammar) {
4707 if ((ctxt == NULL) || (grammar == NULL) || (ctxt->grammar == NULL))
4708 return(-1);
4709 if (grammar->refs == NULL)
4710 return(0);
4711 if (ctxt->grammar->refs == NULL)
4712 ctxt->grammar->refs = xmlHashCreate(10);
4713 if (ctxt->grammar->refs == NULL) {
4714 xmlRngPErr(ctxt, NULL, XML_RNGP_REF_CREATE_FAILED,
4715 "Could not create references hash\n", NULL, NULL);
4716 return(-1);
4717 }
4718 xmlHashScan(grammar->refs, xmlRelaxNGParseImportRef, ctxt);
Daniel Veillardec18c962009-08-26 18:37:43 +02004719 return(0);
Daniel Veillard81c51e12009-08-14 18:52:10 +02004720}
4721
4722/**
Daniel Veillardfebcca42003-02-16 15:44:18 +00004723 * xmlRelaxNGProcessExternalRef:
4724 * @ctxt: the parser context
4725 * @node: the externlRef node
4726 *
4727 * Process and compile an externlRef node
4728 *
4729 * Returns the xmlRelaxNGDefinePtr or NULL in case of error
4730 */
4731static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004732xmlRelaxNGProcessExternalRef(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4733{
Daniel Veillardfebcca42003-02-16 15:44:18 +00004734 xmlRelaxNGDocumentPtr docu;
4735 xmlNodePtr root, tmp;
4736 xmlChar *ns;
Daniel Veillard77648bb2003-02-20 15:03:22 +00004737 int newNs = 0, oldflags;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004738 xmlRelaxNGDefinePtr def;
4739
Daniel Veillard807daf82004-02-22 22:13:27 +00004740 docu = node->psvi;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004741 if (docu != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004742 def = xmlRelaxNGNewDefine(ctxt, node);
4743 if (def == NULL)
4744 return (NULL);
4745 def->type = XML_RELAXNG_EXTERNALREF;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004746
Daniel Veillard4c004142003-10-07 11:33:24 +00004747 if (docu->content == NULL) {
4748 /*
4749 * Then do the parsing for good
4750 */
4751 root = xmlDocGetRootElement(docu->doc);
4752 if (root == NULL) {
4753 xmlRngPErr(ctxt, node, XML_RNGP_EXTERNALREF_EMTPY,
4754 "xmlRelaxNGParse: %s is empty\n", ctxt->URL,
4755 NULL);
4756 return (NULL);
4757 }
4758 /*
4759 * ns transmission rules
4760 */
4761 ns = xmlGetProp(root, BAD_CAST "ns");
4762 if (ns == NULL) {
4763 tmp = node;
4764 while ((tmp != NULL) && (tmp->type == XML_ELEMENT_NODE)) {
4765 ns = xmlGetProp(tmp, BAD_CAST "ns");
4766 if (ns != NULL) {
4767 break;
4768 }
4769 tmp = tmp->parent;
4770 }
4771 if (ns != NULL) {
4772 xmlSetProp(root, BAD_CAST "ns", ns);
4773 newNs = 1;
4774 xmlFree(ns);
4775 }
4776 } else {
4777 xmlFree(ns);
4778 }
Daniel Veillardfebcca42003-02-16 15:44:18 +00004779
Daniel Veillard4c004142003-10-07 11:33:24 +00004780 /*
4781 * Parsing to get a precompiled schemas.
4782 */
4783 oldflags = ctxt->flags;
4784 ctxt->flags |= XML_RELAXNG_IN_EXTERNALREF;
4785 docu->schema = xmlRelaxNGParseDocument(ctxt, root);
4786 ctxt->flags = oldflags;
4787 if ((docu->schema != NULL) &&
4788 (docu->schema->topgrammar != NULL)) {
4789 docu->content = docu->schema->topgrammar->start;
Daniel Veillard81c51e12009-08-14 18:52:10 +02004790 if (docu->schema->topgrammar->refs)
4791 xmlRelaxNGParseImportRefs(ctxt, docu->schema->topgrammar);
Daniel Veillard4c004142003-10-07 11:33:24 +00004792 }
4793
4794 /*
4795 * the externalRef may be reused in a different ns context
4796 */
4797 if (newNs == 1) {
4798 xmlUnsetProp(root, BAD_CAST "ns");
4799 }
4800 }
4801 def->content = docu->content;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004802 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00004803 def = NULL;
Daniel Veillardfebcca42003-02-16 15:44:18 +00004804 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004805 return (def);
Daniel Veillardfebcca42003-02-16 15:44:18 +00004806}
4807
4808/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00004809 * xmlRelaxNGParsePattern:
4810 * @ctxt: a Relax-NG parser context
4811 * @node: the pattern node.
4812 *
4813 * parse the content of a RelaxNG pattern node.
4814 *
Daniel Veillard276be4a2003-01-24 01:03:34 +00004815 * Returns the definition pointer or NULL in case of error or if no
4816 * pattern is generated.
Daniel Veillard6eadf632003-01-23 18:29:16 +00004817 */
4818static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00004819xmlRelaxNGParsePattern(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
4820{
Daniel Veillard6eadf632003-01-23 18:29:16 +00004821 xmlRelaxNGDefinePtr def = NULL;
4822
Daniel Veillardd2298792003-02-14 16:54:11 +00004823 if (node == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004824 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00004825 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004826 if (IS_RELAXNG(node, "element")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004827 def = xmlRelaxNGParseElement(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004828 } else if (IS_RELAXNG(node, "attribute")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004829 def = xmlRelaxNGParseAttribute(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00004830 } else if (IS_RELAXNG(node, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004831 def = xmlRelaxNGNewDefine(ctxt, node);
4832 if (def == NULL)
4833 return (NULL);
4834 def->type = XML_RELAXNG_EMPTY;
4835 if (node->children != NULL) {
4836 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_NOT_EMPTY,
4837 "empty: had a child node\n", NULL, NULL);
4838 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004839 } else if (IS_RELAXNG(node, "text")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004840 def = xmlRelaxNGNewDefine(ctxt, node);
4841 if (def == NULL)
4842 return (NULL);
4843 def->type = XML_RELAXNG_TEXT;
4844 if (node->children != NULL) {
4845 xmlRngPErr(ctxt, node, XML_RNGP_TEXT_HAS_CHILD,
4846 "text: had a child node\n", NULL, NULL);
4847 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004848 } else if (IS_RELAXNG(node, "zeroOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004849 def = xmlRelaxNGNewDefine(ctxt, node);
4850 if (def == NULL)
4851 return (NULL);
4852 def->type = XML_RELAXNG_ZEROORMORE;
4853 if (node->children == NULL) {
4854 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4855 "Element %s is empty\n", node->name, NULL);
4856 } else {
4857 def->content =
4858 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4859 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004860 } else if (IS_RELAXNG(node, "oneOrMore")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004861 def = xmlRelaxNGNewDefine(ctxt, node);
4862 if (def == NULL)
4863 return (NULL);
4864 def->type = XML_RELAXNG_ONEORMORE;
4865 if (node->children == NULL) {
4866 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4867 "Element %s is empty\n", node->name, NULL);
4868 } else {
4869 def->content =
4870 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4871 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004872 } else if (IS_RELAXNG(node, "optional")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004873 def = xmlRelaxNGNewDefine(ctxt, node);
4874 if (def == NULL)
4875 return (NULL);
4876 def->type = XML_RELAXNG_OPTIONAL;
4877 if (node->children == NULL) {
4878 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4879 "Element %s is empty\n", node->name, NULL);
4880 } else {
4881 def->content =
4882 xmlRelaxNGParsePatterns(ctxt, node->children, 1);
4883 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00004884 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004885 def = xmlRelaxNGNewDefine(ctxt, node);
4886 if (def == NULL)
4887 return (NULL);
4888 def->type = XML_RELAXNG_CHOICE;
4889 if (node->children == NULL) {
4890 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4891 "Element %s is empty\n", node->name, NULL);
4892 } else {
4893 def->content =
4894 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4895 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004896 } else if (IS_RELAXNG(node, "group")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004897 def = xmlRelaxNGNewDefine(ctxt, node);
4898 if (def == NULL)
4899 return (NULL);
4900 def->type = XML_RELAXNG_GROUP;
4901 if (node->children == NULL) {
4902 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4903 "Element %s is empty\n", node->name, NULL);
4904 } else {
4905 def->content =
4906 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4907 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004908 } else if (IS_RELAXNG(node, "ref")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004909 def = xmlRelaxNGNewDefine(ctxt, node);
4910 if (def == NULL)
4911 return (NULL);
4912 def->type = XML_RELAXNG_REF;
4913 def->name = xmlGetProp(node, BAD_CAST "name");
4914 if (def->name == NULL) {
4915 xmlRngPErr(ctxt, node, XML_RNGP_REF_NO_NAME, "ref has no name\n",
4916 NULL, NULL);
4917 } else {
4918 xmlRelaxNGNormExtSpace(def->name);
4919 if (xmlValidateNCName(def->name, 0)) {
4920 xmlRngPErr(ctxt, node, XML_RNGP_REF_NAME_INVALID,
4921 "ref name '%s' is not an NCName\n", def->name,
4922 NULL);
4923 }
4924 }
4925 if (node->children != NULL) {
4926 xmlRngPErr(ctxt, node, XML_RNGP_REF_NOT_EMPTY, "ref is not empty\n",
4927 NULL, NULL);
4928 }
4929 if (ctxt->grammar->refs == NULL)
4930 ctxt->grammar->refs = xmlHashCreate(10);
4931 if (ctxt->grammar->refs == NULL) {
4932 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4933 "Could not create references hash\n", NULL, NULL);
4934 def = NULL;
4935 } else {
4936 int tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004937
Daniel Veillard4c004142003-10-07 11:33:24 +00004938 tmp = xmlHashAddEntry(ctxt->grammar->refs, def->name, def);
4939 if (tmp < 0) {
4940 xmlRelaxNGDefinePtr prev;
Daniel Veillard6eadf632003-01-23 18:29:16 +00004941
Daniel Veillard4c004142003-10-07 11:33:24 +00004942 prev = (xmlRelaxNGDefinePtr)
4943 xmlHashLookup(ctxt->grammar->refs, def->name);
4944 if (prev == NULL) {
4945 if (def->name != NULL) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004946 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4947 "Error refs definitions '%s'\n",
4948 def->name, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004949 } else {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00004950 xmlRngPErr(ctxt, node, XML_RNGP_REF_CREATE_FAILED,
4951 "Error refs definitions\n",
4952 NULL, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00004953 }
Daniel Veillard4c004142003-10-07 11:33:24 +00004954 def = NULL;
4955 } else {
4956 def->nextHash = prev->nextHash;
4957 prev->nextHash = def;
4958 }
4959 }
4960 }
Daniel Veillarddd1655c2003-01-25 18:01:32 +00004961 } else if (IS_RELAXNG(node, "data")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004962 def = xmlRelaxNGParseData(ctxt, node);
Daniel Veillardedc91922003-01-26 00:52:04 +00004963 } else if (IS_RELAXNG(node, "value")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004964 def = xmlRelaxNGParseValue(ctxt, node);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00004965 } else if (IS_RELAXNG(node, "list")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004966 def = xmlRelaxNGNewDefine(ctxt, node);
4967 if (def == NULL)
4968 return (NULL);
4969 def->type = XML_RELAXNG_LIST;
4970 if (node->children == NULL) {
4971 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT,
4972 "Element %s is empty\n", node->name, NULL);
4973 } else {
4974 def->content =
4975 xmlRelaxNGParsePatterns(ctxt, node->children, 0);
4976 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00004977 } else if (IS_RELAXNG(node, "interleave")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004978 def = xmlRelaxNGParseInterleave(ctxt, node);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00004979 } else if (IS_RELAXNG(node, "externalRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004980 def = xmlRelaxNGProcessExternalRef(ctxt, node);
Daniel Veillarde2a5a082003-02-02 14:35:17 +00004981 } else if (IS_RELAXNG(node, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004982 def = xmlRelaxNGNewDefine(ctxt, node);
4983 if (def == NULL)
4984 return (NULL);
4985 def->type = XML_RELAXNG_NOT_ALLOWED;
4986 if (node->children != NULL) {
4987 xmlRngPErr(ctxt, node, XML_RNGP_NOTALLOWED_NOT_EMPTY,
4988 "xmlRelaxNGParse: notAllowed element is not empty\n",
4989 NULL, NULL);
4990 }
Daniel Veillard419a7682003-02-03 23:22:49 +00004991 } else if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00004992 xmlRelaxNGGrammarPtr grammar, old;
4993 xmlRelaxNGGrammarPtr oldparent;
Daniel Veillard419a7682003-02-03 23:22:49 +00004994
Daniel Veillardc482e262003-02-26 14:48:48 +00004995#ifdef DEBUG_GRAMMAR
Daniel Veillard4c004142003-10-07 11:33:24 +00004996 xmlGenericError(xmlGenericErrorContext,
4997 "Found <grammar> pattern\n");
Daniel Veillardc482e262003-02-26 14:48:48 +00004998#endif
4999
Daniel Veillard4c004142003-10-07 11:33:24 +00005000 oldparent = ctxt->parentgrammar;
5001 old = ctxt->grammar;
5002 ctxt->parentgrammar = old;
5003 grammar = xmlRelaxNGParseGrammar(ctxt, node->children);
5004 if (old != NULL) {
5005 ctxt->grammar = old;
5006 ctxt->parentgrammar = oldparent;
Daniel Veillardc482e262003-02-26 14:48:48 +00005007#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00005008 if (grammar != NULL) {
5009 grammar->next = old->next;
5010 old->next = grammar;
5011 }
Daniel Veillardc482e262003-02-26 14:48:48 +00005012#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00005013 }
5014 if (grammar != NULL)
5015 def = grammar->start;
5016 else
5017 def = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00005018 } else if (IS_RELAXNG(node, "parentRef")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005019 if (ctxt->parentgrammar == NULL) {
5020 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_PARENT,
5021 "Use of parentRef without a parent grammar\n", NULL,
5022 NULL);
5023 return (NULL);
5024 }
5025 def = xmlRelaxNGNewDefine(ctxt, node);
5026 if (def == NULL)
5027 return (NULL);
5028 def->type = XML_RELAXNG_PARENTREF;
5029 def->name = xmlGetProp(node, BAD_CAST "name");
5030 if (def->name == NULL) {
5031 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NO_NAME,
5032 "parentRef has no name\n", NULL, NULL);
5033 } else {
5034 xmlRelaxNGNormExtSpace(def->name);
5035 if (xmlValidateNCName(def->name, 0)) {
5036 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NAME_INVALID,
5037 "parentRef name '%s' is not an NCName\n",
5038 def->name, NULL);
5039 }
5040 }
5041 if (node->children != NULL) {
5042 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_NOT_EMPTY,
5043 "parentRef is not empty\n", NULL, NULL);
5044 }
5045 if (ctxt->parentgrammar->refs == NULL)
5046 ctxt->parentgrammar->refs = xmlHashCreate(10);
5047 if (ctxt->parentgrammar->refs == NULL) {
5048 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
5049 "Could not create references hash\n", NULL, NULL);
5050 def = NULL;
5051 } else if (def->name != NULL) {
5052 int tmp;
Daniel Veillard419a7682003-02-03 23:22:49 +00005053
Daniel Veillard4c004142003-10-07 11:33:24 +00005054 tmp =
5055 xmlHashAddEntry(ctxt->parentgrammar->refs, def->name, def);
5056 if (tmp < 0) {
5057 xmlRelaxNGDefinePtr prev;
Daniel Veillard419a7682003-02-03 23:22:49 +00005058
Daniel Veillard4c004142003-10-07 11:33:24 +00005059 prev = (xmlRelaxNGDefinePtr)
5060 xmlHashLookup(ctxt->parentgrammar->refs, def->name);
5061 if (prev == NULL) {
5062 xmlRngPErr(ctxt, node, XML_RNGP_PARENTREF_CREATE_FAILED,
5063 "Internal error parentRef definitions '%s'\n",
5064 def->name, NULL);
5065 def = NULL;
5066 } else {
5067 def->nextHash = prev->nextHash;
5068 prev->nextHash = def;
5069 }
5070 }
5071 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005072 } else if (IS_RELAXNG(node, "mixed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005073 if (node->children == NULL) {
5074 xmlRngPErr(ctxt, node, XML_RNGP_EMPTY_CONSTRUCT, "Mixed is empty\n",
5075 NULL, NULL);
5076 def = NULL;
5077 } else {
5078 def = xmlRelaxNGParseInterleave(ctxt, node);
5079 if (def != NULL) {
5080 xmlRelaxNGDefinePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005081
Daniel Veillard4c004142003-10-07 11:33:24 +00005082 if ((def->content != NULL) && (def->content->next != NULL)) {
5083 tmp = xmlRelaxNGNewDefine(ctxt, node);
5084 if (tmp != NULL) {
5085 tmp->type = XML_RELAXNG_GROUP;
5086 tmp->content = def->content;
5087 def->content = tmp;
5088 }
5089 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005090
Daniel Veillard4c004142003-10-07 11:33:24 +00005091 tmp = xmlRelaxNGNewDefine(ctxt, node);
5092 if (tmp == NULL)
5093 return (def);
5094 tmp->type = XML_RELAXNG_TEXT;
5095 tmp->next = def->content;
5096 def->content = tmp;
5097 }
5098 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005099 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005100 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_CONSTRUCT,
5101 "Unexpected node %s is not a pattern\n", node->name,
5102 NULL);
5103 def = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005104 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005105 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005106}
5107
5108/**
5109 * xmlRelaxNGParseAttribute:
5110 * @ctxt: a Relax-NG parser context
5111 * @node: the element node
5112 *
5113 * parse the content of a RelaxNG attribute node.
5114 *
5115 * Returns the definition pointer or NULL in case of error.
5116 */
5117static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005118xmlRelaxNGParseAttribute(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5119{
Daniel Veillardd2298792003-02-14 16:54:11 +00005120 xmlRelaxNGDefinePtr ret, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005121 xmlNodePtr child;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005122 int old_flags;
5123
Daniel Veillardfd573f12003-03-16 17:52:32 +00005124 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005125 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005126 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005127 ret->type = XML_RELAXNG_ATTRIBUTE;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005128 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005129 child = node->children;
5130 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005131 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_EMPTY,
5132 "xmlRelaxNGParseattribute: attribute has no children\n",
5133 NULL, NULL);
5134 return (ret);
5135 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005136 old_flags = ctxt->flags;
5137 ctxt->flags |= XML_RELAXNG_IN_ATTRIBUTE;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005138 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5139 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005140 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005141
Daniel Veillardd2298792003-02-14 16:54:11 +00005142 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005143 cur = xmlRelaxNGParsePattern(ctxt, child);
5144 if (cur != NULL) {
5145 switch (cur->type) {
5146 case XML_RELAXNG_EMPTY:
5147 case XML_RELAXNG_NOT_ALLOWED:
5148 case XML_RELAXNG_TEXT:
5149 case XML_RELAXNG_ELEMENT:
5150 case XML_RELAXNG_DATATYPE:
5151 case XML_RELAXNG_VALUE:
5152 case XML_RELAXNG_LIST:
5153 case XML_RELAXNG_REF:
5154 case XML_RELAXNG_PARENTREF:
5155 case XML_RELAXNG_EXTERNALREF:
5156 case XML_RELAXNG_DEF:
5157 case XML_RELAXNG_ONEORMORE:
5158 case XML_RELAXNG_ZEROORMORE:
5159 case XML_RELAXNG_OPTIONAL:
5160 case XML_RELAXNG_CHOICE:
5161 case XML_RELAXNG_GROUP:
5162 case XML_RELAXNG_INTERLEAVE:
5163 case XML_RELAXNG_ATTRIBUTE:
5164 ret->content = cur;
5165 cur->parent = ret;
5166 break;
5167 case XML_RELAXNG_START:
5168 case XML_RELAXNG_PARAM:
5169 case XML_RELAXNG_EXCEPT:
5170 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CONTENT,
5171 "attribute has invalid content\n", NULL,
5172 NULL);
5173 break;
5174 case XML_RELAXNG_NOOP:
5175 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_NOOP,
5176 "RNG Internal error, noop found in attribute\n",
5177 NULL, NULL);
5178 break;
5179 }
5180 }
5181 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005182 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005183 if (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005184 xmlRngPErr(ctxt, node, XML_RNGP_ATTRIBUTE_CHILDREN,
5185 "attribute has multiple children\n", NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005186 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005187 ctxt->flags = old_flags;
Daniel Veillard4c004142003-10-07 11:33:24 +00005188 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005189}
5190
5191/**
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005192 * xmlRelaxNGParseExceptNameClass:
5193 * @ctxt: a Relax-NG parser context
5194 * @node: the except node
Daniel Veillard144fae12003-02-03 13:17:57 +00005195 * @attr: 1 if within an attribute, 0 if within an element
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005196 *
5197 * parse the content of a RelaxNG nameClass node.
5198 *
5199 * Returns the definition pointer or NULL in case of error.
5200 */
5201static xmlRelaxNGDefinePtr
Daniel Veillard144fae12003-02-03 13:17:57 +00005202xmlRelaxNGParseExceptNameClass(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005203 xmlNodePtr node, int attr)
5204{
Daniel Veillard144fae12003-02-03 13:17:57 +00005205 xmlRelaxNGDefinePtr ret, cur, last = NULL;
5206 xmlNodePtr child;
5207
Daniel Veillardd2298792003-02-14 16:54:11 +00005208 if (!IS_RELAXNG(node, "except")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005209 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MISSING,
5210 "Expecting an except node\n", NULL, NULL);
5211 return (NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005212 }
5213 if (node->next != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005214 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_MULTIPLE,
5215 "exceptNameClass allows only a single except node\n",
5216 NULL, NULL);
Daniel Veillardd2298792003-02-14 16:54:11 +00005217 }
Daniel Veillard144fae12003-02-03 13:17:57 +00005218 if (node->children == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005219 xmlRngPErr(ctxt, node, XML_RNGP_EXCEPT_EMPTY, "except has no content\n",
5220 NULL, NULL);
5221 return (NULL);
Daniel Veillard144fae12003-02-03 13:17:57 +00005222 }
5223
Daniel Veillardfd573f12003-03-16 17:52:32 +00005224 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard144fae12003-02-03 13:17:57 +00005225 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005226 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005227 ret->type = XML_RELAXNG_EXCEPT;
Daniel Veillard144fae12003-02-03 13:17:57 +00005228 child = node->children;
5229 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005230 cur = xmlRelaxNGNewDefine(ctxt, child);
5231 if (cur == NULL)
5232 break;
5233 if (attr)
5234 cur->type = XML_RELAXNG_ATTRIBUTE;
5235 else
5236 cur->type = XML_RELAXNG_ELEMENT;
5237
Daniel Veillard419a7682003-02-03 23:22:49 +00005238 if (xmlRelaxNGParseNameClass(ctxt, child, cur) != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005239 if (last == NULL) {
5240 ret->content = cur;
5241 } else {
5242 last->next = cur;
5243 }
5244 last = cur;
5245 }
5246 child = child->next;
Daniel Veillard144fae12003-02-03 13:17:57 +00005247 }
5248
Daniel Veillard4c004142003-10-07 11:33:24 +00005249 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005250}
5251
5252/**
5253 * xmlRelaxNGParseNameClass:
5254 * @ctxt: a Relax-NG parser context
5255 * @node: the nameClass node
5256 * @def: the current definition
5257 *
5258 * parse the content of a RelaxNG nameClass node.
5259 *
5260 * Returns the definition pointer or NULL in case of error.
5261 */
5262static xmlRelaxNGDefinePtr
5263xmlRelaxNGParseNameClass(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node,
Daniel Veillard4c004142003-10-07 11:33:24 +00005264 xmlRelaxNGDefinePtr def)
5265{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005266 xmlRelaxNGDefinePtr ret, tmp;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005267 xmlChar *val;
5268
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005269 ret = def;
Daniel Veillard4c004142003-10-07 11:33:24 +00005270 if ((IS_RELAXNG(node, "name")) || (IS_RELAXNG(node, "anyName")) ||
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005271 (IS_RELAXNG(node, "nsName"))) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005272 if ((def->type != XML_RELAXNG_ELEMENT) &&
5273 (def->type != XML_RELAXNG_ATTRIBUTE)) {
5274 ret = xmlRelaxNGNewDefine(ctxt, node);
5275 if (ret == NULL)
5276 return (NULL);
5277 ret->parent = def;
5278 if (ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE)
5279 ret->type = XML_RELAXNG_ATTRIBUTE;
5280 else
5281 ret->type = XML_RELAXNG_ELEMENT;
5282 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005283 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005284 if (IS_RELAXNG(node, "name")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005285 val = xmlNodeGetContent(node);
5286 xmlRelaxNGNormExtSpace(val);
5287 if (xmlValidateNCName(val, 0)) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005288 if (node->parent != NULL)
5289 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5290 "Element %s name '%s' is not an NCName\n",
5291 node->parent->name, val);
5292 else
5293 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NAME,
5294 "name '%s' is not an NCName\n",
5295 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005296 }
5297 ret->name = val;
5298 val = xmlGetProp(node, BAD_CAST "ns");
5299 ret->ns = val;
5300 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5301 (val != NULL) &&
5302 (xmlStrEqual(val, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005303 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
Daniel Veillard4c004142003-10-07 11:33:24 +00005304 "Attribute with namespace '%s' is not allowed\n",
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005305 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005306 }
5307 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5308 (val != NULL) &&
5309 (val[0] == 0) && (xmlStrEqual(ret->name, BAD_CAST "xmlns"))) {
Daniel Veillard6edbfbb2003-10-07 12:17:44 +00005310 xmlRngPErr(ctxt, node, XML_RNGP_XMLNS_NAME,
5311 "Attribute with QName 'xmlns' is not allowed\n",
5312 val, NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005313 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005314 } else if (IS_RELAXNG(node, "anyName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005315 ret->name = NULL;
5316 ret->ns = NULL;
5317 if (node->children != NULL) {
5318 ret->nameClass =
5319 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5320 (def->type ==
5321 XML_RELAXNG_ATTRIBUTE));
5322 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005323 } else if (IS_RELAXNG(node, "nsName")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005324 ret->name = NULL;
5325 ret->ns = xmlGetProp(node, BAD_CAST "ns");
5326 if (ret->ns == NULL) {
5327 xmlRngPErr(ctxt, node, XML_RNGP_NSNAME_NO_NS,
5328 "nsName has no ns attribute\n", NULL, NULL);
5329 }
5330 if ((ctxt->flags & XML_RELAXNG_IN_ATTRIBUTE) &&
5331 (ret->ns != NULL) &&
5332 (xmlStrEqual
5333 (ret->ns, BAD_CAST "http://www.w3.org/2000/xmlns"))) {
5334 xmlRngPErr(ctxt, node, XML_RNGP_XML_NS,
5335 "Attribute with namespace '%s' is not allowed\n",
5336 ret->ns, NULL);
5337 }
5338 if (node->children != NULL) {
5339 ret->nameClass =
5340 xmlRelaxNGParseExceptNameClass(ctxt, node->children,
5341 (def->type ==
5342 XML_RELAXNG_ATTRIBUTE));
5343 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005344 } else if (IS_RELAXNG(node, "choice")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005345 xmlNodePtr child;
5346 xmlRelaxNGDefinePtr last = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005347
Daniel Veillard4c004142003-10-07 11:33:24 +00005348 ret = xmlRelaxNGNewDefine(ctxt, node);
5349 if (ret == NULL)
5350 return (NULL);
5351 ret->parent = def;
5352 ret->type = XML_RELAXNG_CHOICE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005353
Daniel Veillard4c004142003-10-07 11:33:24 +00005354 if (node->children == NULL) {
5355 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_EMPTY,
5356 "Element choice is empty\n", NULL, NULL);
5357 } else {
Daniel Veillardfd573f12003-03-16 17:52:32 +00005358
Daniel Veillard4c004142003-10-07 11:33:24 +00005359 child = node->children;
5360 while (child != NULL) {
5361 tmp = xmlRelaxNGParseNameClass(ctxt, child, ret);
5362 if (tmp != NULL) {
5363 if (last == NULL) {
5364 last = ret->nameClass = tmp;
5365 } else {
5366 last->next = tmp;
5367 last = tmp;
5368 }
5369 }
5370 child = child->next;
5371 }
5372 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005373 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005374 xmlRngPErr(ctxt, node, XML_RNGP_CHOICE_CONTENT,
5375 "expecting name, anyName, nsName or choice : got %s\n",
Ben Waltona7a6a4b2010-03-15 10:06:36 +01005376 (node == NULL ? (const xmlChar *) "nothing" : node->name),
5377 NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00005378 return (NULL);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005379 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005380 if (ret != def) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005381 if (def->nameClass == NULL) {
5382 def->nameClass = ret;
5383 } else {
5384 tmp = def->nameClass;
5385 while (tmp->next != NULL) {
5386 tmp = tmp->next;
5387 }
5388 tmp->next = ret;
5389 }
Daniel Veillard2e9b1652003-02-19 13:29:45 +00005390 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005391 return (ret);
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005392}
5393
5394/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00005395 * xmlRelaxNGParseElement:
5396 * @ctxt: a Relax-NG parser context
5397 * @node: the element node
5398 *
5399 * parse the content of a RelaxNG element node.
5400 *
5401 * Returns the definition pointer or NULL in case of error.
5402 */
5403static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005404xmlRelaxNGParseElement(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
5405{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005406 xmlRelaxNGDefinePtr ret, cur, last;
5407 xmlNodePtr child;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005408 const xmlChar *olddefine;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005409
Daniel Veillardfd573f12003-03-16 17:52:32 +00005410 ret = xmlRelaxNGNewDefine(ctxt, node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005411 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005412 return (NULL);
Daniel Veillardfd573f12003-03-16 17:52:32 +00005413 ret->type = XML_RELAXNG_ELEMENT;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005414 ret->parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005415 child = node->children;
5416 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005417 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_EMPTY,
5418 "xmlRelaxNGParseElement: element has no children\n",
5419 NULL, NULL);
5420 return (ret);
5421 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005422 cur = xmlRelaxNGParseNameClass(ctxt, child, ret);
5423 if (cur != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005424 child = child->next;
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00005425
Daniel Veillard6eadf632003-01-23 18:29:16 +00005426 if (child == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005427 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_NO_CONTENT,
5428 "xmlRelaxNGParseElement: element has no content\n",
5429 NULL, NULL);
5430 return (ret);
5431 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005432 olddefine = ctxt->define;
5433 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005434 last = NULL;
5435 while (child != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005436 cur = xmlRelaxNGParsePattern(ctxt, child);
5437 if (cur != NULL) {
5438 cur->parent = ret;
5439 switch (cur->type) {
5440 case XML_RELAXNG_EMPTY:
5441 case XML_RELAXNG_NOT_ALLOWED:
5442 case XML_RELAXNG_TEXT:
5443 case XML_RELAXNG_ELEMENT:
5444 case XML_RELAXNG_DATATYPE:
5445 case XML_RELAXNG_VALUE:
5446 case XML_RELAXNG_LIST:
5447 case XML_RELAXNG_REF:
5448 case XML_RELAXNG_PARENTREF:
5449 case XML_RELAXNG_EXTERNALREF:
5450 case XML_RELAXNG_DEF:
5451 case XML_RELAXNG_ZEROORMORE:
5452 case XML_RELAXNG_ONEORMORE:
5453 case XML_RELAXNG_OPTIONAL:
5454 case XML_RELAXNG_CHOICE:
5455 case XML_RELAXNG_GROUP:
5456 case XML_RELAXNG_INTERLEAVE:
5457 if (last == NULL) {
5458 ret->content = last = cur;
5459 } else {
5460 if ((last->type == XML_RELAXNG_ELEMENT) &&
5461 (ret->content == last)) {
5462 ret->content = xmlRelaxNGNewDefine(ctxt, node);
5463 if (ret->content != NULL) {
5464 ret->content->type = XML_RELAXNG_GROUP;
5465 ret->content->content = last;
5466 } else {
5467 ret->content = last;
5468 }
5469 }
5470 last->next = cur;
5471 last = cur;
5472 }
5473 break;
5474 case XML_RELAXNG_ATTRIBUTE:
5475 cur->next = ret->attrs;
5476 ret->attrs = cur;
5477 break;
5478 case XML_RELAXNG_START:
5479 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5480 "RNG Internal error, start found in element\n",
5481 NULL, NULL);
5482 break;
5483 case XML_RELAXNG_PARAM:
5484 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5485 "RNG Internal error, param found in element\n",
5486 NULL, NULL);
5487 break;
5488 case XML_RELAXNG_EXCEPT:
5489 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5490 "RNG Internal error, except found in element\n",
5491 NULL, NULL);
5492 break;
5493 case XML_RELAXNG_NOOP:
5494 xmlRngPErr(ctxt, node, XML_RNGP_ELEMENT_CONTENT,
5495 "RNG Internal error, noop found in element\n",
5496 NULL, NULL);
5497 break;
5498 }
5499 }
5500 child = child->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005501 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00005502 ctxt->define = olddefine;
Daniel Veillard4c004142003-10-07 11:33:24 +00005503 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005504}
5505
5506/**
5507 * xmlRelaxNGParsePatterns:
5508 * @ctxt: a Relax-NG parser context
5509 * @nodes: list of nodes
Daniel Veillard154877e2003-01-30 12:17:05 +00005510 * @group: use an implicit <group> for elements
Daniel Veillard6eadf632003-01-23 18:29:16 +00005511 *
5512 * parse the content of a RelaxNG start node.
5513 *
5514 * Returns the definition pointer or NULL in case of error.
5515 */
5516static xmlRelaxNGDefinePtr
Daniel Veillard154877e2003-01-30 12:17:05 +00005517xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes,
Daniel Veillard4c004142003-10-07 11:33:24 +00005518 int group)
5519{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005520 xmlRelaxNGDefinePtr def = NULL, last = NULL, cur, parent;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005521
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00005522 parent = ctxt->def;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005523 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005524 if (IS_RELAXNG(nodes, "element")) {
5525 cur = xmlRelaxNGParseElement(ctxt, nodes);
5526 if (def == NULL) {
5527 def = last = cur;
5528 } else {
5529 if ((group == 1) && (def->type == XML_RELAXNG_ELEMENT) &&
5530 (def == last)) {
5531 def = xmlRelaxNGNewDefine(ctxt, nodes);
5532 def->type = XML_RELAXNG_GROUP;
5533 def->content = last;
5534 }
5535 last->next = cur;
5536 last = cur;
5537 }
5538 cur->parent = parent;
5539 } else {
5540 cur = xmlRelaxNGParsePattern(ctxt, nodes);
5541 if (cur != NULL) {
5542 if (def == NULL) {
5543 def = last = cur;
5544 } else {
5545 last->next = cur;
5546 last = cur;
5547 }
5548 }
5549 }
5550 nodes = nodes->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005551 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005552 return (def);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005553}
5554
5555/**
5556 * xmlRelaxNGParseStart:
5557 * @ctxt: a Relax-NG parser context
5558 * @nodes: start children nodes
5559 *
5560 * parse the content of a RelaxNG start node.
5561 *
5562 * Returns 0 in case of success, -1 in case of error
5563 */
5564static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005565xmlRelaxNGParseStart(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
5566{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005567 int ret = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005568 xmlRelaxNGDefinePtr def = NULL, last;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005569
Daniel Veillardd2298792003-02-14 16:54:11 +00005570 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005571 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY, "start has no children\n",
5572 NULL, NULL);
5573 return (-1);
Daniel Veillardd2298792003-02-14 16:54:11 +00005574 }
5575 if (IS_RELAXNG(nodes, "empty")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005576 def = xmlRelaxNGNewDefine(ctxt, nodes);
5577 if (def == NULL)
5578 return (-1);
5579 def->type = XML_RELAXNG_EMPTY;
5580 if (nodes->children != NULL) {
5581 xmlRngPErr(ctxt, nodes, XML_RNGP_EMPTY_CONTENT,
5582 "element empty is not empty\n", NULL, NULL);
5583 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005584 } else if (IS_RELAXNG(nodes, "notAllowed")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005585 def = xmlRelaxNGNewDefine(ctxt, nodes);
5586 if (def == NULL)
5587 return (-1);
5588 def->type = XML_RELAXNG_NOT_ALLOWED;
5589 if (nodes->children != NULL) {
5590 xmlRngPErr(ctxt, nodes, XML_RNGP_NOTALLOWED_NOT_EMPTY,
5591 "element notAllowed is not empty\n", NULL, NULL);
5592 }
Daniel Veillardd2298792003-02-14 16:54:11 +00005593 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005594 def = xmlRelaxNGParsePatterns(ctxt, nodes, 1);
Daniel Veillard2df2de22003-02-17 23:34:33 +00005595 }
5596 if (ctxt->grammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005597 last = ctxt->grammar->start;
5598 while (last->next != NULL)
5599 last = last->next;
5600 last->next = def;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005601 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005602 ctxt->grammar->start = def;
Daniel Veillardd2298792003-02-14 16:54:11 +00005603 }
5604 nodes = nodes->next;
5605 if (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005606 xmlRngPErr(ctxt, nodes, XML_RNGP_START_CONTENT,
5607 "start more than one children\n", NULL, NULL);
5608 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005609 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005610 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005611}
5612
5613/**
5614 * xmlRelaxNGParseGrammarContent:
5615 * @ctxt: a Relax-NG parser context
5616 * @nodes: grammar children nodes
5617 *
5618 * parse the content of a RelaxNG grammar node.
5619 *
5620 * Returns 0 in case of success, -1 in case of error
5621 */
5622static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005623xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt,
5624 xmlNodePtr nodes)
Daniel Veillard6eadf632003-01-23 18:29:16 +00005625{
Daniel Veillarde2a5a082003-02-02 14:35:17 +00005626 int ret = 0, tmp;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005627
5628 if (nodes == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005629 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_EMPTY,
5630 "grammar has no children\n", NULL, NULL);
5631 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005632 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005633 while (nodes != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005634 if (IS_RELAXNG(nodes, "start")) {
5635 if (nodes->children == NULL) {
5636 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY,
5637 "start has no children\n", NULL, NULL);
5638 } else {
5639 tmp = xmlRelaxNGParseStart(ctxt, nodes->children);
5640 if (tmp != 0)
5641 ret = -1;
5642 }
5643 } else if (IS_RELAXNG(nodes, "define")) {
5644 tmp = xmlRelaxNGParseDefine(ctxt, nodes);
5645 if (tmp != 0)
5646 ret = -1;
5647 } else if (IS_RELAXNG(nodes, "include")) {
5648 tmp = xmlRelaxNGParseInclude(ctxt, nodes);
5649 if (tmp != 0)
5650 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005651 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005652 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
5653 "grammar has unexpected child %s\n", nodes->name,
5654 NULL);
5655 ret = -1;
5656 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005657 nodes = nodes->next;
5658 }
5659 return (ret);
5660}
5661
5662/**
5663 * xmlRelaxNGCheckReference:
5664 * @ref: the ref
5665 * @ctxt: a Relax-NG parser context
5666 * @name: the name associated to the defines
5667 *
5668 * Applies the 4.17. combine attribute rule for all the define
5669 * element of a given grammar using the same name.
5670 */
5671static void
5672xmlRelaxNGCheckReference(xmlRelaxNGDefinePtr ref,
Daniel Veillard4c004142003-10-07 11:33:24 +00005673 xmlRelaxNGParserCtxtPtr ctxt,
5674 const xmlChar * name)
5675{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005676 xmlRelaxNGGrammarPtr grammar;
Daniel Veillard276be4a2003-01-24 01:03:34 +00005677 xmlRelaxNGDefinePtr def, cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005678
Daniel Veillardaa422d92009-09-24 11:31:48 +02005679 /*
5680 * Those rules don't apply to imported ref from xmlRelaxNGParseImportRef
5681 */
5682 if (ref->dflags & IS_EXTERNAL_REF)
5683 return;
5684
Daniel Veillard6eadf632003-01-23 18:29:16 +00005685 grammar = ctxt->grammar;
5686 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005687 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5688 "Internal error: no grammar in CheckReference %s\n",
5689 name, NULL);
5690 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005691 }
5692 if (ref->content != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005693 xmlRngPErr(ctxt, ref->node, XML_ERR_INTERNAL_ERROR,
5694 "Internal error: reference has content in CheckReference %s\n",
5695 name, NULL);
5696 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005697 }
5698 if (grammar->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005699 def = xmlHashLookup(grammar->defs, name);
5700 if (def != NULL) {
5701 cur = ref;
5702 while (cur != NULL) {
5703 cur->content = def;
5704 cur = cur->nextHash;
5705 }
5706 } else {
5707 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5708 "Reference %s has no matching definition\n", name,
5709 NULL);
5710 }
Daniel Veillardd4310742003-02-18 21:12:46 +00005711 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00005712 xmlRngPErr(ctxt, ref->node, XML_RNGP_REF_NO_DEF,
5713 "Reference %s has no matching definition\n", name,
5714 NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005715 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005716}
5717
5718/**
5719 * xmlRelaxNGCheckCombine:
5720 * @define: the define(s) list
5721 * @ctxt: a Relax-NG parser context
5722 * @name: the name associated to the defines
5723 *
5724 * Applies the 4.17. combine attribute rule for all the define
5725 * element of a given grammar using the same name.
5726 */
5727static void
5728xmlRelaxNGCheckCombine(xmlRelaxNGDefinePtr define,
Daniel Veillard4c004142003-10-07 11:33:24 +00005729 xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * name)
5730{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005731 xmlChar *combine;
5732 int choiceOrInterleave = -1;
5733 int missing = 0;
5734 xmlRelaxNGDefinePtr cur, last, tmp, tmp2;
5735
5736 if (define->nextHash == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005737 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005738 cur = define;
5739 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005740 combine = xmlGetProp(cur->node, BAD_CAST "combine");
5741 if (combine != NULL) {
5742 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5743 if (choiceOrInterleave == -1)
5744 choiceOrInterleave = 1;
5745 else if (choiceOrInterleave == 0) {
5746 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5747 "Defines for %s use both 'choice' and 'interleave'\n",
5748 name, NULL);
5749 }
5750 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5751 if (choiceOrInterleave == -1)
5752 choiceOrInterleave = 0;
5753 else if (choiceOrInterleave == 1) {
5754 xmlRngPErr(ctxt, define->node, XML_RNGP_DEF_CHOICE_AND_INTERLEAVE,
5755 "Defines for %s use both 'choice' and 'interleave'\n",
5756 name, NULL);
5757 }
5758 } else {
5759 xmlRngPErr(ctxt, define->node, XML_RNGP_UNKNOWN_COMBINE,
5760 "Defines for %s use unknown combine value '%s''\n",
5761 name, combine);
5762 }
5763 xmlFree(combine);
5764 } else {
5765 if (missing == 0)
5766 missing = 1;
5767 else {
5768 xmlRngPErr(ctxt, define->node, XML_RNGP_NEED_COMBINE,
5769 "Some defines for %s needs the combine attribute\n",
5770 name, NULL);
5771 }
5772 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005773
Daniel Veillard4c004142003-10-07 11:33:24 +00005774 cur = cur->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005775 }
5776#ifdef DEBUG
5777 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005778 "xmlRelaxNGCheckCombine(): merging %s defines: %d\n",
5779 name, choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005780#endif
5781 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005782 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005783 cur = xmlRelaxNGNewDefine(ctxt, define->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005784 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005785 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005786 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005787 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005788 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005789 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005790 tmp = define;
5791 last = NULL;
5792 while (tmp != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005793 if (tmp->content != NULL) {
5794 if (tmp->content->next != NULL) {
5795 /*
5796 * we need first to create a wrapper.
5797 */
5798 tmp2 = xmlRelaxNGNewDefine(ctxt, tmp->content->node);
5799 if (tmp2 == NULL)
5800 break;
5801 tmp2->type = XML_RELAXNG_GROUP;
5802 tmp2->content = tmp->content;
5803 } else {
5804 tmp2 = tmp->content;
5805 }
5806 if (last == NULL) {
5807 cur->content = tmp2;
5808 } else {
5809 last->next = tmp2;
5810 }
5811 last = tmp2;
5812 }
5813 tmp->content = cur;
5814 tmp = tmp->nextHash;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005815 }
5816 define->content = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005817 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005818 if (ctxt->interleaves == NULL)
5819 ctxt->interleaves = xmlHashCreate(10);
5820 if (ctxt->interleaves == NULL) {
5821 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5822 "Failed to create interleaves hash table\n", NULL,
5823 NULL);
5824 } else {
5825 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005826
Daniel Veillard4c004142003-10-07 11:33:24 +00005827 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5828 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5829 0) {
5830 xmlRngPErr(ctxt, define->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5831 "Failed to add %s to hash table\n",
5832 (const xmlChar *) tmpname, NULL);
5833 }
5834 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005835 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005836}
5837
5838/**
5839 * xmlRelaxNGCombineStart:
5840 * @ctxt: a Relax-NG parser context
5841 * @grammar: the grammar
5842 *
5843 * Applies the 4.17. combine rule for all the start
5844 * element of a given grammar.
5845 */
5846static void
5847xmlRelaxNGCombineStart(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00005848 xmlRelaxNGGrammarPtr grammar)
5849{
Daniel Veillard6eadf632003-01-23 18:29:16 +00005850 xmlRelaxNGDefinePtr starts;
5851 xmlChar *combine;
5852 int choiceOrInterleave = -1;
5853 int missing = 0;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005854 xmlRelaxNGDefinePtr cur;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005855
Daniel Veillard2df2de22003-02-17 23:34:33 +00005856 starts = grammar->start;
5857 if ((starts == NULL) || (starts->next == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00005858 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005859 cur = starts;
5860 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005861 if ((cur->node == NULL) || (cur->node->parent == NULL) ||
5862 (!xmlStrEqual(cur->node->parent->name, BAD_CAST "start"))) {
5863 combine = NULL;
5864 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_MISSING,
5865 "Internal error: start element not found\n", NULL,
5866 NULL);
5867 } else {
5868 combine = xmlGetProp(cur->node->parent, BAD_CAST "combine");
5869 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005870
Daniel Veillard4c004142003-10-07 11:33:24 +00005871 if (combine != NULL) {
5872 if (xmlStrEqual(combine, BAD_CAST "choice")) {
5873 if (choiceOrInterleave == -1)
5874 choiceOrInterleave = 1;
5875 else if (choiceOrInterleave == 0) {
5876 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5877 "<start> use both 'choice' and 'interleave'\n",
5878 NULL, NULL);
5879 }
5880 } else if (xmlStrEqual(combine, BAD_CAST "interleave")) {
5881 if (choiceOrInterleave == -1)
5882 choiceOrInterleave = 0;
5883 else if (choiceOrInterleave == 1) {
5884 xmlRngPErr(ctxt, cur->node, XML_RNGP_START_CHOICE_AND_INTERLEAVE,
5885 "<start> use both 'choice' and 'interleave'\n",
5886 NULL, NULL);
5887 }
5888 } else {
5889 xmlRngPErr(ctxt, cur->node, XML_RNGP_UNKNOWN_COMBINE,
5890 "<start> uses unknown combine value '%s''\n",
5891 combine, NULL);
5892 }
5893 xmlFree(combine);
5894 } else {
5895 if (missing == 0)
5896 missing = 1;
5897 else {
5898 xmlRngPErr(ctxt, cur->node, XML_RNGP_NEED_COMBINE,
5899 "Some <start> element miss the combine attribute\n",
5900 NULL, NULL);
5901 }
5902 }
5903
5904 cur = cur->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005905 }
5906#ifdef DEBUG
5907 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00005908 "xmlRelaxNGCombineStart(): merging <start>: %d\n",
5909 choiceOrInterleave);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005910#endif
5911 if (choiceOrInterleave == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +00005912 choiceOrInterleave = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005913 cur = xmlRelaxNGNewDefine(ctxt, starts->node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00005914 if (cur == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00005915 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00005916 if (choiceOrInterleave == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00005917 cur->type = XML_RELAXNG_INTERLEAVE;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005918 else
Daniel Veillard4c004142003-10-07 11:33:24 +00005919 cur->type = XML_RELAXNG_CHOICE;
Daniel Veillard2df2de22003-02-17 23:34:33 +00005920 cur->content = grammar->start;
5921 grammar->start = cur;
Daniel Veillardfd573f12003-03-16 17:52:32 +00005922 if (choiceOrInterleave == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005923 if (ctxt->interleaves == NULL)
5924 ctxt->interleaves = xmlHashCreate(10);
5925 if (ctxt->interleaves == NULL) {
5926 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5927 "Failed to create interleaves hash table\n", NULL,
5928 NULL);
5929 } else {
5930 char tmpname[32];
Daniel Veillardfd573f12003-03-16 17:52:32 +00005931
Daniel Veillard4c004142003-10-07 11:33:24 +00005932 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5933 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5934 0) {
5935 xmlRngPErr(ctxt, cur->node, XML_RNGP_INTERLEAVE_CREATE_FAILED,
5936 "Failed to add %s to hash table\n",
5937 (const xmlChar *) tmpname, NULL);
5938 }
5939 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00005940 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00005941}
5942
5943/**
Daniel Veillardd4310742003-02-18 21:12:46 +00005944 * xmlRelaxNGCheckCycles:
5945 * @ctxt: a Relax-NG parser context
5946 * @nodes: grammar children nodes
5947 * @depth: the counter
5948 *
5949 * Check for cycles.
5950 *
5951 * Returns 0 if check passed, and -1 in case of error
5952 */
5953static int
Daniel Veillard4c004142003-10-07 11:33:24 +00005954xmlRelaxNGCheckCycles(xmlRelaxNGParserCtxtPtr ctxt,
5955 xmlRelaxNGDefinePtr cur, int depth)
5956{
Daniel Veillardd4310742003-02-18 21:12:46 +00005957 int ret = 0;
5958
5959 while ((ret == 0) && (cur != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005960 if ((cur->type == XML_RELAXNG_REF) ||
5961 (cur->type == XML_RELAXNG_PARENTREF)) {
5962 if (cur->depth == -1) {
5963 cur->depth = depth;
5964 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5965 cur->depth = -2;
5966 } else if (depth == cur->depth) {
5967 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_CYCLE,
5968 "Detected a cycle in %s references\n",
5969 cur->name, NULL);
5970 return (-1);
5971 }
5972 } else if (cur->type == XML_RELAXNG_ELEMENT) {
5973 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth + 1);
5974 } else {
5975 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5976 }
5977 cur = cur->next;
Daniel Veillardd4310742003-02-18 21:12:46 +00005978 }
Daniel Veillard4c004142003-10-07 11:33:24 +00005979 return (ret);
Daniel Veillardd4310742003-02-18 21:12:46 +00005980}
5981
5982/**
Daniel Veillard77648bb2003-02-20 15:03:22 +00005983 * xmlRelaxNGTryUnlink:
5984 * @ctxt: a Relax-NG parser context
5985 * @cur: the definition to unlink
5986 * @parent: the parent definition
5987 * @prev: the previous sibling definition
5988 *
5989 * Try to unlink a definition. If not possble make it a NOOP
5990 *
5991 * Returns the new prev definition
5992 */
5993static xmlRelaxNGDefinePtr
Daniel Veillard4c004142003-10-07 11:33:24 +00005994xmlRelaxNGTryUnlink(xmlRelaxNGParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
5995 xmlRelaxNGDefinePtr cur,
5996 xmlRelaxNGDefinePtr parent, xmlRelaxNGDefinePtr prev)
5997{
Daniel Veillardfd573f12003-03-16 17:52:32 +00005998 if (prev != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00005999 prev->next = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006000 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006001 if (parent != NULL) {
6002 if (parent->content == cur)
6003 parent->content = cur->next;
6004 else if (parent->attrs == cur)
6005 parent->attrs = cur->next;
6006 else if (parent->nameClass == cur)
6007 parent->nameClass = cur->next;
6008 } else {
6009 cur->type = XML_RELAXNG_NOOP;
6010 prev = cur;
6011 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00006012 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006013 return (prev);
Daniel Veillard77648bb2003-02-20 15:03:22 +00006014}
6015
6016/**
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006017 * xmlRelaxNGSimplify:
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006018 * @ctxt: a Relax-NG parser context
6019 * @nodes: grammar children nodes
6020 *
6021 * Check for simplification of empty and notAllowed
6022 */
6023static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006024xmlRelaxNGSimplify(xmlRelaxNGParserCtxtPtr ctxt,
6025 xmlRelaxNGDefinePtr cur, xmlRelaxNGDefinePtr parent)
6026{
Daniel Veillardfd573f12003-03-16 17:52:32 +00006027 xmlRelaxNGDefinePtr prev = NULL;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006028
Daniel Veillardfd573f12003-03-16 17:52:32 +00006029 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006030 if ((cur->type == XML_RELAXNG_REF) ||
6031 (cur->type == XML_RELAXNG_PARENTREF)) {
6032 if (cur->depth != -3) {
6033 cur->depth = -3;
6034 xmlRelaxNGSimplify(ctxt, cur->content, cur);
6035 }
6036 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
6037 cur->parent = parent;
6038 if ((parent != NULL) &&
6039 ((parent->type == XML_RELAXNG_ATTRIBUTE) ||
6040 (parent->type == XML_RELAXNG_LIST) ||
6041 (parent->type == XML_RELAXNG_GROUP) ||
6042 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6043 (parent->type == XML_RELAXNG_ONEORMORE) ||
6044 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6045 parent->type = XML_RELAXNG_NOT_ALLOWED;
6046 break;
6047 }
6048 if ((parent != NULL) && (parent->type == XML_RELAXNG_CHOICE)) {
6049 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6050 } else
6051 prev = cur;
6052 } else if (cur->type == XML_RELAXNG_EMPTY) {
6053 cur->parent = parent;
6054 if ((parent != NULL) &&
6055 ((parent->type == XML_RELAXNG_ONEORMORE) ||
6056 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6057 parent->type = XML_RELAXNG_EMPTY;
6058 break;
6059 }
6060 if ((parent != NULL) &&
6061 ((parent->type == XML_RELAXNG_GROUP) ||
6062 (parent->type == XML_RELAXNG_INTERLEAVE))) {
6063 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6064 } else
6065 prev = cur;
6066 } else {
6067 cur->parent = parent;
6068 if (cur->content != NULL)
6069 xmlRelaxNGSimplify(ctxt, cur->content, cur);
6070 if ((cur->type != XML_RELAXNG_VALUE) && (cur->attrs != NULL))
6071 xmlRelaxNGSimplify(ctxt, cur->attrs, cur);
6072 if (cur->nameClass != NULL)
6073 xmlRelaxNGSimplify(ctxt, cur->nameClass, cur);
6074 /*
6075 * On Elements, try to move attribute only generating rules on
6076 * the attrs rules.
6077 */
6078 if (cur->type == XML_RELAXNG_ELEMENT) {
6079 int attronly;
6080 xmlRelaxNGDefinePtr tmp, pre;
Daniel Veillardce192eb2003-04-16 15:58:05 +00006081
Daniel Veillard4c004142003-10-07 11:33:24 +00006082 while (cur->content != NULL) {
6083 attronly =
6084 xmlRelaxNGGenerateAttributes(ctxt, cur->content);
6085 if (attronly == 1) {
6086 /*
6087 * migrate cur->content to attrs
6088 */
6089 tmp = cur->content;
6090 cur->content = tmp->next;
6091 tmp->next = cur->attrs;
6092 cur->attrs = tmp;
6093 } else {
6094 /*
6095 * cur->content can generate elements or text
6096 */
6097 break;
6098 }
6099 }
6100 pre = cur->content;
6101 while ((pre != NULL) && (pre->next != NULL)) {
6102 tmp = pre->next;
6103 attronly = xmlRelaxNGGenerateAttributes(ctxt, tmp);
6104 if (attronly == 1) {
6105 /*
6106 * migrate tmp to attrs
6107 */
6108 pre->next = tmp->next;
6109 tmp->next = cur->attrs;
6110 cur->attrs = tmp;
6111 } else {
6112 pre = tmp;
6113 }
6114 }
6115 }
6116 /*
6117 * This may result in a simplification
6118 */
6119 if ((cur->type == XML_RELAXNG_GROUP) ||
6120 (cur->type == XML_RELAXNG_INTERLEAVE)) {
6121 if (cur->content == NULL)
6122 cur->type = XML_RELAXNG_EMPTY;
6123 else if (cur->content->next == NULL) {
6124 if ((parent == NULL) && (prev == NULL)) {
6125 cur->type = XML_RELAXNG_NOOP;
6126 } else if (prev == NULL) {
6127 parent->content = cur->content;
6128 cur->content->next = cur->next;
6129 cur = cur->content;
6130 } else {
6131 cur->content->next = cur->next;
6132 prev->next = cur->content;
6133 cur = cur->content;
6134 }
6135 }
6136 }
6137 /*
6138 * the current node may have been transformed back
6139 */
6140 if ((cur->type == XML_RELAXNG_EXCEPT) &&
6141 (cur->content != NULL) &&
6142 (cur->content->type == XML_RELAXNG_NOT_ALLOWED)) {
6143 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6144 } else if (cur->type == XML_RELAXNG_NOT_ALLOWED) {
6145 if ((parent != NULL) &&
6146 ((parent->type == XML_RELAXNG_ATTRIBUTE) ||
6147 (parent->type == XML_RELAXNG_LIST) ||
6148 (parent->type == XML_RELAXNG_GROUP) ||
6149 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6150 (parent->type == XML_RELAXNG_ONEORMORE) ||
6151 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6152 parent->type = XML_RELAXNG_NOT_ALLOWED;
6153 break;
6154 }
6155 if ((parent != NULL) &&
6156 (parent->type == XML_RELAXNG_CHOICE)) {
6157 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6158 } else
6159 prev = cur;
6160 } else if (cur->type == XML_RELAXNG_EMPTY) {
6161 if ((parent != NULL) &&
6162 ((parent->type == XML_RELAXNG_ONEORMORE) ||
6163 (parent->type == XML_RELAXNG_ZEROORMORE))) {
6164 parent->type = XML_RELAXNG_EMPTY;
6165 break;
6166 }
6167 if ((parent != NULL) &&
6168 ((parent->type == XML_RELAXNG_GROUP) ||
6169 (parent->type == XML_RELAXNG_INTERLEAVE) ||
6170 (parent->type == XML_RELAXNG_CHOICE))) {
6171 prev = xmlRelaxNGTryUnlink(ctxt, cur, parent, prev);
6172 } else
6173 prev = cur;
6174 } else {
6175 prev = cur;
6176 }
6177 }
6178 cur = cur->next;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006179 }
6180}
6181
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006182/**
6183 * xmlRelaxNGGroupContentType:
6184 * @ct1: the first content type
6185 * @ct2: the second content type
6186 *
6187 * Try to group 2 content types
6188 *
6189 * Returns the content type
6190 */
6191static xmlRelaxNGContentType
6192xmlRelaxNGGroupContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006193 xmlRelaxNGContentType ct2)
6194{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006195 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006196 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6197 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006198 if (ct1 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006199 return (ct2);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006200 if (ct2 == XML_RELAXNG_CONTENT_EMPTY)
Daniel Veillard4c004142003-10-07 11:33:24 +00006201 return (ct1);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006202 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00006203 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6204 return (XML_RELAXNG_CONTENT_COMPLEX);
6205 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006206}
6207
6208/**
6209 * xmlRelaxNGMaxContentType:
6210 * @ct1: the first content type
6211 * @ct2: the second content type
6212 *
6213 * Compute the max content-type
6214 *
6215 * Returns the content type
6216 */
6217static xmlRelaxNGContentType
6218xmlRelaxNGMaxContentType(xmlRelaxNGContentType ct1,
Daniel Veillard4c004142003-10-07 11:33:24 +00006219 xmlRelaxNGContentType ct2)
6220{
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006221 if ((ct1 == XML_RELAXNG_CONTENT_ERROR) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006222 (ct2 == XML_RELAXNG_CONTENT_ERROR))
6223 return (XML_RELAXNG_CONTENT_ERROR);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006224 if ((ct1 == XML_RELAXNG_CONTENT_SIMPLE) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006225 (ct2 == XML_RELAXNG_CONTENT_SIMPLE))
6226 return (XML_RELAXNG_CONTENT_SIMPLE);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006227 if ((ct1 == XML_RELAXNG_CONTENT_COMPLEX) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00006228 (ct2 == XML_RELAXNG_CONTENT_COMPLEX))
6229 return (XML_RELAXNG_CONTENT_COMPLEX);
6230 return (XML_RELAXNG_CONTENT_EMPTY);
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006231}
Daniel Veillard77648bb2003-02-20 15:03:22 +00006232
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006233/**
6234 * xmlRelaxNGCheckRules:
6235 * @ctxt: a Relax-NG parser context
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006236 * @cur: the current definition
Daniel Veillard77648bb2003-02-20 15:03:22 +00006237 * @flags: some accumulated flags
Daniel Veillardfd573f12003-03-16 17:52:32 +00006238 * @ptype: the parent type
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006239 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006240 * Check for rules in section 7.1 and 7.2
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006241 *
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006242 * Returns the content type of @cur
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006243 */
Daniel Veillard4c5cf702003-02-21 15:40:34 +00006244static xmlRelaxNGContentType
Daniel Veillard4c004142003-10-07 11:33:24 +00006245xmlRelaxNGCheckRules(xmlRelaxNGParserCtxtPtr ctxt,
6246 xmlRelaxNGDefinePtr cur, int flags,
6247 xmlRelaxNGType ptype)
6248{
Daniel Veillardd44b9362009-09-07 12:15:08 +02006249 int nflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00006250 xmlRelaxNGContentType ret, tmp, val = XML_RELAXNG_CONTENT_EMPTY;
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006251
Daniel Veillardfd573f12003-03-16 17:52:32 +00006252 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006253 ret = XML_RELAXNG_CONTENT_EMPTY;
6254 if ((cur->type == XML_RELAXNG_REF) ||
6255 (cur->type == XML_RELAXNG_PARENTREF)) {
Daniel Veillard63d68a32005-03-31 13:50:00 +00006256 /*
6257 * This should actually be caught by list//element(ref) at the
6258 * element boundaries, c.f. Bug #159968 local refs are dropped
6259 * in step 4.19.
6260 */
6261#if 0
Daniel Veillard4c004142003-10-07 11:33:24 +00006262 if (flags & XML_RELAXNG_IN_LIST) {
6263 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_REF,
6264 "Found forbidden pattern list//ref\n", NULL,
6265 NULL);
6266 }
Daniel Veillard63d68a32005-03-31 13:50:00 +00006267#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00006268 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6269 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_REF,
6270 "Found forbidden pattern data/except//ref\n",
6271 NULL, NULL);
6272 }
Daniel Veillard81c51e12009-08-14 18:52:10 +02006273 if (cur->content == NULL) {
6274 if (cur->type == XML_RELAXNG_PARENTREF)
6275 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_NO_DEF,
6276 "Internal found no define for parent refs\n",
6277 NULL, NULL);
6278 else
6279 xmlRngPErr(ctxt, cur->node, XML_RNGP_REF_NO_DEF,
6280 "Internal found no define for ref %s\n",
Daniel Veillarda4f27cb2009-08-21 17:34:17 +02006281 (cur->name ? cur->name: BAD_CAST "null"), NULL);
Daniel Veillard81c51e12009-08-14 18:52:10 +02006282 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006283 if (cur->depth > -4) {
6284 cur->depth = -4;
6285 ret = xmlRelaxNGCheckRules(ctxt, cur->content,
6286 flags, cur->type);
6287 cur->depth = ret - 15;
6288 } else if (cur->depth == -4) {
6289 ret = XML_RELAXNG_CONTENT_COMPLEX;
6290 } else {
6291 ret = (xmlRelaxNGContentType) (cur->depth + 15);
6292 }
6293 } else if (cur->type == XML_RELAXNG_ELEMENT) {
6294 /*
6295 * The 7.3 Attribute derivation rule for groups is plugged there
6296 */
6297 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6298 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6299 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ELEM,
6300 "Found forbidden pattern data/except//element(ref)\n",
6301 NULL, NULL);
6302 }
6303 if (flags & XML_RELAXNG_IN_LIST) {
6304 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ELEM,
6305 "Found forbidden pattern list//element(ref)\n",
6306 NULL, NULL);
6307 }
6308 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6309 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6310 "Found forbidden pattern attribute//element(ref)\n",
6311 NULL, NULL);
6312 }
6313 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6314 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ELEM,
6315 "Found forbidden pattern attribute//element(ref)\n",
6316 NULL, NULL);
6317 }
6318 /*
6319 * reset since in the simple form elements are only child
6320 * of grammar/define
6321 */
6322 nflags = 0;
6323 ret =
6324 xmlRelaxNGCheckRules(ctxt, cur->attrs, nflags, cur->type);
6325 if (ret != XML_RELAXNG_CONTENT_EMPTY) {
6326 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_EMPTY,
6327 "Element %s attributes have a content type error\n",
6328 cur->name, NULL);
6329 }
6330 ret =
6331 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6332 cur->type);
6333 if (ret == XML_RELAXNG_CONTENT_ERROR) {
6334 xmlRngPErr(ctxt, cur->node, XML_RNGP_ELEM_CONTENT_ERROR,
6335 "Element %s has a content type error\n",
6336 cur->name, NULL);
6337 } else {
6338 ret = XML_RELAXNG_CONTENT_COMPLEX;
6339 }
6340 } else if (cur->type == XML_RELAXNG_ATTRIBUTE) {
6341 if (flags & XML_RELAXNG_IN_ATTRIBUTE) {
6342 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ATTR_ATTR,
6343 "Found forbidden pattern attribute//attribute\n",
6344 NULL, NULL);
6345 }
6346 if (flags & XML_RELAXNG_IN_LIST) {
6347 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_ATTR,
6348 "Found forbidden pattern list//attribute\n",
6349 NULL, NULL);
6350 }
6351 if (flags & XML_RELAXNG_IN_OOMGROUP) {
6352 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_GROUP_ATTR,
6353 "Found forbidden pattern oneOrMore//group//attribute\n",
6354 NULL, NULL);
6355 }
6356 if (flags & XML_RELAXNG_IN_OOMINTERLEAVE) {
6357 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR,
6358 "Found forbidden pattern oneOrMore//interleave//attribute\n",
6359 NULL, NULL);
6360 }
6361 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6362 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ATTR,
6363 "Found forbidden pattern data/except//attribute\n",
6364 NULL, NULL);
6365 }
6366 if (flags & XML_RELAXNG_IN_START) {
6367 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ATTR,
6368 "Found forbidden pattern start//attribute\n",
6369 NULL, NULL);
6370 }
6371 if ((!(flags & XML_RELAXNG_IN_ONEORMORE))
6372 && (cur->name == NULL)) {
6373 if (cur->ns == NULL) {
6374 xmlRngPErr(ctxt, cur->node, XML_RNGP_ANYNAME_ATTR_ANCESTOR,
6375 "Found anyName attribute without oneOrMore ancestor\n",
6376 NULL, NULL);
6377 } else {
6378 xmlRngPErr(ctxt, cur->node, XML_RNGP_NSNAME_ATTR_ANCESTOR,
6379 "Found nsName attribute without oneOrMore ancestor\n",
6380 NULL, NULL);
6381 }
6382 }
6383 nflags = flags | XML_RELAXNG_IN_ATTRIBUTE;
6384 xmlRelaxNGCheckRules(ctxt, cur->content, nflags, cur->type);
6385 ret = XML_RELAXNG_CONTENT_EMPTY;
6386 } else if ((cur->type == XML_RELAXNG_ONEORMORE) ||
6387 (cur->type == XML_RELAXNG_ZEROORMORE)) {
6388 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6389 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_ONEMORE,
6390 "Found forbidden pattern data/except//oneOrMore\n",
6391 NULL, NULL);
6392 }
6393 if (flags & XML_RELAXNG_IN_START) {
6394 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_ONEMORE,
6395 "Found forbidden pattern start//oneOrMore\n",
6396 NULL, NULL);
6397 }
6398 nflags = flags | XML_RELAXNG_IN_ONEORMORE;
6399 ret =
6400 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6401 cur->type);
6402 ret = xmlRelaxNGGroupContentType(ret, ret);
6403 } else if (cur->type == XML_RELAXNG_LIST) {
6404 if (flags & XML_RELAXNG_IN_LIST) {
6405 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_LIST,
6406 "Found forbidden pattern list//list\n", NULL,
6407 NULL);
6408 }
6409 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6410 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_LIST,
6411 "Found forbidden pattern data/except//list\n",
6412 NULL, NULL);
6413 }
6414 if (flags & XML_RELAXNG_IN_START) {
6415 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_LIST,
6416 "Found forbidden pattern start//list\n", NULL,
6417 NULL);
6418 }
6419 nflags = flags | XML_RELAXNG_IN_LIST;
6420 ret =
6421 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6422 cur->type);
6423 } else if (cur->type == XML_RELAXNG_GROUP) {
6424 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6425 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_GROUP,
6426 "Found forbidden pattern data/except//group\n",
6427 NULL, NULL);
6428 }
6429 if (flags & XML_RELAXNG_IN_START) {
6430 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_GROUP,
6431 "Found forbidden pattern start//group\n", NULL,
6432 NULL);
6433 }
6434 if (flags & XML_RELAXNG_IN_ONEORMORE)
6435 nflags = flags | XML_RELAXNG_IN_OOMGROUP;
6436 else
6437 nflags = flags;
6438 ret =
6439 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6440 cur->type);
6441 /*
6442 * The 7.3 Attribute derivation rule for groups is plugged there
6443 */
6444 xmlRelaxNGCheckGroupAttrs(ctxt, cur);
6445 } else if (cur->type == XML_RELAXNG_INTERLEAVE) {
6446 if (flags & XML_RELAXNG_IN_LIST) {
6447 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_INTERLEAVE,
6448 "Found forbidden pattern list//interleave\n",
6449 NULL, NULL);
6450 }
6451 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6452 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6453 "Found forbidden pattern data/except//interleave\n",
6454 NULL, NULL);
6455 }
6456 if (flags & XML_RELAXNG_IN_START) {
6457 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE,
6458 "Found forbidden pattern start//interleave\n",
6459 NULL, NULL);
6460 }
6461 if (flags & XML_RELAXNG_IN_ONEORMORE)
6462 nflags = flags | XML_RELAXNG_IN_OOMINTERLEAVE;
6463 else
6464 nflags = flags;
6465 ret =
6466 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6467 cur->type);
6468 } else if (cur->type == XML_RELAXNG_EXCEPT) {
6469 if ((cur->parent != NULL) &&
6470 (cur->parent->type == XML_RELAXNG_DATATYPE))
6471 nflags = flags | XML_RELAXNG_IN_DATAEXCEPT;
6472 else
6473 nflags = flags;
6474 ret =
6475 xmlRelaxNGCheckRules(ctxt, cur->content, nflags,
6476 cur->type);
6477 } else if (cur->type == XML_RELAXNG_DATATYPE) {
6478 if (flags & XML_RELAXNG_IN_START) {
6479 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_DATA,
6480 "Found forbidden pattern start//data\n", NULL,
6481 NULL);
6482 }
6483 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6484 ret = XML_RELAXNG_CONTENT_SIMPLE;
6485 } else if (cur->type == XML_RELAXNG_VALUE) {
6486 if (flags & XML_RELAXNG_IN_START) {
6487 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_VALUE,
6488 "Found forbidden pattern start//value\n", NULL,
6489 NULL);
6490 }
6491 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6492 ret = XML_RELAXNG_CONTENT_SIMPLE;
6493 } else if (cur->type == XML_RELAXNG_TEXT) {
6494 if (flags & XML_RELAXNG_IN_LIST) {
6495 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_LIST_TEXT,
6496 "Found forbidden pattern list//text\n", NULL,
6497 NULL);
6498 }
6499 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6500 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_TEXT,
6501 "Found forbidden pattern data/except//text\n",
6502 NULL, NULL);
6503 }
6504 if (flags & XML_RELAXNG_IN_START) {
6505 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_TEXT,
6506 "Found forbidden pattern start//text\n", NULL,
6507 NULL);
6508 }
6509 ret = XML_RELAXNG_CONTENT_COMPLEX;
6510 } else if (cur->type == XML_RELAXNG_EMPTY) {
6511 if (flags & XML_RELAXNG_IN_DATAEXCEPT) {
6512 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_DATA_EXCEPT_EMPTY,
6513 "Found forbidden pattern data/except//empty\n",
6514 NULL, NULL);
6515 }
6516 if (flags & XML_RELAXNG_IN_START) {
6517 xmlRngPErr(ctxt, cur->node, XML_RNGP_PAT_START_EMPTY,
6518 "Found forbidden pattern start//empty\n", NULL,
6519 NULL);
6520 }
6521 ret = XML_RELAXNG_CONTENT_EMPTY;
6522 } else if (cur->type == XML_RELAXNG_CHOICE) {
6523 xmlRelaxNGCheckChoiceDeterminism(ctxt, cur);
6524 ret =
6525 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6526 } else {
6527 ret =
6528 xmlRelaxNGCheckRules(ctxt, cur->content, flags, cur->type);
6529 }
6530 cur = cur->next;
6531 if (ptype == XML_RELAXNG_GROUP) {
6532 val = xmlRelaxNGGroupContentType(val, ret);
6533 } else if (ptype == XML_RELAXNG_INTERLEAVE) {
Daniel Veillard594e5df2009-09-07 14:58:47 +02006534 /*
6535 * TODO: scan complain that tmp is never used, seems on purpose
6536 * need double-checking
6537 */
Daniel Veillard4c004142003-10-07 11:33:24 +00006538 tmp = xmlRelaxNGGroupContentType(val, ret);
6539 if (tmp != XML_RELAXNG_CONTENT_ERROR)
6540 tmp = xmlRelaxNGMaxContentType(val, ret);
6541 } else if (ptype == XML_RELAXNG_CHOICE) {
6542 val = xmlRelaxNGMaxContentType(val, ret);
6543 } else if (ptype == XML_RELAXNG_LIST) {
6544 val = XML_RELAXNG_CONTENT_SIMPLE;
6545 } else if (ptype == XML_RELAXNG_EXCEPT) {
6546 if (ret == XML_RELAXNG_CONTENT_ERROR)
6547 val = XML_RELAXNG_CONTENT_ERROR;
6548 else
6549 val = XML_RELAXNG_CONTENT_SIMPLE;
6550 } else {
6551 val = xmlRelaxNGGroupContentType(val, ret);
6552 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00006553
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006554 }
Daniel Veillard4c004142003-10-07 11:33:24 +00006555 return (val);
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006556}
Daniel Veillard1c745ad2003-02-20 00:11:02 +00006557
6558/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006559 * xmlRelaxNGParseGrammar:
6560 * @ctxt: a Relax-NG parser context
6561 * @nodes: grammar children nodes
6562 *
6563 * parse a Relax-NG <grammar> node
6564 *
6565 * Returns the internal xmlRelaxNGGrammarPtr built or
6566 * NULL in case of error
6567 */
6568static xmlRelaxNGGrammarPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006569xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
6570{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006571 xmlRelaxNGGrammarPtr ret, tmp, old;
6572
Daniel Veillardc482e262003-02-26 14:48:48 +00006573#ifdef DEBUG_GRAMMAR
6574 xmlGenericError(xmlGenericErrorContext, "Parsing a new grammar\n");
6575#endif
6576
Daniel Veillard6eadf632003-01-23 18:29:16 +00006577 ret = xmlRelaxNGNewGrammar(ctxt);
6578 if (ret == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006579 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006580
6581 /*
6582 * Link the new grammar in the tree
6583 */
6584 ret->parent = ctxt->grammar;
6585 if (ctxt->grammar != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006586 tmp = ctxt->grammar->children;
6587 if (tmp == NULL) {
6588 ctxt->grammar->children = ret;
6589 } else {
6590 while (tmp->next != NULL)
6591 tmp = tmp->next;
6592 tmp->next = ret;
6593 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006594 }
6595
6596 old = ctxt->grammar;
6597 ctxt->grammar = ret;
6598 xmlRelaxNGParseGrammarContent(ctxt, nodes);
6599 ctxt->grammar = ret;
Daniel Veillard2df2de22003-02-17 23:34:33 +00006600 if (ctxt->grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006601 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
6602 "Failed to parse <grammar> content\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006603 } else if (ctxt->grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006604 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_NO_START,
6605 "Element <grammar> has no <start>\n", NULL, NULL);
Daniel Veillard2df2de22003-02-17 23:34:33 +00006606 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006607
6608 /*
Jan Pokornýacace882014-06-09 23:45:24 +02006609 * Apply 4.17 merging rules to defines and starts
Daniel Veillard6eadf632003-01-23 18:29:16 +00006610 */
6611 xmlRelaxNGCombineStart(ctxt, ret);
6612 if (ret->defs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006613 xmlHashScan(ret->defs, (xmlHashScanner) xmlRelaxNGCheckCombine,
6614 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006615 }
6616
6617 /*
6618 * link together defines and refs in this grammar
6619 */
6620 if (ret->refs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006621 xmlHashScan(ret->refs, (xmlHashScanner) xmlRelaxNGCheckReference,
6622 ctxt);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006623 }
Daniel Veillard952379b2003-03-17 15:37:12 +00006624
Daniel Veillard81c51e12009-08-14 18:52:10 +02006625
Daniel Veillard25a1ce92008-06-02 16:04:12 +00006626 /* @@@@ */
6627
Daniel Veillard6eadf632003-01-23 18:29:16 +00006628 ctxt->grammar = old;
Daniel Veillard4c004142003-10-07 11:33:24 +00006629 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006630}
6631
6632/**
6633 * xmlRelaxNGParseDocument:
6634 * @ctxt: a Relax-NG parser context
6635 * @node: the root node of the RelaxNG schema
6636 *
6637 * parse a Relax-NG definition resource and build an internal
6638 * xmlRelaxNG struture which can be used to validate instances.
6639 *
6640 * Returns the internal XML RelaxNG structure built or
6641 * NULL in case of error
6642 */
6643static xmlRelaxNGPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006644xmlRelaxNGParseDocument(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6645{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006646 xmlRelaxNGPtr schema = NULL;
Daniel Veillard276be4a2003-01-24 01:03:34 +00006647 const xmlChar *olddefine;
Daniel Veillarde431a272003-01-29 23:02:33 +00006648 xmlRelaxNGGrammarPtr old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006649
6650 if ((ctxt == NULL) || (node == NULL))
6651 return (NULL);
6652
6653 schema = xmlRelaxNGNewRelaxNG(ctxt);
6654 if (schema == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006655 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006656
Daniel Veillard276be4a2003-01-24 01:03:34 +00006657 olddefine = ctxt->define;
6658 ctxt->define = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006659 if (IS_RELAXNG(node, "grammar")) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006660 schema->topgrammar = xmlRelaxNGParseGrammar(ctxt, node->children);
Daniel Veillard42870f42014-07-26 21:04:54 +08006661 if (schema->topgrammar == NULL) {
6662 xmlRelaxNGFree(schema);
6663 return (NULL);
6664 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006665 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006666 xmlRelaxNGGrammarPtr tmp, ret;
Daniel Veillardc482e262003-02-26 14:48:48 +00006667
Daniel Veillard4c004142003-10-07 11:33:24 +00006668 schema->topgrammar = ret = xmlRelaxNGNewGrammar(ctxt);
6669 if (schema->topgrammar == NULL) {
Daniel Veillard42870f42014-07-26 21:04:54 +08006670 xmlRelaxNGFree(schema);
6671 return (NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00006672 }
6673 /*
6674 * Link the new grammar in the tree
6675 */
6676 ret->parent = ctxt->grammar;
6677 if (ctxt->grammar != NULL) {
6678 tmp = ctxt->grammar->children;
6679 if (tmp == NULL) {
6680 ctxt->grammar->children = ret;
6681 } else {
6682 while (tmp->next != NULL)
6683 tmp = tmp->next;
6684 tmp->next = ret;
6685 }
6686 }
6687 old = ctxt->grammar;
6688 ctxt->grammar = ret;
6689 xmlRelaxNGParseStart(ctxt, node);
6690 if (old != NULL)
6691 ctxt->grammar = old;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006692 }
Daniel Veillard276be4a2003-01-24 01:03:34 +00006693 ctxt->define = olddefine;
Daniel Veillardd4310742003-02-18 21:12:46 +00006694 if (schema->topgrammar->start != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006695 xmlRelaxNGCheckCycles(ctxt, schema->topgrammar->start, 0);
6696 if ((ctxt->flags & XML_RELAXNG_IN_EXTERNALREF) == 0) {
6697 xmlRelaxNGSimplify(ctxt, schema->topgrammar->start, NULL);
6698 while ((schema->topgrammar->start != NULL) &&
6699 (schema->topgrammar->start->type == XML_RELAXNG_NOOP) &&
6700 (schema->topgrammar->start->next != NULL))
6701 schema->topgrammar->start =
6702 schema->topgrammar->start->content;
6703 xmlRelaxNGCheckRules(ctxt, schema->topgrammar->start,
6704 XML_RELAXNG_IN_START, XML_RELAXNG_NOOP);
6705 }
Daniel Veillardd4310742003-02-18 21:12:46 +00006706 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00006707#ifdef DEBUG
6708 if (schema == NULL)
6709 xmlGenericError(xmlGenericErrorContext,
6710 "xmlRelaxNGParseDocument() failed\n");
6711#endif
6712
6713 return (schema);
6714}
6715
6716/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006717 * *
6718 * Reading RelaxNGs *
6719 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00006720 ************************************************************************/
6721
6722/**
6723 * xmlRelaxNGNewParserCtxt:
6724 * @URL: the location of the schema
6725 *
6726 * Create an XML RelaxNGs parse context for that file/resource expected
6727 * to contain an XML RelaxNGs file.
6728 *
6729 * Returns the parser context or NULL in case of error
6730 */
6731xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006732xmlRelaxNGNewParserCtxt(const char *URL)
6733{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006734 xmlRelaxNGParserCtxtPtr ret;
6735
6736 if (URL == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006737 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006738
Daniel Veillard4c004142003-10-07 11:33:24 +00006739 ret =
6740 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006741 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006742 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006743 return (NULL);
6744 }
6745 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard4c004142003-10-07 11:33:24 +00006746 ret->URL = xmlStrdup((const xmlChar *) URL);
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006747 ret->error = xmlGenericError;
6748 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006749 return (ret);
6750}
6751
6752/**
6753 * xmlRelaxNGNewMemParserCtxt:
6754 * @buffer: a pointer to a char array containing the schemas
6755 * @size: the size of the array
6756 *
6757 * Create an XML RelaxNGs parse context for that memory buffer expected
6758 * to contain an XML RelaxNGs file.
6759 *
6760 * Returns the parser context or NULL in case of error
6761 */
6762xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006763xmlRelaxNGNewMemParserCtxt(const char *buffer, int size)
6764{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006765 xmlRelaxNGParserCtxtPtr ret;
6766
6767 if ((buffer == NULL) || (size <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00006768 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006769
Daniel Veillard4c004142003-10-07 11:33:24 +00006770 ret =
6771 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard6eadf632003-01-23 18:29:16 +00006772 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006773 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00006774 return (NULL);
6775 }
6776 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6777 ret->buffer = buffer;
6778 ret->size = size;
Daniel Veillard1703c5f2003-02-10 14:28:44 +00006779 ret->error = xmlGenericError;
6780 ret->userData = xmlGenericErrorContext;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006781 return (ret);
6782}
6783
6784/**
Daniel Veillard33300b42003-04-17 09:09:19 +00006785 * xmlRelaxNGNewDocParserCtxt:
6786 * @doc: a preparsed document tree
6787 *
6788 * Create an XML RelaxNGs parser context for that document.
6789 * Note: since the process of compiling a RelaxNG schemas modifies the
6790 * document, the @doc parameter is duplicated internally.
6791 *
6792 * Returns the parser context or NULL in case of error
6793 */
6794xmlRelaxNGParserCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00006795xmlRelaxNGNewDocParserCtxt(xmlDocPtr doc)
6796{
Daniel Veillard33300b42003-04-17 09:09:19 +00006797 xmlRelaxNGParserCtxtPtr ret;
6798 xmlDocPtr copy;
6799
6800 if (doc == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006801 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006802 copy = xmlCopyDoc(doc, 1);
6803 if (copy == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006804 return (NULL);
Daniel Veillard33300b42003-04-17 09:09:19 +00006805
Daniel Veillard4c004142003-10-07 11:33:24 +00006806 ret =
6807 (xmlRelaxNGParserCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGParserCtxt));
Daniel Veillard33300b42003-04-17 09:09:19 +00006808 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006809 xmlRngPErrMemory(NULL, "building parser\n");
Daniel Veillard33300b42003-04-17 09:09:19 +00006810 return (NULL);
6811 }
6812 memset(ret, 0, sizeof(xmlRelaxNGParserCtxt));
6813 ret->document = copy;
Daniel Veillard42595322004-11-08 10:52:06 +00006814 ret->freedoc = 1;
Daniel Veillard33300b42003-04-17 09:09:19 +00006815 ret->userData = xmlGenericErrorContext;
6816 return (ret);
6817}
6818
6819/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00006820 * xmlRelaxNGFreeParserCtxt:
6821 * @ctxt: the schema parser context
6822 *
6823 * Free the resources associated to the schema parser context
6824 */
6825void
Daniel Veillard4c004142003-10-07 11:33:24 +00006826xmlRelaxNGFreeParserCtxt(xmlRelaxNGParserCtxtPtr ctxt)
6827{
Daniel Veillard6eadf632003-01-23 18:29:16 +00006828 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006829 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00006830 if (ctxt->URL != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006831 xmlFree(ctxt->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006832 if (ctxt->doc != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006833 xmlRelaxNGFreeDocument(ctxt->doc);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00006834 if (ctxt->interleaves != NULL)
6835 xmlHashFree(ctxt->interleaves, NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006836 if (ctxt->documents != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006837 xmlRelaxNGFreeDocumentList(ctxt->documents);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00006838 if (ctxt->includes != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006839 xmlRelaxNGFreeIncludeList(ctxt->includes);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006840 if (ctxt->docTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006841 xmlFree(ctxt->docTab);
Daniel Veillarda9d912d2003-02-01 17:43:10 +00006842 if (ctxt->incTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00006843 xmlFree(ctxt->incTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006844 if (ctxt->defTab != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006845 int i;
Daniel Veillard419a7682003-02-03 23:22:49 +00006846
Daniel Veillard4c004142003-10-07 11:33:24 +00006847 for (i = 0; i < ctxt->defNr; i++)
6848 xmlRelaxNGFreeDefine(ctxt->defTab[i]);
6849 xmlFree(ctxt->defTab);
Daniel Veillard419a7682003-02-03 23:22:49 +00006850 }
Daniel Veillard42595322004-11-08 10:52:06 +00006851 if ((ctxt->document != NULL) && (ctxt->freedoc))
6852 xmlFreeDoc(ctxt->document);
Daniel Veillard6eadf632003-01-23 18:29:16 +00006853 xmlFree(ctxt);
6854}
6855
Daniel Veillard6eadf632003-01-23 18:29:16 +00006856/**
Daniel Veillardd2298792003-02-14 16:54:11 +00006857 * xmlRelaxNGNormExtSpace:
6858 * @value: a value
6859 *
6860 * Removes the leading and ending spaces of the value
6861 * The string is modified "in situ"
6862 */
6863static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006864xmlRelaxNGNormExtSpace(xmlChar * value)
6865{
Daniel Veillardd2298792003-02-14 16:54:11 +00006866 xmlChar *start = value;
6867 xmlChar *cur = value;
Daniel Veillardd2298792003-02-14 16:54:11 +00006868
Daniel Veillard4c004142003-10-07 11:33:24 +00006869 if (value == NULL)
6870 return;
6871
William M. Brack76e95df2003-10-18 16:20:14 +00006872 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006873 cur++;
Daniel Veillardd2298792003-02-14 16:54:11 +00006874 if (cur == start) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006875 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006876 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006877 cur++;
6878 if (*cur == 0)
6879 return;
6880 start = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00006881 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006882 cur++;
6883 if (*cur == 0) {
6884 *start = 0;
6885 return;
6886 }
6887 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006888 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00006889 do {
William M. Brack76e95df2003-10-18 16:20:14 +00006890 while ((*cur != 0) && (!IS_BLANK_CH(*cur)))
Daniel Veillard4c004142003-10-07 11:33:24 +00006891 *start++ = *cur++;
6892 if (*cur == 0) {
6893 *start = 0;
6894 return;
6895 }
6896 /* don't try to normalize the inner spaces */
William M. Brack76e95df2003-10-18 16:20:14 +00006897 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00006898 cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006899 if (*cur == 0) {
6900 *start = 0;
6901 return;
6902 }
Daniel Veillard4aede2e2003-10-17 12:43:59 +00006903 *start++ = *cur++;
Daniel Veillard4c004142003-10-07 11:33:24 +00006904 } while (1);
Daniel Veillardd2298792003-02-14 16:54:11 +00006905 }
6906}
6907
6908/**
Daniel Veillard8de5c0b2004-10-07 13:14:19 +00006909 * xmlRelaxNGCleanupAttributes:
Daniel Veillardd2298792003-02-14 16:54:11 +00006910 * @ctxt: a Relax-NG parser context
6911 * @node: a Relax-NG node
6912 *
6913 * Check all the attributes on the given node
6914 */
6915static void
Daniel Veillard4c004142003-10-07 11:33:24 +00006916xmlRelaxNGCleanupAttributes(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node)
6917{
Daniel Veillardd2298792003-02-14 16:54:11 +00006918 xmlAttrPtr cur, next;
6919
6920 cur = node->properties;
6921 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00006922 next = cur->next;
6923 if ((cur->ns == NULL) ||
6924 (xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
6925 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
6926 if ((!xmlStrEqual(node->name, BAD_CAST "element")) &&
6927 (!xmlStrEqual(node->name, BAD_CAST "attribute")) &&
6928 (!xmlStrEqual(node->name, BAD_CAST "ref")) &&
6929 (!xmlStrEqual(node->name, BAD_CAST "parentRef")) &&
6930 (!xmlStrEqual(node->name, BAD_CAST "param")) &&
6931 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6932 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6933 "Attribute %s is not allowed on %s\n",
6934 cur->name, node->name);
6935 }
6936 } else if (xmlStrEqual(cur->name, BAD_CAST "type")) {
6937 if ((!xmlStrEqual(node->name, BAD_CAST "value")) &&
6938 (!xmlStrEqual(node->name, BAD_CAST "data"))) {
6939 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6940 "Attribute %s is not allowed on %s\n",
6941 cur->name, node->name);
6942 }
6943 } else if (xmlStrEqual(cur->name, BAD_CAST "href")) {
6944 if ((!xmlStrEqual(node->name, BAD_CAST "externalRef")) &&
6945 (!xmlStrEqual(node->name, BAD_CAST "include"))) {
6946 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6947 "Attribute %s is not allowed on %s\n",
6948 cur->name, node->name);
6949 }
6950 } else if (xmlStrEqual(cur->name, BAD_CAST "combine")) {
6951 if ((!xmlStrEqual(node->name, BAD_CAST "start")) &&
6952 (!xmlStrEqual(node->name, BAD_CAST "define"))) {
6953 xmlRngPErr(ctxt, node, XML_RNGP_FORBIDDEN_ATTRIBUTE,
6954 "Attribute %s is not allowed on %s\n",
6955 cur->name, node->name);
6956 }
6957 } else if (xmlStrEqual(cur->name, BAD_CAST "datatypeLibrary")) {
6958 xmlChar *val;
6959 xmlURIPtr uri;
Daniel Veillardd2298792003-02-14 16:54:11 +00006960
Daniel Veillard4c004142003-10-07 11:33:24 +00006961 val = xmlNodeListGetString(node->doc, cur->children, 1);
6962 if (val != NULL) {
6963 if (val[0] != 0) {
6964 uri = xmlParseURI((const char *) val);
6965 if (uri == NULL) {
6966 xmlRngPErr(ctxt, node, XML_RNGP_INVALID_URI,
6967 "Attribute %s contains invalid URI %s\n",
6968 cur->name, val);
6969 } else {
6970 if (uri->scheme == NULL) {
6971 xmlRngPErr(ctxt, node, XML_RNGP_URI_NOT_ABSOLUTE,
6972 "Attribute %s URI %s is not absolute\n",
6973 cur->name, val);
6974 }
6975 if (uri->fragment != NULL) {
6976 xmlRngPErr(ctxt, node, XML_RNGP_URI_FRAGMENT,
6977 "Attribute %s URI %s has a fragment ID\n",
6978 cur->name, val);
6979 }
6980 xmlFreeURI(uri);
6981 }
6982 }
6983 xmlFree(val);
6984 }
6985 } else if (!xmlStrEqual(cur->name, BAD_CAST "ns")) {
6986 xmlRngPErr(ctxt, node, XML_RNGP_UNKNOWN_ATTRIBUTE,
6987 "Unknown attribute %s on %s\n", cur->name,
6988 node->name);
6989 }
6990 }
6991 cur = next;
Daniel Veillardd2298792003-02-14 16:54:11 +00006992 }
6993}
6994
6995/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00006996 * xmlRelaxNGCleanupTree:
Daniel Veillardd41f4f42003-01-29 21:07:52 +00006997 * @ctxt: a Relax-NG parser context
Daniel Veillardc5312d72003-02-21 17:14:10 +00006998 * @root: an xmlNodePtr subtree
Daniel Veillard6eadf632003-01-23 18:29:16 +00006999 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00007000 * Cleanup the subtree from unwanted nodes for parsing, resolve
7001 * Include and externalRef lookups.
Daniel Veillard6eadf632003-01-23 18:29:16 +00007002 */
Daniel Veillardc5312d72003-02-21 17:14:10 +00007003static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007004xmlRelaxNGCleanupTree(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr root)
7005{
Daniel Veillardc5312d72003-02-21 17:14:10 +00007006 xmlNodePtr cur, delete;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007007
Daniel Veillard6eadf632003-01-23 18:29:16 +00007008 delete = NULL;
7009 cur = root;
7010 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007011 if (delete != NULL) {
7012 xmlUnlinkNode(delete);
7013 xmlFreeNode(delete);
7014 delete = NULL;
7015 }
7016 if (cur->type == XML_ELEMENT_NODE) {
7017 /*
7018 * Simplification 4.1. Annotations
7019 */
7020 if ((cur->ns == NULL) ||
7021 (!xmlStrEqual(cur->ns->href, xmlRelaxNGNs))) {
7022 if ((cur->parent != NULL) &&
7023 (cur->parent->type == XML_ELEMENT_NODE) &&
7024 ((xmlStrEqual(cur->parent->name, BAD_CAST "name")) ||
7025 (xmlStrEqual(cur->parent->name, BAD_CAST "value")) ||
7026 (xmlStrEqual(cur->parent->name, BAD_CAST "param")))) {
7027 xmlRngPErr(ctxt, cur, XML_RNGP_FOREIGN_ELEMENT,
7028 "element %s doesn't allow foreign elements\n",
7029 cur->parent->name, NULL);
7030 }
7031 delete = cur;
7032 goto skip_children;
7033 } else {
7034 xmlRelaxNGCleanupAttributes(ctxt, cur);
7035 if (xmlStrEqual(cur->name, BAD_CAST "externalRef")) {
7036 xmlChar *href, *ns, *base, *URL;
7037 xmlRelaxNGDocumentPtr docu;
7038 xmlNodePtr tmp;
Daniel Veillard6dc91962004-03-22 19:10:02 +00007039 xmlURIPtr uri;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007040
Daniel Veillard4c004142003-10-07 11:33:24 +00007041 ns = xmlGetProp(cur, BAD_CAST "ns");
7042 if (ns == NULL) {
7043 tmp = cur->parent;
7044 while ((tmp != NULL) &&
7045 (tmp->type == XML_ELEMENT_NODE)) {
7046 ns = xmlGetProp(tmp, BAD_CAST "ns");
7047 if (ns != NULL)
7048 break;
7049 tmp = tmp->parent;
7050 }
7051 }
7052 href = xmlGetProp(cur, BAD_CAST "href");
7053 if (href == NULL) {
7054 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
7055 "xmlRelaxNGParse: externalRef has no href attribute\n",
7056 NULL, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007057 if (ns != NULL)
7058 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007059 delete = cur;
7060 goto skip_children;
7061 }
Daniel Veillard6dc91962004-03-22 19:10:02 +00007062 uri = xmlParseURI((const char *) href);
7063 if (uri == NULL) {
7064 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7065 "Incorrect 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 if (href != NULL)
7070 xmlFree(href);
7071 delete = cur;
7072 goto skip_children;
7073 }
7074 if (uri->fragment != NULL) {
7075 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7076 "Fragment forbidden in URI for externalRef %s\n",
7077 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007078 if (ns != NULL)
7079 xmlFree(ns);
Daniel Veillard6dc91962004-03-22 19:10:02 +00007080 xmlFreeURI(uri);
7081 if (href != NULL)
7082 xmlFree(href);
7083 delete = cur;
7084 goto skip_children;
7085 }
7086 xmlFreeURI(uri);
Daniel Veillard4c004142003-10-07 11:33:24 +00007087 base = xmlNodeGetBase(cur->doc, cur);
7088 URL = xmlBuildURI(href, base);
7089 if (URL == NULL) {
7090 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7091 "Failed to compute URL for externalRef %s\n",
7092 href, NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007093 if (ns != NULL)
7094 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007095 if (href != NULL)
7096 xmlFree(href);
7097 if (base != NULL)
7098 xmlFree(base);
7099 delete = cur;
7100 goto skip_children;
7101 }
7102 if (href != NULL)
7103 xmlFree(href);
7104 if (base != NULL)
7105 xmlFree(base);
7106 docu = xmlRelaxNGLoadExternalRef(ctxt, URL, ns);
7107 if (docu == NULL) {
7108 xmlRngPErr(ctxt, cur, XML_RNGP_EXTERNAL_REF_FAILURE,
7109 "Failed to load externalRef %s\n", URL,
7110 NULL);
Daniel Veillardf2e066a2005-06-30 13:04:44 +00007111 if (ns != NULL)
7112 xmlFree(ns);
Daniel Veillard4c004142003-10-07 11:33:24 +00007113 xmlFree(URL);
7114 delete = cur;
7115 goto skip_children;
7116 }
7117 if (ns != NULL)
7118 xmlFree(ns);
7119 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00007120 cur->psvi = docu;
Daniel Veillard4c004142003-10-07 11:33:24 +00007121 } else if (xmlStrEqual(cur->name, BAD_CAST "include")) {
7122 xmlChar *href, *ns, *base, *URL;
7123 xmlRelaxNGIncludePtr incl;
7124 xmlNodePtr tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007125
Daniel Veillard4c004142003-10-07 11:33:24 +00007126 href = xmlGetProp(cur, BAD_CAST "href");
7127 if (href == NULL) {
7128 xmlRngPErr(ctxt, cur, XML_RNGP_MISSING_HREF,
7129 "xmlRelaxNGParse: include has no href attribute\n",
7130 NULL, NULL);
7131 delete = cur;
7132 goto skip_children;
7133 }
7134 base = xmlNodeGetBase(cur->doc, cur);
7135 URL = xmlBuildURI(href, base);
7136 if (URL == NULL) {
7137 xmlRngPErr(ctxt, cur, XML_RNGP_HREF_ERROR,
7138 "Failed to compute URL for include %s\n",
7139 href, NULL);
7140 if (href != NULL)
7141 xmlFree(href);
7142 if (base != NULL)
7143 xmlFree(base);
7144 delete = cur;
7145 goto skip_children;
7146 }
7147 if (href != NULL)
7148 xmlFree(href);
7149 if (base != NULL)
7150 xmlFree(base);
7151 ns = xmlGetProp(cur, BAD_CAST "ns");
7152 if (ns == NULL) {
7153 tmp = cur->parent;
7154 while ((tmp != NULL) &&
7155 (tmp->type == XML_ELEMENT_NODE)) {
7156 ns = xmlGetProp(tmp, BAD_CAST "ns");
7157 if (ns != NULL)
7158 break;
7159 tmp = tmp->parent;
7160 }
7161 }
7162 incl = xmlRelaxNGLoadInclude(ctxt, URL, cur, ns);
7163 if (ns != NULL)
7164 xmlFree(ns);
7165 if (incl == NULL) {
7166 xmlRngPErr(ctxt, cur, XML_RNGP_INCLUDE_FAILURE,
7167 "Failed to load include %s\n", URL,
7168 NULL);
7169 xmlFree(URL);
7170 delete = cur;
7171 goto skip_children;
7172 }
7173 xmlFree(URL);
Daniel Veillard807daf82004-02-22 22:13:27 +00007174 cur->psvi = incl;
Daniel Veillard4c004142003-10-07 11:33:24 +00007175 } else if ((xmlStrEqual(cur->name, BAD_CAST "element")) ||
7176 (xmlStrEqual(cur->name, BAD_CAST "attribute")))
7177 {
7178 xmlChar *name, *ns;
7179 xmlNodePtr text = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007180
Daniel Veillard4c004142003-10-07 11:33:24 +00007181 /*
7182 * Simplification 4.8. name attribute of element
7183 * and attribute elements
7184 */
7185 name = xmlGetProp(cur, BAD_CAST "name");
7186 if (name != NULL) {
7187 if (cur->children == NULL) {
7188 text =
7189 xmlNewChild(cur, cur->ns, BAD_CAST "name",
7190 name);
7191 } else {
7192 xmlNodePtr node;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007193
Daniel Veillard03a53c32004-10-26 16:06:51 +00007194 node = xmlNewDocNode(cur->doc, cur->ns,
7195 BAD_CAST "name", NULL);
Daniel Veillard4c004142003-10-07 11:33:24 +00007196 if (node != NULL) {
7197 xmlAddPrevSibling(cur->children, node);
7198 text = xmlNewText(name);
7199 xmlAddChild(node, text);
7200 text = node;
7201 }
7202 }
7203 if (text == NULL) {
7204 xmlRngPErr(ctxt, cur, XML_RNGP_CREATE_FAILURE,
7205 "Failed to create a name %s element\n",
7206 name, NULL);
7207 }
7208 xmlUnsetProp(cur, BAD_CAST "name");
7209 xmlFree(name);
7210 ns = xmlGetProp(cur, BAD_CAST "ns");
7211 if (ns != NULL) {
7212 if (text != NULL) {
7213 xmlSetProp(text, BAD_CAST "ns", ns);
7214 /* xmlUnsetProp(cur, BAD_CAST "ns"); */
7215 }
7216 xmlFree(ns);
7217 } else if (xmlStrEqual(cur->name,
7218 BAD_CAST "attribute")) {
7219 xmlSetProp(text, BAD_CAST "ns", BAD_CAST "");
7220 }
7221 }
7222 } else if ((xmlStrEqual(cur->name, BAD_CAST "name")) ||
7223 (xmlStrEqual(cur->name, BAD_CAST "nsName")) ||
7224 (xmlStrEqual(cur->name, BAD_CAST "value"))) {
7225 /*
7226 * Simplification 4.8. name attribute of element
7227 * and attribute elements
7228 */
7229 if (xmlHasProp(cur, BAD_CAST "ns") == NULL) {
7230 xmlNodePtr node;
7231 xmlChar *ns = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007232
Daniel Veillard4c004142003-10-07 11:33:24 +00007233 node = cur->parent;
7234 while ((node != NULL) &&
7235 (node->type == XML_ELEMENT_NODE)) {
7236 ns = xmlGetProp(node, BAD_CAST "ns");
7237 if (ns != NULL) {
7238 break;
7239 }
7240 node = node->parent;
7241 }
7242 if (ns == NULL) {
7243 xmlSetProp(cur, BAD_CAST "ns", BAD_CAST "");
7244 } else {
7245 xmlSetProp(cur, BAD_CAST "ns", ns);
7246 xmlFree(ns);
7247 }
7248 }
7249 if (xmlStrEqual(cur->name, BAD_CAST "name")) {
7250 xmlChar *name, *local, *prefix;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007251
Daniel Veillard4c004142003-10-07 11:33:24 +00007252 /*
7253 * Simplification: 4.10. QNames
7254 */
7255 name = xmlNodeGetContent(cur);
7256 if (name != NULL) {
7257 local = xmlSplitQName2(name, &prefix);
7258 if (local != NULL) {
7259 xmlNsPtr ns;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007260
Daniel Veillard4c004142003-10-07 11:33:24 +00007261 ns = xmlSearchNs(cur->doc, cur, prefix);
7262 if (ns == NULL) {
7263 xmlRngPErr(ctxt, cur,
7264 XML_RNGP_PREFIX_UNDEFINED,
7265 "xmlRelaxNGParse: no namespace for prefix %s\n",
7266 prefix, NULL);
7267 } else {
7268 xmlSetProp(cur, BAD_CAST "ns",
7269 ns->href);
7270 xmlNodeSetContent(cur, local);
7271 }
7272 xmlFree(local);
7273 xmlFree(prefix);
7274 }
7275 xmlFree(name);
7276 }
7277 }
7278 /*
7279 * 4.16
7280 */
7281 if (xmlStrEqual(cur->name, BAD_CAST "nsName")) {
7282 if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7283 xmlRngPErr(ctxt, cur,
7284 XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME,
7285 "Found nsName/except//nsName forbidden construct\n",
7286 NULL, NULL);
7287 }
7288 }
7289 } else if ((xmlStrEqual(cur->name, BAD_CAST "except")) &&
7290 (cur != root)) {
7291 int oldflags = ctxt->flags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007292
Daniel Veillard4c004142003-10-07 11:33:24 +00007293 /*
7294 * 4.16
7295 */
7296 if ((cur->parent != NULL) &&
7297 (xmlStrEqual
7298 (cur->parent->name, BAD_CAST "anyName"))) {
7299 ctxt->flags |= XML_RELAXNG_IN_ANYEXCEPT;
7300 xmlRelaxNGCleanupTree(ctxt, cur);
7301 ctxt->flags = oldflags;
7302 goto skip_children;
7303 } else if ((cur->parent != NULL) &&
7304 (xmlStrEqual
7305 (cur->parent->name, BAD_CAST "nsName"))) {
7306 ctxt->flags |= XML_RELAXNG_IN_NSEXCEPT;
7307 xmlRelaxNGCleanupTree(ctxt, cur);
7308 ctxt->flags = oldflags;
7309 goto skip_children;
7310 }
7311 } else if (xmlStrEqual(cur->name, BAD_CAST "anyName")) {
7312 /*
7313 * 4.16
7314 */
7315 if (ctxt->flags & XML_RELAXNG_IN_ANYEXCEPT) {
7316 xmlRngPErr(ctxt, cur,
7317 XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME,
7318 "Found anyName/except//anyName forbidden construct\n",
7319 NULL, NULL);
7320 } else if (ctxt->flags & XML_RELAXNG_IN_NSEXCEPT) {
7321 xmlRngPErr(ctxt, cur,
7322 XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME,
7323 "Found nsName/except//anyName forbidden construct\n",
7324 NULL, NULL);
7325 }
7326 }
7327 /*
Jan Pokornýacace882014-06-09 23:45:24 +02007328 * This is not an else since "include" is transformed
Daniel Veillard4c004142003-10-07 11:33:24 +00007329 * into a div
7330 */
7331 if (xmlStrEqual(cur->name, BAD_CAST "div")) {
7332 xmlChar *ns;
7333 xmlNodePtr child, ins, tmp;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007334
Daniel Veillard4c004142003-10-07 11:33:24 +00007335 /*
7336 * implements rule 4.11
7337 */
Daniel Veillard6eadf632003-01-23 18:29:16 +00007338
Daniel Veillard4c004142003-10-07 11:33:24 +00007339 ns = xmlGetProp(cur, BAD_CAST "ns");
7340
7341 child = cur->children;
7342 ins = cur;
7343 while (child != NULL) {
7344 if (ns != NULL) {
7345 if (!xmlHasProp(child, BAD_CAST "ns")) {
7346 xmlSetProp(child, BAD_CAST "ns", ns);
7347 }
7348 }
7349 tmp = child->next;
7350 xmlUnlinkNode(child);
7351 ins = xmlAddNextSibling(ins, child);
7352 child = tmp;
7353 }
7354 if (ns != NULL)
7355 xmlFree(ns);
William M. Brack8eabb052004-06-07 14:15:54 +00007356 /*
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007357 * Since we are about to delete cur, if its nsDef is non-NULL we
William M. Brack8eabb052004-06-07 14:15:54 +00007358 * need to preserve it (it contains the ns definitions for the
7359 * children we just moved). We'll just stick it on to the end
7360 * of cur->parent's list, since it's never going to be re-serialized
7361 * (bug 143738).
7362 */
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007363 if ((cur->nsDef != NULL) && (cur->parent != NULL)) {
William M. Brack8eabb052004-06-07 14:15:54 +00007364 xmlNsPtr parDef = (xmlNsPtr)&cur->parent->nsDef;
7365 while (parDef->next != NULL)
7366 parDef = parDef->next;
7367 parDef->next = cur->nsDef;
7368 cur->nsDef = NULL;
7369 }
Daniel Veillard4c004142003-10-07 11:33:24 +00007370 delete = cur;
7371 goto skip_children;
7372 }
7373 }
7374 }
7375 /*
7376 * Simplification 4.2 whitespaces
7377 */
7378 else if ((cur->type == XML_TEXT_NODE) ||
7379 (cur->type == XML_CDATA_SECTION_NODE)) {
7380 if (IS_BLANK_NODE(cur)) {
Gaurav Gupta54c4b1a2014-07-14 16:14:44 +08007381 if ((cur->parent != NULL) &&
7382 (cur->parent->type == XML_ELEMENT_NODE)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007383 if ((!xmlStrEqual(cur->parent->name, BAD_CAST "value"))
7384 &&
7385 (!xmlStrEqual
7386 (cur->parent->name, BAD_CAST "param")))
7387 delete = cur;
7388 } else {
7389 delete = cur;
7390 goto skip_children;
7391 }
7392 }
7393 } else {
7394 delete = cur;
7395 goto skip_children;
7396 }
7397
7398 /*
7399 * Skip to next node
7400 */
7401 if (cur->children != NULL) {
7402 if ((cur->children->type != XML_ENTITY_DECL) &&
7403 (cur->children->type != XML_ENTITY_REF_NODE) &&
7404 (cur->children->type != XML_ENTITY_NODE)) {
7405 cur = cur->children;
7406 continue;
7407 }
7408 }
7409 skip_children:
7410 if (cur->next != NULL) {
7411 cur = cur->next;
7412 continue;
7413 }
7414
7415 do {
7416 cur = cur->parent;
7417 if (cur == NULL)
7418 break;
7419 if (cur == root) {
7420 cur = NULL;
7421 break;
7422 }
7423 if (cur->next != NULL) {
7424 cur = cur->next;
7425 break;
7426 }
7427 } while (cur != NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007428 }
7429 if (delete != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007430 xmlUnlinkNode(delete);
7431 xmlFreeNode(delete);
7432 delete = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007433 }
Daniel Veillardc5312d72003-02-21 17:14:10 +00007434}
Daniel Veillard6eadf632003-01-23 18:29:16 +00007435
Daniel Veillardc5312d72003-02-21 17:14:10 +00007436/**
7437 * xmlRelaxNGCleanupDoc:
7438 * @ctxt: a Relax-NG parser context
7439 * @doc: an xmldocPtr document pointer
7440 *
7441 * Cleanup the document from unwanted nodes for parsing, resolve
7442 * Include and externalRef lookups.
7443 *
7444 * Returns the cleaned up document or NULL in case of error
7445 */
7446static xmlDocPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00007447xmlRelaxNGCleanupDoc(xmlRelaxNGParserCtxtPtr ctxt, xmlDocPtr doc)
7448{
Daniel Veillardc5312d72003-02-21 17:14:10 +00007449 xmlNodePtr root;
7450
7451 /*
7452 * Extract the root
7453 */
7454 root = xmlDocGetRootElement(doc);
7455 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007456 xmlRngPErr(ctxt, (xmlNodePtr) doc, XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
7457 ctxt->URL, NULL);
Daniel Veillardc5312d72003-02-21 17:14:10 +00007458 return (NULL);
7459 }
7460 xmlRelaxNGCleanupTree(ctxt, root);
Daniel Veillard4c004142003-10-07 11:33:24 +00007461 return (doc);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007462}
7463
7464/**
7465 * xmlRelaxNGParse:
7466 * @ctxt: a Relax-NG parser context
7467 *
7468 * parse a schema definition resource and build an internal
7469 * XML Shema struture which can be used to validate instances.
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007470 *
7471 * Returns the internal XML RelaxNG structure built from the resource or
7472 * NULL in case of error
7473 */
7474xmlRelaxNGPtr
7475xmlRelaxNGParse(xmlRelaxNGParserCtxtPtr ctxt)
7476{
7477 xmlRelaxNGPtr ret = NULL;
7478 xmlDocPtr doc;
7479 xmlNodePtr root;
7480
7481 xmlRelaxNGInitTypes();
7482
7483 if (ctxt == NULL)
7484 return (NULL);
7485
7486 /*
7487 * First step is to parse the input document into an DOM/Infoset
7488 */
7489 if (ctxt->URL != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007490 doc = xmlReadFile((const char *) ctxt->URL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007491 if (doc == NULL) {
7492 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7493 "xmlRelaxNGParse: could not load %s\n", ctxt->URL,
7494 NULL);
7495 return (NULL);
7496 }
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007497 } else if (ctxt->buffer != NULL) {
Daniel Veillard87247e82004-01-13 20:42:02 +00007498 doc = xmlReadMemory(ctxt->buffer, ctxt->size,NULL,NULL,0);
Daniel Veillard4c004142003-10-07 11:33:24 +00007499 if (doc == NULL) {
7500 xmlRngPErr(ctxt, NULL, XML_RNGP_PARSE_ERROR,
7501 "xmlRelaxNGParse: could not parse schemas\n", NULL,
7502 NULL);
7503 return (NULL);
7504 }
7505 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7506 ctxt->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
Daniel Veillard33300b42003-04-17 09:09:19 +00007507 } else if (ctxt->document != NULL) {
7508 doc = ctxt->document;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007509 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007510 xmlRngPErr(ctxt, NULL, XML_RNGP_EMPTY,
7511 "xmlRelaxNGParse: nothing to parse\n", NULL, NULL);
7512 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007513 }
7514 ctxt->document = doc;
7515
7516 /*
7517 * Some preprocessing of the document content
7518 */
7519 doc = xmlRelaxNGCleanupDoc(ctxt, doc);
7520 if (doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007521 xmlFreeDoc(ctxt->document);
7522 ctxt->document = NULL;
7523 return (NULL);
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007524 }
7525
Daniel Veillard6eadf632003-01-23 18:29:16 +00007526 /*
7527 * Then do the parsing for good
7528 */
7529 root = xmlDocGetRootElement(doc);
7530 if (root == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007531 xmlRngPErr(ctxt, (xmlNodePtr) doc,
7532 XML_RNGP_EMPTY, "xmlRelaxNGParse: %s is empty\n",
William M. Brack700f9872006-05-06 03:16:22 +00007533 (ctxt->URL ? ctxt->URL : BAD_CAST "schemas"), NULL);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007534
Daniel Veillard3f845a92006-04-13 07:33:44 +00007535 xmlFreeDoc(ctxt->document);
7536 ctxt->document = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007537 return (NULL);
7538 }
7539 ret = xmlRelaxNGParseDocument(ctxt, root);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007540 if (ret == NULL) {
Daniel Veillard3f845a92006-04-13 07:33:44 +00007541 xmlFreeDoc(ctxt->document);
7542 ctxt->document = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007543 return (NULL);
Daniel Veillard3ebc7d42003-02-24 17:17:58 +00007544 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00007545
7546 /*
Daniel Veillardfd573f12003-03-16 17:52:32 +00007547 * Check the ref/defines links
7548 */
7549 /*
7550 * try to preprocess interleaves
7551 */
7552 if (ctxt->interleaves != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007553 xmlHashScan(ctxt->interleaves,
7554 (xmlHashScanner) xmlRelaxNGComputeInterleaves, ctxt);
Daniel Veillardfd573f12003-03-16 17:52:32 +00007555 }
7556
7557 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007558 * if there was a parsing error return NULL
7559 */
7560 if (ctxt->nbErrors > 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007561 xmlRelaxNGFree(ret);
7562 ctxt->document = NULL;
7563 xmlFreeDoc(doc);
7564 return (NULL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007565 }
7566
7567 /*
Daniel Veillard52b48c72003-04-13 19:53:42 +00007568 * try to compile (parts of) the schemas
7569 */
Daniel Veillardce192eb2003-04-16 15:58:05 +00007570 if ((ret->topgrammar != NULL) && (ret->topgrammar->start != NULL)) {
7571 if (ret->topgrammar->start->type != XML_RELAXNG_START) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007572 xmlRelaxNGDefinePtr def;
Daniel Veillardf4e55762003-04-15 23:32:22 +00007573
Daniel Veillard4c004142003-10-07 11:33:24 +00007574 def = xmlRelaxNGNewDefine(ctxt, NULL);
7575 if (def != NULL) {
7576 def->type = XML_RELAXNG_START;
7577 def->content = ret->topgrammar->start;
7578 ret->topgrammar->start = def;
7579 }
7580 }
7581 xmlRelaxNGTryCompile(ctxt, ret->topgrammar->start);
Daniel Veillardf4e55762003-04-15 23:32:22 +00007582 }
Daniel Veillard52b48c72003-04-13 19:53:42 +00007583
7584 /*
Daniel Veillard6eadf632003-01-23 18:29:16 +00007585 * Transfer the pointer for cleanup at the schema level.
7586 */
7587 ret->doc = doc;
Daniel Veillardd41f4f42003-01-29 21:07:52 +00007588 ctxt->document = NULL;
7589 ret->documents = ctxt->documents;
7590 ctxt->documents = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00007591
Daniel Veillarde2a5a082003-02-02 14:35:17 +00007592 ret->includes = ctxt->includes;
7593 ctxt->includes = NULL;
Daniel Veillard419a7682003-02-03 23:22:49 +00007594 ret->defNr = ctxt->defNr;
7595 ret->defTab = ctxt->defTab;
7596 ctxt->defTab = NULL;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00007597 if (ctxt->idref == 1)
Daniel Veillard4c004142003-10-07 11:33:24 +00007598 ret->idref = 1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007599
7600 return (ret);
7601}
Daniel Veillard4c004142003-10-07 11:33:24 +00007602
Daniel Veillard6eadf632003-01-23 18:29:16 +00007603/**
7604 * xmlRelaxNGSetParserErrors:
7605 * @ctxt: a Relax-NG validation context
7606 * @err: the error callback
7607 * @warn: the warning callback
7608 * @ctx: contextual data for the callbacks
7609 *
7610 * Set the callback functions used to handle errors for a validation context
7611 */
7612void
7613xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007614 xmlRelaxNGValidityErrorFunc err,
7615 xmlRelaxNGValidityWarningFunc warn, void *ctx)
7616{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007617 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007618 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007619 ctxt->error = err;
7620 ctxt->warning = warn;
Daniel Veillardb30ca312005-09-04 13:50:03 +00007621 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007622 ctxt->userData = ctx;
7623}
Daniel Veillard409a8142003-07-18 15:16:57 +00007624
7625/**
7626 * xmlRelaxNGGetParserErrors:
7627 * @ctxt: a Relax-NG validation context
7628 * @err: the error callback result
7629 * @warn: the warning callback result
7630 * @ctx: contextual data for the callbacks result
7631 *
7632 * Get the callback information used to handle errors for a validation context
7633 *
7634 * Returns -1 in case of failure, 0 otherwise.
7635 */
7636int
7637xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007638 xmlRelaxNGValidityErrorFunc * err,
7639 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
7640{
Daniel Veillard409a8142003-07-18 15:16:57 +00007641 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007642 return (-1);
7643 if (err != NULL)
7644 *err = ctxt->error;
7645 if (warn != NULL)
7646 *warn = ctxt->warning;
7647 if (ctx != NULL)
7648 *ctx = ctxt->userData;
7649 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +00007650}
7651
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007652/**
7653 * xmlRelaxNGSetParserStructuredErrors:
7654 * @ctxt: a Relax-NG parser context
7655 * @serror: the error callback
7656 * @ctx: contextual data for the callbacks
7657 *
7658 * Set the callback functions used to handle errors for a parsing context
7659 */
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007660void
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +00007661xmlRelaxNGSetParserStructuredErrors(xmlRelaxNGParserCtxtPtr ctxt,
Kasimier T. Buchcika930fbe2006-01-09 16:28:20 +00007662 xmlStructuredErrorFunc serror,
7663 void *ctx)
7664{
7665 if (ctxt == NULL)
7666 return;
7667 ctxt->serror = serror;
7668 ctxt->error = NULL;
7669 ctxt->warning = NULL;
7670 ctxt->userData = ctx;
7671}
7672
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007673#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard4c004142003-10-07 11:33:24 +00007674
Daniel Veillard6eadf632003-01-23 18:29:16 +00007675/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007676 * *
7677 * Dump back a compiled form *
7678 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007679 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007680static void xmlRelaxNGDumpDefine(FILE * output,
7681 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007682
7683/**
7684 * xmlRelaxNGDumpDefines:
7685 * @output: the file output
7686 * @defines: a list of define structures
7687 *
7688 * Dump a RelaxNG structure back
7689 */
7690static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007691xmlRelaxNGDumpDefines(FILE * output, xmlRelaxNGDefinePtr defines)
7692{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007693 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007694 xmlRelaxNGDumpDefine(output, defines);
7695 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007696 }
7697}
7698
7699/**
7700 * xmlRelaxNGDumpDefine:
7701 * @output: the file output
7702 * @define: a define structure
7703 *
7704 * Dump a RelaxNG structure back
7705 */
7706static void
Daniel Veillard4c004142003-10-07 11:33:24 +00007707xmlRelaxNGDumpDefine(FILE * output, xmlRelaxNGDefinePtr define)
7708{
Daniel Veillard6eadf632003-01-23 18:29:16 +00007709 if (define == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007710 return;
7711 switch (define->type) {
Daniel Veillard6eadf632003-01-23 18:29:16 +00007712 case XML_RELAXNG_EMPTY:
Daniel Veillard4c004142003-10-07 11:33:24 +00007713 fprintf(output, "<empty/>\n");
7714 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007715 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillard4c004142003-10-07 11:33:24 +00007716 fprintf(output, "<notAllowed/>\n");
7717 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007718 case XML_RELAXNG_TEXT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007719 fprintf(output, "<text/>\n");
7720 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007721 case XML_RELAXNG_ELEMENT:
Daniel Veillard4c004142003-10-07 11:33:24 +00007722 fprintf(output, "<element>\n");
7723 if (define->name != NULL) {
7724 fprintf(output, "<name");
7725 if (define->ns != NULL)
7726 fprintf(output, " ns=\"%s\"", define->ns);
7727 fprintf(output, ">%s</name>\n", define->name);
7728 }
7729 xmlRelaxNGDumpDefines(output, define->attrs);
7730 xmlRelaxNGDumpDefines(output, define->content);
7731 fprintf(output, "</element>\n");
7732 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007733 case XML_RELAXNG_LIST:
Daniel Veillard4c004142003-10-07 11:33:24 +00007734 fprintf(output, "<list>\n");
7735 xmlRelaxNGDumpDefines(output, define->content);
7736 fprintf(output, "</list>\n");
7737 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007738 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007739 fprintf(output, "<oneOrMore>\n");
7740 xmlRelaxNGDumpDefines(output, define->content);
7741 fprintf(output, "</oneOrMore>\n");
7742 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00007743 case XML_RELAXNG_ZEROORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007744 fprintf(output, "<zeroOrMore>\n");
7745 xmlRelaxNGDumpDefines(output, define->content);
7746 fprintf(output, "</zeroOrMore>\n");
7747 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007748 case XML_RELAXNG_CHOICE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007749 fprintf(output, "<choice>\n");
7750 xmlRelaxNGDumpDefines(output, define->content);
7751 fprintf(output, "</choice>\n");
7752 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007753 case XML_RELAXNG_GROUP:
Daniel Veillard4c004142003-10-07 11:33:24 +00007754 fprintf(output, "<group>\n");
7755 xmlRelaxNGDumpDefines(output, define->content);
7756 fprintf(output, "</group>\n");
7757 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007758 case XML_RELAXNG_INTERLEAVE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007759 fprintf(output, "<interleave>\n");
7760 xmlRelaxNGDumpDefines(output, define->content);
7761 fprintf(output, "</interleave>\n");
7762 break;
7763 case XML_RELAXNG_OPTIONAL:
7764 fprintf(output, "<optional>\n");
7765 xmlRelaxNGDumpDefines(output, define->content);
7766 fprintf(output, "</optional>\n");
7767 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007768 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007769 fprintf(output, "<attribute>\n");
7770 xmlRelaxNGDumpDefines(output, define->content);
7771 fprintf(output, "</attribute>\n");
7772 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007773 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007774 fprintf(output, "<define");
7775 if (define->name != NULL)
7776 fprintf(output, " name=\"%s\"", define->name);
7777 fprintf(output, ">\n");
7778 xmlRelaxNGDumpDefines(output, define->content);
7779 fprintf(output, "</define>\n");
7780 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007781 case XML_RELAXNG_REF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007782 fprintf(output, "<ref");
7783 if (define->name != NULL)
7784 fprintf(output, " name=\"%s\"", define->name);
7785 fprintf(output, ">\n");
7786 xmlRelaxNGDumpDefines(output, define->content);
7787 fprintf(output, "</ref>\n");
7788 break;
Daniel Veillard419a7682003-02-03 23:22:49 +00007789 case XML_RELAXNG_PARENTREF:
Daniel Veillard4c004142003-10-07 11:33:24 +00007790 fprintf(output, "<parentRef");
7791 if (define->name != NULL)
7792 fprintf(output, " name=\"%s\"", define->name);
7793 fprintf(output, ">\n");
7794 xmlRelaxNGDumpDefines(output, define->content);
7795 fprintf(output, "</parentRef>\n");
7796 break;
7797 case XML_RELAXNG_EXTERNALREF:
7798 fprintf(output, "<externalRef>");
7799 xmlRelaxNGDumpDefines(output, define->content);
7800 fprintf(output, "</externalRef>\n");
7801 break;
Daniel Veillarde431a272003-01-29 23:02:33 +00007802 case XML_RELAXNG_DATATYPE:
Daniel Veillard6eadf632003-01-23 18:29:16 +00007803 case XML_RELAXNG_VALUE:
Daniel Veillard4c004142003-10-07 11:33:24 +00007804 TODO break;
7805 case XML_RELAXNG_START:
7806 case XML_RELAXNG_EXCEPT:
7807 case XML_RELAXNG_PARAM:
7808 TODO break;
7809 case XML_RELAXNG_NOOP:
7810 xmlRelaxNGDumpDefines(output, define->content);
7811 break;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007812 }
7813}
Daniel Veillard4c004142003-10-07 11:33:24 +00007814
Daniel Veillard6eadf632003-01-23 18:29:16 +00007815/**
7816 * xmlRelaxNGDumpGrammar:
7817 * @output: the file output
7818 * @grammar: a grammar structure
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007819 * @top: is this a top grammar
Daniel Veillard6eadf632003-01-23 18:29:16 +00007820 *
7821 * Dump a RelaxNG structure back
7822 */
7823static void
7824xmlRelaxNGDumpGrammar(FILE * output, xmlRelaxNGGrammarPtr grammar, int top)
7825{
7826 if (grammar == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00007827 return;
7828
Daniel Veillard6eadf632003-01-23 18:29:16 +00007829 fprintf(output, "<grammar");
7830 if (top)
Daniel Veillard4c004142003-10-07 11:33:24 +00007831 fprintf(output, " xmlns=\"http://relaxng.org/ns/structure/1.0\"");
7832 switch (grammar->combine) {
7833 case XML_RELAXNG_COMBINE_UNDEFINED:
7834 break;
7835 case XML_RELAXNG_COMBINE_CHOICE:
7836 fprintf(output, " combine=\"choice\"");
7837 break;
7838 case XML_RELAXNG_COMBINE_INTERLEAVE:
7839 fprintf(output, " combine=\"interleave\"");
7840 break;
7841 default:
7842 fprintf(output, " <!-- invalid combine value -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007843 }
7844 fprintf(output, ">\n");
7845 if (grammar->start == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007846 fprintf(output, " <!-- grammar had no start -->");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007847 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007848 fprintf(output, "<start>\n");
7849 xmlRelaxNGDumpDefine(output, grammar->start);
7850 fprintf(output, "</start>\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007851 }
7852 /* TODO ? Dump the defines ? */
7853 fprintf(output, "</grammar>\n");
7854}
7855
7856/**
7857 * xmlRelaxNGDump:
7858 * @output: the file output
7859 * @schema: a schema structure
7860 *
7861 * Dump a RelaxNG structure back
7862 */
7863void
7864xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema)
7865{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007866 if (output == NULL)
7867 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007868 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007869 fprintf(output, "RelaxNG empty or failed to compile\n");
7870 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007871 }
7872 fprintf(output, "RelaxNG: ");
7873 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007874 fprintf(output, "no document\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007875 } else if (schema->doc->URL != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007876 fprintf(output, "%s\n", schema->doc->URL);
Daniel Veillard6eadf632003-01-23 18:29:16 +00007877 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007878 fprintf(output, "\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +00007879 }
7880 if (schema->topgrammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007881 fprintf(output, "RelaxNG has no top grammar\n");
7882 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +00007883 }
7884 xmlRelaxNGDumpGrammar(output, schema->topgrammar, 1);
7885}
7886
Daniel Veillardfebcca42003-02-16 15:44:18 +00007887/**
7888 * xmlRelaxNGDumpTree:
7889 * @output: the file output
7890 * @schema: a schema structure
7891 *
7892 * Dump the transformed RelaxNG tree.
7893 */
7894void
7895xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema)
7896{
Daniel Veillardce682bc2004-11-05 17:22:25 +00007897 if (output == NULL)
7898 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007899 if (schema == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007900 fprintf(output, "RelaxNG empty or failed to compile\n");
7901 return;
Daniel Veillardfebcca42003-02-16 15:44:18 +00007902 }
7903 if (schema->doc == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007904 fprintf(output, "no document\n");
Daniel Veillardfebcca42003-02-16 15:44:18 +00007905 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00007906 xmlDocDump(output, schema->doc);
Daniel Veillardfebcca42003-02-16 15:44:18 +00007907 }
7908}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00007909#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardfebcca42003-02-16 15:44:18 +00007910
Daniel Veillard6eadf632003-01-23 18:29:16 +00007911/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007912 * *
7913 * Validation of compiled content *
7914 * *
Daniel Veillard6eadf632003-01-23 18:29:16 +00007915 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00007916static int xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
7917 xmlRelaxNGDefinePtr define);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007918
7919/**
7920 * xmlRelaxNGValidateCompiledCallback:
7921 * @exec: the regular expression instance
7922 * @token: the token which matched
7923 * @transdata: callback data, the define for the subelement if available
7924 @ @inputdata: callback data, the Relax NG validation context
7925 *
7926 * Handle the callback and if needed validate the element children.
7927 */
Daniel Veillard4c004142003-10-07 11:33:24 +00007928static void
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007929xmlRelaxNGValidateCompiledCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00007930 const xmlChar * token,
7931 void *transdata, void *inputdata)
7932{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007933 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
7934 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
7935 int ret;
7936
7937#ifdef DEBUG_COMPILE
7938 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00007939 "Compiled callback for: '%s'\n", token);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007940#endif
7941 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007942 fprintf(stderr, "callback on %s missing context\n", token);
Daniel Veillard4c004142003-10-07 11:33:24 +00007943 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007944 }
7945 if (define == NULL) {
7946 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00007947 return;
7948 fprintf(stderr, "callback on %s missing define\n", token);
7949 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7950 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7951 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007952 }
7953 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007954 fprintf(stderr, "callback on %s missing info\n", token);
7955 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
7956 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7957 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007958 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00007959 fprintf(stderr, "callback on %s define is not element\n", token);
7960 if (ctxt->errNo == XML_RELAXNG_OK)
7961 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
7962 return;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007963 }
7964 ret = xmlRelaxNGValidateDefinition(ctxt, define);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007965 if (ret != 0)
7966 ctxt->perr = ret;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007967}
7968
7969/**
7970 * xmlRelaxNGValidateCompiledContent:
7971 * @ctxt: the RelaxNG validation context
7972 * @regexp: the regular expression as compiled
7973 * @content: list of children to test against the regexp
7974 *
7975 * Validate the content model of an element or start using the regexp
7976 *
7977 * Returns 0 in case of success, -1 in case of error.
7978 */
7979static int
7980xmlRelaxNGValidateCompiledContent(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00007981 xmlRegexpPtr regexp, xmlNodePtr content)
7982{
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007983 xmlRegExecCtxtPtr exec;
7984 xmlNodePtr cur;
Daniel Veillard62163602003-04-17 09:36:38 +00007985 int ret = 0;
Daniel Veillard14b56432006-03-09 18:41:40 +00007986 int oldperr;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007987
7988 if ((ctxt == NULL) || (regexp == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00007989 return (-1);
Daniel Veillard14b56432006-03-09 18:41:40 +00007990 oldperr = ctxt->perr;
Daniel Veillard4c004142003-10-07 11:33:24 +00007991 exec = xmlRegNewExecCtxt(regexp,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007992 xmlRelaxNGValidateCompiledCallback, ctxt);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00007993 ctxt->perr = 0;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00007994 cur = content;
7995 while (cur != NULL) {
7996 ctxt->state->seq = cur;
Daniel Veillard4c004142003-10-07 11:33:24 +00007997 switch (cur->type) {
7998 case XML_TEXT_NODE:
7999 case XML_CDATA_SECTION_NODE:
8000 if (xmlIsBlankNode(cur))
8001 break;
8002 ret = xmlRegExecPushString(exec, BAD_CAST "#text", ctxt);
8003 if (ret < 0) {
8004 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG,
8005 cur->parent->name);
8006 }
8007 break;
8008 case XML_ELEMENT_NODE:
8009 if (cur->ns != NULL) {
8010 ret = xmlRegExecPushString2(exec, cur->name,
8011 cur->ns->href, ctxt);
8012 } else {
8013 ret = xmlRegExecPushString(exec, cur->name, ctxt);
8014 }
8015 if (ret < 0) {
8016 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, cur->name);
8017 }
8018 break;
8019 default:
8020 break;
8021 }
8022 if (ret < 0)
8023 break;
8024 /*
8025 * Switch to next element
8026 */
8027 cur = cur->next;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008028 }
8029 ret = xmlRegExecPushString(exec, NULL, NULL);
8030 if (ret == 1) {
8031 ret = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008032 ctxt->state->seq = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008033 } else if (ret == 0) {
8034 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008035 * TODO: get some of the names needed to exit the current state of exec
8036 */
8037 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8038 ret = -1;
8039 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8040 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008041 } else {
8042 ret = -1;
8043 }
8044 xmlRegFreeExecCtxt(exec);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +00008045 /*
8046 * There might be content model errors outside of the pure
8047 * regexp validation, e.g. for attribute values.
8048 */
8049 if ((ret == 0) && (ctxt->perr != 0)) {
8050 ret = ctxt->perr;
8051 }
8052 ctxt->perr = oldperr;
Daniel Veillard4c004142003-10-07 11:33:24 +00008053 return (ret);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008054}
8055
8056/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008057 * *
8058 * Progressive validation of when possible *
8059 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008060 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008061static int xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
8062 xmlRelaxNGDefinePtr defines);
8063static int xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt,
William M. Brack272693c2003-11-14 16:20:34 +00008064 int dolog);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00008065static void xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008066
8067/**
8068 * xmlRelaxNGElemPush:
8069 * @ctxt: the validation context
8070 * @exec: the regexp runtime for the new content model
8071 *
8072 * Push a new regexp for the current node content model on the stack
8073 *
8074 * Returns 0 in case of success and -1 in case of error.
8075 */
8076static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008077xmlRelaxNGElemPush(xmlRelaxNGValidCtxtPtr ctxt, xmlRegExecCtxtPtr exec)
8078{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008079 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008080 ctxt->elemMax = 10;
8081 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlMalloc(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 if (ctxt->elemNr >= ctxt->elemMax) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008090 ctxt->elemMax *= 2;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008091 ctxt->elemTab = (xmlRegExecCtxtPtr *) xmlRealloc(ctxt->elemTab,
Daniel Veillard4c004142003-10-07 11:33:24 +00008092 ctxt->elemMax *
8093 sizeof
8094 (xmlRegExecCtxtPtr));
Daniel Veillardf4e55762003-04-15 23:32:22 +00008095 if (ctxt->elemTab == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008096 xmlRngVErrMemory(ctxt, "validating\n");
8097 return (-1);
8098 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008099 }
8100 ctxt->elemTab[ctxt->elemNr++] = exec;
8101 ctxt->elem = exec;
Daniel Veillard4c004142003-10-07 11:33:24 +00008102 return (0);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008103}
8104
8105/**
8106 * xmlRelaxNGElemPop:
8107 * @ctxt: the validation context
8108 *
8109 * Pop the regexp of the current node content model from the stack
8110 *
8111 * Returns the exec or NULL if empty
8112 */
8113static xmlRegExecCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +00008114xmlRelaxNGElemPop(xmlRelaxNGValidCtxtPtr ctxt)
8115{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008116 xmlRegExecCtxtPtr ret;
8117
Daniel Veillard4c004142003-10-07 11:33:24 +00008118 if (ctxt->elemNr <= 0)
8119 return (NULL);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008120 ctxt->elemNr--;
8121 ret = ctxt->elemTab[ctxt->elemNr];
8122 ctxt->elemTab[ctxt->elemNr] = NULL;
Daniel Veillard4c004142003-10-07 11:33:24 +00008123 if (ctxt->elemNr > 0)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008124 ctxt->elem = ctxt->elemTab[ctxt->elemNr - 1];
8125 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008126 ctxt->elem = NULL;
8127 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008128}
8129
8130/**
8131 * xmlRelaxNGValidateProgressiveCallback:
8132 * @exec: the regular expression instance
8133 * @token: the token which matched
8134 * @transdata: callback data, the define for the subelement if available
8135 @ @inputdata: callback data, the Relax NG validation context
8136 *
8137 * Handle the callback and if needed validate the element children.
8138 * some of the in/out informations are passed via the context in @inputdata.
8139 */
Daniel Veillard4c004142003-10-07 11:33:24 +00008140static void
8141xmlRelaxNGValidateProgressiveCallback(xmlRegExecCtxtPtr exec
8142 ATTRIBUTE_UNUSED,
8143 const xmlChar * token,
8144 void *transdata, void *inputdata)
8145{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008146 xmlRelaxNGValidCtxtPtr ctxt = (xmlRelaxNGValidCtxtPtr) inputdata;
8147 xmlRelaxNGDefinePtr define = (xmlRelaxNGDefinePtr) transdata;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008148 xmlRelaxNGValidStatePtr state, oldstate;
Daniel Veillard14b56432006-03-09 18:41:40 +00008149 xmlNodePtr node;
Daniel Veillardc3ca5ba2003-05-09 22:26:28 +00008150 int ret = 0, oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008151
8152#ifdef DEBUG_PROGRESSIVE
8153 xmlGenericError(xmlGenericErrorContext,
Daniel Veillard4c004142003-10-07 11:33:24 +00008154 "Progressive callback for: '%s'\n", token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008155#endif
8156 if (ctxt == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008157 fprintf(stderr, "callback on %s missing context\n", token);
8158 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008159 }
Daniel Veillard14b56432006-03-09 18:41:40 +00008160 node = ctxt->pnode;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008161 ctxt->pstate = 1;
8162 if (define == NULL) {
8163 if (token[0] == '#')
Daniel Veillard4c004142003-10-07 11:33:24 +00008164 return;
8165 fprintf(stderr, "callback on %s missing define\n", token);
8166 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8167 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8168 ctxt->pstate = -1;
8169 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008170 }
8171 if ((ctxt == NULL) || (define == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008172 fprintf(stderr, "callback on %s missing info\n", token);
8173 if ((ctxt != NULL) && (ctxt->errNo == XML_RELAXNG_OK))
8174 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8175 ctxt->pstate = -1;
8176 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008177 } else if (define->type != XML_RELAXNG_ELEMENT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008178 fprintf(stderr, "callback on %s define is not element\n", token);
8179 if (ctxt->errNo == XML_RELAXNG_OK)
8180 ctxt->errNo = XML_RELAXNG_ERR_INTERNAL;
8181 ctxt->pstate = -1;
8182 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008183 }
8184 if (node->type != XML_ELEMENT_NODE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008185 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
8186 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8187 xmlRelaxNGDumpValidError(ctxt);
8188 ctxt->pstate = -1;
8189 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008190 }
8191 if (define->contModel == NULL) {
8192 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008193 * this node cannot be validated in a streamable fashion
8194 */
Daniel Veillardf4e55762003-04-15 23:32:22 +00008195#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008196 xmlGenericError(xmlGenericErrorContext,
8197 "Element '%s' validation is not streamable\n",
8198 token);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008199#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008200 ctxt->pstate = 0;
8201 ctxt->pdef = define;
8202 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008203 }
8204 exec = xmlRegNewExecCtxt(define->contModel,
Daniel Veillard4c004142003-10-07 11:33:24 +00008205 xmlRelaxNGValidateProgressiveCallback, ctxt);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008206 if (exec == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008207 ctxt->pstate = -1;
8208 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008209 }
8210 xmlRelaxNGElemPush(ctxt, exec);
8211
8212 /*
8213 * Validate the attributes part of the content.
8214 */
8215 state = xmlRelaxNGNewValidState(ctxt, node);
8216 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008217 ctxt->pstate = -1;
8218 return;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008219 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008220 oldstate = ctxt->state;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008221 ctxt->state = state;
8222 if (define->attrs != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008223 ret = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
8224 if (ret != 0) {
8225 ctxt->pstate = -1;
8226 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
8227 }
Daniel Veillardf4e55762003-04-15 23:32:22 +00008228 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008229 if (ctxt->state != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008230 ctxt->state->seq = NULL;
8231 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
8232 if (ret != 0) {
8233 ctxt->pstate = -1;
8234 }
8235 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardce192eb2003-04-16 15:58:05 +00008236 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008237 int tmp = -1, i;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008238
8239 oldflags = ctxt->flags;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008240
Daniel Veillard4c004142003-10-07 11:33:24 +00008241 for (i = 0; i < ctxt->states->nbState; i++) {
8242 state = ctxt->states->tabState[i];
8243 ctxt->state = state;
8244 ctxt->state->seq = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00008245
Daniel Veillard4c004142003-10-07 11:33:24 +00008246 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
8247 tmp = 0;
8248 break;
8249 }
8250 }
8251 if (tmp != 0) {
8252 /*
8253 * validation error, log the message for the "best" one
8254 */
8255 ctxt->flags |= FLAGS_IGNORABLE;
8256 xmlRelaxNGLogBestError(ctxt);
8257 }
8258 for (i = 0; i < ctxt->states->nbState; i++) {
8259 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[i]);
8260 }
8261 xmlRelaxNGFreeStates(ctxt, ctxt->states);
8262 ctxt->states = NULL;
8263 if ((ret == 0) && (tmp == -1))
8264 ctxt->pstate = -1;
8265 ctxt->flags = oldflags;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008266 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008267 if (ctxt->pstate == -1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008268 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
8269 xmlRelaxNGDumpValidError(ctxt);
8270 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00008271 }
8272 ctxt->state = oldstate;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008273}
8274
8275/**
8276 * xmlRelaxNGValidatePushElement:
8277 * @ctxt: the validation context
8278 * @doc: a document instance
8279 * @elem: an element instance
8280 *
8281 * Push a new element start on the RelaxNG validation stack.
8282 *
8283 * returns 1 if no validation problem was found or 0 if validating the
8284 * element requires a full node, and -1 in case of error.
8285 */
8286int
Daniel Veillard33300b42003-04-17 09:09:19 +00008287xmlRelaxNGValidatePushElement(xmlRelaxNGValidCtxtPtr ctxt,
8288 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillardf4e55762003-04-15 23:32:22 +00008289 xmlNodePtr elem)
8290{
8291 int ret = 1;
8292
8293 if ((ctxt == NULL) || (elem == NULL))
8294 return (-1);
8295
8296#ifdef DEBUG_PROGRESSIVE
8297 xmlGenericError(xmlGenericErrorContext, "PushElem %s\n", elem->name);
8298#endif
8299 if (ctxt->elem == 0) {
8300 xmlRelaxNGPtr schema;
8301 xmlRelaxNGGrammarPtr grammar;
8302 xmlRegExecCtxtPtr exec;
8303 xmlRelaxNGDefinePtr define;
8304
8305 schema = ctxt->schema;
8306 if (schema == NULL) {
8307 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8308 return (-1);
8309 }
8310 grammar = schema->topgrammar;
8311 if ((grammar == NULL) || (grammar->start == NULL)) {
8312 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
8313 return (-1);
8314 }
8315 define = grammar->start;
8316 if (define->contModel == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008317 ctxt->pdef = define;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008318 return (0);
8319 }
8320 exec = xmlRegNewExecCtxt(define->contModel,
8321 xmlRelaxNGValidateProgressiveCallback,
8322 ctxt);
8323 if (exec == NULL) {
8324 return (-1);
8325 }
8326 xmlRelaxNGElemPush(ctxt, exec);
8327 }
8328 ctxt->pnode = elem;
8329 ctxt->pstate = 0;
8330 if (elem->ns != NULL) {
8331 ret =
8332 xmlRegExecPushString2(ctxt->elem, elem->name, elem->ns->href,
8333 ctxt);
8334 } else {
8335 ret = xmlRegExecPushString(ctxt->elem, elem->name, ctxt);
8336 }
8337 if (ret < 0) {
8338 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, elem->name);
8339 } else {
8340 if (ctxt->pstate == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008341 ret = 0;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008342 else if (ctxt->pstate < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008343 ret = -1;
8344 else
8345 ret = 1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008346 }
8347#ifdef DEBUG_PROGRESSIVE
8348 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008349 xmlGenericError(xmlGenericErrorContext, "PushElem %s failed\n",
8350 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008351#endif
8352 return (ret);
8353}
8354
8355/**
8356 * xmlRelaxNGValidatePushCData:
8357 * @ctxt: the RelaxNG validation context
8358 * @data: some character data read
Michael Woodfb27e2c2012-09-28 08:59:33 +02008359 * @len: the length of the data
Daniel Veillardf4e55762003-04-15 23:32:22 +00008360 *
8361 * check the CData parsed for validation in the current stack
8362 *
8363 * returns 1 if no validation problem was found or -1 otherwise
8364 */
8365int
8366xmlRelaxNGValidatePushCData(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +00008367 const xmlChar * data, int len ATTRIBUTE_UNUSED)
Daniel Veillardf4e55762003-04-15 23:32:22 +00008368{
8369 int ret = 1;
8370
8371 if ((ctxt == NULL) || (ctxt->elem == NULL) || (data == NULL))
8372 return (-1);
8373
8374#ifdef DEBUG_PROGRESSIVE
8375 xmlGenericError(xmlGenericErrorContext, "CDATA %s %d\n", data, len);
8376#endif
8377
8378 while (*data != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008379 if (!IS_BLANK_CH(*data))
Daniel Veillardf4e55762003-04-15 23:32:22 +00008380 break;
8381 data++;
8382 }
8383 if (*data == 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008384 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008385
8386 ret = xmlRegExecPushString(ctxt->elem, BAD_CAST "#text", ctxt);
8387 if (ret < 0) {
Daniel Veillard33300b42003-04-17 09:09:19 +00008388 VALID_ERR2(XML_RELAXNG_ERR_TEXTWRONG, BAD_CAST " TODO ");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008389#ifdef DEBUG_PROGRESSIVE
Daniel Veillard4c004142003-10-07 11:33:24 +00008390 xmlGenericError(xmlGenericErrorContext, "CDATA failed\n");
Daniel Veillardf4e55762003-04-15 23:32:22 +00008391#endif
8392
Daniel Veillard4c004142003-10-07 11:33:24 +00008393 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008394 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008395 return (1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008396}
8397
8398/**
8399 * xmlRelaxNGValidatePopElement:
8400 * @ctxt: the RelaxNG validation context
8401 * @doc: a document instance
8402 * @elem: an element instance
8403 *
8404 * Pop the element end from the RelaxNG validation stack.
8405 *
8406 * returns 1 if no validation problem was found or 0 otherwise
8407 */
8408int
8409xmlRelaxNGValidatePopElement(xmlRelaxNGValidCtxtPtr ctxt,
8410 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008411 xmlNodePtr elem)
8412{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008413 int ret;
8414 xmlRegExecCtxtPtr exec;
8415
Daniel Veillard4c004142003-10-07 11:33:24 +00008416 if ((ctxt == NULL) || (ctxt->elem == NULL) || (elem == NULL))
8417 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008418#ifdef DEBUG_PROGRESSIVE
8419 xmlGenericError(xmlGenericErrorContext, "PopElem %s\n", elem->name);
8420#endif
8421 /*
8422 * verify that we reached a terminal state of the content model.
8423 */
8424 exec = xmlRelaxNGElemPop(ctxt);
8425 ret = xmlRegExecPushString(exec, NULL, NULL);
8426 if (ret == 0) {
8427 /*
Daniel Veillard4c004142003-10-07 11:33:24 +00008428 * TODO: get some of the names needed to exit the current state of exec
8429 */
8430 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, BAD_CAST "");
8431 ret = -1;
Daniel Veillardf4e55762003-04-15 23:32:22 +00008432 } else if (ret < 0) {
8433 ret = -1;
8434 } else {
8435 ret = 1;
8436 }
8437 xmlRegFreeExecCtxt(exec);
8438#ifdef DEBUG_PROGRESSIVE
8439 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008440 xmlGenericError(xmlGenericErrorContext, "PopElem %s failed\n",
8441 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008442#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008443 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008444}
8445
8446/**
8447 * xmlRelaxNGValidateFullElement:
8448 * @ctxt: the validation context
8449 * @doc: a document instance
8450 * @elem: an element instance
8451 *
8452 * Validate a full subtree when xmlRelaxNGValidatePushElement() returned
8453 * 0 and the content of the node has been expanded.
8454 *
8455 * returns 1 if no validation problem was found or -1 in case of error.
8456 */
8457int
Daniel Veillard33300b42003-04-17 09:09:19 +00008458xmlRelaxNGValidateFullElement(xmlRelaxNGValidCtxtPtr ctxt,
8459 xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008460 xmlNodePtr elem)
8461{
Daniel Veillardf4e55762003-04-15 23:32:22 +00008462 int ret;
8463 xmlRelaxNGValidStatePtr state;
8464
Daniel Veillard4c004142003-10-07 11:33:24 +00008465 if ((ctxt == NULL) || (ctxt->pdef == NULL) || (elem == NULL))
8466 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008467#ifdef DEBUG_PROGRESSIVE
8468 xmlGenericError(xmlGenericErrorContext, "FullElem %s\n", elem->name);
8469#endif
8470 state = xmlRelaxNGNewValidState(ctxt, elem->parent);
8471 if (state == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008472 return (-1);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008473 }
8474 state->seq = elem;
8475 ctxt->state = state;
8476 ctxt->errNo = XML_RELAXNG_OK;
8477 ret = xmlRelaxNGValidateDefinition(ctxt, ctxt->pdef);
Daniel Veillard4c004142003-10-07 11:33:24 +00008478 if ((ret != 0) || (ctxt->errNo != XML_RELAXNG_OK))
8479 ret = -1;
8480 else
8481 ret = 1;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02008482 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008483 ctxt->state = NULL;
8484#ifdef DEBUG_PROGRESSIVE
8485 if (ret < 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008486 xmlGenericError(xmlGenericErrorContext, "FullElem %s failed\n",
8487 elem->name);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008488#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008489 return (ret);
Daniel Veillardf4e55762003-04-15 23:32:22 +00008490}
8491
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008492/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +08008493 * *
8494 * Generic interpreted validation implementation *
8495 * *
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00008496 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +00008497static int xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8498 xmlRelaxNGDefinePtr define);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008499
8500/**
8501 * xmlRelaxNGSkipIgnored:
8502 * @ctxt: a schema validation context
8503 * @node: the top node.
8504 *
8505 * Skip ignorable nodes in that context
8506 *
8507 * Returns the new sibling or NULL in case of error.
8508 */
8509static xmlNodePtr
8510xmlRelaxNGSkipIgnored(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED,
Daniel Veillard4c004142003-10-07 11:33:24 +00008511 xmlNodePtr node)
8512{
Daniel Veillard6eadf632003-01-23 18:29:16 +00008513 /*
8514 * TODO complete and handle entities
8515 */
8516 while ((node != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00008517 ((node->type == XML_COMMENT_NODE) ||
8518 (node->type == XML_PI_NODE) ||
William M. Brack7217c862004-03-15 02:43:56 +00008519 (node->type == XML_XINCLUDE_START) ||
8520 (node->type == XML_XINCLUDE_END) ||
Daniel Veillard4c004142003-10-07 11:33:24 +00008521 (((node->type == XML_TEXT_NODE) ||
8522 (node->type == XML_CDATA_SECTION_NODE)) &&
8523 ((ctxt->flags & FLAGS_MIXED_CONTENT) ||
8524 (IS_BLANK_NODE(node)))))) {
8525 node = node->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008526 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008527 return (node);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008528}
8529
8530/**
Daniel Veillardedc91922003-01-26 00:52:04 +00008531 * xmlRelaxNGNormalize:
8532 * @ctxt: a schema validation context
8533 * @str: the string to normalize
8534 *
8535 * Implements the normalizeWhiteSpace( s ) function from
8536 * section 6.2.9 of the spec
8537 *
8538 * Returns the new string or NULL in case of error.
8539 */
8540static xmlChar *
Daniel Veillard4c004142003-10-07 11:33:24 +00008541xmlRelaxNGNormalize(xmlRelaxNGValidCtxtPtr ctxt, const xmlChar * str)
8542{
Daniel Veillardedc91922003-01-26 00:52:04 +00008543 xmlChar *ret, *p;
8544 const xmlChar *tmp;
8545 int len;
Daniel Veillard4c004142003-10-07 11:33:24 +00008546
Daniel Veillardedc91922003-01-26 00:52:04 +00008547 if (str == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00008548 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008549 tmp = str;
Daniel Veillard4c004142003-10-07 11:33:24 +00008550 while (*tmp != 0)
8551 tmp++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008552 len = tmp - str;
8553
Daniel Veillard3c908dc2003-04-19 00:07:51 +00008554 ret = (xmlChar *) xmlMallocAtomic((len + 1) * sizeof(xmlChar));
Daniel Veillardedc91922003-01-26 00:52:04 +00008555 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008556 xmlRngVErrMemory(ctxt, "validating\n");
8557 return (NULL);
Daniel Veillardedc91922003-01-26 00:52:04 +00008558 }
8559 p = ret;
William M. Brack76e95df2003-10-18 16:20:14 +00008560 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008561 str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008562 while (*str != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008563 if (IS_BLANK_CH(*str)) {
8564 while (IS_BLANK_CH(*str))
Daniel Veillard4c004142003-10-07 11:33:24 +00008565 str++;
8566 if (*str == 0)
8567 break;
8568 *p++ = ' ';
8569 } else
8570 *p++ = *str++;
Daniel Veillardedc91922003-01-26 00:52:04 +00008571 }
8572 *p = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +00008573 return (ret);
Daniel Veillardedc91922003-01-26 00:52:04 +00008574}
8575
8576/**
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008577 * xmlRelaxNGValidateDatatype:
8578 * @ctxt: a Relax-NG validation context
8579 * @value: the string value
8580 * @type: the datatype definition
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008581 * @node: the node
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008582 *
8583 * Validate the given value against the dataype
8584 *
8585 * Returns 0 if the validation succeeded or an error code.
8586 */
8587static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008588xmlRelaxNGValidateDatatype(xmlRelaxNGValidCtxtPtr ctxt,
8589 const xmlChar * value,
8590 xmlRelaxNGDefinePtr define, xmlNodePtr node)
8591{
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008592 int ret, tmp;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008593 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008594 void *result = NULL;
8595 xmlRelaxNGDefinePtr cur;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008596
8597 if ((define == NULL) || (define->data == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008598 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008599 }
8600 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008601 if (lib->check != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008602 if ((define->attrs != NULL) &&
8603 (define->attrs->type == XML_RELAXNG_PARAM)) {
8604 ret =
8605 lib->check(lib->data, define->name, value, &result, node);
8606 } else {
8607 ret = lib->check(lib->data, define->name, value, NULL, node);
8608 }
8609 } else
8610 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008611 if (ret < 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008612 VALID_ERR2(XML_RELAXNG_ERR_TYPE, define->name);
8613 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
8614 lib->freef(lib->data, result);
8615 return (-1);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008616 } else if (ret == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008617 ret = 0;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00008618 } else if (ret == 2) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008619 VALID_ERR2P(XML_RELAXNG_ERR_DUPID, value);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008620 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00008621 VALID_ERR3P(XML_RELAXNG_ERR_TYPEVAL, define->name, value);
8622 ret = -1;
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008623 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008624 cur = define->attrs;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008625 while ((ret == 0) && (cur != NULL) && (cur->type == XML_RELAXNG_PARAM)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008626 if (lib->facet != NULL) {
8627 tmp = lib->facet(lib->data, define->name, cur->name,
8628 cur->value, value, result);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008629 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00008630 ret = -1;
8631 }
8632 cur = cur->next;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008633 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008634 if ((ret == 0) && (define->content != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008635 const xmlChar *oldvalue, *oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008636
Daniel Veillard4c004142003-10-07 11:33:24 +00008637 oldvalue = ctxt->state->value;
8638 oldendvalue = ctxt->state->endvalue;
8639 ctxt->state->value = (xmlChar *) value;
8640 ctxt->state->endvalue = NULL;
8641 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8642 ctxt->state->value = (xmlChar *) oldvalue;
8643 ctxt->state->endvalue = (xmlChar *) oldendvalue;
Daniel Veillard416589a2003-02-17 17:25:42 +00008644 }
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00008645 if ((result != NULL) && (lib != NULL) && (lib->freef != NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00008646 lib->freef(lib->data, result);
8647 return (ret);
Daniel Veillarddd1655c2003-01-25 18:01:32 +00008648}
8649
8650/**
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008651 * xmlRelaxNGNextValue:
8652 * @ctxt: a Relax-NG validation context
8653 *
8654 * Skip to the next value when validating within a list
8655 *
8656 * Returns 0 if the operation succeeded or an error code.
8657 */
8658static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008659xmlRelaxNGNextValue(xmlRelaxNGValidCtxtPtr ctxt)
8660{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008661 xmlChar *cur;
8662
8663 cur = ctxt->state->value;
8664 if ((cur == NULL) || (ctxt->state->endvalue == NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008665 ctxt->state->value = NULL;
8666 ctxt->state->endvalue = NULL;
8667 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008668 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008669 while (*cur != 0)
8670 cur++;
8671 while ((cur != ctxt->state->endvalue) && (*cur == 0))
8672 cur++;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008673 if (cur == ctxt->state->endvalue)
Daniel Veillard4c004142003-10-07 11:33:24 +00008674 ctxt->state->value = NULL;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008675 else
Daniel Veillard4c004142003-10-07 11:33:24 +00008676 ctxt->state->value = cur;
8677 return (0);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008678}
8679
8680/**
8681 * xmlRelaxNGValidateValueList:
8682 * @ctxt: a Relax-NG validation context
8683 * @defines: the list of definitions to verify
8684 *
8685 * Validate the given set of definitions for the current value
8686 *
8687 * Returns 0 if the validation succeeded or an error code.
8688 */
8689static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008690xmlRelaxNGValidateValueList(xmlRelaxNGValidCtxtPtr ctxt,
8691 xmlRelaxNGDefinePtr defines)
8692{
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008693 int ret = 0;
8694
8695 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008696 ret = xmlRelaxNGValidateValue(ctxt, defines);
8697 if (ret != 0)
8698 break;
8699 defines = defines->next;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008700 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008701 return (ret);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008702}
8703
8704/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00008705 * xmlRelaxNGValidateValue:
8706 * @ctxt: a Relax-NG validation context
8707 * @define: the definition to verify
8708 *
8709 * Validate the given definition for the current value
8710 *
8711 * Returns 0 if the validation succeeded or an error code.
8712 */
8713static int
Daniel Veillard4c004142003-10-07 11:33:24 +00008714xmlRelaxNGValidateValue(xmlRelaxNGValidCtxtPtr ctxt,
8715 xmlRelaxNGDefinePtr define)
8716{
Daniel Veillardedc91922003-01-26 00:52:04 +00008717 int ret = 0, oldflags;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008718 xmlChar *value;
8719
8720 value = ctxt->state->value;
8721 switch (define->type) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008722 case XML_RELAXNG_EMPTY:{
8723 if ((value != NULL) && (value[0] != 0)) {
8724 int idx = 0;
Daniel Veillardd4310742003-02-18 21:12:46 +00008725
William M. Brack76e95df2003-10-18 16:20:14 +00008726 while (IS_BLANK_CH(value[idx]))
Daniel Veillard4c004142003-10-07 11:33:24 +00008727 idx++;
8728 if (value[idx] != 0)
8729 ret = -1;
8730 }
8731 break;
8732 }
8733 case XML_RELAXNG_TEXT:
8734 break;
8735 case XML_RELAXNG_VALUE:{
8736 if (!xmlStrEqual(value, define->value)) {
8737 if (define->name != NULL) {
8738 xmlRelaxNGTypeLibraryPtr lib;
Daniel Veillardedc91922003-01-26 00:52:04 +00008739
Daniel Veillard4c004142003-10-07 11:33:24 +00008740 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
8741 if ((lib != NULL) && (lib->comp != NULL)) {
8742 ret = lib->comp(lib->data, define->name,
8743 define->value, define->node,
8744 (void *) define->attrs,
8745 value, ctxt->state->node);
8746 } else
8747 ret = -1;
8748 if (ret < 0) {
8749 VALID_ERR2(XML_RELAXNG_ERR_TYPECMP,
8750 define->name);
8751 return (-1);
8752 } else if (ret == 1) {
8753 ret = 0;
8754 } else {
8755 ret = -1;
8756 }
8757 } else {
8758 xmlChar *nval, *nvalue;
Daniel Veillardedc91922003-01-26 00:52:04 +00008759
Daniel Veillard4c004142003-10-07 11:33:24 +00008760 /*
8761 * TODO: trivial optimizations are possible by
8762 * computing at compile-time
8763 */
8764 nval = xmlRelaxNGNormalize(ctxt, define->value);
8765 nvalue = xmlRelaxNGNormalize(ctxt, value);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008766
Daniel Veillard4c004142003-10-07 11:33:24 +00008767 if ((nval == NULL) || (nvalue == NULL) ||
8768 (!xmlStrEqual(nval, nvalue)))
8769 ret = -1;
8770 if (nval != NULL)
8771 xmlFree(nval);
8772 if (nvalue != NULL)
8773 xmlFree(nvalue);
8774 }
8775 }
8776 if (ret == 0)
8777 xmlRelaxNGNextValue(ctxt);
8778 break;
8779 }
8780 case XML_RELAXNG_DATATYPE:{
8781 ret = xmlRelaxNGValidateDatatype(ctxt, value, define,
8782 ctxt->state->seq);
8783 if (ret == 0)
8784 xmlRelaxNGNextValue(ctxt);
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008785
Daniel Veillard4c004142003-10-07 11:33:24 +00008786 break;
8787 }
8788 case XML_RELAXNG_CHOICE:{
8789 xmlRelaxNGDefinePtr list = define->content;
8790 xmlChar *oldvalue;
8791
8792 oldflags = ctxt->flags;
8793 ctxt->flags |= FLAGS_IGNORABLE;
8794
8795 oldvalue = ctxt->state->value;
8796 while (list != NULL) {
8797 ret = xmlRelaxNGValidateValue(ctxt, list);
8798 if (ret == 0) {
8799 break;
8800 }
8801 ctxt->state->value = oldvalue;
8802 list = list->next;
8803 }
8804 ctxt->flags = oldflags;
8805 if (ret != 0) {
8806 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
8807 xmlRelaxNGDumpValidError(ctxt);
8808 } else {
8809 if (ctxt->errNr > 0)
8810 xmlRelaxNGPopErrors(ctxt, 0);
8811 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008812 break;
8813 }
8814 case XML_RELAXNG_LIST:{
8815 xmlRelaxNGDefinePtr list = define->content;
8816 xmlChar *oldvalue, *oldend, *val, *cur;
8817
Daniel Veillard416589a2003-02-17 17:25:42 +00008818#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008819 int nb_values = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00008820#endif
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008821
Daniel Veillard4c004142003-10-07 11:33:24 +00008822 oldvalue = ctxt->state->value;
8823 oldend = ctxt->state->endvalue;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008824
Daniel Veillard4c004142003-10-07 11:33:24 +00008825 val = xmlStrdup(oldvalue);
8826 if (val == NULL) {
8827 val = xmlStrdup(BAD_CAST "");
8828 }
8829 if (val == NULL) {
8830 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
8831 return (-1);
8832 }
8833 cur = val;
8834 while (*cur != 0) {
William M. Brack76e95df2003-10-18 16:20:14 +00008835 if (IS_BLANK_CH(*cur)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00008836 *cur = 0;
8837 cur++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008838#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008839 nb_values++;
Daniel Veillard416589a2003-02-17 17:25:42 +00008840#endif
William M. Brack76e95df2003-10-18 16:20:14 +00008841 while (IS_BLANK_CH(*cur))
Daniel Veillard4c004142003-10-07 11:33:24 +00008842 *cur++ = 0;
8843 } else
8844 cur++;
8845 }
Daniel Veillard416589a2003-02-17 17:25:42 +00008846#ifdef DEBUG_LIST
Daniel Veillard4c004142003-10-07 11:33:24 +00008847 xmlGenericError(xmlGenericErrorContext,
8848 "list value: '%s' found %d items\n",
8849 oldvalue, nb_values);
8850 nb_values = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008851#endif
Daniel Veillard4c004142003-10-07 11:33:24 +00008852 ctxt->state->endvalue = cur;
8853 cur = val;
8854 while ((*cur == 0) && (cur != ctxt->state->endvalue))
8855 cur++;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008856
Daniel Veillard4c004142003-10-07 11:33:24 +00008857 ctxt->state->value = cur;
8858
8859 while (list != NULL) {
8860 if (ctxt->state->value == ctxt->state->endvalue)
8861 ctxt->state->value = NULL;
8862 ret = xmlRelaxNGValidateValue(ctxt, list);
8863 if (ret != 0) {
8864#ifdef DEBUG_LIST
8865 xmlGenericError(xmlGenericErrorContext,
8866 "Failed to validate value: '%s' with %d rule\n",
8867 ctxt->state->value, nb_values);
8868#endif
8869 break;
8870 }
8871#ifdef DEBUG_LIST
8872 nb_values++;
8873#endif
8874 list = list->next;
8875 }
8876
8877 if ((ret == 0) && (ctxt->state->value != NULL) &&
8878 (ctxt->state->value != ctxt->state->endvalue)) {
8879 VALID_ERR2(XML_RELAXNG_ERR_LISTEXTRA,
8880 ctxt->state->value);
8881 ret = -1;
8882 }
8883 xmlFree(val);
8884 ctxt->state->value = oldvalue;
8885 ctxt->state->endvalue = oldend;
8886 break;
8887 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00008888 case XML_RELAXNG_ONEORMORE:
Daniel Veillard4c004142003-10-07 11:33:24 +00008889 ret = xmlRelaxNGValidateValueList(ctxt, define->content);
8890 if (ret != 0) {
8891 break;
8892 }
8893 /* no break on purpose */
8894 case XML_RELAXNG_ZEROORMORE:{
8895 xmlChar *cur, *temp;
Daniel Veillardc6e997c2003-01-27 12:35:42 +00008896
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008897 if ((ctxt->state->value == NULL) ||
8898 (*ctxt->state->value == 0)) {
8899 ret = 0;
8900 break;
8901 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008902 oldflags = ctxt->flags;
8903 ctxt->flags |= FLAGS_IGNORABLE;
8904 cur = ctxt->state->value;
8905 temp = NULL;
8906 while ((cur != NULL) && (cur != ctxt->state->endvalue) &&
8907 (temp != cur)) {
8908 temp = cur;
8909 ret =
8910 xmlRelaxNGValidateValueList(ctxt, define->content);
8911 if (ret != 0) {
8912 ctxt->state->value = temp;
8913 ret = 0;
8914 break;
8915 }
8916 cur = ctxt->state->value;
8917 }
8918 ctxt->flags = oldflags;
Daniel Veillard14b56432006-03-09 18:41:40 +00008919 if (ctxt->errNr > 0)
8920 xmlRelaxNGPopErrors(ctxt, 0);
Daniel Veillard4c004142003-10-07 11:33:24 +00008921 break;
8922 }
Daniel Veillard7dd0d912011-11-10 18:08:33 +08008923 case XML_RELAXNG_OPTIONAL:{
8924 xmlChar *temp;
8925
8926 if ((ctxt->state->value == NULL) ||
8927 (*ctxt->state->value == 0)) {
8928 ret = 0;
8929 break;
8930 }
8931 oldflags = ctxt->flags;
8932 ctxt->flags |= FLAGS_IGNORABLE;
8933 temp = ctxt->state->value;
8934 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8935 ctxt->flags = oldflags;
8936 if (ret != 0) {
8937 ctxt->state->value = temp;
8938 if (ctxt->errNr > 0)
8939 xmlRelaxNGPopErrors(ctxt, 0);
8940 ret = 0;
8941 break;
8942 }
8943 if (ctxt->errNr > 0)
8944 xmlRelaxNGPopErrors(ctxt, 0);
8945 break;
8946 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008947 case XML_RELAXNG_EXCEPT:{
8948 xmlRelaxNGDefinePtr list;
Daniel Veillard416589a2003-02-17 17:25:42 +00008949
Daniel Veillard4c004142003-10-07 11:33:24 +00008950 list = define->content;
8951 while (list != NULL) {
8952 ret = xmlRelaxNGValidateValue(ctxt, list);
8953 if (ret == 0) {
8954 ret = -1;
8955 break;
8956 } else
8957 ret = 0;
8958 list = list->next;
8959 }
8960 break;
8961 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008962 case XML_RELAXNG_DEF:
Daniel Veillard4c004142003-10-07 11:33:24 +00008963 case XML_RELAXNG_GROUP:{
8964 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00008965
Daniel Veillard4c004142003-10-07 11:33:24 +00008966 list = define->content;
8967 while (list != NULL) {
8968 ret = xmlRelaxNGValidateValue(ctxt, list);
8969 if (ret != 0) {
8970 ret = -1;
8971 break;
8972 } else
8973 ret = 0;
8974 list = list->next;
8975 }
8976 break;
8977 }
Daniel Veillard463a5472003-02-27 21:30:32 +00008978 case XML_RELAXNG_REF:
8979 case XML_RELAXNG_PARENTREF:
Daniel Veillard25a1ce92008-06-02 16:04:12 +00008980 if (define->content == NULL) {
Daniel Veillard81c51e12009-08-14 18:52:10 +02008981 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
8982 ret = -1;
8983 } else {
8984 ret = xmlRelaxNGValidateValue(ctxt, define->content);
8985 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008986 break;
8987 default:
8988 TODO ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +00008989 }
Daniel Veillard4c004142003-10-07 11:33:24 +00008990 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00008991}
8992
8993/**
8994 * xmlRelaxNGValidateValueContent:
8995 * @ctxt: a Relax-NG validation context
8996 * @defines: the list of definitions to verify
8997 *
8998 * Validate the given definitions for the current value
8999 *
9000 * Returns 0 if the validation succeeded or an error code.
9001 */
9002static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009003xmlRelaxNGValidateValueContent(xmlRelaxNGValidCtxtPtr ctxt,
9004 xmlRelaxNGDefinePtr defines)
9005{
Daniel Veillard6eadf632003-01-23 18:29:16 +00009006 int ret = 0;
9007
9008 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009009 ret = xmlRelaxNGValidateValue(ctxt, defines);
9010 if (ret != 0)
9011 break;
9012 defines = defines->next;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009013 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009014 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009015}
9016
9017/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009018 * xmlRelaxNGAttributeMatch:
9019 * @ctxt: a Relax-NG validation context
9020 * @define: the definition to check
9021 * @prop: the attribute
9022 *
9023 * Check if the attribute matches the definition nameClass
9024 *
9025 * Returns 1 if the attribute matches, 0 if no, or -1 in case of error
9026 */
9027static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009028xmlRelaxNGAttributeMatch(xmlRelaxNGValidCtxtPtr ctxt,
9029 xmlRelaxNGDefinePtr define, xmlAttrPtr prop)
9030{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009031 int ret;
9032
9033 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009034 if (!xmlStrEqual(define->name, prop->name))
9035 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009036 }
9037 if (define->ns != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009038 if (define->ns[0] == 0) {
9039 if (prop->ns != NULL)
9040 return (0);
9041 } else {
9042 if ((prop->ns == NULL) ||
9043 (!xmlStrEqual(define->ns, prop->ns->href)))
9044 return (0);
9045 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009046 }
9047 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009048 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009049 define = define->nameClass;
9050 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009051 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009052
Daniel Veillard4c004142003-10-07 11:33:24 +00009053 list = define->content;
9054 while (list != NULL) {
9055 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9056 if (ret == 1)
9057 return (0);
9058 if (ret < 0)
9059 return (ret);
9060 list = list->next;
9061 }
Shaun McCance6473a412013-10-23 14:51:33 -04009062 } else if (define->type == XML_RELAXNG_CHOICE) {
9063 xmlRelaxNGDefinePtr list;
9064
9065 list = define->nameClass;
9066 while (list != NULL) {
9067 ret = xmlRelaxNGAttributeMatch(ctxt, list, prop);
9068 if (ret == 1)
9069 return (1);
9070 if (ret < 0)
9071 return (ret);
9072 list = list->next;
9073 }
9074 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009075 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009076 TODO}
9077 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009078}
9079
9080/**
Daniel Veillard6eadf632003-01-23 18:29:16 +00009081 * xmlRelaxNGValidateAttribute:
9082 * @ctxt: a Relax-NG validation context
9083 * @define: the definition to verify
9084 *
9085 * Validate the given attribute definition for that node
9086 *
9087 * Returns 0 if the validation succeeded or an error code.
9088 */
9089static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009090xmlRelaxNGValidateAttribute(xmlRelaxNGValidCtxtPtr ctxt,
9091 xmlRelaxNGDefinePtr define)
9092{
Daniel Veillard6eadf632003-01-23 18:29:16 +00009093 int ret = 0, i;
9094 xmlChar *value, *oldvalue;
9095 xmlAttrPtr prop = NULL, tmp;
Daniel Veillardc3da18a2003-03-18 00:31:04 +00009096 xmlNodePtr oldseq;
Daniel Veillard6eadf632003-01-23 18:29:16 +00009097
Daniel Veillard1ed7f362003-02-03 10:57:45 +00009098 if (ctxt->state->nbAttrLeft <= 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009099 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009100 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009101 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9102 tmp = ctxt->state->attrs[i];
9103 if ((tmp != NULL) && (xmlStrEqual(define->name, tmp->name))) {
9104 if ((((define->ns == NULL) || (define->ns[0] == 0)) &&
9105 (tmp->ns == NULL)) ||
9106 ((tmp->ns != NULL) &&
9107 (xmlStrEqual(define->ns, tmp->ns->href)))) {
9108 prop = tmp;
9109 break;
9110 }
9111 }
9112 }
9113 if (prop != NULL) {
9114 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9115 oldvalue = ctxt->state->value;
9116 oldseq = ctxt->state->seq;
9117 ctxt->state->seq = (xmlNodePtr) prop;
9118 ctxt->state->value = value;
9119 ctxt->state->endvalue = NULL;
9120 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9121 if (ctxt->state->value != NULL)
9122 value = ctxt->state->value;
9123 if (value != NULL)
9124 xmlFree(value);
9125 ctxt->state->value = oldvalue;
9126 ctxt->state->seq = oldseq;
9127 if (ret == 0) {
9128 /*
9129 * flag the attribute as processed
9130 */
9131 ctxt->state->attrs[i] = NULL;
9132 ctxt->state->nbAttrLeft--;
9133 }
9134 } else {
9135 ret = -1;
9136 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009137#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009138 xmlGenericError(xmlGenericErrorContext,
9139 "xmlRelaxNGValidateAttribute(%s): %d\n",
9140 define->name, ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009141#endif
9142 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009143 for (i = 0; i < ctxt->state->nbAttrs; i++) {
9144 tmp = ctxt->state->attrs[i];
9145 if ((tmp != NULL) &&
9146 (xmlRelaxNGAttributeMatch(ctxt, define, tmp) == 1)) {
9147 prop = tmp;
9148 break;
9149 }
9150 }
9151 if (prop != NULL) {
9152 value = xmlNodeListGetString(prop->doc, prop->children, 1);
9153 oldvalue = ctxt->state->value;
9154 oldseq = ctxt->state->seq;
9155 ctxt->state->seq = (xmlNodePtr) prop;
9156 ctxt->state->value = value;
9157 ret = xmlRelaxNGValidateValueContent(ctxt, define->content);
9158 if (ctxt->state->value != NULL)
9159 value = ctxt->state->value;
9160 if (value != NULL)
9161 xmlFree(value);
9162 ctxt->state->value = oldvalue;
9163 ctxt->state->seq = oldseq;
9164 if (ret == 0) {
9165 /*
9166 * flag the attribute as processed
9167 */
9168 ctxt->state->attrs[i] = NULL;
9169 ctxt->state->nbAttrLeft--;
9170 }
9171 } else {
9172 ret = -1;
9173 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009174#ifdef DEBUG
Daniel Veillard4c004142003-10-07 11:33:24 +00009175 if (define->ns != NULL) {
9176 xmlGenericError(xmlGenericErrorContext,
9177 "xmlRelaxNGValidateAttribute(nsName ns = %s): %d\n",
9178 define->ns, ret);
9179 } else {
9180 xmlGenericError(xmlGenericErrorContext,
9181 "xmlRelaxNGValidateAttribute(anyName): %d\n",
9182 ret);
9183 }
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00009184#endif
Daniel Veillard6eadf632003-01-23 18:29:16 +00009185 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009186
9187 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +00009188}
9189
9190/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009191 * xmlRelaxNGValidateAttributeList:
9192 * @ctxt: a Relax-NG validation context
9193 * @define: the list of definition to verify
9194 *
9195 * Validate the given node against the list of attribute definitions
9196 *
9197 * Returns 0 if the validation succeeded or an error code.
9198 */
9199static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009200xmlRelaxNGValidateAttributeList(xmlRelaxNGValidCtxtPtr ctxt,
9201 xmlRelaxNGDefinePtr defines)
9202{
Daniel Veillardce192eb2003-04-16 15:58:05 +00009203 int ret = 0, res;
9204 int needmore = 0;
9205 xmlRelaxNGDefinePtr cur;
9206
9207 cur = defines;
9208 while (cur != NULL) {
9209 if (cur->type == XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009210 if (xmlRelaxNGValidateAttribute(ctxt, cur) != 0)
9211 ret = -1;
9212 } else
9213 needmore = 1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009214 cur = cur->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009215 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009216 if (!needmore)
Daniel Veillard4c004142003-10-07 11:33:24 +00009217 return (ret);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009218 cur = defines;
9219 while (cur != NULL) {
9220 if (cur->type != XML_RELAXNG_ATTRIBUTE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009221 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9222 res = xmlRelaxNGValidateDefinition(ctxt, cur);
9223 if (res < 0)
9224 ret = -1;
9225 } else {
9226 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9227 return (-1);
9228 }
9229 if (res == -1) /* continues on -2 */
9230 break;
9231 }
Daniel Veillardce192eb2003-04-16 15:58:05 +00009232 cur = cur->next;
9233 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009234
9235 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009236}
9237
9238/**
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009239 * xmlRelaxNGNodeMatchesList:
9240 * @node: the node
9241 * @list: a NULL terminated array of definitions
9242 *
9243 * Check if a node can be matched by one of the definitions
9244 *
9245 * Returns 1 if matches 0 otherwise
9246 */
9247static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009248xmlRelaxNGNodeMatchesList(xmlNodePtr node, xmlRelaxNGDefinePtr * list)
9249{
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009250 xmlRelaxNGDefinePtr cur;
Daniel Veillard0e3d3ce2003-03-21 12:43:18 +00009251 int i = 0, tmp;
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009252
9253 if ((node == NULL) || (list == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +00009254 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009255
9256 cur = list[i++];
9257 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009258 if ((node->type == XML_ELEMENT_NODE) &&
9259 (cur->type == XML_RELAXNG_ELEMENT)) {
9260 tmp = xmlRelaxNGElementMatch(NULL, cur, node);
9261 if (tmp == 1)
9262 return (1);
9263 } else if (((node->type == XML_TEXT_NODE) ||
9264 (node->type == XML_CDATA_SECTION_NODE)) &&
9265 (cur->type == XML_RELAXNG_TEXT)) {
9266 return (1);
9267 }
9268 cur = list[i++];
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009269 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009270 return (0);
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00009271}
9272
9273/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009274 * xmlRelaxNGValidateInterleave:
9275 * @ctxt: a Relax-NG validation context
9276 * @define: the definition to verify
9277 *
9278 * Validate an interleave definition for a node.
9279 *
9280 * Returns 0 if the validation succeeded or an error code.
9281 */
9282static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009283xmlRelaxNGValidateInterleave(xmlRelaxNGValidCtxtPtr ctxt,
9284 xmlRelaxNGDefinePtr define)
9285{
William M. Brack779af002003-08-01 15:55:39 +00009286 int ret = 0, i, nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009287 int errNr = ctxt->errNr;
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009288 int oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009289
9290 xmlRelaxNGValidStatePtr oldstate;
9291 xmlRelaxNGPartitionPtr partitions;
9292 xmlRelaxNGInterleaveGroupPtr group = NULL;
9293 xmlNodePtr cur, start, last = NULL, lastchg = NULL, lastelem;
9294 xmlNodePtr *list = NULL, *lasts = NULL;
9295
9296 if (define->data != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009297 partitions = (xmlRelaxNGPartitionPtr) define->data;
9298 nbgroups = partitions->nbgroups;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009299 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009300 VALID_ERR(XML_RELAXNG_ERR_INTERNODATA);
9301 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009302 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009303 /*
9304 * Optimizations for MIXED
9305 */
9306 oldflags = ctxt->flags;
Daniel Veillarde063f482003-03-21 16:53:17 +00009307 if (define->dflags & IS_MIXED) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009308 ctxt->flags |= FLAGS_MIXED_CONTENT;
9309 if (nbgroups == 2) {
9310 /*
9311 * this is a pure <mixed> case
9312 */
9313 if (ctxt->state != NULL)
9314 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9315 ctxt->state->seq);
9316 if (partitions->groups[0]->rule->type == XML_RELAXNG_TEXT)
9317 ret = xmlRelaxNGValidateDefinition(ctxt,
9318 partitions->groups[1]->
9319 rule);
9320 else
9321 ret = xmlRelaxNGValidateDefinition(ctxt,
9322 partitions->groups[0]->
9323 rule);
9324 if (ret == 0) {
9325 if (ctxt->state != NULL)
9326 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt,
9327 ctxt->state->
9328 seq);
9329 }
9330 ctxt->flags = oldflags;
9331 return (ret);
9332 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009333 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009334
9335 /*
9336 * Build arrays to store the first and last node of the chain
9337 * pertaining to each group
9338 */
9339 list = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9340 if (list == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009341 xmlRngVErrMemory(ctxt, "validating\n");
9342 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009343 }
9344 memset(list, 0, nbgroups * sizeof(xmlNodePtr));
9345 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr));
9346 if (lasts == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009347 xmlRngVErrMemory(ctxt, "validating\n");
9348 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009349 }
9350 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr));
9351
9352 /*
9353 * Walk the sequence of children finding the right group and
9354 * sorting them in sequences.
9355 */
9356 cur = ctxt->state->seq;
9357 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9358 start = cur;
9359 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009360 ctxt->state->seq = cur;
9361 if ((partitions->triage != NULL) &&
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009362 (partitions->flags & IS_DETERMINIST)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009363 void *tmp = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009364
Daniel Veillard4c004142003-10-07 11:33:24 +00009365 if ((cur->type == XML_TEXT_NODE) ||
9366 (cur->type == XML_CDATA_SECTION_NODE)) {
9367 tmp = xmlHashLookup2(partitions->triage, BAD_CAST "#text",
9368 NULL);
9369 } else if (cur->type == XML_ELEMENT_NODE) {
9370 if (cur->ns != NULL) {
9371 tmp = xmlHashLookup2(partitions->triage, cur->name,
9372 cur->ns->href);
9373 if (tmp == NULL)
9374 tmp = xmlHashLookup2(partitions->triage,
9375 BAD_CAST "#any",
9376 cur->ns->href);
9377 } else
9378 tmp =
9379 xmlHashLookup2(partitions->triage, cur->name,
9380 NULL);
9381 if (tmp == NULL)
9382 tmp =
9383 xmlHashLookup2(partitions->triage, BAD_CAST "#any",
9384 NULL);
9385 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009386
Daniel Veillard4c004142003-10-07 11:33:24 +00009387 if (tmp == NULL) {
9388 i = nbgroups;
9389 } else {
9390 i = ((long) tmp) - 1;
9391 if (partitions->flags & IS_NEEDCHECK) {
9392 group = partitions->groups[i];
9393 if (!xmlRelaxNGNodeMatchesList(cur, group->defs))
9394 i = nbgroups;
9395 }
9396 }
9397 } else {
9398 for (i = 0; i < nbgroups; i++) {
9399 group = partitions->groups[i];
9400 if (group == NULL)
9401 continue;
9402 if (xmlRelaxNGNodeMatchesList(cur, group->defs))
9403 break;
9404 }
9405 }
9406 /*
9407 * We break as soon as an element not matched is found
9408 */
9409 if (i >= nbgroups) {
9410 break;
9411 }
9412 if (lasts[i] != NULL) {
9413 lasts[i]->next = cur;
9414 lasts[i] = cur;
9415 } else {
9416 list[i] = cur;
9417 lasts[i] = cur;
9418 }
9419 if (cur->next != NULL)
9420 lastchg = cur->next;
9421 else
9422 lastchg = cur;
9423 cur = xmlRelaxNGSkipIgnored(ctxt, cur->next);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009424 }
9425 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009426 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9427 ret = -1;
9428 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009429 }
9430 lastelem = cur;
9431 oldstate = ctxt->state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009432 for (i = 0; i < nbgroups; i++) {
9433 ctxt->state = xmlRelaxNGCopyValidState(ctxt, oldstate);
Gaurav Gupta6d753992014-07-14 16:01:10 +08009434 if (ctxt->state == NULL) {
9435 ret = -1;
9436 break;
9437 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009438 group = partitions->groups[i];
9439 if (lasts[i] != NULL) {
9440 last = lasts[i]->next;
9441 lasts[i]->next = NULL;
9442 }
9443 ctxt->state->seq = list[i];
9444 ret = xmlRelaxNGValidateDefinition(ctxt, group->rule);
9445 if (ret != 0)
9446 break;
9447 if (ctxt->state != NULL) {
9448 cur = ctxt->state->seq;
9449 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9450 xmlRelaxNGFreeValidState(ctxt, oldstate);
9451 oldstate = ctxt->state;
9452 ctxt->state = NULL;
9453 if (cur != NULL) {
9454 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9455 ret = -1;
9456 ctxt->state = oldstate;
9457 goto done;
9458 }
9459 } else if (ctxt->states != NULL) {
9460 int j;
9461 int found = 0;
Daniel Veillard87254c82006-02-19 15:27:17 +00009462 int best = -1;
9463 int lowattr = -1;
9464
9465 /*
9466 * PBM: what happen if there is attributes checks in the interleaves
9467 */
Daniel Veillardfd573f12003-03-16 17:52:32 +00009468
Daniel Veillard4c004142003-10-07 11:33:24 +00009469 for (j = 0; j < ctxt->states->nbState; j++) {
9470 cur = ctxt->states->tabState[j]->seq;
9471 cur = xmlRelaxNGSkipIgnored(ctxt, cur);
9472 if (cur == NULL) {
Daniel Veillard87254c82006-02-19 15:27:17 +00009473 if (found == 0) {
9474 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9475 best = j;
9476 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009477 found = 1;
Daniel Veillard87254c82006-02-19 15:27:17 +00009478 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9479 /* try to keep the latest one to mach old heuristic */
9480 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9481 best = j;
9482 }
9483 if (lowattr == 0)
9484 break;
9485 } else if (found == 0) {
9486 if (lowattr == -1) {
9487 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9488 best = j;
9489 } else
9490 if (ctxt->states->tabState[j]->nbAttrLeft <= lowattr) {
9491 /* try to keep the latest one to mach old heuristic */
9492 lowattr = ctxt->states->tabState[j]->nbAttrLeft;
9493 best = j;
9494 }
9495 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009496 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009497 /*
9498 * BIG PBM: here we pick only one restarting point :-(
9499 */
Daniel Veillard4c004142003-10-07 11:33:24 +00009500 if (ctxt->states->nbState > 0) {
9501 xmlRelaxNGFreeValidState(ctxt, oldstate);
Daniel Veillard87254c82006-02-19 15:27:17 +00009502 if (best != -1) {
9503 oldstate = ctxt->states->tabState[best];
9504 ctxt->states->tabState[best] = NULL;
9505 } else {
9506 oldstate =
9507 ctxt->states->tabState[ctxt->states->nbState - 1];
9508 ctxt->states->tabState[ctxt->states->nbState - 1] = NULL;
Daniel Veillard9fcd4622009-08-14 16:16:31 +02009509 ctxt->states->nbState--;
Daniel Veillard87254c82006-02-19 15:27:17 +00009510 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009511 }
Daniel Veillard87254c82006-02-19 15:27:17 +00009512 for (j = 0; j < ctxt->states->nbState ; j++) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009513 xmlRelaxNGFreeValidState(ctxt, ctxt->states->tabState[j]);
9514 }
9515 xmlRelaxNGFreeStates(ctxt, ctxt->states);
9516 ctxt->states = NULL;
9517 if (found == 0) {
Daniel Veillard76d36452009-09-07 11:19:33 +02009518 if (cur == NULL) {
Ben Waltona7a6a4b2010-03-15 10:06:36 +01009519 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA,
9520 (const xmlChar *) "noname");
Daniel Veillard76d36452009-09-07 11:19:33 +02009521 } else {
9522 VALID_ERR2(XML_RELAXNG_ERR_INTEREXTRA, cur->name);
9523 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009524 ret = -1;
9525 ctxt->state = oldstate;
9526 goto done;
9527 }
9528 } else {
9529 ret = -1;
9530 break;
9531 }
9532 if (lasts[i] != NULL) {
9533 lasts[i]->next = last;
9534 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009535 }
9536 if (ctxt->state != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009537 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009538 ctxt->state = oldstate;
9539 ctxt->state->seq = lastelem;
9540 if (ret != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009541 VALID_ERR(XML_RELAXNG_ERR_INTERSEQ);
9542 ret = -1;
9543 goto done;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009544 }
9545
Daniel Veillard4c004142003-10-07 11:33:24 +00009546 done:
Daniel Veillard249d7bb2003-03-19 21:02:29 +00009547 ctxt->flags = oldflags;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009548 /*
9549 * builds the next links chain from the prev one
9550 */
9551 cur = lastchg;
9552 while (cur != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009553 if ((cur == start) || (cur->prev == NULL))
9554 break;
9555 cur->prev->next = cur;
9556 cur = cur->prev;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009557 }
9558 if (ret == 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009559 if (ctxt->errNr > errNr)
9560 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009561 }
9562
9563 xmlFree(list);
9564 xmlFree(lasts);
Daniel Veillard4c004142003-10-07 11:33:24 +00009565 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009566}
9567
9568/**
9569 * xmlRelaxNGValidateDefinitionList:
9570 * @ctxt: a Relax-NG validation context
9571 * @define: the list of definition to verify
9572 *
9573 * Validate the given node content against the (list) of definitions
9574 *
9575 * Returns 0 if the validation succeeded or an error code.
9576 */
9577static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009578xmlRelaxNGValidateDefinitionList(xmlRelaxNGValidCtxtPtr ctxt,
9579 xmlRelaxNGDefinePtr defines)
9580{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009581 int ret = 0, res;
9582
9583
Daniel Veillard952379b2003-03-17 15:37:12 +00009584 if (defines == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009585 VALID_ERR2(XML_RELAXNG_ERR_INTERNAL,
9586 BAD_CAST "NULL definition list");
9587 return (-1);
Daniel Veillard952379b2003-03-17 15:37:12 +00009588 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009589 while (defines != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009590 if ((ctxt->state != NULL) || (ctxt->states != NULL)) {
9591 res = xmlRelaxNGValidateDefinition(ctxt, defines);
9592 if (res < 0)
9593 ret = -1;
9594 } else {
9595 VALID_ERR(XML_RELAXNG_ERR_NOSTATE);
9596 return (-1);
9597 }
9598 if (res == -1) /* continues on -2 */
9599 break;
9600 defines = defines->next;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009601 }
9602
Daniel Veillard4c004142003-10-07 11:33:24 +00009603 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009604}
9605
9606/**
9607 * xmlRelaxNGElementMatch:
Daniel Veillard416589a2003-02-17 17:25:42 +00009608 * @ctxt: a Relax-NG validation context
9609 * @define: the definition to check
Daniel Veillardfd573f12003-03-16 17:52:32 +00009610 * @elem: the element
Daniel Veillard416589a2003-02-17 17:25:42 +00009611 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009612 * Check if the element matches the definition nameClass
Daniel Veillard416589a2003-02-17 17:25:42 +00009613 *
Daniel Veillardfd573f12003-03-16 17:52:32 +00009614 * Returns 1 if the element matches, 0 if no, or -1 in case of error
Daniel Veillard416589a2003-02-17 17:25:42 +00009615 */
9616static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009617xmlRelaxNGElementMatch(xmlRelaxNGValidCtxtPtr ctxt,
9618 xmlRelaxNGDefinePtr define, xmlNodePtr elem)
9619{
Daniel Veillard580ced82003-03-21 21:22:48 +00009620 int ret = 0, oldflags = 0;
Daniel Veillard416589a2003-02-17 17:25:42 +00009621
Daniel Veillardfd573f12003-03-16 17:52:32 +00009622 if (define->name != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009623 if (!xmlStrEqual(elem->name, define->name)) {
9624 VALID_ERR3(XML_RELAXNG_ERR_ELEMNAME, define->name, elem->name);
9625 return (0);
9626 }
Daniel Veillard6eadf632003-01-23 18:29:16 +00009627 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009628 if ((define->ns != NULL) && (define->ns[0] != 0)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009629 if (elem->ns == NULL) {
9630 VALID_ERR2(XML_RELAXNG_ERR_ELEMNONS, elem->name);
9631 return (0);
9632 } else if (!xmlStrEqual(elem->ns->href, define->ns)) {
9633 VALID_ERR3(XML_RELAXNG_ERR_ELEMWRONGNS,
9634 elem->name, define->ns);
9635 return (0);
9636 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009637 } else if ((elem->ns != NULL) && (define->ns != NULL) &&
Daniel Veillard4c004142003-10-07 11:33:24 +00009638 (define->name == NULL)) {
9639 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, elem->name);
9640 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009641 } else if ((elem->ns != NULL) && (define->name != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009642 VALID_ERR2(XML_RELAXNG_ERR_ELEMEXTRANS, define->name);
9643 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009644 }
9645
9646 if (define->nameClass == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +00009647 return (1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009648
9649 define = define->nameClass;
9650 if (define->type == XML_RELAXNG_EXCEPT) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009651 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009652
Daniel Veillard4c004142003-10-07 11:33:24 +00009653 if (ctxt != NULL) {
9654 oldflags = ctxt->flags;
9655 ctxt->flags |= FLAGS_IGNORABLE;
9656 }
9657
9658 list = define->content;
9659 while (list != NULL) {
9660 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9661 if (ret == 1) {
9662 if (ctxt != NULL)
9663 ctxt->flags = oldflags;
9664 return (0);
9665 }
9666 if (ret < 0) {
9667 if (ctxt != NULL)
9668 ctxt->flags = oldflags;
9669 return (ret);
9670 }
9671 list = list->next;
9672 }
9673 ret = 1;
9674 if (ctxt != NULL) {
9675 ctxt->flags = oldflags;
9676 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009677 } else if (define->type == XML_RELAXNG_CHOICE) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009678 xmlRelaxNGDefinePtr list;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009679
Daniel Veillard4c004142003-10-07 11:33:24 +00009680 if (ctxt != NULL) {
9681 oldflags = ctxt->flags;
9682 ctxt->flags |= FLAGS_IGNORABLE;
9683 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009684
Daniel Veillard4c004142003-10-07 11:33:24 +00009685 list = define->nameClass;
9686 while (list != NULL) {
9687 ret = xmlRelaxNGElementMatch(ctxt, list, elem);
9688 if (ret == 1) {
9689 if (ctxt != NULL)
9690 ctxt->flags = oldflags;
9691 return (1);
9692 }
9693 if (ret < 0) {
9694 if (ctxt != NULL)
9695 ctxt->flags = oldflags;
9696 return (ret);
9697 }
9698 list = list->next;
9699 }
9700 if (ctxt != NULL) {
9701 if (ret != 0) {
9702 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9703 xmlRelaxNGDumpValidError(ctxt);
9704 } else {
9705 if (ctxt->errNr > 0)
9706 xmlRelaxNGPopErrors(ctxt, 0);
9707 }
9708 }
9709 ret = 0;
9710 if (ctxt != NULL) {
9711 ctxt->flags = oldflags;
9712 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009713 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +00009714 TODO ret = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009715 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009716 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009717}
9718
9719/**
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009720 * xmlRelaxNGBestState:
9721 * @ctxt: a Relax-NG validation context
9722 *
9723 * Find the "best" state in the ctxt->states list of states to report
9724 * errors about. I.e. a state with no element left in the child list
9725 * or the one with the less attributes left.
9726 * This is called only if a falidation error was detected
9727 *
9728 * Returns the index of the "best" state or -1 in case of error
9729 */
9730static int
Daniel Veillard4c004142003-10-07 11:33:24 +00009731xmlRelaxNGBestState(xmlRelaxNGValidCtxtPtr ctxt)
9732{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009733 xmlRelaxNGValidStatePtr state;
9734 int i, tmp;
9735 int best = -1;
9736 int value = 1000000;
9737
9738 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9739 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009740 return (-1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009741
Daniel Veillard4c004142003-10-07 11:33:24 +00009742 for (i = 0; i < ctxt->states->nbState; i++) {
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009743 state = ctxt->states->tabState[i];
Daniel Veillard4c004142003-10-07 11:33:24 +00009744 if (state == NULL)
9745 continue;
9746 if (state->seq != NULL) {
9747 if ((best == -1) || (value > 100000)) {
9748 value = 100000;
9749 best = i;
9750 }
9751 } else {
9752 tmp = state->nbAttrLeft;
9753 if ((best == -1) || (value > tmp)) {
9754 value = tmp;
9755 best = i;
9756 }
9757 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009758 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009759 return (best);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009760}
9761
9762/**
9763 * xmlRelaxNGLogBestError:
9764 * @ctxt: a Relax-NG validation context
9765 *
9766 * Find the "best" state in the ctxt->states list of states to report
9767 * errors about and log it.
9768 */
9769static void
Daniel Veillard4c004142003-10-07 11:33:24 +00009770xmlRelaxNGLogBestError(xmlRelaxNGValidCtxtPtr ctxt)
9771{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009772 int best;
9773
9774 if ((ctxt == NULL) || (ctxt->states == NULL) ||
9775 (ctxt->states->nbState <= 0))
Daniel Veillard4c004142003-10-07 11:33:24 +00009776 return;
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009777
9778 best = xmlRelaxNGBestState(ctxt);
9779 if ((best >= 0) && (best < ctxt->states->nbState)) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009780 ctxt->state = ctxt->states->tabState[best];
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009781
Daniel Veillard4c004142003-10-07 11:33:24 +00009782 xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009783 }
9784}
9785
9786/**
Daniel Veillardfd573f12003-03-16 17:52:32 +00009787 * xmlRelaxNGValidateElementEnd:
9788 * @ctxt: a Relax-NG validation context
William M. Brack272693c2003-11-14 16:20:34 +00009789 * @dolog: indicate that error logging should be done
Daniel Veillardfd573f12003-03-16 17:52:32 +00009790 *
9791 * Validate the end of the element, implements check that
9792 * there is nothing left not consumed in the element content
9793 * or in the attribute list.
9794 *
9795 * Returns 0 if the validation succeeded or an error code.
9796 */
9797static int
William M. Brack272693c2003-11-14 16:20:34 +00009798xmlRelaxNGValidateElementEnd(xmlRelaxNGValidCtxtPtr ctxt, int dolog)
Daniel Veillard4c004142003-10-07 11:33:24 +00009799{
Daniel Veillard1ac24d32003-08-27 14:15:15 +00009800 int i;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009801 xmlRelaxNGValidStatePtr state;
9802
9803 state = ctxt->state;
9804 if (state->seq != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009805 state->seq = xmlRelaxNGSkipIgnored(ctxt, state->seq);
9806 if (state->seq != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009807 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009808 VALID_ERR3(XML_RELAXNG_ERR_EXTRACONTENT,
9809 state->node->name, state->seq->name);
9810 }
9811 return (-1);
9812 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009813 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009814 for (i = 0; i < state->nbAttrs; i++) {
9815 if (state->attrs[i] != NULL) {
William M. Brack272693c2003-11-14 16:20:34 +00009816 if (dolog) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009817 VALID_ERR3(XML_RELAXNG_ERR_INVALIDATTR,
9818 state->attrs[i]->name, state->node->name);
9819 }
9820 return (-1 - i);
9821 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009822 }
Daniel Veillard4c004142003-10-07 11:33:24 +00009823 return (0);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009824}
9825
9826/**
9827 * xmlRelaxNGValidateState:
9828 * @ctxt: a Relax-NG validation context
9829 * @define: the definition to verify
9830 *
9831 * Validate the current state against the definition
9832 *
9833 * Returns 0 if the validation succeeded or an error code.
9834 */
9835static int
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009836xmlRelaxNGValidateState(xmlRelaxNGValidCtxtPtr ctxt,
9837 xmlRelaxNGDefinePtr define)
9838{
Daniel Veillardfd573f12003-03-16 17:52:32 +00009839 xmlNodePtr node;
9840 int ret = 0, i, tmp, oldflags, errNr;
Daniel Veillardbbb78b52003-03-21 01:24:45 +00009841 xmlRelaxNGValidStatePtr oldstate = NULL, state;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009842
9843 if (define == NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009844 VALID_ERR(XML_RELAXNG_ERR_NODEFINE);
9845 return (-1);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009846 }
9847
9848 if (ctxt->state != NULL) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009849 node = ctxt->state->seq;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009850 } else {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009851 node = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009852 }
9853#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009854 for (i = 0; i < ctxt->depth; i++)
9855 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009856 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009857 "Start validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +00009858 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009859 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009860 if ((node != NULL) && (node->name != NULL))
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009861 xmlGenericError(xmlGenericErrorContext, "on %s\n", node->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +00009862 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009863 xmlGenericError(xmlGenericErrorContext, "\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +00009864#endif
9865 ctxt->depth++;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009866 switch (define->type) {
9867 case XML_RELAXNG_EMPTY:
Philip Withnall57941042014-10-26 18:08:04 +00009868 xmlRelaxNGSkipIgnored(ctxt, node);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009869 ret = 0;
9870 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009871 case XML_RELAXNG_NOT_ALLOWED:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009872 ret = -1;
9873 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009874 case XML_RELAXNG_TEXT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009875 while ((node != NULL) &&
9876 ((node->type == XML_TEXT_NODE) ||
9877 (node->type == XML_COMMENT_NODE) ||
9878 (node->type == XML_PI_NODE) ||
9879 (node->type == XML_CDATA_SECTION_NODE)))
9880 node = node->next;
9881 ctxt->state->seq = node;
9882 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +00009883 case XML_RELAXNG_ELEMENT:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009884 errNr = ctxt->errNr;
9885 node = xmlRelaxNGSkipIgnored(ctxt, node);
9886 if (node == NULL) {
9887 VALID_ERR2(XML_RELAXNG_ERR_NOELEM, define->name);
9888 ret = -1;
9889 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9890 xmlRelaxNGDumpValidError(ctxt);
9891 break;
9892 }
9893 if (node->type != XML_ELEMENT_NODE) {
9894 VALID_ERR(XML_RELAXNG_ERR_NOTELEM);
9895 ret = -1;
9896 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9897 xmlRelaxNGDumpValidError(ctxt);
9898 break;
9899 }
9900 /*
9901 * This node was already validated successfully against
9902 * this definition.
9903 */
Daniel Veillard807daf82004-02-22 22:13:27 +00009904 if (node->psvi == define) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009905 ctxt->state->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
9906 if (ctxt->errNr > errNr)
9907 xmlRelaxNGPopErrors(ctxt, errNr);
9908 if (ctxt->errNr != 0) {
9909 while ((ctxt->err != NULL) &&
9910 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME)
9911 && (xmlStrEqual(ctxt->err->arg2, node->name)))
9912 ||
9913 ((ctxt->err->err ==
9914 XML_RELAXNG_ERR_ELEMEXTRANS)
9915 && (xmlStrEqual(ctxt->err->arg1, node->name)))
9916 || (ctxt->err->err == XML_RELAXNG_ERR_NOELEM)
9917 || (ctxt->err->err ==
9918 XML_RELAXNG_ERR_NOTELEM)))
9919 xmlRelaxNGValidErrorPop(ctxt);
9920 }
9921 break;
9922 }
Daniel Veillardfd573f12003-03-16 17:52:32 +00009923
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009924 ret = xmlRelaxNGElementMatch(ctxt, define, node);
9925 if (ret <= 0) {
9926 ret = -1;
9927 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9928 xmlRelaxNGDumpValidError(ctxt);
9929 break;
9930 }
9931 ret = 0;
9932 if (ctxt->errNr != 0) {
9933 if (ctxt->errNr > errNr)
9934 xmlRelaxNGPopErrors(ctxt, errNr);
9935 while ((ctxt->err != NULL) &&
9936 (((ctxt->err->err == XML_RELAXNG_ERR_ELEMNAME) &&
9937 (xmlStrEqual(ctxt->err->arg2, node->name))) ||
9938 ((ctxt->err->err == XML_RELAXNG_ERR_ELEMEXTRANS) &&
9939 (xmlStrEqual(ctxt->err->arg1, node->name))) ||
9940 (ctxt->err->err == XML_RELAXNG_ERR_NOELEM) ||
9941 (ctxt->err->err == XML_RELAXNG_ERR_NOTELEM)))
9942 xmlRelaxNGValidErrorPop(ctxt);
9943 }
9944 errNr = ctxt->errNr;
Daniel Veillardfd573f12003-03-16 17:52:32 +00009945
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009946 oldflags = ctxt->flags;
9947 if (ctxt->flags & FLAGS_MIXED_CONTENT) {
9948 ctxt->flags -= FLAGS_MIXED_CONTENT;
9949 }
9950 state = xmlRelaxNGNewValidState(ctxt, node);
9951 if (state == NULL) {
9952 ret = -1;
9953 if ((ctxt->flags & FLAGS_IGNORABLE) == 0)
9954 xmlRelaxNGDumpValidError(ctxt);
9955 break;
9956 }
Daniel Veillard7fe1f3a2003-03-31 22:13:33 +00009957
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009958 oldstate = ctxt->state;
9959 ctxt->state = state;
9960 if (define->attrs != NULL) {
9961 tmp = xmlRelaxNGValidateAttributeList(ctxt, define->attrs);
9962 if (tmp != 0) {
9963 ret = -1;
9964 VALID_ERR2(XML_RELAXNG_ERR_ATTRVALID, node->name);
9965 }
9966 }
9967 if (define->contModel != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +00009968 xmlRelaxNGValidStatePtr nstate, tmpstate = ctxt->state;
9969 xmlRelaxNGStatesPtr tmpstates = ctxt->states;
9970 xmlNodePtr nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009971
Daniel Veillard4c004142003-10-07 11:33:24 +00009972 nstate = xmlRelaxNGNewValidState(ctxt, node);
9973 ctxt->state = nstate;
9974 ctxt->states = NULL;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009975
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009976 tmp = xmlRelaxNGValidateCompiledContent(ctxt,
9977 define->contModel,
9978 ctxt->state->seq);
Daniel Veillard4c004142003-10-07 11:33:24 +00009979 nseq = ctxt->state->seq;
9980 ctxt->state = tmpstate;
9981 ctxt->states = tmpstates;
9982 xmlRelaxNGFreeValidState(ctxt, nstate);
Daniel Veillardce192eb2003-04-16 15:58:05 +00009983
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009984#ifdef DEBUG_COMPILE
Daniel Veillard4c004142003-10-07 11:33:24 +00009985 xmlGenericError(xmlGenericErrorContext,
9986 "Validating content of '%s' : %d\n",
9987 define->name, tmp);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +00009988#endif
Daniel Veillardce192eb2003-04-16 15:58:05 +00009989 if (tmp != 0)
Daniel Veillard4c004142003-10-07 11:33:24 +00009990 ret = -1;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009991
9992 if (ctxt->states != NULL) {
9993 tmp = -1;
9994
Daniel Veillardce192eb2003-04-16 15:58:05 +00009995 for (i = 0; i < ctxt->states->nbState; i++) {
9996 state = ctxt->states->tabState[i];
9997 ctxt->state = state;
Daniel Veillard4c004142003-10-07 11:33:24 +00009998 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +00009999
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010000 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardce192eb2003-04-16 15:58:05 +000010001 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +000010002 break;
10003 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010004 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010005 if (tmp != 0) {
10006 /*
10007 * validation error, log the message for the "best" one
10008 */
10009 ctxt->flags |= FLAGS_IGNORABLE;
10010 xmlRelaxNGLogBestError(ctxt);
10011 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010012 for (i = 0; i < ctxt->states->nbState; i++) {
10013 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010014 ctxt->states->
10015 tabState[i]);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010016 }
10017 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10018 ctxt->flags = oldflags;
10019 ctxt->states = NULL;
10020 if ((ret == 0) && (tmp == -1))
10021 ret = -1;
10022 } else {
10023 state = ctxt->state;
Daniel Veillardd8ed1052007-06-12 09:24:46 +000010024 if (ctxt->state != NULL)
10025 ctxt->state->seq = nseq;
Daniel Veillardce192eb2003-04-16 15:58:05 +000010026 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010027 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardce192eb2003-04-16 15:58:05 +000010028 xmlRelaxNGFreeValidState(ctxt, state);
10029 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010030 } else {
10031 if (define->content != NULL) {
10032 tmp = xmlRelaxNGValidateDefinitionList(ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010033 define->
10034 content);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010035 if (tmp != 0) {
10036 ret = -1;
10037 if (ctxt->state == NULL) {
10038 ctxt->state = oldstate;
10039 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10040 node->name);
10041 ctxt->state = NULL;
10042 } else {
10043 VALID_ERR2(XML_RELAXNG_ERR_CONTENTVALID,
10044 node->name);
10045 }
10046
10047 }
10048 }
10049 if (ctxt->states != NULL) {
10050 tmp = -1;
10051
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010052 for (i = 0; i < ctxt->states->nbState; i++) {
10053 state = ctxt->states->tabState[i];
10054 ctxt->state = state;
10055
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010056 if (xmlRelaxNGValidateElementEnd(ctxt, 0) == 0) {
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010057 tmp = 0;
Daniel Veillard4c004142003-10-07 11:33:24 +000010058 break;
10059 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010060 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010061 if (tmp != 0) {
10062 /*
10063 * validation error, log the message for the "best" one
10064 */
10065 ctxt->flags |= FLAGS_IGNORABLE;
10066 xmlRelaxNGLogBestError(ctxt);
10067 }
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010068 for (i = 0; i < ctxt->states->nbState; i++) {
10069 xmlRelaxNGFreeValidState(ctxt,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010070 ctxt->states->tabState[i]);
10071 ctxt->states->tabState[i] = NULL;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010072 }
10073 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10074 ctxt->flags = oldflags;
10075 ctxt->states = NULL;
10076 if ((ret == 0) && (tmp == -1))
10077 ret = -1;
10078 } else {
10079 state = ctxt->state;
10080 if (ret == 0)
Daniel Veillard1ac24d32003-08-27 14:15:15 +000010081 ret = xmlRelaxNGValidateElementEnd(ctxt, 1);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010082 xmlRelaxNGFreeValidState(ctxt, state);
10083 }
10084 }
10085 if (ret == 0) {
Daniel Veillard807daf82004-02-22 22:13:27 +000010086 node->psvi = define;
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010087 }
10088 ctxt->flags = oldflags;
10089 ctxt->state = oldstate;
10090 if (oldstate != NULL)
10091 oldstate->seq = xmlRelaxNGSkipIgnored(ctxt, node->next);
10092 if (ret != 0) {
10093 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10094 xmlRelaxNGDumpValidError(ctxt);
10095 ret = 0;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010096#if 0
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010097 } else {
10098 ret = -2;
Daniel Veillardfa0d0942006-10-13 16:30:56 +000010099#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010100 }
10101 } else {
10102 if (ctxt->errNr > errNr)
10103 xmlRelaxNGPopErrors(ctxt, errNr);
10104 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010105
10106#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010107 xmlGenericError(xmlGenericErrorContext,
10108 "xmlRelaxNGValidateDefinition(): validated %s : %d",
10109 node->name, ret);
10110 if (oldstate == NULL)
10111 xmlGenericError(xmlGenericErrorContext, ": no state\n");
10112 else if (oldstate->seq == NULL)
10113 xmlGenericError(xmlGenericErrorContext, ": done\n");
10114 else if (oldstate->seq->type == XML_ELEMENT_NODE)
10115 xmlGenericError(xmlGenericErrorContext, ": next elem %s\n",
10116 oldstate->seq->name);
10117 else
10118 xmlGenericError(xmlGenericErrorContext, ": next %s %d\n",
10119 oldstate->seq->name, oldstate->seq->type);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010120#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010121 break;
10122 case XML_RELAXNG_OPTIONAL:{
10123 errNr = ctxt->errNr;
10124 oldflags = ctxt->flags;
10125 ctxt->flags |= FLAGS_IGNORABLE;
10126 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10127 ret =
10128 xmlRelaxNGValidateDefinitionList(ctxt,
10129 define->content);
10130 if (ret != 0) {
10131 if (ctxt->state != NULL)
10132 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10133 ctxt->state = oldstate;
10134 ctxt->flags = oldflags;
10135 ret = 0;
10136 if (ctxt->errNr > errNr)
10137 xmlRelaxNGPopErrors(ctxt, errNr);
10138 break;
10139 }
10140 if (ctxt->states != NULL) {
10141 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10142 } else {
10143 ctxt->states = xmlRelaxNGNewStates(ctxt, 1);
10144 if (ctxt->states == NULL) {
10145 xmlRelaxNGFreeValidState(ctxt, oldstate);
10146 ctxt->flags = oldflags;
10147 ret = -1;
10148 if (ctxt->errNr > errNr)
10149 xmlRelaxNGPopErrors(ctxt, errNr);
10150 break;
10151 }
10152 xmlRelaxNGAddStates(ctxt, ctxt->states, oldstate);
10153 xmlRelaxNGAddStates(ctxt, ctxt->states, ctxt->state);
10154 ctxt->state = NULL;
10155 }
10156 ctxt->flags = oldflags;
10157 ret = 0;
10158 if (ctxt->errNr > errNr)
10159 xmlRelaxNGPopErrors(ctxt, errNr);
10160 break;
10161 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010162 case XML_RELAXNG_ONEORMORE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010163 errNr = ctxt->errNr;
10164 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10165 if (ret != 0) {
10166 break;
10167 }
10168 if (ctxt->errNr > errNr)
10169 xmlRelaxNGPopErrors(ctxt, errNr);
10170 /* no break on purpose */
10171 case XML_RELAXNG_ZEROORMORE:{
10172 int progress;
10173 xmlRelaxNGStatesPtr states = NULL, res = NULL;
10174 int base, j;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010175
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010176 errNr = ctxt->errNr;
10177 res = xmlRelaxNGNewStates(ctxt, 1);
10178 if (res == NULL) {
10179 ret = -1;
10180 break;
10181 }
10182 /*
10183 * All the input states are also exit states
10184 */
10185 if (ctxt->state != NULL) {
10186 xmlRelaxNGAddStates(ctxt, res,
10187 xmlRelaxNGCopyValidState(ctxt,
10188 ctxt->
10189 state));
10190 } else {
10191 for (j = 0; j < ctxt->states->nbState; j++) {
10192 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010193 xmlRelaxNGCopyValidState(ctxt,
10194 ctxt->states->tabState[j]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010195 }
10196 }
10197 oldflags = ctxt->flags;
10198 ctxt->flags |= FLAGS_IGNORABLE;
10199 do {
10200 progress = 0;
10201 base = res->nbState;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010202
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010203 if (ctxt->states != NULL) {
10204 states = ctxt->states;
10205 for (i = 0; i < states->nbState; i++) {
10206 ctxt->state = states->tabState[i];
10207 ctxt->states = NULL;
10208 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10209 define->
10210 content);
10211 if (ret == 0) {
10212 if (ctxt->state != NULL) {
10213 tmp = xmlRelaxNGAddStates(ctxt, res,
10214 ctxt->state);
10215 ctxt->state = NULL;
10216 if (tmp == 1)
10217 progress = 1;
10218 } else if (ctxt->states != NULL) {
10219 for (j = 0; j < ctxt->states->nbState;
10220 j++) {
10221 tmp =
10222 xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010223 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010224 if (tmp == 1)
10225 progress = 1;
10226 }
10227 xmlRelaxNGFreeStates(ctxt,
10228 ctxt->states);
10229 ctxt->states = NULL;
10230 }
10231 } else {
10232 if (ctxt->state != NULL) {
10233 xmlRelaxNGFreeValidState(ctxt,
10234 ctxt->state);
10235 ctxt->state = NULL;
10236 }
10237 }
10238 }
10239 } else {
10240 ret = xmlRelaxNGValidateDefinitionList(ctxt,
10241 define->
10242 content);
10243 if (ret != 0) {
10244 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10245 ctxt->state = NULL;
10246 } else {
10247 base = res->nbState;
10248 if (ctxt->state != NULL) {
10249 tmp = xmlRelaxNGAddStates(ctxt, res,
10250 ctxt->state);
10251 ctxt->state = NULL;
10252 if (tmp == 1)
10253 progress = 1;
10254 } else if (ctxt->states != NULL) {
10255 for (j = 0; j < ctxt->states->nbState; j++) {
10256 tmp = xmlRelaxNGAddStates(ctxt, res,
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010257 ctxt->states->tabState[j]);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010258 if (tmp == 1)
10259 progress = 1;
10260 }
10261 if (states == NULL) {
10262 states = ctxt->states;
10263 } else {
10264 xmlRelaxNGFreeStates(ctxt,
10265 ctxt->states);
10266 }
10267 ctxt->states = NULL;
10268 }
10269 }
10270 }
10271 if (progress) {
10272 /*
10273 * Collect all the new nodes added at that step
10274 * and make them the new node set
10275 */
10276 if (res->nbState - base == 1) {
10277 ctxt->state = xmlRelaxNGCopyValidState(ctxt,
10278 res->
10279 tabState
10280 [base]);
10281 } else {
10282 if (states == NULL) {
10283 xmlRelaxNGNewStates(ctxt,
10284 res->nbState - base);
Daniel Veillard14b56432006-03-09 18:41:40 +000010285 states = ctxt->states;
10286 if (states == NULL) {
10287 progress = 0;
10288 break;
10289 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010290 }
10291 states->nbState = 0;
10292 for (i = base; i < res->nbState; i++)
10293 xmlRelaxNGAddStates(ctxt, states,
10294 xmlRelaxNGCopyValidState
Daniel Veillard9fcd4622009-08-14 16:16:31 +020010295 (ctxt, res->tabState[i]));
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010296 ctxt->states = states;
10297 }
10298 }
10299 } while (progress == 1);
10300 if (states != NULL) {
10301 xmlRelaxNGFreeStates(ctxt, states);
10302 }
10303 ctxt->states = res;
10304 ctxt->flags = oldflags;
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010305#if 0
10306 /*
Daniel Veillard4c004142003-10-07 11:33:24 +000010307 * errors may have to be propagated back...
10308 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010309 if (ctxt->errNr > errNr)
10310 xmlRelaxNGPopErrors(ctxt, errNr);
Daniel Veillardc1ffa0a2003-08-26 13:56:48 +000010311#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010312 ret = 0;
10313 break;
10314 }
10315 case XML_RELAXNG_CHOICE:{
10316 xmlRelaxNGDefinePtr list = NULL;
10317 xmlRelaxNGStatesPtr states = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010318
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010319 node = xmlRelaxNGSkipIgnored(ctxt, node);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010320
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010321 errNr = ctxt->errNr;
Daniel Veillard9186a1f2005-01-15 12:38:10 +000010322 if ((define->dflags & IS_TRIABLE) && (define->data != NULL) &&
10323 (node != NULL)) {
10324 /*
10325 * node == NULL can't be optimized since IS_TRIABLE
10326 * doesn't account for choice which may lead to
10327 * only attributes.
10328 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010329 xmlHashTablePtr triage =
10330 (xmlHashTablePtr) define->data;
Daniel Veillarde063f482003-03-21 16:53:17 +000010331
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010332 /*
10333 * Something we can optimize cleanly there is only one
10334 * possble branch out !
10335 */
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010336 if ((node->type == XML_TEXT_NODE) ||
10337 (node->type == XML_CDATA_SECTION_NODE)) {
10338 list =
10339 xmlHashLookup2(triage, BAD_CAST "#text", NULL);
10340 } else if (node->type == XML_ELEMENT_NODE) {
10341 if (node->ns != NULL) {
10342 list = xmlHashLookup2(triage, node->name,
10343 node->ns->href);
10344 if (list == NULL)
10345 list =
10346 xmlHashLookup2(triage, BAD_CAST "#any",
10347 node->ns->href);
10348 } else
10349 list =
10350 xmlHashLookup2(triage, node->name, NULL);
10351 if (list == NULL)
10352 list =
10353 xmlHashLookup2(triage, BAD_CAST "#any",
10354 NULL);
10355 }
10356 if (list == NULL) {
10357 ret = -1;
William M. Brack2f076062004-03-21 11:21:14 +000010358 VALID_ERR2(XML_RELAXNG_ERR_ELEMWRONG, node->name);
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010359 break;
10360 }
10361 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10362 if (ret == 0) {
10363 }
10364 break;
10365 }
Daniel Veillarde063f482003-03-21 16:53:17 +000010366
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010367 list = define->content;
10368 oldflags = ctxt->flags;
10369 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010370
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010371 while (list != NULL) {
10372 oldstate = xmlRelaxNGCopyValidState(ctxt, ctxt->state);
10373 ret = xmlRelaxNGValidateDefinition(ctxt, list);
10374 if (ret == 0) {
10375 if (states == NULL) {
10376 states = xmlRelaxNGNewStates(ctxt, 1);
10377 }
10378 if (ctxt->state != NULL) {
10379 xmlRelaxNGAddStates(ctxt, states, ctxt->state);
10380 } else if (ctxt->states != NULL) {
10381 for (i = 0; i < ctxt->states->nbState; i++) {
10382 xmlRelaxNGAddStates(ctxt, states,
10383 ctxt->states->
10384 tabState[i]);
10385 }
10386 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10387 ctxt->states = NULL;
10388 }
10389 } else {
10390 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10391 }
10392 ctxt->state = oldstate;
10393 list = list->next;
10394 }
10395 if (states != NULL) {
10396 xmlRelaxNGFreeValidState(ctxt, oldstate);
10397 ctxt->states = states;
10398 ctxt->state = NULL;
10399 ret = 0;
10400 } else {
10401 ctxt->states = NULL;
10402 }
10403 ctxt->flags = oldflags;
10404 if (ret != 0) {
10405 if ((ctxt->flags & FLAGS_IGNORABLE) == 0) {
10406 xmlRelaxNGDumpValidError(ctxt);
10407 }
10408 } else {
10409 if (ctxt->errNr > errNr)
10410 xmlRelaxNGPopErrors(ctxt, errNr);
10411 }
10412 break;
10413 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010414 case XML_RELAXNG_DEF:
10415 case XML_RELAXNG_GROUP:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010416 ret = xmlRelaxNGValidateDefinitionList(ctxt, define->content);
10417 break;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010418 case XML_RELAXNG_INTERLEAVE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010419 ret = xmlRelaxNGValidateInterleave(ctxt, define);
10420 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010421 case XML_RELAXNG_ATTRIBUTE:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010422 ret = xmlRelaxNGValidateAttribute(ctxt, define);
10423 break;
Daniel Veillardf4e55762003-04-15 23:32:22 +000010424 case XML_RELAXNG_START:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010425 case XML_RELAXNG_NOOP:
Daniel Veillardfd573f12003-03-16 17:52:32 +000010426 case XML_RELAXNG_REF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010427 case XML_RELAXNG_EXTERNALREF:
Daniel Veillard952379b2003-03-17 15:37:12 +000010428 case XML_RELAXNG_PARENTREF:
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010429 ret = xmlRelaxNGValidateDefinition(ctxt, define->content);
10430 break;
10431 case XML_RELAXNG_DATATYPE:{
10432 xmlNodePtr child;
10433 xmlChar *content = NULL;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010434
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010435 child = node;
10436 while (child != NULL) {
10437 if (child->type == XML_ELEMENT_NODE) {
10438 VALID_ERR2(XML_RELAXNG_ERR_DATAELEM,
10439 node->parent->name);
10440 ret = -1;
10441 break;
10442 } else if ((child->type == XML_TEXT_NODE) ||
10443 (child->type == XML_CDATA_SECTION_NODE)) {
10444 content = xmlStrcat(content, child->content);
10445 }
10446 /* TODO: handle entities ... */
10447 child = child->next;
10448 }
10449 if (ret == -1) {
10450 if (content != NULL)
10451 xmlFree(content);
10452 break;
10453 }
10454 if (content == NULL) {
10455 content = xmlStrdup(BAD_CAST "");
10456 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010457 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010458 ret = -1;
10459 break;
10460 }
10461 }
10462 ret = xmlRelaxNGValidateDatatype(ctxt, content, define,
10463 ctxt->state->seq);
10464 if (ret == -1) {
10465 VALID_ERR2(XML_RELAXNG_ERR_DATATYPE, define->name);
10466 } else if (ret == 0) {
10467 ctxt->state->seq = NULL;
10468 }
10469 if (content != NULL)
10470 xmlFree(content);
10471 break;
10472 }
10473 case XML_RELAXNG_VALUE:{
10474 xmlChar *content = NULL;
10475 xmlChar *oldvalue;
10476 xmlNodePtr child;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010477
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010478 child = node;
10479 while (child != NULL) {
10480 if (child->type == XML_ELEMENT_NODE) {
10481 VALID_ERR2(XML_RELAXNG_ERR_VALELEM,
10482 node->parent->name);
10483 ret = -1;
10484 break;
10485 } else if ((child->type == XML_TEXT_NODE) ||
10486 (child->type == XML_CDATA_SECTION_NODE)) {
10487 content = xmlStrcat(content, child->content);
10488 }
10489 /* TODO: handle entities ... */
10490 child = child->next;
10491 }
10492 if (ret == -1) {
10493 if (content != NULL)
10494 xmlFree(content);
10495 break;
10496 }
10497 if (content == NULL) {
10498 content = xmlStrdup(BAD_CAST "");
10499 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010500 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010501 ret = -1;
10502 break;
10503 }
10504 }
10505 oldvalue = ctxt->state->value;
10506 ctxt->state->value = content;
10507 ret = xmlRelaxNGValidateValue(ctxt, define);
10508 ctxt->state->value = oldvalue;
10509 if (ret == -1) {
10510 VALID_ERR2(XML_RELAXNG_ERR_VALUE, define->name);
10511 } else if (ret == 0) {
10512 ctxt->state->seq = NULL;
10513 }
10514 if (content != NULL)
10515 xmlFree(content);
10516 break;
10517 }
10518 case XML_RELAXNG_LIST:{
10519 xmlChar *content;
10520 xmlNodePtr child;
10521 xmlChar *oldvalue, *oldendvalue;
10522 int len;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010523
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010524 /*
10525 * Make sure it's only text nodes
10526 */
10527
10528 content = NULL;
10529 child = node;
10530 while (child != NULL) {
10531 if (child->type == XML_ELEMENT_NODE) {
10532 VALID_ERR2(XML_RELAXNG_ERR_LISTELEM,
10533 node->parent->name);
10534 ret = -1;
10535 break;
10536 } else if ((child->type == XML_TEXT_NODE) ||
10537 (child->type == XML_CDATA_SECTION_NODE)) {
10538 content = xmlStrcat(content, child->content);
10539 }
10540 /* TODO: handle entities ... */
10541 child = child->next;
10542 }
10543 if (ret == -1) {
10544 if (content != NULL)
10545 xmlFree(content);
10546 break;
10547 }
10548 if (content == NULL) {
10549 content = xmlStrdup(BAD_CAST "");
10550 if (content == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010551 xmlRngVErrMemory(ctxt, "validating\n");
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010552 ret = -1;
10553 break;
10554 }
10555 }
10556 len = xmlStrlen(content);
10557 oldvalue = ctxt->state->value;
10558 oldendvalue = ctxt->state->endvalue;
10559 ctxt->state->value = content;
10560 ctxt->state->endvalue = content + len;
10561 ret = xmlRelaxNGValidateValue(ctxt, define);
10562 ctxt->state->value = oldvalue;
10563 ctxt->state->endvalue = oldendvalue;
10564 if (ret == -1) {
10565 VALID_ERR(XML_RELAXNG_ERR_LIST);
10566 } else if ((ret == 0) && (node != NULL)) {
10567 ctxt->state->seq = node->next;
10568 }
10569 if (content != NULL)
10570 xmlFree(content);
10571 break;
10572 }
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010573 case XML_RELAXNG_EXCEPT:
10574 case XML_RELAXNG_PARAM:
10575 TODO ret = -1;
10576 break;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010577 }
10578 ctxt->depth--;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010579#ifdef DEBUG
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010580 for (i = 0; i < ctxt->depth; i++)
10581 xmlGenericError(xmlGenericErrorContext, " ");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010582 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010583 "Validating %s ", xmlRelaxNGDefName(define));
Daniel Veillardfd573f12003-03-16 17:52:32 +000010584 if (define->name != NULL)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010585 xmlGenericError(xmlGenericErrorContext, "%s ", define->name);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010586 if (ret == 0)
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010587 xmlGenericError(xmlGenericErrorContext, "suceeded\n");
Daniel Veillardfd573f12003-03-16 17:52:32 +000010588 else
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010589 xmlGenericError(xmlGenericErrorContext, "failed\n");
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010590#endif
Daniel Veillardc58f4ef2003-04-14 16:11:26 +000010591 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010592}
10593
10594/**
Daniel Veillardfd573f12003-03-16 17:52:32 +000010595 * xmlRelaxNGValidateDefinition:
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010596 * @ctxt: a Relax-NG validation context
10597 * @define: the definition to verify
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010598 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010599 * Validate the current node lists against the definition
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010600 *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010601 * Returns 0 if the validation succeeded or an error code.
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010602 */
10603static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010604xmlRelaxNGValidateDefinition(xmlRelaxNGValidCtxtPtr ctxt,
10605 xmlRelaxNGDefinePtr define)
10606{
Daniel Veillardfd573f12003-03-16 17:52:32 +000010607 xmlRelaxNGStatesPtr states, res;
10608 int i, j, k, ret, oldflags;
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010609
Daniel Veillardfd573f12003-03-16 17:52:32 +000010610 /*
10611 * We should NOT have both ctxt->state and ctxt->states
10612 */
10613 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010614 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10615 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010616 }
10617
10618 if ((ctxt->states == NULL) || (ctxt->states->nbState == 1)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010619 if (ctxt->states != NULL) {
10620 ctxt->state = ctxt->states->tabState[0];
10621 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10622 ctxt->states = NULL;
10623 }
10624 ret = xmlRelaxNGValidateState(ctxt, define);
10625 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10626 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10627 ctxt->state = NULL;
10628 }
10629 if ((ctxt->states != NULL) && (ctxt->states->nbState == 1)) {
10630 ctxt->state = ctxt->states->tabState[0];
10631 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10632 ctxt->states = NULL;
10633 }
10634 return (ret);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010635 }
10636
10637 states = ctxt->states;
10638 ctxt->states = NULL;
10639 res = NULL;
10640 j = 0;
10641 oldflags = ctxt->flags;
10642 ctxt->flags |= FLAGS_IGNORABLE;
Daniel Veillard4c004142003-10-07 11:33:24 +000010643 for (i = 0; i < states->nbState; i++) {
10644 ctxt->state = states->tabState[i];
10645 ctxt->states = NULL;
10646 ret = xmlRelaxNGValidateState(ctxt, define);
10647 /*
10648 * We should NOT have both ctxt->state and ctxt->states
10649 */
10650 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
10651 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10652 ctxt->state = NULL;
10653 }
10654 if (ret == 0) {
10655 if (ctxt->states == NULL) {
10656 if (res != NULL) {
10657 /* add the state to the container */
10658 xmlRelaxNGAddStates(ctxt, res, ctxt->state);
10659 ctxt->state = NULL;
10660 } else {
10661 /* add the state directly in states */
10662 states->tabState[j++] = ctxt->state;
10663 ctxt->state = NULL;
10664 }
10665 } else {
10666 if (res == NULL) {
10667 /* make it the new container and copy other results */
10668 res = ctxt->states;
10669 ctxt->states = NULL;
10670 for (k = 0; k < j; k++)
10671 xmlRelaxNGAddStates(ctxt, res,
10672 states->tabState[k]);
10673 } else {
10674 /* add all the new results to res and reff the container */
10675 for (k = 0; k < ctxt->states->nbState; k++)
10676 xmlRelaxNGAddStates(ctxt, res,
10677 ctxt->states->tabState[k]);
10678 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10679 ctxt->states = NULL;
10680 }
10681 }
10682 } else {
10683 if (ctxt->state != NULL) {
10684 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10685 ctxt->state = NULL;
10686 } else if (ctxt->states != NULL) {
10687 for (k = 0; k < ctxt->states->nbState; k++)
10688 xmlRelaxNGFreeValidState(ctxt,
10689 ctxt->states->tabState[k]);
10690 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10691 ctxt->states = NULL;
10692 }
10693 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010694 }
10695 ctxt->flags = oldflags;
10696 if (res != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010697 xmlRelaxNGFreeStates(ctxt, states);
10698 ctxt->states = res;
10699 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010700 } else if (j > 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010701 states->nbState = j;
10702 ctxt->states = states;
10703 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010704 } else if (j == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010705 ctxt->state = states->tabState[0];
10706 xmlRelaxNGFreeStates(ctxt, states);
10707 ret = 0;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010708 } else {
Daniel Veillard4c004142003-10-07 11:33:24 +000010709 ret = -1;
10710 xmlRelaxNGFreeStates(ctxt, states);
10711 if (ctxt->states != NULL) {
10712 xmlRelaxNGFreeStates(ctxt, ctxt->states);
10713 ctxt->states = NULL;
10714 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010715 }
10716 if ((ctxt->state != NULL) && (ctxt->states != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010717 TODO xmlRelaxNGFreeValidState(ctxt, ctxt->state);
10718 ctxt->state = NULL;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010719 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010720 return (ret);
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010721}
10722
Daniel Veillard1564e6e2003-03-15 21:30:25 +000010723/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000010724 * xmlRelaxNGValidateDocument:
10725 * @ctxt: a Relax-NG validation context
10726 * @doc: the document
10727 *
10728 * Validate the given document
10729 *
10730 * Returns 0 if the validation succeeded or an error code.
10731 */
10732static int
Daniel Veillard4c004142003-10-07 11:33:24 +000010733xmlRelaxNGValidateDocument(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
10734{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010735 int ret;
10736 xmlRelaxNGPtr schema;
10737 xmlRelaxNGGrammarPtr grammar;
10738 xmlRelaxNGValidStatePtr state;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010739 xmlNodePtr node;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010740
10741 if ((ctxt == NULL) || (ctxt->schema == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000010742 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010743
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010744 ctxt->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010745 schema = ctxt->schema;
10746 grammar = schema->topgrammar;
10747 if (grammar == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010748 VALID_ERR(XML_RELAXNG_ERR_NOGRAMMAR);
10749 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010750 }
10751 state = xmlRelaxNGNewValidState(ctxt, NULL);
10752 ctxt->state = state;
10753 ret = xmlRelaxNGValidateDefinition(ctxt, grammar->start);
Daniel Veillardfd573f12003-03-16 17:52:32 +000010754 if ((ctxt->state != NULL) && (state->seq != NULL)) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010755 state = ctxt->state;
10756 node = state->seq;
10757 node = xmlRelaxNGSkipIgnored(ctxt, node);
10758 if (node != NULL) {
10759 if (ret != -1) {
10760 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10761 ret = -1;
10762 }
10763 }
Daniel Veillardfd573f12003-03-16 17:52:32 +000010764 } else if (ctxt->states != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010765 int i;
10766 int tmp = -1;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010767
Daniel Veillard4c004142003-10-07 11:33:24 +000010768 for (i = 0; i < ctxt->states->nbState; i++) {
10769 state = ctxt->states->tabState[i];
10770 node = state->seq;
10771 node = xmlRelaxNGSkipIgnored(ctxt, node);
10772 if (node == NULL)
10773 tmp = 0;
10774 xmlRelaxNGFreeValidState(ctxt, state);
10775 }
10776 if (tmp == -1) {
10777 if (ret != -1) {
10778 VALID_ERR(XML_RELAXNG_ERR_EXTRADATA);
10779 ret = -1;
10780 }
10781 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010782 }
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010783 if (ctxt->state != NULL) {
10784 xmlRelaxNGFreeValidState(ctxt, ctxt->state);
Daniel Veillard4c004142003-10-07 11:33:24 +000010785 ctxt->state = NULL;
Daniel Veillardbbb78b52003-03-21 01:24:45 +000010786 }
Daniel Veillard4c004142003-10-07 11:33:24 +000010787 if (ret != 0)
10788 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010789#ifdef DEBUG
10790 else if (ctxt->errNr != 0) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010791 ctxt->error(ctxt->userData,
10792 "%d Extra error messages left on stack !\n",
10793 ctxt->errNr);
10794 xmlRelaxNGDumpValidError(ctxt);
Daniel Veillard580ced82003-03-21 21:22:48 +000010795 }
10796#endif
Daniel Veillardf54cd532004-02-25 11:52:31 +000010797#ifdef LIBXML_VALID_ENABLED
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010798 if (ctxt->idref == 1) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010799 xmlValidCtxt vctxt;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010800
Daniel Veillard4c004142003-10-07 11:33:24 +000010801 memset(&vctxt, 0, sizeof(xmlValidCtxt));
10802 vctxt.valid = 1;
10803 vctxt.error = ctxt->error;
10804 vctxt.warning = ctxt->warning;
10805 vctxt.userData = ctxt->userData;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010806
Daniel Veillard4c004142003-10-07 11:33:24 +000010807 if (xmlValidateDocumentFinal(&vctxt, doc) != 1)
10808 ret = -1;
Daniel Veillardc3da18a2003-03-18 00:31:04 +000010809 }
Daniel Veillardf54cd532004-02-25 11:52:31 +000010810#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010811 if ((ret == 0) && (ctxt->errNo != XML_RELAXNG_OK))
Daniel Veillard4c004142003-10-07 11:33:24 +000010812 ret = -1;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010813
Daniel Veillard4c004142003-10-07 11:33:24 +000010814 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000010815}
10816
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020010817/**
10818 * xmlRelaxNGCleanPSVI:
10819 * @node: an input element or document
10820 *
10821 * Call this routine to speed up XPath computation on static documents.
10822 * This stamps all the element nodes with the document order
10823 * Like for line information, the order is kept in the element->content
10824 * field, the value stored is actually - the node number (starting at -1)
10825 * to be able to differentiate from line numbers.
10826 *
10827 * Returns the number of elements found in the document or -1 in case
10828 * of error.
10829 */
10830static void
10831xmlRelaxNGCleanPSVI(xmlNodePtr node) {
10832 xmlNodePtr cur;
10833
10834 if ((node == NULL) ||
10835 ((node->type != XML_ELEMENT_NODE) &&
10836 (node->type != XML_DOCUMENT_NODE) &&
10837 (node->type != XML_HTML_DOCUMENT_NODE)))
10838 return;
10839 if (node->type == XML_ELEMENT_NODE)
10840 node->psvi = NULL;
10841
10842 cur = node->children;
10843 while (cur != NULL) {
10844 if (cur->type == XML_ELEMENT_NODE) {
10845 cur->psvi = NULL;
10846 if (cur->children != NULL) {
10847 cur = cur->children;
10848 continue;
10849 }
10850 }
10851 if (cur->next != NULL) {
10852 cur = cur->next;
10853 continue;
10854 }
10855 do {
10856 cur = cur->parent;
10857 if (cur == NULL)
10858 break;
10859 if (cur == node) {
10860 cur = NULL;
10861 break;
10862 }
10863 if (cur->next != NULL) {
10864 cur = cur->next;
10865 break;
10866 }
10867 } while (cur != NULL);
10868 }
10869 return;
10870}
Daniel Veillardfd573f12003-03-16 17:52:32 +000010871/************************************************************************
Daniel Veillardf8e3db02012-09-11 13:26:36 +080010872 * *
10873 * Validation interfaces *
10874 * *
Daniel Veillardfd573f12003-03-16 17:52:32 +000010875 ************************************************************************/
Daniel Veillard4c004142003-10-07 11:33:24 +000010876
Daniel Veillard6eadf632003-01-23 18:29:16 +000010877/**
10878 * xmlRelaxNGNewValidCtxt:
10879 * @schema: a precompiled XML RelaxNGs
10880 *
10881 * Create an XML RelaxNGs validation context based on the given schema
10882 *
10883 * Returns the validation context or NULL in case of error
10884 */
10885xmlRelaxNGValidCtxtPtr
Daniel Veillard4c004142003-10-07 11:33:24 +000010886xmlRelaxNGNewValidCtxt(xmlRelaxNGPtr schema)
10887{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010888 xmlRelaxNGValidCtxtPtr ret;
10889
10890 ret = (xmlRelaxNGValidCtxtPtr) xmlMalloc(sizeof(xmlRelaxNGValidCtxt));
10891 if (ret == NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010892 xmlRngVErrMemory(NULL, "building context\n");
Daniel Veillard6eadf632003-01-23 18:29:16 +000010893 return (NULL);
10894 }
10895 memset(ret, 0, sizeof(xmlRelaxNGValidCtxt));
10896 ret->schema = schema;
Daniel Veillard1703c5f2003-02-10 14:28:44 +000010897 ret->error = xmlGenericError;
10898 ret->userData = xmlGenericErrorContext;
Daniel Veillard42f12e92003-03-07 18:32:59 +000010899 ret->errNr = 0;
10900 ret->errMax = 0;
10901 ret->err = NULL;
10902 ret->errTab = NULL;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010903 if (schema != NULL)
10904 ret->idref = schema->idref;
Daniel Veillard798024a2003-03-19 10:36:09 +000010905 ret->states = NULL;
10906 ret->freeState = NULL;
10907 ret->freeStates = NULL;
Daniel Veillarda507fbf2003-03-31 16:09:37 +000010908 ret->errNo = XML_RELAXNG_OK;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010909 return (ret);
10910}
10911
10912/**
10913 * xmlRelaxNGFreeValidCtxt:
10914 * @ctxt: the schema validation context
10915 *
10916 * Free the resources associated to the schema validation context
10917 */
10918void
Daniel Veillard4c004142003-10-07 11:33:24 +000010919xmlRelaxNGFreeValidCtxt(xmlRelaxNGValidCtxtPtr ctxt)
10920{
Daniel Veillard798024a2003-03-19 10:36:09 +000010921 int k;
10922
Daniel Veillard6eadf632003-01-23 18:29:16 +000010923 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010924 return;
Daniel Veillardfd573f12003-03-16 17:52:32 +000010925 if (ctxt->states != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010926 xmlRelaxNGFreeStates(NULL, ctxt->states);
Daniel Veillard798024a2003-03-19 10:36:09 +000010927 if (ctxt->freeState != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010928 for (k = 0; k < ctxt->freeState->nbState; k++) {
10929 xmlRelaxNGFreeValidState(NULL, ctxt->freeState->tabState[k]);
10930 }
10931 xmlRelaxNGFreeStates(NULL, ctxt->freeState);
Daniel Veillard798024a2003-03-19 10:36:09 +000010932 }
Daniel Veillard798024a2003-03-19 10:36:09 +000010933 if (ctxt->freeStates != NULL) {
Daniel Veillard4c004142003-10-07 11:33:24 +000010934 for (k = 0; k < ctxt->freeStatesNr; k++) {
10935 xmlRelaxNGFreeStates(NULL, ctxt->freeStates[k]);
10936 }
10937 xmlFree(ctxt->freeStates);
Daniel Veillard798024a2003-03-19 10:36:09 +000010938 }
Daniel Veillard42f12e92003-03-07 18:32:59 +000010939 if (ctxt->errTab != NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010940 xmlFree(ctxt->errTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010941 if (ctxt->elemTab != NULL) {
10942 xmlRegExecCtxtPtr exec;
10943
Daniel Veillard4c004142003-10-07 11:33:24 +000010944 exec = xmlRelaxNGElemPop(ctxt);
10945 while (exec != NULL) {
10946 xmlRegFreeExecCtxt(exec);
10947 exec = xmlRelaxNGElemPop(ctxt);
10948 }
10949 xmlFree(ctxt->elemTab);
Daniel Veillardf4e55762003-04-15 23:32:22 +000010950 }
Daniel Veillard6eadf632003-01-23 18:29:16 +000010951 xmlFree(ctxt);
10952}
10953
10954/**
10955 * xmlRelaxNGSetValidErrors:
10956 * @ctxt: a Relax-NG validation context
10957 * @err: the error function
10958 * @warn: the warning function
10959 * @ctx: the functions context
10960 *
10961 * Set the error and warning callback informations
10962 */
10963void
10964xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000010965 xmlRelaxNGValidityErrorFunc err,
10966 xmlRelaxNGValidityWarningFunc warn, void *ctx)
10967{
Daniel Veillard6eadf632003-01-23 18:29:16 +000010968 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000010969 return;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010970 ctxt->error = err;
10971 ctxt->warning = warn;
10972 ctxt->userData = ctx;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010973 ctxt->serror = NULL;
Daniel Veillard6eadf632003-01-23 18:29:16 +000010974}
10975
10976/**
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010977 * xmlRelaxNGSetValidStructuredErrors:
10978 * @ctxt: a Relax-NG validation context
10979 * @serror: the structured error function
10980 * @ctx: the functions context
10981 *
10982 * Set the structured error callback
10983 */
10984void
10985xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillardb30ca312005-09-04 13:50:03 +000010986 xmlStructuredErrorFunc serror, void *ctx)
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010987{
10988 if (ctxt == NULL)
10989 return;
Daniel Veillardb30ca312005-09-04 13:50:03 +000010990 ctxt->serror = serror;
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000010991 ctxt->error = NULL;
10992 ctxt->warning = NULL;
10993 ctxt->userData = ctx;
10994}
10995
10996/**
Daniel Veillard409a8142003-07-18 15:16:57 +000010997 * xmlRelaxNGGetValidErrors:
10998 * @ctxt: a Relax-NG validation context
10999 * @err: the error function result
11000 * @warn: the warning function result
11001 * @ctx: the functions context result
11002 *
11003 * Get the error and warning callback informations
11004 *
11005 * Returns -1 in case of error and 0 otherwise
11006 */
11007int
11008xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
Daniel Veillard4c004142003-10-07 11:33:24 +000011009 xmlRelaxNGValidityErrorFunc * err,
11010 xmlRelaxNGValidityWarningFunc * warn, void **ctx)
11011{
Daniel Veillard409a8142003-07-18 15:16:57 +000011012 if (ctxt == NULL)
Daniel Veillard4c004142003-10-07 11:33:24 +000011013 return (-1);
11014 if (err != NULL)
11015 *err = ctxt->error;
11016 if (warn != NULL)
11017 *warn = ctxt->warning;
11018 if (ctx != NULL)
11019 *ctx = ctxt->userData;
11020 return (0);
Daniel Veillard409a8142003-07-18 15:16:57 +000011021}
11022
11023/**
Daniel Veillard6eadf632003-01-23 18:29:16 +000011024 * xmlRelaxNGValidateDoc:
11025 * @ctxt: a Relax-NG validation context
11026 * @doc: a parsed document tree
11027 *
11028 * Validate a document tree in memory.
11029 *
11030 * Returns 0 if the document is valid, a positive error code
11031 * number otherwise and -1 in case of internal or API error.
11032 */
11033int
Daniel Veillard4c004142003-10-07 11:33:24 +000011034xmlRelaxNGValidateDoc(xmlRelaxNGValidCtxtPtr ctxt, xmlDocPtr doc)
11035{
Daniel Veillard6eadf632003-01-23 18:29:16 +000011036 int ret;
11037
11038 if ((ctxt == NULL) || (doc == NULL))
Daniel Veillard4c004142003-10-07 11:33:24 +000011039 return (-1);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011040
11041 ctxt->doc = doc;
11042
11043 ret = xmlRelaxNGValidateDocument(ctxt, doc);
Daniel Veillard71531f32003-02-05 13:19:53 +000011044 /*
Daniel Veillarda4f27cb2009-08-21 17:34:17 +020011045 * Remove all left PSVI
11046 */
11047 xmlRelaxNGCleanPSVI((xmlNodePtr) doc);
11048
11049 /*
Daniel Veillard71531f32003-02-05 13:19:53 +000011050 * TODO: build error codes
11051 */
11052 if (ret == -1)
Daniel Veillard4c004142003-10-07 11:33:24 +000011053 return (1);
11054 return (ret);
Daniel Veillard6eadf632003-01-23 18:29:16 +000011055}
11056
Daniel Veillard5d4644e2005-04-01 13:11:58 +000011057#define bottom_relaxng
11058#include "elfgcchack.h"
Daniel Veillard6eadf632003-01-23 18:29:16 +000011059#endif /* LIBXML_SCHEMAS_ENABLED */