blob: 453a31cd155d36fce500361078518c27d28ed77b [file] [log] [blame]
Daniel Veillard4255d502002-04-16 15:50:10 +00001/*
2 * schemas.c : implementation of the XML Schema handling and
3 * schema validity checking
4 *
5 * See Copyright for the status of this software.
6 *
7 * Daniel Veillard <veillard@redhat.com>
8 */
9
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010/*
Daniel Veillardb0f397e2003-12-23 23:30:53 +000011 * TODO:
12 * - when types are redefined in includes, check that all
13 * types in the redef list are equal
14 * -> need a type equality operation.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015 * - if we don't intend to use the schema for schemas, we
Daniel Veillard01fa6152004-06-29 17:04:39 +000016 * need to validate all schema attributes (ref, type, name)
17 * against their types.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018 * - Eliminate item creation for: ??
19 *
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020 * URGENT TODO:
21 * - For xsi-driven schema acquisition, augment the IDCs after every
22 * acquisition episode (xmlSchemaAugmentIDC).
23 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000024 * NOTES:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025 * - Elimated item creation for: <restriction>, <extension>,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000026 * <simpleContent>, <complexContent>, <list>, <union>
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000028 * PROBLEMS:
29 * - http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005JulSep/0337.html
30 * IDC XPath expression and chameleon includes: the targetNamespace is changed, so
31 * XPath will have trouble to resolve to this namespace, since not known.
32 *
33 *
34 * CONSTRAINTS:
35 *
36 * Schema Component Constraint:
37 * All Group Limited (cos-all-limited)
38 * Status: complete
39 * (1.2)
40 * In xmlSchemaGroupDefReferenceTermFixup() and
41 * (2)
42 * In xmlSchemaParseModelGroup()
43 * TODO: Actually this should go to component-level checks,
44 * but is done here due to performance. Move it to an other layer
45 * is schema construction via an API is implemented.
Daniel Veillardb0f397e2003-12-23 23:30:53 +000046 */
Daniel Veillard4255d502002-04-16 15:50:10 +000047#define IN_LIBXML
48#include "libxml.h"
49
50#ifdef LIBXML_SCHEMAS_ENABLED
51
52#include <string.h>
53#include <libxml/xmlmemory.h>
54#include <libxml/parser.h>
55#include <libxml/parserInternals.h>
56#include <libxml/hash.h>
Daniel Veillard5a872412002-05-22 06:40:27 +000057#include <libxml/uri.h>
Daniel Veillard4255d502002-04-16 15:50:10 +000058#include <libxml/xmlschemas.h>
59#include <libxml/schemasInternals.h>
60#include <libxml/xmlschemastypes.h>
61#include <libxml/xmlautomata.h>
62#include <libxml/xmlregexp.h>
Daniel Veillardbe9c6322003-11-22 20:37:51 +000063#include <libxml/dict.h>
Kasimier T. Buchcik72d3adc2005-07-08 16:43:37 +000064#include <libxml/encoding.h>
65#include <libxml/xmlIO.h>
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000066#ifdef LIBXML_PATTERN_ENABLED
67#include <libxml/pattern.h>
68#endif
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000069#ifdef LIBXML_READER_ENABLED
70#include <libxml/xmlreader.h>
71#endif
Daniel Veillard4255d502002-04-16 15:50:10 +000072
Daniel Veillarda84c0b32003-06-02 16:58:46 +000073/* #define DEBUG 1 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000074
Daniel Veillard82bbbd42003-05-11 20:16:09 +000075/* #define DEBUG_CONTENT 1 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000076
Daniel Veillard82bbbd42003-05-11 20:16:09 +000077/* #define DEBUG_TYPE 1 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000078
Daniel Veillard118aed72002-09-24 14:13:13 +000079/* #define DEBUG_CONTENT_REGEXP 1 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000080
Daniel Veillard4255d502002-04-16 15:50:10 +000081/* #define DEBUG_AUTOMATA 1 */
82
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000083/* #define DEBUG_IDC */
84
85/* #define DEBUG_IDC_NODE_TABLE */
86
87#ifdef DEBUG_IDC
88 #ifndef DEBUG_IDC_NODE_TABLE
89 #define DEBUG_IDC_NODE_TABLE
90 #endif
91#endif
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000092
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000093/* #define ENABLE_PARTICLE_RESTRICTION 1 */
94
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000095#define ENABLE_REDEFINE
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000096
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000097/* #define ENABLE_NAMED_LOCALS */
98
Kasimier T. Buchcik132ba5f2005-11-28 12:32:24 +000099/* #define ENABLE_IDC_NODE_TABLES_TEST */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000100
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000101#define DUMP_CONTENT_MODEL
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000102
103#ifdef LIBXML_READER_ENABLED
104/* #define XML_SCHEMA_READER_ENABLED */
105#endif
Daniel Veillardc0826a72004-08-10 14:17:33 +0000106
Daniel Veillard4255d502002-04-16 15:50:10 +0000107#define UNBOUNDED (1 << 30)
108#define TODO \
109 xmlGenericError(xmlGenericErrorContext, \
110 "Unimplemented block at %s:%d\n", \
111 __FILE__, __LINE__);
112
William M. Brack2f2a6632004-08-20 23:09:47 +0000113#define XML_SCHEMAS_NO_NAMESPACE (const xmlChar *) "##"
Daniel Veillardc0826a72004-08-10 14:17:33 +0000114
Daniel Veillard4255d502002-04-16 15:50:10 +0000115/*
116 * The XML Schemas namespaces
117 */
118static const xmlChar *xmlSchemaNs = (const xmlChar *)
119 "http://www.w3.org/2001/XMLSchema";
120
121static const xmlChar *xmlSchemaInstanceNs = (const xmlChar *)
122 "http://www.w3.org/2001/XMLSchema-instance";
123
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000124static const xmlChar *xmlNamespaceNs = (const xmlChar *)
125 "http://www.w3.org/2000/xmlns/";
126
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000127/*
128* Come casting macros.
129*/
130#define ACTXT_CAST (xmlSchemaAbstractCtxtPtr)
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +0000131#define PCTXT_CAST (xmlSchemaParserCtxtPtr)
132#define VCTXT_CAST (xmlSchemaValidCtxtPtr)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000133#define WXS_BASIC_CAST (xmlSchemaBasicItemPtr)
134#define WXS_TREE_CAST (xmlSchemaTreeItemPtr)
135#define WXS_PTC_CAST (xmlSchemaParticlePtr)
136#define WXS_TYPE_CAST (xmlSchemaTypePtr)
137#define WXS_ELEM_CAST (xmlSchemaElementPtr)
138#define WXS_ATTR_GROUP_CAST (xmlSchemaAttributeGroupPtr)
139#define WXS_ATTR_CAST (xmlSchemaAttributePtr)
140#define WXS_ATTR_USE_CAST (xmlSchemaAttributeUsePtr)
141#define WXS_ATTR_PROHIB_CAST (xmlSchemaAttributeUseProhibPtr)
142#define WXS_MODEL_GROUPDEF_CAST (xmlSchemaModelGroupDefPtr)
143#define WXS_MODEL_GROUP_CAST (xmlSchemaModelGroupPtr)
144#define WXS_IDC_CAST (xmlSchemaIDCPtr)
145#define WXS_QNAME_CAST (xmlSchemaQNameRefPtr)
146#define WXS_LIST_CAST (xmlSchemaItemListPtr)
Daniel Veillardc0826a72004-08-10 14:17:33 +0000147
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000148/*
149* Macros to query common properties of components.
150*/
151#define WXS_ITEM_NODE(i) xmlSchemaGetComponentNode(WXS_BASIC_CAST (i))
Daniel Veillard4255d502002-04-16 15:50:10 +0000152
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000153#define WXS_ITEM_TYPE_NAME(i) xmlSchemaGetComponentTypeStr(WXS_BASIC_CAST (i))
154/*
155* Macros for element declarations.
156*/
157#define WXS_ELEM_TYPEDEF(e) (e)->subtypes
Daniel Veillardc0826a72004-08-10 14:17:33 +0000158
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000159#define WXS_SUBST_HEAD(item) (item)->refDecl
160/*
161* Macros for attribute declarations.
162*/
163#define WXS_ATTR_TYPEDEF(a) (a)->subtypes
164/*
165* Macros for attribute uses.
166*/
167#define WXS_ATTRUSE_DECL(au) WXS_ATTR_CAST (WXS_ATTR_USE_CAST (au))->attrDecl
Kasimier T. Buchcik87876402004-09-29 13:29:03 +0000168
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000169#define WXS_ATTRUSE_TYPEDEF(au) WXS_ATTR_TYPEDEF(WXS_ATTRUSE_DECL( WXS_ATTR_USE_CAST au))
Kasimier T. Buchcik87876402004-09-29 13:29:03 +0000170
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000171#define WXS_ATTRUSE_DECL_NAME(au) (WXS_ATTRUSE_DECL(au))->name
172
173#define WXS_ATTRUSE_DECL_TNS(au) (WXS_ATTRUSE_DECL(au))->targetNamespace
174/*
175* Macros for attribute groups.
176*/
177#define WXS_ATTR_GROUP_HAS_REFS(ag) ((WXS_ATTR_GROUP_CAST (ag))->flags & XML_SCHEMAS_ATTRGROUP_HAS_REFS)
178#define WXS_ATTR_GROUP_EXPANDED(ag) ((WXS_ATTR_GROUP_CAST (ag))->flags & XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED)
179/*
180* Macros for particles.
181*/
182#define WXS_PARTICLE(p) WXS_PTC_CAST (p)
183
184#define WXS_PARTICLE_TERM(p) (WXS_PARTICLE(p))->children
185
186#define WXS_PARTICLE_MODEL(p) WXS_MODEL_GROUP_CAST WXS_PARTICLE(p)->children
187/*
188* Macros for model groups definitions.
189*/
190#define WXS_MODELGROUPDEF_MODEL(mgd) (WXS_MODEL_GROUP_CAST (mgd))->children
191/*
192* Macros for model groups.
193*/
194#define WXS_IS_MODEL_GROUP(i) \
195 (((i)->type == XML_SCHEMA_TYPE_SEQUENCE) || \
196 ((i)->type == XML_SCHEMA_TYPE_CHOICE) || \
197 ((i)->type == XML_SCHEMA_TYPE_ALL))
198
199#define WXS_MODELGROUP_PARTICLE(mg) WXS_PTC_CAST (mg)->children
200/*
201* Macros for schema buckets.
202*/
203#define WXS_IS_BUCKET_INCREDEF(t) (((t) == XML_SCHEMA_SCHEMA_INCLUDE) || \
204 ((t) == XML_SCHEMA_SCHEMA_REDEFINE))
205
206#define WXS_IS_BUCKET_IMPMAIN(t) (((t) == XML_SCHEMA_SCHEMA_MAIN) || \
207 ((t) == XML_SCHEMA_SCHEMA_IMPORT))
208
209#define WXS_IMPBUCKET(b) ((xmlSchemaImportPtr) (b))
210
211#define WXS_INCBUCKET(b) ((xmlSchemaIncludePtr) (b))
212/*
213* Macros for complex/simple types.
214*/
215#define WXS_IS_ANYTYPE(i) \
216 (( (i)->type == XML_SCHEMA_TYPE_BASIC) && \
217 ( (WXS_TYPE_CAST (i))->builtInType == XML_SCHEMAS_ANYTYPE))
218
219#define WXS_IS_COMPLEX(i) \
220 (((i)->type == XML_SCHEMA_TYPE_COMPLEX) || \
221 ((i)->builtInType == XML_SCHEMAS_ANYTYPE))
222
223#define WXS_IS_SIMPLE(item) \
224 ((item->type == XML_SCHEMA_TYPE_SIMPLE) || \
225 ((item->type == XML_SCHEMA_TYPE_BASIC) && \
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000226 (item->builtInType != XML_SCHEMAS_ANYTYPE)))
Kasimier T. Buchcik87876402004-09-29 13:29:03 +0000227
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000228#define WXS_IS_ANY_SIMPLE_TYPE(i) \
229 (((i)->type == XML_SCHEMA_TYPE_BASIC) && \
230 ((i)->builtInType == XML_SCHEMAS_ANYSIMPLETYPE))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000231
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000232#define WXS_IS_RESTRICTION(t) \
233 ((t)->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000234
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000235#define WXS_IS_EXTENSION(t) \
236 ((t)->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION)
237
238#define WXS_IS_TYPE_NOT_FIXED(i) \
239 (((i)->type != XML_SCHEMA_TYPE_BASIC) && \
240 (((i)->flags & XML_SCHEMAS_TYPE_INTERNAL_RESOLVED) == 0))
241
242#define WXS_IS_TYPE_NOT_FIXED_1(item) \
243 (((item)->type != XML_SCHEMA_TYPE_BASIC) && \
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000244 (((item)->flags & XML_SCHEMAS_TYPE_FIXUP_1) == 0))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000245/*
246* Macros for exclusively for complex types.
247*/
248#define WXS_HAS_COMPLEX_CONTENT(item) \
249 ((item->contentType == XML_SCHEMA_CONTENT_MIXED) || \
250 (item->contentType == XML_SCHEMA_CONTENT_EMPTY) || \
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000251 (item->contentType == XML_SCHEMA_CONTENT_ELEMENTS))
252
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000253#define WXS_HAS_SIMPLE_CONTENT(item) \
254 ((item->contentType == XML_SCHEMA_CONTENT_SIMPLE) || \
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +0000255 (item->contentType == XML_SCHEMA_CONTENT_BASIC))
256
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000257#define WXS_HAS_MIXED_CONTENT(item) \
258 (item->contentType == XML_SCHEMA_CONTENT_MIXED)
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +0000259
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000260#define WXS_EMPTIABLE(t) \
261 (xmlSchemaIsParticleEmptiable(WXS_PTC_CAST (t)->subtypes))
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +0000262
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000263#define WXS_TYPE_CONTENTTYPE(t) (t)->subtypes
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000264
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000265#define WXS_TYPE_PARTICLE(t) WXS_PTC_CAST (t)->subtypes
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000266
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000267#define WXS_TYPE_PARTICLE_TERM(t) WXS_PARTICLE_TERM(WXS_TYPE_PARTICLE(t))
268/*
269* Macros for exclusively for simple types.
270*/
271#define WXS_LIST_ITEMTYPE(t) (t)->subtypes
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000272
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000273#define WXS_IS_ATOMIC(t) (t->flags & XML_SCHEMAS_TYPE_VARIETY_ATOMIC)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000274
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000275#define WXS_IS_LIST(t) (t->flags & XML_SCHEMAS_TYPE_VARIETY_LIST)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000276
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000277#define WXS_IS_UNION(t) (t->flags & XML_SCHEMAS_TYPE_VARIETY_UNION)
278/*
279* Misc parser context macros.
280*/
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000281#define WXS_CONSTRUCTOR(ctx) (ctx)->constructor
282
283#define WXS_HAS_BUCKETS(ctx) \
284( (WXS_CONSTRUCTOR((ctx))->buckets != NULL) && \
285(WXS_CONSTRUCTOR((ctx))->buckets->nbItems > 0) )
286
287#define WXS_SUBST_GROUPS(ctx) WXS_CONSTRUCTOR((ctx))->substGroups
288
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000289#define WXS_BUCKET(ctx) WXS_CONSTRUCTOR((ctx))->bucket
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000290
291#define WXS_SCHEMA(ctx) (ctx)->schema
292
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000293#define WXS_ADD_LOCAL(ctx, item) \
294 xmlSchemaAddItemSize(&(WXS_BUCKET(ctx)->locals), 10, item)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000295
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000296#define WXS_ADD_GLOBAL(ctx, item) \
297 xmlSchemaAddItemSize(&(WXS_BUCKET(ctx)->globals), 5, item)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000298
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000299#define WXS_ADD_PENDING(ctx, item) \
300 xmlSchemaAddItemSize(&((ctx)->constructor->pending), 10, item)
301/*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000302* xmlSchemaItemList macros.
303*/
304#define WXS_ILIST_IS_EMPTY(l) ((l == NULL) || ((l)->nbItems == 0))
305/*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000306* Misc macros.
307*/
308#define IS_SCHEMA(node, type) \
309 ((node != NULL) && (node->ns != NULL) && \
310 (xmlStrEqual(node->name, (const xmlChar *) type)) && \
311 (xmlStrEqual(node->ns->href, xmlSchemaNs)))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000312
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000313#define FREE_AND_NULL(str) if ((str) != NULL) { xmlFree((xmlChar *) (str)); str = NULL; }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000314
315/*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000316* Since we put the default/fixed values into the dict, we can
317* use pointer comparison for those values.
318* REMOVED: (xmlStrEqual((v1), (v2)))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000319*/
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000320#define WXS_ARE_DEFAULT_STR_EQUAL(v1, v2) ((v1) == (v2))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000321
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000322#define INODE_NILLED(item) (item->flags & XML_SCHEMA_ELEM_INFO_NILLED)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000323
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000324#define CAN_PARSE_SCHEMA(b) (((b)->doc != NULL) && ((b)->parsed == 0))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000325
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000326#define HFAILURE if (res == -1) goto exit_failure;
327
328#define HERROR if (res != 0) goto exit_error;
329
330#define HSTOP(ctx) if ((ctx)->stop) goto exit;
331/*
332* Some flags used for various schema constraints.
333*/
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +0000334#define SUBSET_RESTRICTION 1<<0
335#define SUBSET_EXTENSION 1<<1
336#define SUBSET_SUBSTITUTION 1<<2
337#define SUBSET_LIST 1<<3
338#define SUBSET_UNION 1<<4
339
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000340typedef struct _xmlSchemaNodeInfo xmlSchemaNodeInfo;
341typedef xmlSchemaNodeInfo *xmlSchemaNodeInfoPtr;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +0000342
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000343typedef struct _xmlSchemaItemList xmlSchemaItemList;
344typedef xmlSchemaItemList *xmlSchemaItemListPtr;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000345struct _xmlSchemaItemList {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +0000346 void **items; /* used for dynamic addition of schemata */
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +0000347 int nbItems; /* used for dynamic addition of schemata */
348 int sizeItems; /* used for dynamic addition of schemata */
349};
350
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000351#define XML_SCHEMA_CTXT_PARSER 1
352#define XML_SCHEMA_CTXT_VALIDATOR 2
353
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000354typedef struct _xmlSchemaAbstractCtxt xmlSchemaAbstractCtxt;
355typedef xmlSchemaAbstractCtxt *xmlSchemaAbstractCtxtPtr;
356struct _xmlSchemaAbstractCtxt {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000357 int type; /* E.g. XML_SCHEMA_CTXT_VALIDATOR */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000358};
359
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000360typedef struct _xmlSchemaBucket xmlSchemaBucket;
361typedef xmlSchemaBucket *xmlSchemaBucketPtr;
362
363#define XML_SCHEMA_SCHEMA_MAIN 0
364#define XML_SCHEMA_SCHEMA_IMPORT 1
365#define XML_SCHEMA_SCHEMA_INCLUDE 2
366#define XML_SCHEMA_SCHEMA_REDEFINE 3
367
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000368/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000369 * xmlSchemaSchemaRelation:
370 *
371 * Used to create a graph of schema relationships.
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000372 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000373typedef struct _xmlSchemaSchemaRelation xmlSchemaSchemaRelation;
374typedef xmlSchemaSchemaRelation *xmlSchemaSchemaRelationPtr;
375struct _xmlSchemaSchemaRelation {
376 xmlSchemaSchemaRelationPtr next;
377 int type; /* E.g. XML_SCHEMA_SCHEMA_IMPORT */
378 const xmlChar *importNamespace;
379 xmlSchemaBucketPtr bucket;
380};
381
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000382#define XML_SCHEMA_BUCKET_MARKED 1<<0
383#define XML_SCHEMA_BUCKET_COMPS_ADDED 1<<1
384
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000385struct _xmlSchemaBucket {
386 int type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000387 int flags;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000388 const xmlChar *schemaLocation;
389 const xmlChar *origTargetNamespace;
390 const xmlChar *targetNamespace;
391 xmlDocPtr doc;
392 xmlSchemaSchemaRelationPtr relations;
393 int located;
394 int parsed;
395 int imported;
396 int preserveDoc;
397 xmlSchemaItemListPtr globals; /* Global components. */
398 xmlSchemaItemListPtr locals; /* Local components. */
399};
400
401/**
402 * xmlSchemaImport:
403 * (extends xmlSchemaBucket)
404 *
405 * Reflects a schema. Holds some information
406 * about the schema and its toplevel components. Duplicate
407 * toplevel components are not checked at this level.
408 */
409typedef struct _xmlSchemaImport xmlSchemaImport;
410typedef xmlSchemaImport *xmlSchemaImportPtr;
411struct _xmlSchemaImport {
412 int type; /* Main OR import OR include. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000413 int flags;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000414 const xmlChar *schemaLocation; /* The URI of the schema document. */
415 /* For chameleon includes, @origTargetNamespace will be NULL */
416 const xmlChar *origTargetNamespace;
417 /*
418 * For chameleon includes, @targetNamespace will be the
419 * targetNamespace of the including schema.
420 */
421 const xmlChar *targetNamespace;
422 xmlDocPtr doc; /* The schema node-tree. */
423 /* @relations will hold any included/imported/redefined schemas. */
424 xmlSchemaSchemaRelationPtr relations;
425 int located;
426 int parsed;
427 int imported;
428 int preserveDoc;
429 xmlSchemaItemListPtr globals;
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000430 xmlSchemaItemListPtr locals;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000431 /* The imported schema. */
432 xmlSchemaPtr schema;
433};
434
435/*
436* (extends xmlSchemaBucket)
437*/
438typedef struct _xmlSchemaInclude xmlSchemaInclude;
439typedef xmlSchemaInclude *xmlSchemaIncludePtr;
440struct _xmlSchemaInclude {
441 int type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000442 int flags;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +0000443 const xmlChar *schemaLocation;
444 const xmlChar *origTargetNamespace;
445 const xmlChar *targetNamespace;
446 xmlDocPtr doc;
447 xmlSchemaSchemaRelationPtr relations;
448 int located;
449 int parsed;
450 int imported;
451 int preserveDoc;
452 xmlSchemaItemListPtr globals; /* Global components. */
453 xmlSchemaItemListPtr locals; /* Local components. */
454
455 /* The owning main or import schema bucket. */
456 xmlSchemaImportPtr ownerImport;
457};
458
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000459/**
460 * xmlSchemaBasicItem:
461 *
462 * The abstract base type for schema components.
463 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000464typedef struct _xmlSchemaBasicItem xmlSchemaBasicItem;
465typedef xmlSchemaBasicItem *xmlSchemaBasicItemPtr;
466struct _xmlSchemaBasicItem {
467 xmlSchemaTypeType type;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000468};
469
470/**
471 * xmlSchemaAnnotItem:
472 *
473 * The abstract base type for annotated schema components.
474 * (Extends xmlSchemaBasicItem)
475 */
476typedef struct _xmlSchemaAnnotItem xmlSchemaAnnotItem;
477typedef xmlSchemaAnnotItem *xmlSchemaAnnotItemPtr;
478struct _xmlSchemaAnnotItem {
479 xmlSchemaTypeType type;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000480 xmlSchemaAnnotPtr annot;
481};
482
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000483/**
484 * xmlSchemaTreeItem:
485 *
486 * The abstract base type for tree-like structured schema components.
487 * (Extends xmlSchemaAnnotItem)
488 */
489typedef struct _xmlSchemaTreeItem xmlSchemaTreeItem;
490typedef xmlSchemaTreeItem *xmlSchemaTreeItemPtr;
491struct _xmlSchemaTreeItem {
492 xmlSchemaTypeType type;
493 xmlSchemaAnnotPtr annot;
494 xmlSchemaTreeItemPtr next;
495 xmlSchemaTreeItemPtr children;
496};
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000497
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000498
499#define XML_SCHEMA_ATTR_USE_FIXED 1<<0
500/**
501 * xmlSchemaAttributeUsePtr:
502 *
503 * The abstract base type for tree-like structured schema components.
504 * (Extends xmlSchemaTreeItem)
505 */
506typedef struct _xmlSchemaAttributeUse xmlSchemaAttributeUse;
507typedef xmlSchemaAttributeUse *xmlSchemaAttributeUsePtr;
508struct _xmlSchemaAttributeUse {
509 xmlSchemaTypeType type;
510 xmlSchemaAnnotPtr annot;
511 xmlSchemaAttributeUsePtr next; /* The next attr. use. */
512 /*
513 * The attr. decl. OR a QName-ref. to an attr. decl. OR
514 * a QName-ref. to an attribute group definition.
515 */
516 xmlSchemaAttributePtr attrDecl;
517
518 int flags;
519 xmlNodePtr node;
520 int occurs; /* required, optional */
521 const xmlChar * defValue;
522 xmlSchemaValPtr defVal;
523};
524
525/**
526 * xmlSchemaAttributeUseProhibPtr:
527 *
528 * A helper component to reflect attribute prohibitions.
529 * (Extends xmlSchemaBasicItem)
530 */
531typedef struct _xmlSchemaAttributeUseProhib xmlSchemaAttributeUseProhib;
532typedef xmlSchemaAttributeUseProhib *xmlSchemaAttributeUseProhibPtr;
533struct _xmlSchemaAttributeUseProhib {
534 xmlSchemaTypeType type; /* == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB */
535 xmlNodePtr node;
536 const xmlChar *name;
537 const xmlChar *targetNamespace;
538 int isRef;
539};
540
541/**
542 * xmlSchemaRedef:
543 */
544typedef struct _xmlSchemaRedef xmlSchemaRedef;
545typedef xmlSchemaRedef *xmlSchemaRedefPtr;
546struct _xmlSchemaRedef {
547 xmlSchemaRedefPtr next;
548 xmlSchemaBasicItemPtr item; /* The redefining component. */
549 xmlSchemaBasicItemPtr reference; /* The referencing component. */
550 xmlSchemaBasicItemPtr target; /* The to-be-redefined component. */
551 const xmlChar *refName; /* The name of the to-be-redefined component. */
552 const xmlChar *refTargetNs; /* The target namespace of the
553 to-be-redefined comp. */
554 xmlSchemaBucketPtr targetBucket; /* The redefined schema. */
555};
556
557/**
558 * xmlSchemaConstructionCtxt:
559 */
560typedef struct _xmlSchemaConstructionCtxt xmlSchemaConstructionCtxt;
561typedef xmlSchemaConstructionCtxt *xmlSchemaConstructionCtxtPtr;
562struct _xmlSchemaConstructionCtxt {
563 xmlSchemaPtr mainSchema; /* The main schema. */
564 xmlSchemaBucketPtr mainBucket; /* The main schema bucket */
565 xmlDictPtr dict;
566 xmlSchemaItemListPtr buckets; /* List of schema buckets. */
567 /* xmlSchemaItemListPtr relations; */ /* List of schema relations. */
568 xmlSchemaBucketPtr bucket; /* The current schema bucket */
569 xmlSchemaItemListPtr pending; /* All Components of all schemas that
570 need to be fixed. */
571 xmlHashTablePtr substGroups;
572 xmlSchemaRedefPtr redefs;
573 xmlSchemaRedefPtr lastRedef;
574};
575
576#define XML_SCHEMAS_PARSE_ERROR 1
577#define SCHEMAS_PARSE_OPTIONS XML_PARSE_NOENT
578
579struct _xmlSchemaParserCtxt {
580 int type;
Kasimier T. Buchcikb63d2fa2006-04-19 11:20:49 +0000581 void *errCtxt; /* user specific error context */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000582 xmlSchemaValidityErrorFunc error; /* the callback in case of errors */
583 xmlSchemaValidityWarningFunc warning; /* the callback in case of warning */
Kasimier T. Buchcikdfbc33a2006-01-03 10:51:59 +0000584 int err;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000585 int nberrors;
586 xmlStructuredErrorFunc serror;
587
588 xmlSchemaConstructionCtxtPtr constructor;
589 int ownsConstructor; /* TODO: Move this to parser *flags*. */
590
591 /* xmlSchemaPtr topschema; */
592 /* xmlHashTablePtr namespaces; */
593
594 xmlSchemaPtr schema; /* The main schema in use */
595 int counter;
596
597 const xmlChar *URL;
598 xmlDocPtr doc;
599 int preserve; /* Whether the doc should be freed */
600
601 const char *buffer;
602 int size;
603
604 /*
605 * Used to build complex element content models
606 */
607 xmlAutomataPtr am;
608 xmlAutomataStatePtr start;
609 xmlAutomataStatePtr end;
610 xmlAutomataStatePtr state;
611
612 xmlDictPtr dict; /* dictionnary for interned string names */
613 xmlSchemaTypePtr ctxtType; /* The current context simple/complex type */
614 int options;
615 xmlSchemaValidCtxtPtr vctxt;
616 int isS4S;
617 int isRedefine;
618 int xsiAssemble;
619 int stop; /* If the parser should stop; i.e. a critical error. */
620 const xmlChar *targetNamespace;
621 xmlSchemaBucketPtr redefined; /* The schema to be redefined. */
622
623 xmlSchemaRedefPtr redef; /* Used for redefinitions. */
624 int redefCounter; /* Used for redefinitions. */
625 xmlSchemaItemListPtr attrProhibs;
626};
627
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000628/**
629 * xmlSchemaQNameRef:
630 *
631 * A component reference item (not a schema component)
632 * (Extends xmlSchemaBasicItem)
633 */
634typedef struct _xmlSchemaQNameRef xmlSchemaQNameRef;
635typedef xmlSchemaQNameRef *xmlSchemaQNameRefPtr;
636struct _xmlSchemaQNameRef {
637 xmlSchemaTypeType type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000638 xmlSchemaBasicItemPtr item; /* The resolved referenced item. */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000639 xmlSchemaTypeType itemType;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000640 const xmlChar *name;
641 const xmlChar *targetNamespace;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000642 xmlNodePtr node;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000643};
644
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000645/**
646 * xmlSchemaParticle:
647 *
648 * A particle component.
649 * (Extends xmlSchemaTreeItem)
650 */
651typedef struct _xmlSchemaParticle xmlSchemaParticle;
652typedef xmlSchemaParticle *xmlSchemaParticlePtr;
653struct _xmlSchemaParticle {
654 xmlSchemaTypeType type;
655 xmlSchemaAnnotPtr annot;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000656 xmlSchemaTreeItemPtr next; /* next particle */
657 xmlSchemaTreeItemPtr children; /* the "term" (e.g. a model group,
658 a group definition, a XML_SCHEMA_EXTRA_QNAMEREF (if a reference),
659 etc.) */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000660 int minOccurs;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000661 int maxOccurs;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000662 xmlNodePtr node;
663};
664
665/**
666 * xmlSchemaModelGroup:
667 *
668 * A model group component.
669 * (Extends xmlSchemaTreeItem)
670 */
671typedef struct _xmlSchemaModelGroup xmlSchemaModelGroup;
672typedef xmlSchemaModelGroup *xmlSchemaModelGroupPtr;
673struct _xmlSchemaModelGroup {
674 xmlSchemaTypeType type; /* XML_SCHEMA_TYPE_SEQUENCE, XML_SCHEMA_TYPE_CHOICE, XML_SCHEMA_TYPE_ALL */
675 xmlSchemaAnnotPtr annot;
676 xmlSchemaTreeItemPtr next; /* not used */
677 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */
678 xmlNodePtr node;
679};
680
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +0000681#define XML_SCHEMA_MODEL_GROUP_DEF_MARKED 1<<0
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000682#define XML_SCHEMA_MODEL_GROUP_DEF_REDEFINED 1<<1
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000683/**
684 * xmlSchemaModelGroupDef:
685 *
686 * A model group definition component.
687 * (Extends xmlSchemaTreeItem)
688 */
689typedef struct _xmlSchemaModelGroupDef xmlSchemaModelGroupDef;
690typedef xmlSchemaModelGroupDef *xmlSchemaModelGroupDefPtr;
691struct _xmlSchemaModelGroupDef {
692 xmlSchemaTypeType type; /* XML_SCHEMA_TYPE_GROUP */
693 xmlSchemaAnnotPtr annot;
694 xmlSchemaTreeItemPtr next; /* not used */
695 xmlSchemaTreeItemPtr children; /* the "model group" */
696 const xmlChar *name;
697 const xmlChar *targetNamespace;
698 xmlNodePtr node;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +0000699 int flags;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000700};
701
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000702typedef struct _xmlSchemaIDC xmlSchemaIDC;
703typedef xmlSchemaIDC *xmlSchemaIDCPtr;
704
705/**
706 * xmlSchemaIDCSelect:
707 *
708 * The identity-constraint "field" and "selector" item, holding the
709 * XPath expression.
710 */
711typedef struct _xmlSchemaIDCSelect xmlSchemaIDCSelect;
712typedef xmlSchemaIDCSelect *xmlSchemaIDCSelectPtr;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000713struct _xmlSchemaIDCSelect {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000714 xmlSchemaIDCSelectPtr next;
715 xmlSchemaIDCPtr idc;
716 int index; /* an index position if significant for IDC key-sequences */
717 const xmlChar *xpath; /* the XPath expression */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +0000718 void *xpathComp; /* the compiled XPath expression */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000719};
720
721/**
722 * xmlSchemaIDC:
723 *
724 * The identity-constraint definition component.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000725 * (Extends xmlSchemaAnnotItem)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000726 */
727
728struct _xmlSchemaIDC {
729 xmlSchemaTypeType type;
730 xmlSchemaAnnotPtr annot;
731 xmlSchemaIDCPtr next;
732 xmlNodePtr node;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000733 const xmlChar *name;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000734 const xmlChar *targetNamespace;
735 xmlSchemaIDCSelectPtr selector;
736 xmlSchemaIDCSelectPtr fields;
737 int nbFields;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000738 xmlSchemaQNameRefPtr ref;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000739};
740
741/**
742 * xmlSchemaIDCAug:
743 *
744 * The augmented IDC information used for validation.
745 */
746typedef struct _xmlSchemaIDCAug xmlSchemaIDCAug;
747typedef xmlSchemaIDCAug *xmlSchemaIDCAugPtr;
748struct _xmlSchemaIDCAug {
749 xmlSchemaIDCAugPtr next; /* next in a list */
750 xmlSchemaIDCPtr def; /* the IDC definition */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000751 int keyrefDepth; /* the lowest tree level to which IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000752 tables need to be bubbled upwards */
753};
754
755/**
756 * xmlSchemaPSVIIDCKeySequence:
757 *
758 * The key sequence of a node table item.
759 */
760typedef struct _xmlSchemaPSVIIDCKey xmlSchemaPSVIIDCKey;
761typedef xmlSchemaPSVIIDCKey *xmlSchemaPSVIIDCKeyPtr;
762struct _xmlSchemaPSVIIDCKey {
763 xmlSchemaTypePtr type;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000764 xmlSchemaValPtr val;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000765};
766
767/**
768 * xmlSchemaPSVIIDCNode:
769 *
770 * The node table item of a node table.
771 */
772typedef struct _xmlSchemaPSVIIDCNode xmlSchemaPSVIIDCNode;
773typedef xmlSchemaPSVIIDCNode *xmlSchemaPSVIIDCNodePtr;
774struct _xmlSchemaPSVIIDCNode {
775 xmlNodePtr node;
776 xmlSchemaPSVIIDCKeyPtr *keys;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +0000777 int nodeLine;
778 int nodeQNameID;
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000779
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000780};
781
782/**
783 * xmlSchemaPSVIIDCBinding:
784 *
785 * The identity-constraint binding item of the [identity-constraint table].
786 */
787typedef struct _xmlSchemaPSVIIDCBinding xmlSchemaPSVIIDCBinding;
788typedef xmlSchemaPSVIIDCBinding *xmlSchemaPSVIIDCBindingPtr;
789struct _xmlSchemaPSVIIDCBinding {
790 xmlSchemaPSVIIDCBindingPtr next; /* next binding of a specific node */
791 xmlSchemaIDCPtr definition; /* the IDC definition */
792 xmlSchemaPSVIIDCNodePtr *nodeTable; /* array of key-sequences */
793 int nbNodes; /* number of entries in the node table */
794 int sizeNodes; /* size of the node table */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000795 xmlSchemaItemListPtr dupls;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000796};
797
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000798
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000799#define XPATH_STATE_OBJ_TYPE_IDC_SELECTOR 1
800#define XPATH_STATE_OBJ_TYPE_IDC_FIELD 2
801
802#define XPATH_STATE_OBJ_MATCHES -2
803#define XPATH_STATE_OBJ_BLOCKED -3
804
805typedef struct _xmlSchemaIDCMatcher xmlSchemaIDCMatcher;
806typedef xmlSchemaIDCMatcher *xmlSchemaIDCMatcherPtr;
807
808/**
809 * xmlSchemaIDCStateObj:
810 *
811 * The state object used to evaluate XPath expressions.
812 */
813typedef struct _xmlSchemaIDCStateObj xmlSchemaIDCStateObj;
814typedef xmlSchemaIDCStateObj *xmlSchemaIDCStateObjPtr;
815struct _xmlSchemaIDCStateObj {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000816 int type;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000817 xmlSchemaIDCStateObjPtr next; /* next if in a list */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +0000818 int depth; /* depth of creation */
819 int *history; /* list of (depth, state-id) tuples */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000820 int nbHistory;
821 int sizeHistory;
822 xmlSchemaIDCMatcherPtr matcher; /* the correspondent field/selector
823 matcher */
824 xmlSchemaIDCSelectPtr sel;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +0000825 void *xpathCtxt;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000826};
827
828#define IDC_MATCHER 0
829
830/**
831 * xmlSchemaIDCMatcher:
832 *
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000833 * Used to evaluate IDC selectors (and fields).
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000834 */
835struct _xmlSchemaIDCMatcher {
836 int type;
837 int depth; /* the tree depth at creation time */
838 xmlSchemaIDCMatcherPtr next; /* next in the list */
839 xmlSchemaIDCAugPtr aidc; /* the augmented IDC item */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000840 int idcType;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000841 xmlSchemaPSVIIDCKeyPtr **keySeqs; /* the key-sequences of the target
842 elements */
843 int sizeKeySeqs;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000844 int targetDepth;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000845 xmlSchemaItemListPtr targets; /* list of target-node
846 (xmlSchemaPSVIIDCNodePtr) entries */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000847};
848
849/*
850* Element info flags.
851*/
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000852#define XML_SCHEMA_NODE_INFO_FLAG_OWNED_NAMES 1<<0
853#define XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES 1<<1
854#define XML_SCHEMA_ELEM_INFO_NILLED 1<<2
855#define XML_SCHEMA_ELEM_INFO_LOCAL_TYPE 1<<3
856
857#define XML_SCHEMA_NODE_INFO_VALUE_NEEDED 1<<4
858#define XML_SCHEMA_ELEM_INFO_EMPTY 1<<5
859#define XML_SCHEMA_ELEM_INFO_HAS_CONTENT 1<<6
860
861#define XML_SCHEMA_ELEM_INFO_HAS_ELEM_CONTENT 1<<7
862#define XML_SCHEMA_ELEM_INFO_ERR_BAD_CONTENT 1<<8
863#define XML_SCHEMA_NODE_INFO_ERR_NOT_EXPECTED 1<<9
864#define XML_SCHEMA_NODE_INFO_ERR_BAD_TYPE 1<<10
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000865
866/**
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +0000867 * xmlSchemaNodeInfo:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000868 *
869 * Holds information of an element node.
870 */
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +0000871struct _xmlSchemaNodeInfo {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000872 int nodeType;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +0000873 xmlNodePtr node;
874 int nodeLine;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000875 const xmlChar *localName;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000876 const xmlChar *nsName;
877 const xmlChar *value;
878 xmlSchemaValPtr val; /* the pre-computed value if any */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000879 xmlSchemaTypePtr typeDef; /* the complex/simple type definition if any */
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +0000880
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +0000881 int flags; /* combination of node info flags */
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +0000882
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000883 int valNeeded;
884 int normVal;
885
886 xmlSchemaElementPtr decl; /* the element/attribute declaration */
887 int depth;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000888 xmlSchemaPSVIIDCBindingPtr idcTable; /* the table of PSVI IDC bindings
889 for the scope element*/
890 xmlSchemaIDCMatcherPtr idcMatchers; /* the IDC matchers for the scope
891 element */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000892 xmlRegExecCtxtPtr regexCtxt;
893
894 const xmlChar **nsBindings; /* Namespace bindings on this element */
895 int nbNsBindings;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000896 int sizeNsBindings;
897
898 int hasKeyrefs;
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +0000899 int appliedXPath; /* Indicates that an XPath has been applied. */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000900};
901
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000902#define XML_SCHEMAS_ATTR_UNKNOWN 1
903#define XML_SCHEMAS_ATTR_ASSESSED 2
904#define XML_SCHEMAS_ATTR_PROHIBITED 3
905#define XML_SCHEMAS_ATTR_ERR_MISSING 4
906#define XML_SCHEMAS_ATTR_INVALID_VALUE 5
907#define XML_SCHEMAS_ATTR_ERR_NO_TYPE 6
908#define XML_SCHEMAS_ATTR_ERR_FIXED_VALUE 7
909#define XML_SCHEMAS_ATTR_DEFAULT 8
910#define XML_SCHEMAS_ATTR_VALIDATE_VALUE 9
911#define XML_SCHEMAS_ATTR_ERR_WILD_STRICT_NO_DECL 10
912#define XML_SCHEMAS_ATTR_HAS_ATTR_USE 11
913#define XML_SCHEMAS_ATTR_HAS_ATTR_DECL 12
914#define XML_SCHEMAS_ATTR_WILD_SKIP 13
915#define XML_SCHEMAS_ATTR_WILD_LAX_NO_DECL 14
916#define XML_SCHEMAS_ATTR_ERR_WILD_DUPLICATE_ID 15
917#define XML_SCHEMAS_ATTR_ERR_WILD_AND_USE_ID 16
918#define XML_SCHEMAS_ATTR_META 17
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000919/*
920* @metaType values of xmlSchemaAttrInfo.
921*/
922#define XML_SCHEMA_ATTR_INFO_META_XSI_TYPE 1
923#define XML_SCHEMA_ATTR_INFO_META_XSI_NIL 2
924#define XML_SCHEMA_ATTR_INFO_META_XSI_SCHEMA_LOC 3
925#define XML_SCHEMA_ATTR_INFO_META_XSI_NO_NS_SCHEMA_LOC 4
926#define XML_SCHEMA_ATTR_INFO_META_XMLNS 5
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000927
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000928typedef struct _xmlSchemaAttrInfo xmlSchemaAttrInfo;
929typedef xmlSchemaAttrInfo *xmlSchemaAttrInfoPtr;
930struct _xmlSchemaAttrInfo {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000931 int nodeType;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +0000932 xmlNodePtr node;
933 int nodeLine;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000934 const xmlChar *localName;
935 const xmlChar *nsName;
936 const xmlChar *value;
937 xmlSchemaValPtr val; /* the pre-computed value if any */
938 xmlSchemaTypePtr typeDef; /* the complex/simple type definition if any */
939 int flags; /* combination of node info flags */
940
941 xmlSchemaAttributePtr decl; /* the attribute declaration */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +0000942 xmlSchemaAttributeUsePtr use; /* the attribute use */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000943 int state;
944 int metaType;
945 const xmlChar *vcValue; /* the value constraint value */
946 xmlSchemaNodeInfoPtr parent;
947};
948
949
950#define XML_SCHEMA_VALID_CTXT_FLAG_STREAM 1
Daniel Veillard4255d502002-04-16 15:50:10 +0000951/**
952 * xmlSchemaValidCtxt:
953 *
954 * A Schemas validation context
955 */
Daniel Veillard4255d502002-04-16 15:50:10 +0000956struct _xmlSchemaValidCtxt {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000957 int type;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +0000958 void *errCtxt; /* user specific data block */
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000959 xmlSchemaValidityErrorFunc error; /* the callback in case of errors */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000960 xmlSchemaValidityWarningFunc warning; /* the callback in case of warning */
Daniel Veillard659e71e2003-10-10 14:10:40 +0000961 xmlStructuredErrorFunc serror;
Daniel Veillard4255d502002-04-16 15:50:10 +0000962
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000963 xmlSchemaPtr schema; /* The schema in use */
964 xmlDocPtr doc;
Daniel Veillard4255d502002-04-16 15:50:10 +0000965 xmlParserInputBufferPtr input;
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000966 xmlCharEncoding enc;
967 xmlSAXHandlerPtr sax;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000968 xmlParserCtxtPtr parserCtxt;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +0000969 void *user_data; /* TODO: What is this for? */
Daniel Veillard4255d502002-04-16 15:50:10 +0000970
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000971 int err;
972 int nberrors;
Daniel Veillard4255d502002-04-16 15:50:10 +0000973
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000974 xmlNodePtr node;
975 xmlNodePtr cur;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000976 /* xmlSchemaTypePtr type; */
Daniel Veillard4255d502002-04-16 15:50:10 +0000977
Daniel Veillardd0c9c322003-10-10 00:49:42 +0000978 xmlRegExecCtxtPtr regexp;
979 xmlSchemaValPtr value;
Daniel Veillard4255d502002-04-16 15:50:10 +0000980
Daniel Veillardc0826a72004-08-10 14:17:33 +0000981 int valueWS;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +0000982 int options;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000983 xmlNodePtr validationRoot;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +0000984 xmlSchemaParserCtxtPtr pctxt;
985 int xsiAssemble;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000986
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000987 int depth;
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +0000988 xmlSchemaNodeInfoPtr *elemInfos; /* array of element informations */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000989 int sizeElemInfos;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000990 xmlSchemaNodeInfoPtr inode; /* the current element information */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +0000991
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000992 xmlSchemaIDCAugPtr aidcs; /* a list of augmented IDC informations */
993
994 xmlSchemaIDCStateObjPtr xpathStates; /* first active state object. */
995 xmlSchemaIDCStateObjPtr xpathStatePool; /* first stored state object. */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +0000996
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +0000997 xmlSchemaPSVIIDCNodePtr *idcNodes; /* list of all IDC node-table entries*/
998 int nbIdcNodes;
999 int sizeIdcNodes;
1000
1001 xmlSchemaPSVIIDCKeyPtr *idcKeys; /* list of all IDC node-table entries */
1002 int nbIdcKeys;
1003 int sizeIdcKeys;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00001004
1005 int flags;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001006
1007 xmlDictPtr dict;
1008
Daniel Veillard39e5c892005-07-03 22:48:50 +00001009#ifdef LIBXML_READER_ENABLED
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001010 xmlTextReaderPtr reader;
Daniel Veillard39e5c892005-07-03 22:48:50 +00001011#endif
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001012
1013 xmlSchemaAttrInfoPtr *attrInfos;
1014 int nbAttrInfos;
1015 int sizeAttrInfos;
1016
1017 int skipDepth;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00001018 xmlSchemaItemListPtr nodeQNames;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00001019 int hasKeyrefs;
1020 int createIDCNodeTables;
1021 int psviExposeIDCNodeTables;
Daniel Veillard4255d502002-04-16 15:50:10 +00001022};
1023
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00001024/**
1025 * xmlSchemaSubstGroup:
1026 *
1027 *
1028 */
1029typedef struct _xmlSchemaSubstGroup xmlSchemaSubstGroup;
1030typedef xmlSchemaSubstGroup *xmlSchemaSubstGroupPtr;
1031struct _xmlSchemaSubstGroup {
1032 xmlSchemaElementPtr head;
1033 xmlSchemaItemListPtr members;
1034};
1035
Daniel Veillard4255d502002-04-16 15:50:10 +00001036/************************************************************************
1037 * *
1038 * Some predeclarations *
1039 * *
1040 ************************************************************************/
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001041
Daniel Veillardbd2904b2003-11-25 15:38:59 +00001042static int xmlSchemaParseInclude(xmlSchemaParserCtxtPtr ctxt,
1043 xmlSchemaPtr schema,
1044 xmlNodePtr node);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00001045static int xmlSchemaParseRedefine(xmlSchemaParserCtxtPtr ctxt,
1046 xmlSchemaPtr schema,
1047 xmlNodePtr node);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001048static int
1049xmlSchemaTypeFixup(xmlSchemaTypePtr type,
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +00001050 xmlSchemaAbstractCtxtPtr ctxt);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00001051static const xmlChar *
Daniel Veillard01fa6152004-06-29 17:04:39 +00001052xmlSchemaFacetTypeToString(xmlSchemaTypeType type);
1053static int
William M. Brack2f2a6632004-08-20 23:09:47 +00001054xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
1055 xmlNodePtr node);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001056static int
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00001057xmlSchemaCheckFacetValues(xmlSchemaTypePtr typeDecl,
1058 xmlSchemaParserCtxtPtr ctxt);
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +00001059static void
1060xmlSchemaClearValidCtxt(xmlSchemaValidCtxtPtr vctxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001061static xmlSchemaWhitespaceValueType
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00001062xmlSchemaGetWhiteSpaceFacetValue(xmlSchemaTypePtr type);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00001063static xmlSchemaTreeItemPtr
1064xmlSchemaParseModelGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
1065 xmlNodePtr node, xmlSchemaTypeType type,
1066 int withParticle);
1067static const xmlChar *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001068xmlSchemaGetComponentTypeStr(xmlSchemaBasicItemPtr item);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00001069static xmlSchemaTypeLinkPtr
1070xmlSchemaGetUnionSimpleTypeMemberTypes(xmlSchemaTypePtr type);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001071static void
1072xmlSchemaInternalErr(xmlSchemaAbstractCtxtPtr actxt,
1073 const char *funcName,
1074 const char *message);
1075static int
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +00001076xmlSchemaCheckCOSSTDerivedOK(xmlSchemaAbstractCtxtPtr ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001077 xmlSchemaTypePtr type,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001078 xmlSchemaTypePtr baseType,
1079 int subset);
1080static void
1081xmlSchemaCheckElementDeclComponent(xmlSchemaElementPtr elemDecl,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001082 xmlSchemaParserCtxtPtr ctxt);
1083static void
1084xmlSchemaComponentListFree(xmlSchemaItemListPtr list);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001085static xmlSchemaQNameRefPtr
1086xmlSchemaParseAttributeGroupRef(xmlSchemaParserCtxtPtr pctxt,
1087 xmlSchemaPtr schema,
1088 xmlNodePtr node);
William M. Brack87640d52004-04-17 14:58:15 +00001089
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001090/************************************************************************
1091 * *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001092 * Helper functions *
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001093 * *
1094 ************************************************************************/
1095
1096/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001097 * xmlSchemaItemTypeToStr:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001098 * @type: the type of the schema item
1099 *
1100 * Returns the component name of a schema item.
1101 */
1102static const xmlChar *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001103xmlSchemaItemTypeToStr(xmlSchemaTypeType type)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001104{
1105 switch (type) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001106 case XML_SCHEMA_TYPE_BASIC:
1107 return(BAD_CAST "simple type definition");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001108 case XML_SCHEMA_TYPE_SIMPLE:
1109 return(BAD_CAST "simple type definition");
1110 case XML_SCHEMA_TYPE_COMPLEX:
1111 return(BAD_CAST "complex type definition");
1112 case XML_SCHEMA_TYPE_ELEMENT:
1113 return(BAD_CAST "element declaration");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001114 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
1115 return(BAD_CAST "attribute use");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001116 case XML_SCHEMA_TYPE_ATTRIBUTE:
1117 return(BAD_CAST "attribute declaration");
1118 case XML_SCHEMA_TYPE_GROUP:
1119 return(BAD_CAST "model group definition");
1120 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1121 return(BAD_CAST "attribute group definition");
1122 case XML_SCHEMA_TYPE_NOTATION:
1123 return(BAD_CAST "notation declaration");
1124 case XML_SCHEMA_TYPE_SEQUENCE:
1125 return(BAD_CAST "model group (sequence)");
1126 case XML_SCHEMA_TYPE_CHOICE:
1127 return(BAD_CAST "model group (choice)");
1128 case XML_SCHEMA_TYPE_ALL:
1129 return(BAD_CAST "model group (all)");
1130 case XML_SCHEMA_TYPE_PARTICLE:
1131 return(BAD_CAST "particle");
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00001132 case XML_SCHEMA_TYPE_IDC_UNIQUE:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001133 return(BAD_CAST "unique identity-constraint");
1134 /* return(BAD_CAST "IDC (unique)"); */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00001135 case XML_SCHEMA_TYPE_IDC_KEY:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001136 return(BAD_CAST "key identity-constraint");
1137 /* return(BAD_CAST "IDC (key)"); */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00001138 case XML_SCHEMA_TYPE_IDC_KEYREF:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001139 return(BAD_CAST "keyref identity-constraint");
1140 /* return(BAD_CAST "IDC (keyref)"); */
Kasimier T. Buchcik11162b72005-07-28 00:50:22 +00001141 case XML_SCHEMA_TYPE_ANY:
1142 return(BAD_CAST "wildcard (any)");
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00001143 case XML_SCHEMA_EXTRA_QNAMEREF:
1144 return(BAD_CAST "[helper component] QName reference");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001145 case XML_SCHEMA_EXTRA_ATTR_USE_PROHIB:
1146 return(BAD_CAST "[helper component] attribute use prohibition");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001147 default:
1148 return(BAD_CAST "Not a schema component");
1149 }
1150}
1151
1152/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001153 * xmlSchemaGetComponentTypeStr:
1154 * @type: the type of the schema item
1155 *
1156 * Returns the component name of a schema item.
1157 */
1158static const xmlChar *
1159xmlSchemaGetComponentTypeStr(xmlSchemaBasicItemPtr item)
1160{
1161 switch (item->type) {
1162 case XML_SCHEMA_TYPE_BASIC:
1163 if (WXS_IS_COMPLEX(WXS_TYPE_CAST item))
1164 return(BAD_CAST "complex type definition");
1165 else
1166 return(BAD_CAST "simple type definition");
1167 default:
1168 return(xmlSchemaItemTypeToStr(item->type));
1169 }
1170}
1171
1172/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001173 * xmlSchemaGetComponentNode:
1174 * @item: a schema component
1175 *
1176 * Returns node associated with the schema component.
1177 * NOTE that such a node need not be available; plus, a component's
1178 * node need not to reflect the component directly, since there is no
1179 * one-to-one relationship between the XML Schema representation and
1180 * the component representation.
1181 */
1182static xmlNodePtr
1183xmlSchemaGetComponentNode(xmlSchemaBasicItemPtr item)
1184{
1185 switch (item->type) {
1186 case XML_SCHEMA_TYPE_ELEMENT:
1187 return (((xmlSchemaElementPtr) item)->node);
1188 case XML_SCHEMA_TYPE_ATTRIBUTE:
1189 return (((xmlSchemaAttributePtr) item)->node);
1190 case XML_SCHEMA_TYPE_COMPLEX:
1191 case XML_SCHEMA_TYPE_SIMPLE:
1192 return (((xmlSchemaTypePtr) item)->node);
1193 case XML_SCHEMA_TYPE_ANY:
1194 case XML_SCHEMA_TYPE_ANY_ATTRIBUTE:
1195 return (((xmlSchemaWildcardPtr) item)->node);
1196 case XML_SCHEMA_TYPE_PARTICLE:
1197 return (((xmlSchemaParticlePtr) item)->node);
1198 case XML_SCHEMA_TYPE_SEQUENCE:
1199 case XML_SCHEMA_TYPE_CHOICE:
1200 case XML_SCHEMA_TYPE_ALL:
1201 return (((xmlSchemaModelGroupPtr) item)->node);
1202 case XML_SCHEMA_TYPE_GROUP:
1203 return (((xmlSchemaModelGroupDefPtr) item)->node);
1204 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1205 return (((xmlSchemaAttributeGroupPtr) item)->node);
1206 case XML_SCHEMA_TYPE_IDC_UNIQUE:
1207 case XML_SCHEMA_TYPE_IDC_KEY:
1208 case XML_SCHEMA_TYPE_IDC_KEYREF:
1209 return (((xmlSchemaIDCPtr) item)->node);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001210 case XML_SCHEMA_EXTRA_QNAMEREF:
1211 return(((xmlSchemaQNameRefPtr) item)->node);
1212 /* TODO: What to do with NOTATIONs?
1213 case XML_SCHEMA_TYPE_NOTATION:
1214 return (((xmlSchemaNotationPtr) item)->node);
1215 */
1216 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
1217 return (((xmlSchemaAttributeUsePtr) item)->node);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001218 default:
1219 return (NULL);
1220 }
1221}
1222
1223#if 0
1224/**
1225 * xmlSchemaGetNextComponent:
1226 * @item: a schema component
1227 *
1228 * Returns the next sibling of the schema component.
1229 */
1230static xmlSchemaBasicItemPtr
1231xmlSchemaGetNextComponent(xmlSchemaBasicItemPtr item)
1232{
1233 switch (item->type) {
1234 case XML_SCHEMA_TYPE_ELEMENT:
1235 return ((xmlSchemaBasicItemPtr) ((xmlSchemaElementPtr) item)->next);
1236 case XML_SCHEMA_TYPE_ATTRIBUTE:
1237 return ((xmlSchemaBasicItemPtr) ((xmlSchemaAttributePtr) item)->next);
1238 case XML_SCHEMA_TYPE_COMPLEX:
1239 case XML_SCHEMA_TYPE_SIMPLE:
1240 return ((xmlSchemaBasicItemPtr) ((xmlSchemaTypePtr) item)->next);
1241 case XML_SCHEMA_TYPE_ANY:
1242 case XML_SCHEMA_TYPE_ANY_ATTRIBUTE:
1243 return (NULL);
1244 case XML_SCHEMA_TYPE_PARTICLE:
1245 return ((xmlSchemaBasicItemPtr) ((xmlSchemaParticlePtr) item)->next);
1246 case XML_SCHEMA_TYPE_SEQUENCE:
1247 case XML_SCHEMA_TYPE_CHOICE:
1248 case XML_SCHEMA_TYPE_ALL:
1249 return (NULL);
1250 case XML_SCHEMA_TYPE_GROUP:
1251 return (NULL);
1252 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1253 return ((xmlSchemaBasicItemPtr) ((xmlSchemaAttributeGroupPtr) item)->next);
1254 case XML_SCHEMA_TYPE_IDC_UNIQUE:
1255 case XML_SCHEMA_TYPE_IDC_KEY:
1256 case XML_SCHEMA_TYPE_IDC_KEYREF:
1257 return ((xmlSchemaBasicItemPtr) ((xmlSchemaIDCPtr) item)->next);
1258 default:
1259 return (NULL);
1260 }
1261}
1262#endif
1263
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001264
1265/**
1266 * xmlSchemaFormatQName:
1267 * @buf: the string buffer
1268 * @namespaceName: the namespace name
1269 * @localName: the local name
1270 *
1271 * Returns the given QName in the format "{namespaceName}localName" or
1272 * just "localName" if @namespaceName is NULL.
1273 *
1274 * Returns the localName if @namespaceName is NULL, a formatted
1275 * string otherwise.
1276 */
1277static const xmlChar*
1278xmlSchemaFormatQName(xmlChar **buf,
1279 const xmlChar *namespaceName,
1280 const xmlChar *localName)
1281{
1282 FREE_AND_NULL(*buf)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001283 if (namespaceName != NULL) {
1284 *buf = xmlStrdup(BAD_CAST "{");
1285 *buf = xmlStrcat(*buf, namespaceName);
1286 *buf = xmlStrcat(*buf, BAD_CAST "}");
1287 }
1288 if (localName != NULL) {
1289 if (namespaceName == NULL)
1290 return(localName);
1291 *buf = xmlStrcat(*buf, localName);
1292 } else {
1293 *buf = xmlStrcat(*buf, BAD_CAST "(NULL)");
1294 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001295 return ((const xmlChar *) *buf);
1296}
1297
1298static const xmlChar*
1299xmlSchemaFormatQNameNs(xmlChar **buf, xmlNsPtr ns, const xmlChar *localName)
1300{
1301 if (ns != NULL)
1302 return (xmlSchemaFormatQName(buf, ns->href, localName));
1303 else
1304 return (xmlSchemaFormatQName(buf, NULL, localName));
1305}
1306
1307static const xmlChar *
1308xmlSchemaGetComponentName(xmlSchemaBasicItemPtr item)
1309{
1310 switch (item->type) {
1311 case XML_SCHEMA_TYPE_ELEMENT:
1312 return (((xmlSchemaElementPtr) item)->name);
1313 case XML_SCHEMA_TYPE_ATTRIBUTE:
1314 return (((xmlSchemaAttributePtr) item)->name);
1315 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1316 return (((xmlSchemaAttributeGroupPtr) item)->name);
1317 case XML_SCHEMA_TYPE_BASIC:
1318 case XML_SCHEMA_TYPE_SIMPLE:
1319 case XML_SCHEMA_TYPE_COMPLEX:
1320 return (((xmlSchemaTypePtr) item)->name);
1321 case XML_SCHEMA_TYPE_GROUP:
1322 return (((xmlSchemaModelGroupDefPtr) item)->name);
1323 case XML_SCHEMA_TYPE_IDC_KEY:
1324 case XML_SCHEMA_TYPE_IDC_UNIQUE:
1325 case XML_SCHEMA_TYPE_IDC_KEYREF:
1326 return (((xmlSchemaIDCPtr) item)->name);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001327 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
1328 if (WXS_ATTRUSE_DECL(item) != NULL) {
1329 return(xmlSchemaGetComponentName(
1330 WXS_BASIC_CAST WXS_ATTRUSE_DECL(item)));
1331 } else
1332 return(NULL);
1333 case XML_SCHEMA_EXTRA_QNAMEREF:
1334 return (((xmlSchemaQNameRefPtr) item)->name);
1335 case XML_SCHEMA_TYPE_NOTATION:
1336 return (((xmlSchemaNotationPtr) item)->name);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001337 default:
1338 /*
1339 * Other components cannot have names.
1340 */
1341 break;
1342 }
1343 return (NULL);
1344}
1345
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001346#define xmlSchemaGetQNameRefName(r) (WXS_QNAME_CAST (r))->name
1347#define xmlSchemaGetQNameRefTargetNs(r) (WXS_QNAME_CAST (r))->targetNamespace
1348/*
1349static const xmlChar *
1350xmlSchemaGetQNameRefName(void *ref)
1351{
1352 return(((xmlSchemaQNameRefPtr) ref)->name);
1353}
1354
1355static const xmlChar *
1356xmlSchemaGetQNameRefTargetNs(void *ref)
1357{
1358 return(((xmlSchemaQNameRefPtr) ref)->targetNamespace);
1359}
1360*/
1361
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001362static const xmlChar *
1363xmlSchemaGetComponentTargetNs(xmlSchemaBasicItemPtr item)
1364{
1365 switch (item->type) {
1366 case XML_SCHEMA_TYPE_ELEMENT:
1367 return (((xmlSchemaElementPtr) item)->targetNamespace);
1368 case XML_SCHEMA_TYPE_ATTRIBUTE:
1369 return (((xmlSchemaAttributePtr) item)->targetNamespace);
1370 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1371 return (((xmlSchemaAttributeGroupPtr) item)->targetNamespace);
1372 case XML_SCHEMA_TYPE_BASIC:
1373 return (BAD_CAST "http://www.w3.org/2001/XMLSchema");
1374 case XML_SCHEMA_TYPE_SIMPLE:
1375 case XML_SCHEMA_TYPE_COMPLEX:
1376 return (((xmlSchemaTypePtr) item)->targetNamespace);
1377 case XML_SCHEMA_TYPE_GROUP:
1378 return (((xmlSchemaModelGroupDefPtr) item)->targetNamespace);
1379 case XML_SCHEMA_TYPE_IDC_KEY:
1380 case XML_SCHEMA_TYPE_IDC_UNIQUE:
1381 case XML_SCHEMA_TYPE_IDC_KEYREF:
1382 return (((xmlSchemaIDCPtr) item)->targetNamespace);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001383 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
1384 if (WXS_ATTRUSE_DECL(item) != NULL) {
1385 return(xmlSchemaGetComponentTargetNs(
1386 WXS_BASIC_CAST WXS_ATTRUSE_DECL(item)));
1387 }
1388 /* TODO: Will returning NULL break something? */
1389 break;
1390 case XML_SCHEMA_EXTRA_QNAMEREF:
1391 return (((xmlSchemaQNameRefPtr) item)->targetNamespace);
1392 case XML_SCHEMA_TYPE_NOTATION:
1393 return (((xmlSchemaNotationPtr) item)->targetNamespace);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001394 default:
1395 /*
1396 * Other components cannot have names.
1397 */
1398 break;
1399 }
1400 return (NULL);
1401}
1402
1403static const xmlChar*
1404xmlSchemaGetComponentQName(xmlChar **buf,
1405 void *item)
1406{
1407 return (xmlSchemaFormatQName(buf,
1408 xmlSchemaGetComponentTargetNs((xmlSchemaBasicItemPtr) item),
1409 xmlSchemaGetComponentName((xmlSchemaBasicItemPtr) item)));
1410}
1411
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001412static const xmlChar*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001413xmlSchemaGetComponentDesignation(xmlChar **buf, void *item)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001414{
1415 xmlChar *str = NULL;
1416
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001417 *buf = xmlStrcat(*buf, WXS_ITEM_TYPE_NAME(item));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001418 *buf = xmlStrcat(*buf, BAD_CAST " '");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001419 *buf = xmlStrcat(*buf, xmlSchemaGetComponentQName(&str,
1420 (xmlSchemaBasicItemPtr) item));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001421 *buf = xmlStrcat(*buf, BAD_CAST "'");
1422 FREE_AND_NULL(str);
1423 return(*buf);
1424}
1425
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001426static const xmlChar*
1427xmlSchemaGetIDCDesignation(xmlChar **buf, xmlSchemaIDCPtr idc)
1428{
1429 return(xmlSchemaGetComponentDesignation(buf, idc));
1430}
1431
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001432/**
1433 * xmlSchemaWildcardPCToString:
1434 * @pc: the type of processContents
1435 *
1436 * Returns a string representation of the type of
1437 * processContents.
1438 */
1439static const xmlChar *
1440xmlSchemaWildcardPCToString(int pc)
1441{
1442 switch (pc) {
1443 case XML_SCHEMAS_ANY_SKIP:
1444 return (BAD_CAST "skip");
1445 case XML_SCHEMAS_ANY_LAX:
1446 return (BAD_CAST "lax");
1447 case XML_SCHEMAS_ANY_STRICT:
1448 return (BAD_CAST "strict");
1449 default:
1450 return (BAD_CAST "invalid process contents");
1451 }
1452}
1453
1454/**
1455 * xmlSchemaGetCanonValueWhtspExt:
1456 * @val: the precomputed value
1457 * @retValue: the returned value
1458 * @ws: the whitespace type of the value
1459 *
1460 * Get a the cononical representation of the value.
1461 * The caller has to free the returned retValue.
1462 *
1463 * Returns 0 if the value could be built and -1 in case of
1464 * API errors or if the value type is not supported yet.
1465 */
1466static int
1467xmlSchemaGetCanonValueWhtspExt(xmlSchemaValPtr val,
1468 xmlSchemaWhitespaceValueType ws,
1469 xmlChar **retValue)
1470{
1471 int list;
1472 xmlSchemaValType valType;
1473 const xmlChar *value, *value2 = NULL;
1474
1475
1476 if ((retValue == NULL) || (val == NULL))
1477 return (-1);
1478 list = xmlSchemaValueGetNext(val) ? 1 : 0;
1479 *retValue = NULL;
1480 do {
1481 value = NULL;
1482 valType = xmlSchemaGetValType(val);
1483 switch (valType) {
1484 case XML_SCHEMAS_STRING:
1485 case XML_SCHEMAS_NORMSTRING:
1486 case XML_SCHEMAS_ANYSIMPLETYPE:
1487 value = xmlSchemaValueGetAsString(val);
1488 if (value != NULL) {
1489 if (ws == XML_SCHEMA_WHITESPACE_COLLAPSE)
1490 value2 = xmlSchemaCollapseString(value);
1491 else if (ws == XML_SCHEMA_WHITESPACE_REPLACE)
1492 value2 = xmlSchemaWhiteSpaceReplace(value);
1493 if (value2 != NULL)
1494 value = value2;
1495 }
1496 break;
1497 default:
1498 if (xmlSchemaGetCanonValue(val, &value2) == -1) {
1499 if (value2 != NULL)
1500 xmlFree((xmlChar *) value2);
1501 goto internal_error;
1502 }
1503 value = value2;
1504 }
1505 if (*retValue == NULL)
1506 if (value == NULL) {
1507 if (! list)
1508 *retValue = xmlStrdup(BAD_CAST "");
1509 } else
1510 *retValue = xmlStrdup(value);
1511 else if (value != NULL) {
1512 /* List. */
1513 *retValue = xmlStrcat((xmlChar *) *retValue, BAD_CAST " ");
1514 *retValue = xmlStrcat((xmlChar *) *retValue, value);
1515 }
1516 FREE_AND_NULL(value2)
1517 val = xmlSchemaValueGetNext(val);
1518 } while (val != NULL);
1519
1520 return (0);
1521internal_error:
1522 if (*retValue != NULL)
1523 xmlFree((xmlChar *) (*retValue));
1524 if (value2 != NULL)
1525 xmlFree((xmlChar *) value2);
1526 return (-1);
1527}
1528
1529/**
1530 * xmlSchemaFormatItemForReport:
1531 * @buf: the string buffer
1532 * @itemDes: the designation of the item
1533 * @itemName: the name of the item
1534 * @item: the item as an object
1535 * @itemNode: the node of the item
1536 * @local: the local name
1537 * @parsing: if the function is used during the parse
1538 *
1539 * Returns a representation of the given item used
1540 * for error reports.
1541 *
1542 * The following order is used to build the resulting
1543 * designation if the arguments are not NULL:
1544 * 1a. If itemDes not NULL -> itemDes
1545 * 1b. If (itemDes not NULL) and (itemName not NULL)
1546 * -> itemDes + itemName
1547 * 2. If the preceding was NULL and (item not NULL) -> item
1548 * 3. If the preceding was NULL and (itemNode not NULL) -> itemNode
1549 *
1550 * If the itemNode is an attribute node, the name of the attribute
1551 * will be appended to the result.
1552 *
1553 * Returns the formatted string and sets @buf to the resulting value.
1554 */
1555static xmlChar*
1556xmlSchemaFormatItemForReport(xmlChar **buf,
1557 const xmlChar *itemDes,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001558 xmlSchemaBasicItemPtr item,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001559 xmlNodePtr itemNode)
1560{
1561 xmlChar *str = NULL;
1562 int named = 1;
1563
1564 if (*buf != NULL) {
1565 xmlFree(*buf);
1566 *buf = NULL;
1567 }
1568
1569 if (itemDes != NULL) {
1570 *buf = xmlStrdup(itemDes);
1571 } else if (item != NULL) {
1572 switch (item->type) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001573 case XML_SCHEMA_TYPE_BASIC: {
1574 xmlSchemaTypePtr type = WXS_TYPE_CAST item;
1575
1576 if (WXS_IS_ATOMIC(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001577 *buf = xmlStrdup(BAD_CAST "atomic type 'xs:");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001578 else if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001579 *buf = xmlStrdup(BAD_CAST "list type 'xs:");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001580 else if (WXS_IS_UNION(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001581 *buf = xmlStrdup(BAD_CAST "union type 'xs:");
1582 else
1583 *buf = xmlStrdup(BAD_CAST "simple type 'xs:");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001584 *buf = xmlStrcat(*buf, type->name);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001585 *buf = xmlStrcat(*buf, BAD_CAST "'");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001586 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001587 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001588 case XML_SCHEMA_TYPE_SIMPLE: {
1589 xmlSchemaTypePtr type = WXS_TYPE_CAST item;
1590
1591 if (type->flags & XML_SCHEMAS_TYPE_GLOBAL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001592 *buf = xmlStrdup(BAD_CAST"");
1593 } else {
1594 *buf = xmlStrdup(BAD_CAST "local ");
1595 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001596 if (WXS_IS_ATOMIC(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001597 *buf = xmlStrcat(*buf, BAD_CAST "atomic type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001598 else if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001599 *buf = xmlStrcat(*buf, BAD_CAST "list type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001600 else if (WXS_IS_UNION(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001601 *buf = xmlStrcat(*buf, BAD_CAST "union type");
1602 else
1603 *buf = xmlStrcat(*buf, BAD_CAST "simple type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001604 if (type->flags & XML_SCHEMAS_TYPE_GLOBAL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001605 *buf = xmlStrcat(*buf, BAD_CAST " '");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001606 *buf = xmlStrcat(*buf, type->name);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001607 *buf = xmlStrcat(*buf, BAD_CAST "'");
1608 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001609 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001610 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001611 case XML_SCHEMA_TYPE_COMPLEX: {
1612 xmlSchemaTypePtr type = WXS_TYPE_CAST item;
1613
1614 if (type->flags & XML_SCHEMAS_TYPE_GLOBAL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001615 *buf = xmlStrdup(BAD_CAST "");
1616 else
1617 *buf = xmlStrdup(BAD_CAST "local ");
1618 *buf = xmlStrcat(*buf, BAD_CAST "complex type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001619 if (type->flags & XML_SCHEMAS_TYPE_GLOBAL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001620 *buf = xmlStrcat(*buf, BAD_CAST " '");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001621 *buf = xmlStrcat(*buf, type->name);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001622 *buf = xmlStrcat(*buf, BAD_CAST "'");
1623 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001624 }
1625 break;
1626 case XML_SCHEMA_TYPE_ATTRIBUTE_USE: {
1627 xmlSchemaAttributeUsePtr ause;
1628
1629 ause = WXS_ATTR_USE_CAST item;
1630 *buf = xmlStrdup(BAD_CAST "attribute use ");
1631 if (WXS_ATTRUSE_DECL(ause) != NULL) {
1632 *buf = xmlStrcat(*buf, BAD_CAST "'");
1633 *buf = xmlStrcat(*buf,
1634 xmlSchemaGetComponentQName(&str, WXS_ATTRUSE_DECL(ause)));
1635 FREE_AND_NULL(str)
1636 *buf = xmlStrcat(*buf, BAD_CAST "'");
1637 } else {
1638 *buf = xmlStrcat(*buf, BAD_CAST "(unknown)");
1639 }
1640 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001641 break;
1642 case XML_SCHEMA_TYPE_ATTRIBUTE: {
1643 xmlSchemaAttributePtr attr;
1644
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001645 attr = (xmlSchemaAttributePtr) item;
1646 *buf = xmlStrdup(BAD_CAST "attribute decl.");
1647 *buf = xmlStrcat(*buf, BAD_CAST " '");
1648 *buf = xmlStrcat(*buf, xmlSchemaFormatQName(&str,
1649 attr->targetNamespace, attr->name));
1650 FREE_AND_NULL(str)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001651 *buf = xmlStrcat(*buf, BAD_CAST "'");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001652 }
1653 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001654 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
1655 xmlSchemaGetComponentDesignation(buf, item);
1656 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001657 case XML_SCHEMA_TYPE_ELEMENT: {
1658 xmlSchemaElementPtr elem;
1659
1660 elem = (xmlSchemaElementPtr) item;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001661 *buf = xmlStrdup(BAD_CAST "element decl.");
1662 *buf = xmlStrcat(*buf, BAD_CAST " '");
1663 *buf = xmlStrcat(*buf, xmlSchemaFormatQName(&str,
1664 elem->targetNamespace, elem->name));
1665 *buf = xmlStrcat(*buf, BAD_CAST "'");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001666 }
1667 break;
1668 case XML_SCHEMA_TYPE_IDC_UNIQUE:
1669 case XML_SCHEMA_TYPE_IDC_KEY:
1670 case XML_SCHEMA_TYPE_IDC_KEYREF:
1671 if (item->type == XML_SCHEMA_TYPE_IDC_UNIQUE)
1672 *buf = xmlStrdup(BAD_CAST "unique '");
1673 else if (item->type == XML_SCHEMA_TYPE_IDC_KEY)
1674 *buf = xmlStrdup(BAD_CAST "key '");
1675 else
1676 *buf = xmlStrdup(BAD_CAST "keyRef '");
1677 *buf = xmlStrcat(*buf, ((xmlSchemaIDCPtr) item)->name);
1678 *buf = xmlStrcat(*buf, BAD_CAST "'");
1679 break;
1680 case XML_SCHEMA_TYPE_ANY:
1681 case XML_SCHEMA_TYPE_ANY_ATTRIBUTE:
1682 *buf = xmlStrdup(xmlSchemaWildcardPCToString(
1683 ((xmlSchemaWildcardPtr) item)->processContents));
1684 *buf = xmlStrcat(*buf, BAD_CAST " wildcard");
1685 break;
1686 case XML_SCHEMA_FACET_MININCLUSIVE:
1687 case XML_SCHEMA_FACET_MINEXCLUSIVE:
1688 case XML_SCHEMA_FACET_MAXINCLUSIVE:
1689 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
1690 case XML_SCHEMA_FACET_TOTALDIGITS:
1691 case XML_SCHEMA_FACET_FRACTIONDIGITS:
1692 case XML_SCHEMA_FACET_PATTERN:
1693 case XML_SCHEMA_FACET_ENUMERATION:
1694 case XML_SCHEMA_FACET_WHITESPACE:
1695 case XML_SCHEMA_FACET_LENGTH:
1696 case XML_SCHEMA_FACET_MAXLENGTH:
1697 case XML_SCHEMA_FACET_MINLENGTH:
1698 *buf = xmlStrdup(BAD_CAST "facet '");
1699 *buf = xmlStrcat(*buf, xmlSchemaFacetTypeToString(item->type));
1700 *buf = xmlStrcat(*buf, BAD_CAST "'");
1701 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001702 case XML_SCHEMA_TYPE_GROUP: {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001703 *buf = xmlStrdup(BAD_CAST "model group def.");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001704 *buf = xmlStrcat(*buf, BAD_CAST " '");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001705 *buf = xmlStrcat(*buf, xmlSchemaGetComponentQName(&str, item));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001706 *buf = xmlStrcat(*buf, BAD_CAST "'");
1707 FREE_AND_NULL(str)
1708 }
1709 break;
1710 case XML_SCHEMA_TYPE_SEQUENCE:
1711 case XML_SCHEMA_TYPE_CHOICE:
1712 case XML_SCHEMA_TYPE_ALL:
1713 case XML_SCHEMA_TYPE_PARTICLE:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001714 *buf = xmlStrdup(WXS_ITEM_TYPE_NAME(item));
1715 break;
1716 case XML_SCHEMA_TYPE_NOTATION: {
1717 *buf = xmlStrdup(WXS_ITEM_TYPE_NAME(item));
1718 *buf = xmlStrcat(*buf, BAD_CAST " '");
1719 *buf = xmlStrcat(*buf, xmlSchemaGetComponentQName(&str, item));
1720 *buf = xmlStrcat(*buf, BAD_CAST "'");
1721 FREE_AND_NULL(str);
1722 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001723 default:
1724 named = 0;
1725 }
1726 } else
1727 named = 0;
1728
1729 if ((named == 0) && (itemNode != NULL)) {
1730 xmlNodePtr elem;
1731
1732 if (itemNode->type == XML_ATTRIBUTE_NODE)
1733 elem = itemNode->parent;
1734 else
1735 elem = itemNode;
1736 *buf = xmlStrdup(BAD_CAST "Element '");
1737 if (elem->ns != NULL) {
1738 *buf = xmlStrcat(*buf,
1739 xmlSchemaFormatQName(&str, elem->ns->href, elem->name));
1740 FREE_AND_NULL(str)
1741 } else
1742 *buf = xmlStrcat(*buf, elem->name);
1743 *buf = xmlStrcat(*buf, BAD_CAST "'");
1744
1745 }
1746 if ((itemNode != NULL) && (itemNode->type == XML_ATTRIBUTE_NODE)) {
1747 *buf = xmlStrcat(*buf, BAD_CAST ", attribute '");
1748 if (itemNode->ns != NULL) {
1749 *buf = xmlStrcat(*buf, xmlSchemaFormatQName(&str,
1750 itemNode->ns->href, itemNode->name));
1751 FREE_AND_NULL(str)
1752 } else
1753 *buf = xmlStrcat(*buf, itemNode->name);
1754 *buf = xmlStrcat(*buf, BAD_CAST "'");
1755 }
1756 FREE_AND_NULL(str)
1757
1758 return (*buf);
1759}
1760
1761/**
1762 * xmlSchemaFormatFacetEnumSet:
1763 * @buf: the string buffer
1764 * @type: the type holding the enumeration facets
1765 *
1766 * Builds a string consisting of all enumeration elements.
1767 *
1768 * Returns a string of all enumeration elements.
1769 */
1770static const xmlChar *
1771xmlSchemaFormatFacetEnumSet(xmlSchemaAbstractCtxtPtr actxt,
1772 xmlChar **buf, xmlSchemaTypePtr type)
1773{
1774 xmlSchemaFacetPtr facet;
1775 xmlSchemaWhitespaceValueType ws;
1776 xmlChar *value = NULL;
Kasimier T. Buchcikb63d2fa2006-04-19 11:20:49 +00001777 int res, found = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001778
1779 if (*buf != NULL)
1780 xmlFree(*buf);
1781 *buf = NULL;
1782
1783 do {
1784 /*
1785 * Use the whitespace type of the base type.
1786 */
1787 ws = xmlSchemaGetWhiteSpaceFacetValue(type->baseType);
1788 for (facet = type->facets; facet != NULL; facet = facet->next) {
1789 if (facet->type != XML_SCHEMA_FACET_ENUMERATION)
1790 continue;
Kasimier T. Buchcikb63d2fa2006-04-19 11:20:49 +00001791 found = 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001792 res = xmlSchemaGetCanonValueWhtspExt(facet->val,
1793 ws, &value);
1794 if (res == -1) {
1795 xmlSchemaInternalErr(actxt,
1796 "xmlSchemaFormatFacetEnumSet",
1797 "compute the canonical lexical representation");
1798 if (*buf != NULL)
1799 xmlFree(*buf);
1800 *buf = NULL;
1801 return (NULL);
1802 }
1803 if (*buf == NULL)
1804 *buf = xmlStrdup(BAD_CAST "'");
1805 else
1806 *buf = xmlStrcat(*buf, BAD_CAST ", '");
1807 *buf = xmlStrcat(*buf, BAD_CAST value);
1808 *buf = xmlStrcat(*buf, BAD_CAST "'");
1809 if (value != NULL) {
1810 xmlFree((xmlChar *)value);
1811 value = NULL;
1812 }
1813 }
Kasimier T. Buchcikb63d2fa2006-04-19 11:20:49 +00001814 /*
1815 * The enumeration facet of a type restricts the enumeration
1816 * facet of the ancestor type; i.e., such restricted enumerations
1817 * do not belong to the set of the given type. Thus we break
1818 * on the first found enumeration.
1819 */
1820 if (found)
1821 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001822 type = type->baseType;
1823 } while ((type != NULL) && (type->type != XML_SCHEMA_TYPE_BASIC));
1824
1825 return ((const xmlChar *) *buf);
1826}
1827
1828/************************************************************************
1829 * *
1830 * Error functions *
1831 * *
1832 ************************************************************************/
1833
1834#if 0
1835static void
1836xmlSchemaErrMemory(const char *msg)
1837{
1838 __xmlSimpleError(XML_FROM_SCHEMASP, XML_ERR_NO_MEMORY, NULL, NULL,
1839 msg);
1840}
1841#endif
1842
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00001843static void
1844xmlSchemaPSimpleErr(const char *msg)
1845{
1846 __xmlSimpleError(XML_FROM_SCHEMASP, XML_ERR_NO_MEMORY, NULL, NULL,
1847 msg);
1848}
1849
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001850/**
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001851 * xmlSchemaPErrMemory:
1852 * @node: a context node
1853 * @extra: extra informations
1854 *
1855 * Handle an out of memory condition
1856 */
1857static void
1858xmlSchemaPErrMemory(xmlSchemaParserCtxtPtr ctxt,
1859 const char *extra, xmlNodePtr node)
1860{
1861 if (ctxt != NULL)
1862 ctxt->nberrors++;
1863 __xmlSimpleError(XML_FROM_SCHEMASP, XML_ERR_NO_MEMORY, node, NULL,
1864 extra);
1865}
1866
1867/**
1868 * xmlSchemaPErr:
1869 * @ctxt: the parsing context
1870 * @node: the context node
1871 * @error: the error code
1872 * @msg: the error message
1873 * @str1: extra data
1874 * @str2: extra data
1875 *
1876 * Handle a parser error
1877 */
1878static void
1879xmlSchemaPErr(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, int error,
1880 const char *msg, const xmlChar * str1, const xmlChar * str2)
1881{
1882 xmlGenericErrorFunc channel = NULL;
Daniel Veillard659e71e2003-10-10 14:10:40 +00001883 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001884 void *data = NULL;
1885
1886 if (ctxt != NULL) {
1887 ctxt->nberrors++;
Kasimier T. Buchcik940ab0c2005-10-19 17:00:53 +00001888 ctxt->err = error;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001889 channel = ctxt->error;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +00001890 data = ctxt->errCtxt;
Daniel Veillard659e71e2003-10-10 14:10:40 +00001891 schannel = ctxt->serror;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001892 }
Daniel Veillard659e71e2003-10-10 14:10:40 +00001893 __xmlRaiseError(schannel, channel, data, ctxt, node, XML_FROM_SCHEMASP,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001894 error, XML_ERR_ERROR, NULL, 0,
1895 (const char *) str1, (const char *) str2, NULL, 0, 0,
1896 msg, str1, str2);
1897}
1898
1899/**
1900 * xmlSchemaPErr2:
1901 * @ctxt: the parsing context
1902 * @node: the context node
1903 * @node: the current child
1904 * @error: the error code
1905 * @msg: the error message
1906 * @str1: extra data
1907 * @str2: extra data
1908 *
1909 * Handle a parser error
1910 */
1911static void
1912xmlSchemaPErr2(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node,
1913 xmlNodePtr child, int error,
1914 const char *msg, const xmlChar * str1, const xmlChar * str2)
1915{
1916 if (child != NULL)
1917 xmlSchemaPErr(ctxt, child, error, msg, str1, str2);
1918 else
1919 xmlSchemaPErr(ctxt, node, error, msg, str1, str2);
1920}
1921
Daniel Veillard01fa6152004-06-29 17:04:39 +00001922
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001923/**
Daniel Veillard3646d642004-06-02 19:19:14 +00001924 * xmlSchemaPErrExt:
1925 * @ctxt: the parsing context
1926 * @node: the context node
1927 * @error: the error code
1928 * @strData1: extra data
1929 * @strData2: extra data
1930 * @strData3: extra data
1931 * @msg: the message
1932 * @str1: extra parameter for the message display
1933 * @str2: extra parameter for the message display
1934 * @str3: extra parameter for the message display
1935 * @str4: extra parameter for the message display
1936 * @str5: extra parameter for the message display
1937 *
1938 * Handle a parser error
1939 */
1940static void
1941xmlSchemaPErrExt(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, int error,
1942 const xmlChar * strData1, const xmlChar * strData2,
1943 const xmlChar * strData3, const char *msg, const xmlChar * str1,
1944 const xmlChar * str2, const xmlChar * str3, const xmlChar * str4,
1945 const xmlChar * str5)
1946{
1947
1948 xmlGenericErrorFunc channel = NULL;
1949 xmlStructuredErrorFunc schannel = NULL;
1950 void *data = NULL;
1951
1952 if (ctxt != NULL) {
1953 ctxt->nberrors++;
Kasimier T. Buchcik940ab0c2005-10-19 17:00:53 +00001954 ctxt->err = error;
Daniel Veillard3646d642004-06-02 19:19:14 +00001955 channel = ctxt->error;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +00001956 data = ctxt->errCtxt;
Daniel Veillard3646d642004-06-02 19:19:14 +00001957 schannel = ctxt->serror;
1958 }
1959 __xmlRaiseError(schannel, channel, data, ctxt, node, XML_FROM_SCHEMASP,
1960 error, XML_ERR_ERROR, NULL, 0,
1961 (const char *) strData1, (const char *) strData2,
William M. Brack803812b2004-06-03 02:11:24 +00001962 (const char *) strData3, 0, 0, msg, str1, str2,
1963 str3, str4, str5);
Daniel Veillard3646d642004-06-02 19:19:14 +00001964}
Daniel Veillard01fa6152004-06-29 17:04:39 +00001965
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00001966/************************************************************************
1967 * *
1968 * Allround error functions *
1969 * *
1970 ************************************************************************/
Daniel Veillard3646d642004-06-02 19:19:14 +00001971
1972/**
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001973 * xmlSchemaVTypeErrMemory:
1974 * @node: a context node
1975 * @extra: extra informations
1976 *
1977 * Handle an out of memory condition
1978 */
1979static void
1980xmlSchemaVErrMemory(xmlSchemaValidCtxtPtr ctxt,
1981 const char *extra, xmlNodePtr node)
1982{
1983 if (ctxt != NULL) {
1984 ctxt->nberrors++;
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +00001985 ctxt->err = XML_SCHEMAV_INTERNAL;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00001986 }
1987 __xmlSimpleError(XML_FROM_SCHEMASV, XML_ERR_NO_MEMORY, node, NULL,
1988 extra);
1989}
1990
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00001991static void
1992xmlSchemaPSimpleInternalErr(xmlNodePtr node,
1993 const char *msg, const xmlChar *str)
1994{
1995 __xmlSimpleError(XML_FROM_SCHEMASP, XML_SCHEMAP_INTERNAL, node,
1996 msg, (const char *) str);
1997}
1998
1999#define WXS_ERROR_TYPE_ERROR 1
2000#define WXS_ERROR_TYPE_WARNING 2
Daniel Veillardd0c9c322003-10-10 00:49:42 +00002001/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002002 * xmlSchemaErr3:
Daniel Veillardd0c9c322003-10-10 00:49:42 +00002003 * @ctxt: the validation context
2004 * @node: the context node
2005 * @error: the error code
2006 * @msg: the error message
2007 * @str1: extra data
2008 * @str2: extra data
2009 * @str3: extra data
2010 *
2011 * Handle a validation error
2012 */
2013static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002014xmlSchemaErr4Line(xmlSchemaAbstractCtxtPtr ctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002015 xmlErrorLevel errorLevel,
2016 int error, xmlNodePtr node, int line, const char *msg,
2017 const xmlChar *str1, const xmlChar *str2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002018 const xmlChar *str3, const xmlChar *str4)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00002019{
Daniel Veillard659e71e2003-10-10 14:10:40 +00002020 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00002021 xmlGenericErrorFunc channel = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002022 void *data = NULL;
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00002023
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002024 if (ctxt != NULL) {
2025 if (ctxt->type == XML_SCHEMA_CTXT_VALIDATOR) {
2026 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctxt;
Daniel Veillard971771e2005-07-09 17:32:57 +00002027 const char *file = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002028 if (errorLevel != XML_ERR_WARNING) {
2029 vctxt->nberrors++;
2030 vctxt->err = error;
2031 channel = vctxt->error;
2032 } else {
2033 channel = vctxt->warning;
2034 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002035 schannel = vctxt->serror;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +00002036 data = vctxt->errCtxt;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002037
2038 /*
2039 * Error node. If we specify a line number, then
2040 * do not channel any node to the error function.
2041 */
2042 if (line == 0) {
2043 if ((node == NULL) &&
2044 (vctxt->depth >= 0) &&
2045 (vctxt->inode != NULL)) {
2046 node = vctxt->inode->node;
2047 }
2048 /*
2049 * Get filename and line if no node-tree.
2050 */
2051 if ((node == NULL) &&
2052 (vctxt->parserCtxt != NULL) &&
2053 (vctxt->parserCtxt->input != NULL)) {
2054 file = vctxt->parserCtxt->input->filename;
2055 line = vctxt->parserCtxt->input->line;
2056 }
2057 } else {
2058 /*
2059 * Override the given node's (if any) position
2060 * and channel only the given line number.
2061 */
2062 node = NULL;
2063 /*
2064 * Get filename.
2065 */
2066 if (vctxt->doc != NULL)
2067 file = (const char *) vctxt->doc->URL;
2068 else if ((vctxt->parserCtxt != NULL) &&
2069 (vctxt->parserCtxt->input != NULL))
2070 file = vctxt->parserCtxt->input->filename;
2071 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002072 __xmlRaiseError(schannel, channel, data, ctxt,
2073 node, XML_FROM_SCHEMASV,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002074 error, errorLevel, file, line,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002075 (const char *) str1, (const char *) str2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002076 (const char *) str3, 0, 0, msg, str1, str2, str3, str4);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002077
2078 } else if (ctxt->type == XML_SCHEMA_CTXT_PARSER) {
2079 xmlSchemaParserCtxtPtr pctxt = (xmlSchemaParserCtxtPtr) ctxt;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002080 if (errorLevel != XML_ERR_WARNING) {
2081 pctxt->nberrors++;
2082 pctxt->err = error;
2083 channel = pctxt->error;
2084 } else {
2085 channel = pctxt->warning;
2086 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002087 schannel = pctxt->serror;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +00002088 data = pctxt->errCtxt;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002089 __xmlRaiseError(schannel, channel, data, ctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002090 node, XML_FROM_SCHEMASP, error,
2091 errorLevel, NULL, 0,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002092 (const char *) str1, (const char *) str2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002093 (const char *) str3, 0, 0, msg, str1, str2, str3, str4);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002094 } else {
2095 TODO
2096 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002097 }
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00002098}
2099
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002100/**
2101 * xmlSchemaErr3:
2102 * @ctxt: the validation context
2103 * @node: the context node
2104 * @error: the error code
2105 * @msg: the error message
2106 * @str1: extra data
2107 * @str2: extra data
2108 * @str3: extra data
2109 *
2110 * Handle a validation error
2111 */
2112static void
2113xmlSchemaErr3(xmlSchemaAbstractCtxtPtr actxt,
2114 int error, xmlNodePtr node, const char *msg,
2115 const xmlChar *str1, const xmlChar *str2, const xmlChar *str3)
2116{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002117 xmlSchemaErr4Line(actxt, XML_ERR_ERROR, error, node, 0,
2118 msg, str1, str2, str3, NULL);
2119}
2120
2121static void
2122xmlSchemaErr4(xmlSchemaAbstractCtxtPtr actxt,
2123 int error, xmlNodePtr node, const char *msg,
2124 const xmlChar *str1, const xmlChar *str2,
2125 const xmlChar *str3, const xmlChar *str4)
2126{
2127 xmlSchemaErr4Line(actxt, XML_ERR_ERROR, error, node, 0,
2128 msg, str1, str2, str3, str4);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002129}
2130
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002131static void
2132xmlSchemaErr(xmlSchemaAbstractCtxtPtr actxt,
2133 int error, xmlNodePtr node, const char *msg,
2134 const xmlChar *str1, const xmlChar *str2)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00002135{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002136 xmlSchemaErr4(actxt, error, node, msg, str1, str2, NULL, NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00002137}
2138
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002139static xmlChar *
2140xmlSchemaFormatNodeForError(xmlChar ** msg,
2141 xmlSchemaAbstractCtxtPtr actxt,
2142 xmlNodePtr node)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002143{
2144 xmlChar *str = NULL;
2145
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002146 *msg = NULL;
Kasimier T. Buchcik69dea3a2005-11-07 14:02:44 +00002147 if ((node != NULL) &&
2148 (node->type != XML_ELEMENT_NODE) &&
2149 (node->type != XML_ATTRIBUTE_NODE))
2150 {
2151 /*
2152 * Don't try to format other nodes than element and
2153 * attribute nodes.
2154 * Play save and return an empty string.
2155 */
2156 *msg = xmlStrdup(BAD_CAST "");
2157 return(*msg);
2158 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002159 if (node != NULL) {
2160 /*
2161 * Work on tree nodes.
2162 */
2163 if (node->type == XML_ATTRIBUTE_NODE) {
2164 xmlNodePtr elem = node->parent;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00002165
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002166 *msg = xmlStrdup(BAD_CAST "Element '");
2167 if (elem->ns != NULL)
2168 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2169 elem->ns->href, elem->name));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00002170 else
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002171 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2172 NULL, elem->name));
2173 FREE_AND_NULL(str);
2174 *msg = xmlStrcat(*msg, BAD_CAST "', ");
2175 *msg = xmlStrcat(*msg, BAD_CAST "attribute '");
2176 } else {
2177 *msg = xmlStrdup(BAD_CAST "Element '");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00002178 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002179 if (node->ns != NULL)
2180 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2181 node->ns->href, node->name));
Daniel Veillardc0826a72004-08-10 14:17:33 +00002182 else
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002183 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2184 NULL, node->name));
2185 FREE_AND_NULL(str);
2186 *msg = xmlStrcat(*msg, BAD_CAST "': ");
2187 } else if (actxt->type == XML_SCHEMA_CTXT_VALIDATOR) {
2188 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) actxt;
2189 /*
2190 * Work on node infos.
2191 */
2192 if (vctxt->inode->nodeType == XML_ATTRIBUTE_NODE) {
2193 xmlSchemaNodeInfoPtr ielem =
2194 vctxt->elemInfos[vctxt->depth];
2195
2196 *msg = xmlStrdup(BAD_CAST "Element '");
2197 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2198 ielem->nsName, ielem->localName));
2199 FREE_AND_NULL(str);
2200 *msg = xmlStrcat(*msg, BAD_CAST "', ");
2201 *msg = xmlStrcat(*msg, BAD_CAST "attribute '");
2202 } else {
2203 *msg = xmlStrdup(BAD_CAST "Element '");
2204 }
2205 *msg = xmlStrcat(*msg, xmlSchemaFormatQName(&str,
2206 vctxt->inode->nsName, vctxt->inode->localName));
2207 FREE_AND_NULL(str);
2208 *msg = xmlStrcat(*msg, BAD_CAST "': ");
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002209 } else if (actxt->type == XML_SCHEMA_CTXT_PARSER) {
2210 /*
2211 * Hmm, no node while parsing?
2212 * Return an empty string, in case NULL will break something.
2213 */
2214 *msg = xmlStrdup(BAD_CAST "");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002215 } else {
2216 TODO
2217 return (NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002218 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002219 /*
2220 * VAL TODO: The output of the given schema component is currently
2221 * disabled.
2222 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002223#if 0
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002224 if ((type != NULL) && (xmlSchemaIsGlobalItem(type))) {
2225 *msg = xmlStrcat(*msg, BAD_CAST " [");
2226 *msg = xmlStrcat(*msg, xmlSchemaFormatItemForReport(&str,
2227 NULL, type, NULL, 0));
2228 FREE_AND_NULL(str)
2229 *msg = xmlStrcat(*msg, BAD_CAST "]");
Daniel Veillardc0826a72004-08-10 14:17:33 +00002230 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002231#endif
2232 return (*msg);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002233}
2234
Daniel Veillardc0826a72004-08-10 14:17:33 +00002235static void
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002236xmlSchemaInternalErr2(xmlSchemaAbstractCtxtPtr actxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002237 const char *funcName,
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002238 const char *message,
2239 const xmlChar *str1,
2240 const xmlChar *str2)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002241{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002242 xmlChar *msg = NULL;
2243
Daniel Veillard14b56432006-03-09 18:41:40 +00002244 if (actxt == NULL)
2245 return;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002246 msg = xmlStrdup(BAD_CAST "Internal error: ");
2247 msg = xmlStrcat(msg, BAD_CAST funcName);
2248 msg = xmlStrcat(msg, BAD_CAST ", ");
2249 msg = xmlStrcat(msg, BAD_CAST message);
2250 msg = xmlStrcat(msg, BAD_CAST ".\n");
2251
2252 if (actxt->type == XML_SCHEMA_CTXT_VALIDATOR)
2253 xmlSchemaErr(actxt, XML_SCHEMAV_INTERNAL, NULL,
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002254 (const char *) msg, str1, str2);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002255
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002256 else if (actxt->type == XML_SCHEMA_CTXT_PARSER)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002257 xmlSchemaErr(actxt, XML_SCHEMAP_INTERNAL, NULL,
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002258 (const char *) msg, str1, str2);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002259
2260 FREE_AND_NULL(msg)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002261}
2262
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002263static void
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002264xmlSchemaInternalErr(xmlSchemaAbstractCtxtPtr actxt,
2265 const char *funcName,
2266 const char *message)
2267{
2268 xmlSchemaInternalErr2(actxt, funcName, message, NULL, NULL);
2269}
2270
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002271#if 0
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002272static void
2273xmlSchemaPInternalErr(xmlSchemaParserCtxtPtr pctxt,
2274 const char *funcName,
2275 const char *message,
2276 const xmlChar *str1,
2277 const xmlChar *str2)
2278{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002279 xmlSchemaInternalErr2(ACTXT_CAST pctxt, funcName, message,
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002280 str1, str2);
2281}
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002282#endif
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +00002283
2284static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002285xmlSchemaCustomErr4(xmlSchemaAbstractCtxtPtr actxt,
2286 xmlParserErrors error,
2287 xmlNodePtr node,
2288 xmlSchemaBasicItemPtr item,
2289 const char *message,
2290 const xmlChar *str1, const xmlChar *str2,
2291 const xmlChar *str3, const xmlChar *str4)
2292{
2293 xmlChar *msg = NULL;
2294
2295 if ((node == NULL) && (item != NULL) &&
2296 (actxt->type == XML_SCHEMA_CTXT_PARSER)) {
2297 node = WXS_ITEM_NODE(item);
2298 xmlSchemaFormatItemForReport(&msg, NULL, item, NULL);
2299 msg = xmlStrcat(msg, BAD_CAST ": ");
2300 } else
2301 xmlSchemaFormatNodeForError(&msg, actxt, node);
2302 msg = xmlStrcat(msg, (const xmlChar *) message);
2303 msg = xmlStrcat(msg, BAD_CAST ".\n");
2304 xmlSchemaErr4(actxt, error, node,
2305 (const char *) msg, str1, str2, str3, str4);
2306 FREE_AND_NULL(msg)
2307}
2308
2309static void
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002310xmlSchemaCustomErr(xmlSchemaAbstractCtxtPtr actxt,
2311 xmlParserErrors error,
2312 xmlNodePtr node,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002313 xmlSchemaBasicItemPtr item,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002314 const char *message,
2315 const xmlChar *str1,
2316 const xmlChar *str2)
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00002317{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002318 xmlSchemaCustomErr4(actxt, error, node, item,
2319 message, str1, str2, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002320}
2321
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002322
2323
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002324static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002325xmlSchemaCustomWarning(xmlSchemaAbstractCtxtPtr actxt,
2326 xmlParserErrors error,
2327 xmlNodePtr node,
2328 xmlSchemaTypePtr type ATTRIBUTE_UNUSED,
2329 const char *message,
2330 const xmlChar *str1,
2331 const xmlChar *str2,
2332 const xmlChar *str3)
2333{
2334 xmlChar *msg = NULL;
2335
2336 xmlSchemaFormatNodeForError(&msg, actxt, node);
2337 msg = xmlStrcat(msg, (const xmlChar *) message);
2338 msg = xmlStrcat(msg, BAD_CAST ".\n");
2339
2340 /* URGENT TODO: Set the error code to something sane. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002341 xmlSchemaErr4Line(actxt, XML_ERR_WARNING, error, node, 0,
2342 (const char *) msg, str1, str2, str3, NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002343
2344 FREE_AND_NULL(msg)
2345}
2346
2347
2348
2349static void
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002350xmlSchemaKeyrefErr(xmlSchemaValidCtxtPtr vctxt,
2351 xmlParserErrors error,
2352 xmlSchemaPSVIIDCNodePtr idcNode,
2353 xmlSchemaTypePtr type ATTRIBUTE_UNUSED,
2354 const char *message,
2355 const xmlChar *str1,
2356 const xmlChar *str2)
2357{
2358 xmlChar *msg = NULL, *qname = NULL;
2359
2360 msg = xmlStrdup(BAD_CAST "Element '%s': ");
2361 msg = xmlStrcat(msg, (const xmlChar *) message);
2362 msg = xmlStrcat(msg, BAD_CAST ".\n");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002363 xmlSchemaErr4Line(ACTXT_CAST vctxt, XML_ERR_ERROR,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002364 error, NULL, idcNode->nodeLine, (const char *) msg,
2365 xmlSchemaFormatQName(&qname,
2366 vctxt->nodeQNames->items[idcNode->nodeQNameID +1],
2367 vctxt->nodeQNames->items[idcNode->nodeQNameID]),
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002368 str1, str2, NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00002369 FREE_AND_NULL(qname);
2370 FREE_AND_NULL(msg);
2371}
2372
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002373static int
2374xmlSchemaEvalErrorNodeType(xmlSchemaAbstractCtxtPtr actxt,
2375 xmlNodePtr node)
2376{
2377 if (node != NULL)
2378 return (node->type);
2379 if ((actxt->type == XML_SCHEMA_CTXT_VALIDATOR) &&
2380 (((xmlSchemaValidCtxtPtr) actxt)->inode != NULL))
2381 return ( ((xmlSchemaValidCtxtPtr) actxt)->inode->nodeType);
2382 return (-1);
2383}
2384
2385static int
2386xmlSchemaIsGlobalItem(xmlSchemaTypePtr item)
2387{
2388 switch (item->type) {
2389 case XML_SCHEMA_TYPE_COMPLEX:
2390 case XML_SCHEMA_TYPE_SIMPLE:
2391 if (item->flags & XML_SCHEMAS_TYPE_GLOBAL)
2392 return(1);
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00002393 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002394 case XML_SCHEMA_TYPE_GROUP:
2395 return (1);
2396 case XML_SCHEMA_TYPE_ELEMENT:
2397 if ( ((xmlSchemaElementPtr) item)->flags &
2398 XML_SCHEMAS_ELEM_GLOBAL)
2399 return(1);
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00002400 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002401 case XML_SCHEMA_TYPE_ATTRIBUTE:
2402 if ( ((xmlSchemaAttributePtr) item)->flags &
2403 XML_SCHEMAS_ATTR_GLOBAL)
2404 return(1);
2405 break;
2406 /* Note that attribute groups are always global. */
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00002407 default:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002408 return(1);
2409 }
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +00002410 return (0);
2411}
2412
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002413static void
2414xmlSchemaSimpleTypeErr(xmlSchemaAbstractCtxtPtr actxt,
2415 xmlParserErrors error,
2416 xmlNodePtr node,
2417 const xmlChar *value,
2418 xmlSchemaTypePtr type,
2419 int displayValue)
2420{
2421 xmlChar *msg = NULL;
2422
2423 xmlSchemaFormatNodeForError(&msg, actxt, node);
2424
2425 if (displayValue || (xmlSchemaEvalErrorNodeType(actxt, node) ==
2426 XML_ATTRIBUTE_NODE))
2427 msg = xmlStrcat(msg, BAD_CAST "'%s' is not a valid value of ");
2428 else
2429 msg = xmlStrcat(msg, BAD_CAST "The character content is not a valid "
2430 "value of ");
2431
2432 if (! xmlSchemaIsGlobalItem(type))
2433 msg = xmlStrcat(msg, BAD_CAST "the local ");
2434 else
2435 msg = xmlStrcat(msg, BAD_CAST "the ");
2436
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002437 if (WXS_IS_ATOMIC(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002438 msg = xmlStrcat(msg, BAD_CAST "atomic type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002439 else if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002440 msg = xmlStrcat(msg, BAD_CAST "list type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002441 else if (WXS_IS_UNION(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002442 msg = xmlStrcat(msg, BAD_CAST "union type");
2443
2444 if (xmlSchemaIsGlobalItem(type)) {
2445 xmlChar *str = NULL;
2446 msg = xmlStrcat(msg, BAD_CAST " '");
2447 if (type->builtInType != 0) {
2448 msg = xmlStrcat(msg, BAD_CAST "xs:");
2449 msg = xmlStrcat(msg, type->name);
2450 } else
2451 msg = xmlStrcat(msg,
2452 xmlSchemaFormatQName(&str,
2453 type->targetNamespace, type->name));
2454 msg = xmlStrcat(msg, BAD_CAST "'");
2455 FREE_AND_NULL(str);
2456 }
2457 msg = xmlStrcat(msg, BAD_CAST ".\n");
2458 if (displayValue || (xmlSchemaEvalErrorNodeType(actxt, node) ==
2459 XML_ATTRIBUTE_NODE))
2460 xmlSchemaErr(actxt, error, node, (const char *) msg, value, NULL);
2461 else
2462 xmlSchemaErr(actxt, error, node, (const char *) msg, NULL, NULL);
2463 FREE_AND_NULL(msg)
2464}
2465
Daniel Veillardc0826a72004-08-10 14:17:33 +00002466static const xmlChar *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002467xmlSchemaFormatErrorNodeQName(xmlChar ** str,
2468 xmlSchemaNodeInfoPtr ni,
2469 xmlNodePtr node)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002470{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002471 if (node != NULL) {
2472 if (node->ns != NULL)
2473 return (xmlSchemaFormatQName(str, node->ns->href, node->name));
2474 else
2475 return (xmlSchemaFormatQName(str, NULL, node->name));
2476 } else if (ni != NULL)
2477 return (xmlSchemaFormatQName(str, ni->nsName, ni->localName));
2478 return (NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002479}
2480
Daniel Veillardc0826a72004-08-10 14:17:33 +00002481static void
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002482xmlSchemaIllegalAttrErr(xmlSchemaAbstractCtxtPtr actxt,
2483 xmlParserErrors error,
2484 xmlSchemaAttrInfoPtr ni,
2485 xmlNodePtr node)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002486{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002487 xmlChar *msg = NULL, *str = NULL;
2488
2489 xmlSchemaFormatNodeForError(&msg, actxt, node);
2490 msg = xmlStrcat(msg, BAD_CAST "The attribute '%s' is not allowed.\n");
2491 xmlSchemaErr(actxt, error, node, (const char *) msg,
2492 xmlSchemaFormatErrorNodeQName(&str, (xmlSchemaNodeInfoPtr) ni, node),
2493 NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002494 FREE_AND_NULL(str)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002495 FREE_AND_NULL(msg)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002496}
2497
Daniel Veillardc0826a72004-08-10 14:17:33 +00002498static void
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002499xmlSchemaComplexTypeErr(xmlSchemaAbstractCtxtPtr actxt,
2500 xmlParserErrors error,
2501 xmlNodePtr node,
2502 xmlSchemaTypePtr type ATTRIBUTE_UNUSED,
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002503 const char *message,
2504 int nbval,
2505 int nbneg,
2506 xmlChar **values)
2507{
2508 xmlChar *str = NULL, *msg = NULL;
2509 xmlChar *localName, *nsName;
2510 const xmlChar *cur, *end;
Daniel Veillard6a0baa02005-12-10 11:11:12 +00002511 int i;
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002512
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002513 xmlSchemaFormatNodeForError(&msg, actxt, node);
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002514 msg = xmlStrcat(msg, (const xmlChar *) message);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002515 msg = xmlStrcat(msg, BAD_CAST ".");
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002516 /*
2517 * Note that is does not make sense to report that we have a
2518 * wildcard here, since the wildcard might be unfolded into
2519 * multiple transitions.
2520 */
2521 if (nbval + nbneg > 0) {
2522 if (nbval + nbneg > 1) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002523 str = xmlStrdup(BAD_CAST " Expected is one of ( ");
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002524 } else
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002525 str = xmlStrdup(BAD_CAST " Expected is ( ");
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002526 nsName = NULL;
2527
2528 for (i = 0; i < nbval + nbneg; i++) {
2529 cur = values[i];
Daniel Veillard77005e62005-07-19 16:26:18 +00002530 if (cur == NULL)
2531 continue;
2532 if ((cur[0] == 'n') && (cur[1] == 'o') && (cur[2] == 't') &&
2533 (cur[3] == ' ')) {
Daniel Veillard77005e62005-07-19 16:26:18 +00002534 cur += 4;
Daniel Veillard6e65e152005-08-09 11:09:52 +00002535 str = xmlStrcat(str, BAD_CAST "##other");
Daniel Veillard77005e62005-07-19 16:26:18 +00002536 }
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002537 /*
2538 * Get the local name.
2539 */
2540 localName = NULL;
2541
2542 end = cur;
2543 if (*end == '*') {
2544 localName = xmlStrdup(BAD_CAST "*");
Kasimier T. Buchcikc0e833f2005-04-19 15:02:20 +00002545 end++;
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002546 } else {
2547 while ((*end != 0) && (*end != '|'))
2548 end++;
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002549 localName = xmlStrncat(localName, BAD_CAST cur, end - cur);
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002550 }
2551 if (*end != 0) {
Kasimier T. Buchcikc0e833f2005-04-19 15:02:20 +00002552 end++;
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002553 /*
2554 * Skip "*|*" if they come with negated expressions, since
2555 * they represent the same negated wildcard.
2556 */
2557 if ((nbneg == 0) || (*end != '*') || (*localName != '*')) {
2558 /*
2559 * Get the namespace name.
2560 */
2561 cur = end;
2562 if (*end == '*') {
2563 nsName = xmlStrdup(BAD_CAST "{*}");
2564 } else {
2565 while (*end != 0)
2566 end++;
2567
2568 if (i >= nbval)
2569 nsName = xmlStrdup(BAD_CAST "{##other:");
2570 else
2571 nsName = xmlStrdup(BAD_CAST "{");
2572
2573 nsName = xmlStrncat(nsName, BAD_CAST cur, end - cur);
2574 nsName = xmlStrcat(nsName, BAD_CAST "}");
2575 }
2576 str = xmlStrcat(str, BAD_CAST nsName);
2577 FREE_AND_NULL(nsName)
2578 } else {
2579 FREE_AND_NULL(localName);
2580 continue;
2581 }
2582 }
2583 str = xmlStrcat(str, BAD_CAST localName);
2584 FREE_AND_NULL(localName);
2585
2586 if (i < nbval + nbneg -1)
2587 str = xmlStrcat(str, BAD_CAST ", ");
Kasimier T. Buchcik31113c72005-01-13 16:57:20 +00002588 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002589 str = xmlStrcat(str, BAD_CAST " ).\n");
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002590 msg = xmlStrcat(msg, BAD_CAST str);
2591 FREE_AND_NULL(str)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002592 } else
2593 msg = xmlStrcat(msg, BAD_CAST "\n");
2594 xmlSchemaErr(actxt, error, node, (const char *) msg, NULL, NULL);
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002595 xmlFree(msg);
2596}
2597
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002598static void
2599xmlSchemaFacetErr(xmlSchemaAbstractCtxtPtr actxt,
2600 xmlParserErrors error,
2601 xmlNodePtr node,
2602 const xmlChar *value,
2603 unsigned long length,
2604 xmlSchemaTypePtr type,
2605 xmlSchemaFacetPtr facet,
2606 const char *message,
2607 const xmlChar *str1,
2608 const xmlChar *str2)
2609{
2610 xmlChar *str = NULL, *msg = NULL;
2611 xmlSchemaTypeType facetType;
2612 int nodeType = xmlSchemaEvalErrorNodeType(actxt, node);
2613
2614 xmlSchemaFormatNodeForError(&msg, actxt, node);
2615 if (error == XML_SCHEMAV_CVC_ENUMERATION_VALID) {
2616 facetType = XML_SCHEMA_FACET_ENUMERATION;
2617 /*
2618 * If enumerations are validated, one must not expect the
2619 * facet to be given.
2620 */
2621 } else
2622 facetType = facet->type;
2623 msg = xmlStrcat(msg, BAD_CAST "[");
2624 msg = xmlStrcat(msg, BAD_CAST "facet '");
2625 msg = xmlStrcat(msg, xmlSchemaFacetTypeToString(facetType));
2626 msg = xmlStrcat(msg, BAD_CAST "'] ");
2627 if (message == NULL) {
2628 /*
2629 * Use a default message.
2630 */
2631 if ((facetType == XML_SCHEMA_FACET_LENGTH) ||
2632 (facetType == XML_SCHEMA_FACET_MINLENGTH) ||
2633 (facetType == XML_SCHEMA_FACET_MAXLENGTH)) {
2634
2635 char len[25], actLen[25];
2636
2637 /* FIXME, TODO: What is the max expected string length of the
2638 * this value?
2639 */
2640 if (nodeType == XML_ATTRIBUTE_NODE)
2641 msg = xmlStrcat(msg, BAD_CAST "The value '%s' has a length of '%s'; ");
2642 else
2643 msg = xmlStrcat(msg, BAD_CAST "The value has a length of '%s'; ");
2644
2645 snprintf(len, 24, "%lu", xmlSchemaGetFacetValueAsULong(facet));
2646 snprintf(actLen, 24, "%lu", length);
2647
2648 if (facetType == XML_SCHEMA_FACET_LENGTH)
2649 msg = xmlStrcat(msg,
2650 BAD_CAST "this differs from the allowed length of '%s'.\n");
2651 else if (facetType == XML_SCHEMA_FACET_MAXLENGTH)
2652 msg = xmlStrcat(msg,
2653 BAD_CAST "this exceeds the allowed maximum length of '%s'.\n");
2654 else if (facetType == XML_SCHEMA_FACET_MINLENGTH)
2655 msg = xmlStrcat(msg,
2656 BAD_CAST "this underruns the allowed minimum length of '%s'.\n");
2657
2658 if (nodeType == XML_ATTRIBUTE_NODE)
2659 xmlSchemaErr3(actxt, error, node, (const char *) msg,
2660 value, (const xmlChar *) actLen, (const xmlChar *) len);
2661 else
2662 xmlSchemaErr(actxt, error, node, (const char *) msg,
2663 (const xmlChar *) actLen, (const xmlChar *) len);
2664
2665 } else if (facetType == XML_SCHEMA_FACET_ENUMERATION) {
2666 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is not an element "
2667 "of the set {%s}.\n");
2668 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2669 xmlSchemaFormatFacetEnumSet(actxt, &str, type));
2670 } else if (facetType == XML_SCHEMA_FACET_PATTERN) {
2671 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is not accepted "
2672 "by the pattern '%s'.\n");
2673 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2674 facet->value);
2675 } else if (facetType == XML_SCHEMA_FACET_MININCLUSIVE) {
2676 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is less than the "
2677 "minimum value allowed ('%s').\n");
2678 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2679 facet->value);
2680 } else if (facetType == XML_SCHEMA_FACET_MAXINCLUSIVE) {
2681 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is greater than the "
2682 "maximum value allowed ('%s').\n");
2683 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2684 facet->value);
2685 } else if (facetType == XML_SCHEMA_FACET_MINEXCLUSIVE) {
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00002686 msg = xmlStrcat(msg, BAD_CAST "The value '%s' must be greater than "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002687 "'%s'.\n");
2688 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2689 facet->value);
2690 } else if (facetType == XML_SCHEMA_FACET_MAXEXCLUSIVE) {
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00002691 msg = xmlStrcat(msg, BAD_CAST "The value '%s' must be less than "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002692 "'%s'.\n");
2693 xmlSchemaErr(actxt, error, node, (const char *) msg, value,
2694 facet->value);
2695 } else if (facetType == XML_SCHEMA_FACET_TOTALDIGITS) {
2696 msg = xmlStrcat(msg, BAD_CAST "The value '%s' has more "
2697 "digits than are allowed ('%s').\n");
2698 xmlSchemaErr(actxt, error, node, (const char*) msg, value,
2699 facet->value);
2700 } else if (facetType == XML_SCHEMA_FACET_FRACTIONDIGITS) {
2701 msg = xmlStrcat(msg, BAD_CAST "The value '%s' has more fractional "
2702 "digits than are allowed ('%s').\n");
2703 xmlSchemaErr(actxt, error, node, (const char*) msg, value,
2704 facet->value);
2705 } else if (nodeType == XML_ATTRIBUTE_NODE) {
2706 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is not facet-valid.\n");
2707 xmlSchemaErr(actxt, error, node, (const char *) msg, value, NULL);
2708 } else {
2709 msg = xmlStrcat(msg, BAD_CAST "The value is not facet-valid.\n");
2710 xmlSchemaErr(actxt, error, node, (const char *) msg, NULL, NULL);
2711 }
2712 } else {
2713 msg = xmlStrcat(msg, (const xmlChar *) message);
2714 msg = xmlStrcat(msg, BAD_CAST ".\n");
2715 xmlSchemaErr(actxt, error, node, (const char *) msg, str1, str2);
2716 }
2717 FREE_AND_NULL(str)
2718 xmlFree(msg);
2719}
2720
2721#define VERROR(err, type, msg) \
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002722 xmlSchemaCustomErr(ACTXT_CAST vctxt, err, NULL, type, msg, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002723
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002724#define VERROR_INT(func, msg) xmlSchemaInternalErr(ACTXT_CAST vctxt, func, msg);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002725
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00002726#define PERROR_INT(func, msg) xmlSchemaInternalErr(ACTXT_CAST pctxt, func, msg);
2727#define PERROR_INT2(func, msg) xmlSchemaInternalErr(ACTXT_CAST ctxt, func, msg);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002728
2729#define AERROR_INT(func, msg) xmlSchemaInternalErr(actxt, func, msg);
2730
2731
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +00002732/**
Daniel Veillardc0826a72004-08-10 14:17:33 +00002733 * xmlSchemaPMissingAttrErr:
2734 * @ctxt: the schema validation context
2735 * @ownerDes: the designation of the owner
2736 * @ownerName: the name of the owner
2737 * @ownerItem: the owner as a schema object
2738 * @ownerElem: the owner as an element node
2739 * @node: the parent element node of the missing attribute node
2740 * @type: the corresponding type of the attribute node
2741 *
2742 * Reports an illegal attribute.
2743 */
2744static void
2745xmlSchemaPMissingAttrErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002746 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002747 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002748 xmlNodePtr ownerElem,
2749 const char *name,
2750 const char *message)
2751{
2752 xmlChar *des = NULL;
2753
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002754 xmlSchemaFormatItemForReport(&des, NULL, ownerItem, ownerElem);
2755
Daniel Veillardc0826a72004-08-10 14:17:33 +00002756 if (message != NULL)
2757 xmlSchemaPErr(ctxt, ownerElem, error, "%s: %s.\n", BAD_CAST des, BAD_CAST message);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002758 else
2759 xmlSchemaPErr(ctxt, ownerElem, error,
2760 "%s: The attribute '%s' is required but missing.\n",
Daniel Veillardc0826a72004-08-10 14:17:33 +00002761 BAD_CAST des, BAD_CAST name);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002762 FREE_AND_NULL(des);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002763}
2764
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002765
Daniel Veillardc0826a72004-08-10 14:17:33 +00002766/**
2767 * xmlSchemaPResCompAttrErr:
2768 * @ctxt: the schema validation context
2769 * @error: the error code
2770 * @ownerDes: the designation of the owner
2771 * @ownerItem: the owner as a schema object
2772 * @ownerElem: the owner as an element node
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002773 * @name: the name of the attribute holding the QName
Daniel Veillardc0826a72004-08-10 14:17:33 +00002774 * @refName: the referenced local name
2775 * @refURI: the referenced namespace URI
2776 * @message: optional message
2777 *
2778 * Used to report QName attribute values that failed to resolve
2779 * to schema components.
2780 */
2781static void
2782xmlSchemaPResCompAttrErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002783 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002784 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002785 xmlNodePtr ownerElem,
2786 const char *name,
2787 const xmlChar *refName,
2788 const xmlChar *refURI,
2789 xmlSchemaTypeType refType,
2790 const char *refTypeStr)
2791{
2792 xmlChar *des = NULL, *strA = NULL;
2793
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002794 xmlSchemaFormatItemForReport(&des, NULL, ownerItem, ownerElem);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002795 if (refTypeStr == NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002796 refTypeStr = (const char *) xmlSchemaItemTypeToStr(refType);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002797 xmlSchemaPErrExt(ctxt, ownerElem, error,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002798 NULL, NULL, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002799 "%s, attribute '%s': The QName value '%s' does not resolve to a(n) "
2800 "%s.\n", BAD_CAST des, BAD_CAST name,
2801 xmlSchemaFormatQName(&strA, refURI, refName),
Daniel Veillardc0826a72004-08-10 14:17:33 +00002802 BAD_CAST refTypeStr, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002803 FREE_AND_NULL(des)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002804 FREE_AND_NULL(strA)
2805}
2806
William M. Brack2f2a6632004-08-20 23:09:47 +00002807/**
2808 * xmlSchemaPCustomAttrErr:
2809 * @ctxt: the schema parser context
2810 * @error: the error code
2811 * @ownerDes: the designation of the owner
2812 * @ownerItem: the owner as a schema object
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002813 * @attr: the illegal attribute node
William M. Brack2f2a6632004-08-20 23:09:47 +00002814 *
2815 * Reports an illegal attribute during the parse.
2816 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00002817static void
2818xmlSchemaPCustomAttrErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002819 xmlParserErrors error,
William M. Brack2f2a6632004-08-20 23:09:47 +00002820 xmlChar **ownerDes,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002821 xmlSchemaBasicItemPtr ownerItem,
William M. Brack2f2a6632004-08-20 23:09:47 +00002822 xmlAttrPtr attr,
2823 const char *msg)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002824{
2825 xmlChar *des = NULL;
2826
2827 if (ownerDes == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002828 xmlSchemaFormatItemForReport(&des, NULL, ownerItem, attr->parent);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002829 else if (*ownerDes == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002830 xmlSchemaFormatItemForReport(ownerDes, NULL, ownerItem, attr->parent);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002831 des = *ownerDes;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002832 } else
2833 des = *ownerDes;
Daniel Veillard14b56432006-03-09 18:41:40 +00002834 if (attr == NULL) {
2835 xmlSchemaPErrExt(ctxt, NULL, error, NULL, NULL, NULL,
2836 "%s, attribute '%s': %s.\n",
Daniel Veillardaac7c682006-03-10 13:40:16 +00002837 BAD_CAST des, (const xmlChar *) "Unknown",
2838 (const xmlChar *) msg, NULL, NULL);
Daniel Veillard14b56432006-03-09 18:41:40 +00002839 } else {
2840 xmlSchemaPErrExt(ctxt, (xmlNodePtr) attr, error, NULL, NULL, NULL,
2841 "%s, attribute '%s': %s.\n",
2842 BAD_CAST des, attr->name, (const xmlChar *) msg, NULL, NULL);
2843 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00002844 if (ownerDes == NULL)
2845 FREE_AND_NULL(des);
2846}
2847
2848/**
2849 * xmlSchemaPIllegalAttrErr:
William M. Brack2f2a6632004-08-20 23:09:47 +00002850 * @ctxt: the schema parser context
Daniel Veillardc0826a72004-08-10 14:17:33 +00002851 * @error: the error code
William M. Brack2f2a6632004-08-20 23:09:47 +00002852 * @ownerDes: the designation of the attribute's owner
2853 * @ownerItem: the attribute's owner item
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002854 * @attr: the illegal attribute node
Daniel Veillardc0826a72004-08-10 14:17:33 +00002855 *
William M. Brack2f2a6632004-08-20 23:09:47 +00002856 * Reports an illegal attribute during the parse.
Daniel Veillardc0826a72004-08-10 14:17:33 +00002857 */
2858static void
2859xmlSchemaPIllegalAttrErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002860 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002861 xmlSchemaBasicItemPtr ownerComp ATTRIBUTE_UNUSED,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002862 xmlAttrPtr attr)
2863{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002864 xmlChar *strA = NULL, *strB = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00002865
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002866 xmlSchemaFormatNodeForError(&strA, ACTXT_CAST ctxt, attr->parent);
2867 xmlSchemaErr4(ACTXT_CAST ctxt, error, (xmlNodePtr) attr,
2868 "%sThe attribute '%s' is not allowed.\n", BAD_CAST strA,
2869 xmlSchemaFormatQNameNs(&strB, attr->ns, attr->name),
2870 NULL, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002871 FREE_AND_NULL(strA);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002872 FREE_AND_NULL(strB);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002873}
2874
William M. Brack2f2a6632004-08-20 23:09:47 +00002875/**
2876 * xmlSchemaPCustomErr:
2877 * @ctxt: the schema parser context
2878 * @error: the error code
2879 * @itemDes: the designation of the schema item
2880 * @item: the schema item
2881 * @itemElem: the node of the schema item
2882 * @message: the error message
2883 * @str1: an optional param for the error message
2884 * @str2: an optional param for the error message
2885 * @str3: an optional param for the error message
2886 *
2887 * Reports an error during parsing.
2888 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00002889static void
2890xmlSchemaPCustomErrExt(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002891 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002892 xmlSchemaBasicItemPtr item,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002893 xmlNodePtr itemElem,
2894 const char *message,
2895 const xmlChar *str1,
2896 const xmlChar *str2,
2897 const xmlChar *str3)
2898{
2899 xmlChar *des = NULL, *msg = NULL;
2900
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002901 xmlSchemaFormatItemForReport(&des, NULL, item, itemElem);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002902 msg = xmlStrdup(BAD_CAST "%s: ");
2903 msg = xmlStrcat(msg, (const xmlChar *) message);
2904 msg = xmlStrcat(msg, BAD_CAST ".\n");
2905 if ((itemElem == NULL) && (item != NULL))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002906 itemElem = WXS_ITEM_NODE(item);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002907 xmlSchemaPErrExt(ctxt, itemElem, error, NULL, NULL, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002908 (const char *) msg, BAD_CAST des, str1, str2, str3, NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002909 FREE_AND_NULL(des);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002910 FREE_AND_NULL(msg);
2911}
2912
William M. Brack2f2a6632004-08-20 23:09:47 +00002913/**
2914 * xmlSchemaPCustomErr:
2915 * @ctxt: the schema parser context
2916 * @error: the error code
2917 * @itemDes: the designation of the schema item
2918 * @item: the schema item
2919 * @itemElem: the node of the schema item
2920 * @message: the error message
2921 * @str1: the optional param for the error message
2922 *
2923 * Reports an error during parsing.
2924 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00002925static void
2926xmlSchemaPCustomErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002927 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002928 xmlSchemaBasicItemPtr item,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002929 xmlNodePtr itemElem,
2930 const char *message,
2931 const xmlChar *str1)
2932{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002933 xmlSchemaPCustomErrExt(ctxt, error, item, itemElem, message,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002934 str1, NULL, NULL);
2935}
2936
William M. Brack2f2a6632004-08-20 23:09:47 +00002937/**
2938 * xmlSchemaPAttrUseErr:
2939 * @ctxt: the schema parser context
2940 * @error: the error code
2941 * @itemDes: the designation of the schema type
2942 * @item: the schema type
2943 * @itemElem: the node of the schema type
2944 * @attr: the invalid schema attribute
2945 * @message: the error message
2946 * @str1: the optional param for the error message
2947 *
2948 * Reports an attribute use error during parsing.
2949 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00002950static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002951xmlSchemaPAttrUseErr4(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002952 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002953 xmlNodePtr node,
2954 xmlSchemaBasicItemPtr ownerItem,
2955 const xmlSchemaAttributeUsePtr attruse,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002956 const char *message,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002957 const xmlChar *str1, const xmlChar *str2,
2958 const xmlChar *str3,const xmlChar *str4)
Daniel Veillardc0826a72004-08-10 14:17:33 +00002959{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002960 xmlChar *str = NULL, *msg = NULL;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002961
2962 xmlSchemaFormatItemForReport(&msg, NULL, ownerItem, NULL);
2963 msg = xmlStrcat(msg, BAD_CAST ", ");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002964 msg = xmlStrcat(msg,
2965 BAD_CAST xmlSchemaFormatItemForReport(&str, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002966 WXS_BASIC_CAST attruse, NULL));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002967 FREE_AND_NULL(str);
2968 msg = xmlStrcat(msg, BAD_CAST ": ");
Daniel Veillardc0826a72004-08-10 14:17:33 +00002969 msg = xmlStrcat(msg, (const xmlChar *) message);
2970 msg = xmlStrcat(msg, BAD_CAST ".\n");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002971 xmlSchemaErr4(ACTXT_CAST ctxt, error, node,
2972 (const char *) msg, str1, str2, str3, str4);
Daniel Veillardc0826a72004-08-10 14:17:33 +00002973 xmlFree(msg);
2974}
2975
William M. Brack2f2a6632004-08-20 23:09:47 +00002976/**
2977 * xmlSchemaPIllegalFacetAtomicErr:
2978 * @ctxt: the schema parser context
2979 * @error: the error code
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002980 * @type: the schema type
2981 * @baseType: the base type of type
William M. Brack2f2a6632004-08-20 23:09:47 +00002982 * @facet: the illegal facet
2983 *
2984 * Reports an illegal facet for atomic simple types.
2985 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00002986static void
2987xmlSchemaPIllegalFacetAtomicErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00002988 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002989 xmlSchemaTypePtr type,
2990 xmlSchemaTypePtr baseType,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002991 xmlSchemaFacetPtr facet)
2992{
2993 xmlChar *des = NULL, *strT = NULL;
2994
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00002995 xmlSchemaFormatItemForReport(&des, NULL, WXS_BASIC_CAST type, type->node);
2996 xmlSchemaPErrExt(ctxt, type->node, error, NULL, NULL, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +00002997 "%s: The facet '%s' is not allowed on types derived from the "
2998 "type %s.\n",
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00002999 BAD_CAST des, xmlSchemaFacetTypeToString(facet->type),
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003000 xmlSchemaFormatItemForReport(&strT, NULL, WXS_BASIC_CAST baseType, NULL),
Daniel Veillardc0826a72004-08-10 14:17:33 +00003001 NULL, NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003002 FREE_AND_NULL(des);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003003 FREE_AND_NULL(strT);
3004}
3005
William M. Brack2f2a6632004-08-20 23:09:47 +00003006/**
3007 * xmlSchemaPIllegalFacetListUnionErr:
3008 * @ctxt: the schema parser context
3009 * @error: the error code
3010 * @itemDes: the designation of the schema item involved
3011 * @item: the schema item involved
3012 * @facet: the illegal facet
3013 *
3014 * Reports an illegal facet for <list> and <union>.
3015 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00003016static void
3017xmlSchemaPIllegalFacetListUnionErr(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003018 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003019 xmlSchemaTypePtr type,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003020 xmlSchemaFacetPtr facet)
3021{
Daniel Veillardb2947172006-03-27 09:45:01 +00003022 xmlChar *des = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00003023
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003024 xmlSchemaFormatItemForReport(&des, NULL, WXS_BASIC_CAST type,
3025 type->node);
3026 xmlSchemaPErr(ctxt, type->node, error,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003027 "%s: The facet '%s' is not allowed.\n",
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00003028 BAD_CAST des, xmlSchemaFacetTypeToString(facet->type));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003029 FREE_AND_NULL(des);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003030}
3031
3032/**
3033 * xmlSchemaPMutualExclAttrErr:
3034 * @ctxt: the schema validation context
3035 * @error: the error code
3036 * @elemDes: the designation of the parent element node
3037 * @attr: the bad attribute node
3038 * @type: the corresponding type of the attribute node
3039 *
3040 * Reports an illegal attribute.
3041 */
3042static void
3043xmlSchemaPMutualExclAttrErr(xmlSchemaParserCtxtPtr ctxt,
3044 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003045 xmlSchemaBasicItemPtr ownerItem,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003046 xmlAttrPtr attr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003047 const char *name1,
3048 const char *name2)
3049{
3050 xmlChar *des = NULL;
3051
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003052 xmlSchemaFormatItemForReport(&des, NULL, WXS_BASIC_CAST ownerItem, attr->parent);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003053 xmlSchemaPErrExt(ctxt, (xmlNodePtr) attr, error, NULL, NULL, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003054 "%s: The attributes '%s' and '%s' are mutually exclusive.\n",
Daniel Veillardc0826a72004-08-10 14:17:33 +00003055 BAD_CAST des, BAD_CAST name1, BAD_CAST name2, NULL, NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003056 FREE_AND_NULL(des);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003057}
3058
3059/**
3060 * xmlSchemaPSimpleTypeErr:
3061 * @ctxt: the schema validation context
3062 * @error: the error code
William M. Brack2f2a6632004-08-20 23:09:47 +00003063 * @type: the type specifier
Daniel Veillardc0826a72004-08-10 14:17:33 +00003064 * @ownerDes: the designation of the owner
3065 * @ownerItem: the schema object if existent
3066 * @node: the validated node
3067 * @value: the validated value
3068 *
3069 * Reports a simple type validation error.
3070 * TODO: Should this report the value of an element as well?
3071 */
3072static void
3073xmlSchemaPSimpleTypeErr(xmlSchemaParserCtxtPtr ctxt,
3074 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003075 xmlSchemaBasicItemPtr ownerItem ATTRIBUTE_UNUSED,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003076 xmlNodePtr node,
William M. Brack2f2a6632004-08-20 23:09:47 +00003077 xmlSchemaTypePtr type,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003078 const char *expected,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003079 const xmlChar *value,
3080 const char *message,
3081 const xmlChar *str1,
3082 const xmlChar *str2)
3083{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003084 xmlChar *msg = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00003085
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003086 xmlSchemaFormatNodeForError(&msg, ACTXT_CAST ctxt, node);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003087 if (message == NULL) {
3088 /*
3089 * Use default messages.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003090 */
3091 if (type != NULL) {
3092 if (node->type == XML_ATTRIBUTE_NODE)
3093 msg = xmlStrcat(msg, BAD_CAST "'%s' is not a valid value of ");
3094 else
3095 msg = xmlStrcat(msg, BAD_CAST "The character content is not a "
3096 "valid value of ");
3097 if (! xmlSchemaIsGlobalItem(type))
3098 msg = xmlStrcat(msg, BAD_CAST "the local ");
3099 else
3100 msg = xmlStrcat(msg, BAD_CAST "the ");
3101
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003102 if (WXS_IS_ATOMIC(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003103 msg = xmlStrcat(msg, BAD_CAST "atomic type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003104 else if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003105 msg = xmlStrcat(msg, BAD_CAST "list type");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003106 else if (WXS_IS_UNION(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003107 msg = xmlStrcat(msg, BAD_CAST "union type");
3108
3109 if (xmlSchemaIsGlobalItem(type)) {
3110 xmlChar *str = NULL;
3111 msg = xmlStrcat(msg, BAD_CAST " '");
3112 if (type->builtInType != 0) {
3113 msg = xmlStrcat(msg, BAD_CAST "xs:");
3114 msg = xmlStrcat(msg, type->name);
3115 } else
3116 msg = xmlStrcat(msg,
3117 xmlSchemaFormatQName(&str,
3118 type->targetNamespace, type->name));
3119 msg = xmlStrcat(msg, BAD_CAST "'.");
3120 FREE_AND_NULL(str);
3121 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00003122 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003123 if (node->type == XML_ATTRIBUTE_NODE)
3124 msg = xmlStrcat(msg, BAD_CAST "The value '%s' is not valid.");
3125 else
3126 msg = xmlStrcat(msg, BAD_CAST "The character content is not "
3127 "valid.");
3128 }
3129 if (expected) {
3130 msg = xmlStrcat(msg, BAD_CAST " Expected is '");
3131 msg = xmlStrcat(msg, BAD_CAST expected);
3132 msg = xmlStrcat(msg, BAD_CAST "'.\n");
3133 } else
3134 msg = xmlStrcat(msg, BAD_CAST "\n");
Daniel Veillardc0826a72004-08-10 14:17:33 +00003135 if (node->type == XML_ATTRIBUTE_NODE)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003136 xmlSchemaPErr(ctxt, node, error, (const char *) msg, value, NULL);
3137 else
3138 xmlSchemaPErr(ctxt, node, error, (const char *) msg, NULL, NULL);
3139 } else {
Kasimier T. Buchcik2c9aac02005-07-21 22:14:12 +00003140 msg = xmlStrcat(msg, BAD_CAST message);
Kasimier T. Buchcik11162b72005-07-28 00:50:22 +00003141 msg = xmlStrcat(msg, BAD_CAST ".\n");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003142 xmlSchemaPErrExt(ctxt, node, error, NULL, NULL, NULL,
Kasimier T. Buchcik2c9aac02005-07-21 22:14:12 +00003143 (const char*) msg, str1, str2, NULL, NULL, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003144 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003145 /* Cleanup. */
3146 FREE_AND_NULL(msg)
Daniel Veillardc0826a72004-08-10 14:17:33 +00003147}
3148
William M. Brack2f2a6632004-08-20 23:09:47 +00003149/**
3150 * xmlSchemaPContentErr:
3151 * @ctxt: the schema parser context
3152 * @error: the error code
3153 * @onwerDes: the designation of the holder of the content
3154 * @ownerItem: the owner item of the holder of the content
3155 * @ownerElem: the node of the holder of the content
3156 * @child: the invalid child node
3157 * @message: the optional error message
3158 * @content: the optional string describing the correct content
3159 *
3160 * Reports an error concerning the content of a schema element.
3161 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00003162static void
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003163xmlSchemaPContentErr(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003164 xmlParserErrors error,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003165 xmlSchemaBasicItemPtr ownerItem,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003166 xmlNodePtr ownerElem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00003167 xmlNodePtr child,
3168 const char *message,
3169 const char *content)
3170{
3171 xmlChar *des = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003172
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003173 xmlSchemaFormatItemForReport(&des, NULL, ownerItem, ownerElem);
Daniel Veillardc0826a72004-08-10 14:17:33 +00003174 if (message != NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003175 xmlSchemaPErr2(ctxt, ownerElem, child, error,
3176 "%s: %s.\n",
Daniel Veillardc0826a72004-08-10 14:17:33 +00003177 BAD_CAST des, BAD_CAST message);
3178 else {
3179 if (content != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003180 xmlSchemaPErr2(ctxt, ownerElem, child, error,
3181 "%s: The content is not valid. Expected is %s.\n",
Daniel Veillardc0826a72004-08-10 14:17:33 +00003182 BAD_CAST des, BAD_CAST content);
3183 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003184 xmlSchemaPErr2(ctxt, ownerElem, child, error,
3185 "%s: The content is not valid.\n",
Daniel Veillardc0826a72004-08-10 14:17:33 +00003186 BAD_CAST des, NULL);
3187 }
3188 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003189 FREE_AND_NULL(des)
Daniel Veillardc0826a72004-08-10 14:17:33 +00003190}
3191
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003192/************************************************************************
3193 * *
3194 * Streamable error functions *
3195 * *
3196 ************************************************************************/
Kasimier T. Buchcik8b418172004-11-17 13:14:27 +00003197
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00003198
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00003199
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00003200
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003201/************************************************************************
3202 * *
3203 * Validation helper functions *
3204 * *
3205 ************************************************************************/
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +00003206
Daniel Veillardc0826a72004-08-10 14:17:33 +00003207
Daniel Veillard4255d502002-04-16 15:50:10 +00003208/************************************************************************
3209 * *
3210 * Allocation functions *
3211 * *
3212 ************************************************************************/
3213
3214/**
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00003215 * xmlSchemaNewSchemaForParserCtxt:
William M. Brack08171912003-12-29 02:52:11 +00003216 * @ctxt: a schema validation context
Daniel Veillard4255d502002-04-16 15:50:10 +00003217 *
3218 * Allocate a new Schema structure.
3219 *
3220 * Returns the newly allocated structure or NULL in case or error
3221 */
3222static xmlSchemaPtr
3223xmlSchemaNewSchema(xmlSchemaParserCtxtPtr ctxt)
3224{
3225 xmlSchemaPtr ret;
3226
3227 ret = (xmlSchemaPtr) xmlMalloc(sizeof(xmlSchema));
3228 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003229 xmlSchemaPErrMemory(ctxt, "allocating schema", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00003230 return (NULL);
3231 }
3232 memset(ret, 0, sizeof(xmlSchema));
Daniel Veillardbe9c6322003-11-22 20:37:51 +00003233 ret->dict = ctxt->dict;
Daniel Veillard500a1de2004-03-22 15:22:58 +00003234 xmlDictReference(ret->dict);
Daniel Veillard4255d502002-04-16 15:50:10 +00003235
3236 return (ret);
3237}
3238
3239/**
3240 * xmlSchemaNewFacet:
Daniel Veillard4255d502002-04-16 15:50:10 +00003241 *
3242 * Allocate a new Facet structure.
3243 *
3244 * Returns the newly allocated structure or NULL in case or error
3245 */
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00003246xmlSchemaFacetPtr
3247xmlSchemaNewFacet(void)
Daniel Veillard4255d502002-04-16 15:50:10 +00003248{
3249 xmlSchemaFacetPtr ret;
3250
3251 ret = (xmlSchemaFacetPtr) xmlMalloc(sizeof(xmlSchemaFacet));
3252 if (ret == NULL) {
Daniel Veillard4255d502002-04-16 15:50:10 +00003253 return (NULL);
3254 }
3255 memset(ret, 0, sizeof(xmlSchemaFacet));
3256
3257 return (ret);
3258}
3259
3260/**
3261 * xmlSchemaNewAnnot:
William M. Brack08171912003-12-29 02:52:11 +00003262 * @ctxt: a schema validation context
Daniel Veillard4255d502002-04-16 15:50:10 +00003263 * @node: a node
3264 *
3265 * Allocate a new annotation structure.
3266 *
3267 * Returns the newly allocated structure or NULL in case or error
3268 */
3269static xmlSchemaAnnotPtr
3270xmlSchemaNewAnnot(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node)
3271{
3272 xmlSchemaAnnotPtr ret;
3273
3274 ret = (xmlSchemaAnnotPtr) xmlMalloc(sizeof(xmlSchemaAnnot));
3275 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003276 xmlSchemaPErrMemory(ctxt, "allocating annotation", node);
Daniel Veillard4255d502002-04-16 15:50:10 +00003277 return (NULL);
3278 }
3279 memset(ret, 0, sizeof(xmlSchemaAnnot));
3280 ret->content = node;
3281 return (ret);
3282}
3283
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003284static xmlSchemaItemListPtr
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003285xmlSchemaItemListCreate(void)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003286{
3287 xmlSchemaItemListPtr ret;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003288
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003289 ret = xmlMalloc(sizeof(xmlSchemaItemList));
3290 if (ret == NULL) {
3291 xmlSchemaPErrMemory(NULL,
3292 "allocating an item list structure", NULL);
3293 return (NULL);
3294 }
3295 memset(ret, 0, sizeof(xmlSchemaItemList));
3296 return (ret);
3297}
3298
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00003299static void
3300xmlSchemaItemListClear(xmlSchemaItemListPtr list)
3301{
3302 if (list->items != NULL) {
3303 xmlFree(list->items);
3304 list->items = NULL;
3305 }
3306 list->nbItems = 0;
3307 list->sizeItems = 0;
3308}
3309
3310static int
3311xmlSchemaItemListAdd(xmlSchemaItemListPtr list, void *item)
3312{
3313 if (list->items == NULL) {
3314 list->items = (void **) xmlMalloc(
3315 20 * sizeof(void *));
3316 if (list->items == NULL) {
3317 xmlSchemaPErrMemory(NULL, "allocating new item list", NULL);
3318 return(-1);
3319 }
3320 list->sizeItems = 20;
3321 } else if (list->sizeItems <= list->nbItems) {
3322 list->sizeItems *= 2;
3323 list->items = (void **) xmlRealloc(list->items,
3324 list->sizeItems * sizeof(void *));
3325 if (list->items == NULL) {
3326 xmlSchemaPErrMemory(NULL, "growing item list", NULL);
3327 list->sizeItems = 0;
3328 return(-1);
3329 }
3330 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00003331 list->items[list->nbItems++] = item;
3332 return(0);
3333}
3334
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003335static int
3336xmlSchemaItemListAddSize(xmlSchemaItemListPtr list,
3337 int initialSize,
3338 void *item)
3339{
3340 if (list->items == NULL) {
3341 if (initialSize <= 0)
3342 initialSize = 1;
3343 list->items = (void **) xmlMalloc(
3344 initialSize * sizeof(void *));
3345 if (list->items == NULL) {
3346 xmlSchemaPErrMemory(NULL, "allocating new item list", NULL);
3347 return(-1);
3348 }
3349 list->sizeItems = initialSize;
3350 } else if (list->sizeItems <= list->nbItems) {
3351 list->sizeItems *= 2;
3352 list->items = (void **) xmlRealloc(list->items,
3353 list->sizeItems * sizeof(void *));
3354 if (list->items == NULL) {
3355 xmlSchemaPErrMemory(NULL, "growing item list", NULL);
3356 list->sizeItems = 0;
3357 return(-1);
3358 }
3359 }
3360 list->items[list->nbItems++] = item;
3361 return(0);
3362}
3363
3364static int
3365xmlSchemaItemListInsert(xmlSchemaItemListPtr list, void *item, int idx)
3366{
3367 if (list->items == NULL) {
3368 list->items = (void **) xmlMalloc(
3369 20 * sizeof(void *));
3370 if (list->items == NULL) {
3371 xmlSchemaPErrMemory(NULL, "allocating new item list", NULL);
3372 return(-1);
3373 }
3374 list->sizeItems = 20;
3375 } else if (list->sizeItems <= list->nbItems) {
3376 list->sizeItems *= 2;
3377 list->items = (void **) xmlRealloc(list->items,
3378 list->sizeItems * sizeof(void *));
3379 if (list->items == NULL) {
3380 xmlSchemaPErrMemory(NULL, "growing item list", NULL);
3381 list->sizeItems = 0;
3382 return(-1);
3383 }
3384 }
3385 /*
3386 * Just append if the index is greater/equal than the item count.
3387 */
3388 if (idx >= list->nbItems) {
3389 list->items[list->nbItems++] = item;
3390 } else {
3391 int i;
3392 for (i = list->nbItems; i > idx; i--)
3393 list->items[i] = list->items[i-1];
3394 list->items[idx] = item;
3395 list->nbItems++;
3396 }
3397 return(0);
3398}
3399
3400#if 0 /* enable if ever needed */
3401static int
3402xmlSchemaItemListInsertSize(xmlSchemaItemListPtr list,
3403 int initialSize,
3404 void *item,
3405 int idx)
3406{
3407 if (list->items == NULL) {
3408 if (initialSize <= 0)
3409 initialSize = 1;
3410 list->items = (void **) xmlMalloc(
3411 initialSize * sizeof(void *));
3412 if (list->items == NULL) {
3413 xmlSchemaPErrMemory(NULL, "allocating new item list", NULL);
3414 return(-1);
3415 }
3416 list->sizeItems = initialSize;
3417 } else if (list->sizeItems <= list->nbItems) {
3418 list->sizeItems *= 2;
3419 list->items = (void **) xmlRealloc(list->items,
3420 list->sizeItems * sizeof(void *));
3421 if (list->items == NULL) {
3422 xmlSchemaPErrMemory(NULL, "growing item list", NULL);
3423 list->sizeItems = 0;
3424 return(-1);
3425 }
3426 }
3427 /*
3428 * Just append if the index is greater/equal than the item count.
3429 */
3430 if (idx >= list->nbItems) {
3431 list->items[list->nbItems++] = item;
3432 } else {
3433 int i;
3434 for (i = list->nbItems; i > idx; i--)
3435 list->items[i] = list->items[i-1];
3436 list->items[idx] = item;
3437 list->nbItems++;
3438 }
3439 return(0);
3440}
3441#endif
3442
3443static int
3444xmlSchemaItemListRemove(xmlSchemaItemListPtr list, int idx)
3445{
3446 int i;
3447 if ((list->items == NULL) || (idx >= list->nbItems)) {
3448 xmlSchemaPSimpleErr("Internal error: xmlSchemaItemListRemove, "
3449 "index error.\n");
3450 return(-1);
3451 }
3452
3453 if (list->nbItems == 1) {
3454 /* TODO: Really free the list? */
3455 xmlFree(list->items);
3456 list->items = NULL;
3457 list->nbItems = 0;
3458 list->sizeItems = 0;
3459 } else if (list->nbItems -1 == idx) {
3460 list->nbItems--;
3461 } else {
3462 for (i = idx; i < list->nbItems -1; i++)
3463 list->items[i] = list->items[i+1];
3464 list->nbItems--;
3465 }
3466 return(0);
3467}
3468
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003469/**
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003470 * xmlSchemaItemListFree:
3471 * @annot: a schema type structure
3472 *
3473 * Deallocate a annotation structure
3474 */
3475static void
3476xmlSchemaItemListFree(xmlSchemaItemListPtr list)
3477{
3478 if (list == NULL)
3479 return;
3480 if (list->items != NULL)
3481 xmlFree(list->items);
3482 xmlFree(list);
3483}
3484
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003485static void
3486xmlSchemaBucketFree(xmlSchemaBucketPtr bucket)
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003487{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003488 if (bucket == NULL)
3489 return;
3490 if (bucket->globals != NULL) {
3491 xmlSchemaComponentListFree(bucket->globals);
3492 xmlSchemaItemListFree(bucket->globals);
3493 }
3494 if (bucket->locals != NULL) {
3495 xmlSchemaComponentListFree(bucket->locals);
3496 xmlSchemaItemListFree(bucket->locals);
3497 }
3498 if (bucket->relations != NULL) {
3499 xmlSchemaSchemaRelationPtr prev, cur = bucket->relations;
3500 do {
3501 prev = cur;
3502 cur = cur->next;
3503 xmlFree(prev);
3504 } while (cur != NULL);
3505 }
3506 if ((! bucket->preserveDoc) && (bucket->doc != NULL)) {
3507 xmlFreeDoc(bucket->doc);
3508 }
3509 if (bucket->type == XML_SCHEMA_SCHEMA_IMPORT) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003510 if (WXS_IMPBUCKET(bucket)->schema != NULL)
3511 xmlSchemaFree(WXS_IMPBUCKET(bucket)->schema);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003512 }
3513 xmlFree(bucket);
3514}
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003515
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003516static xmlSchemaBucketPtr
3517xmlSchemaBucketCreate(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003518 int type, const xmlChar *targetNamespace)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003519{
3520 xmlSchemaBucketPtr ret;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003521 int size;
3522 xmlSchemaPtr mainSchema;
3523
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003524 if (WXS_CONSTRUCTOR(pctxt)->mainSchema == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003525 PERROR_INT("xmlSchemaBucketCreate",
3526 "no main schema on constructor");
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003527 return(NULL);
3528 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003529 mainSchema = WXS_CONSTRUCTOR(pctxt)->mainSchema;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003530 /* Create the schema bucket. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003531 if (WXS_IS_BUCKET_INCREDEF(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003532 size = sizeof(xmlSchemaInclude);
3533 else
3534 size = sizeof(xmlSchemaImport);
3535 ret = (xmlSchemaBucketPtr) xmlMalloc(size);
3536 if (ret == NULL) {
3537 xmlSchemaPErrMemory(NULL, "allocating schema bucket", NULL);
3538 return(NULL);
3539 }
3540 memset(ret, 0, size);
3541 ret->targetNamespace = targetNamespace;
3542 ret->type = type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003543 ret->globals = xmlSchemaItemListCreate();
3544 if (ret->globals == NULL) {
3545 xmlFree(ret);
3546 return(NULL);
3547 }
3548 ret->locals = xmlSchemaItemListCreate();
3549 if (ret->locals == NULL) {
3550 xmlFree(ret);
3551 return(NULL);
3552 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003553 /*
3554 * The following will assure that only the first bucket is marked as
3555 * XML_SCHEMA_SCHEMA_MAIN and it points to the *main* schema.
3556 * For each following import buckets an xmlSchema will be created.
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00003557 * An xmlSchema will be created for every distinct targetNamespace.
3558 * We assign the targetNamespace to the schemata here.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003559 */
3560 if (! WXS_HAS_BUCKETS(pctxt)) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003561 if (WXS_IS_BUCKET_INCREDEF(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003562 PERROR_INT("xmlSchemaBucketCreate",
3563 "first bucket but it's an include or redefine");
3564 xmlSchemaBucketFree(ret);
3565 return(NULL);
3566 }
3567 /* Force the type to be XML_SCHEMA_SCHEMA_MAIN. */
3568 ret->type = XML_SCHEMA_SCHEMA_MAIN;
3569 /* Point to the *main* schema. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003570 WXS_CONSTRUCTOR(pctxt)->mainBucket = ret;
3571 WXS_IMPBUCKET(ret)->schema = mainSchema;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00003572 /*
3573 * Ensure that the main schema gets a targetNamespace.
3574 */
3575 mainSchema->targetNamespace = targetNamespace;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003576 } else {
3577 if (type == XML_SCHEMA_SCHEMA_MAIN) {
3578 PERROR_INT("xmlSchemaBucketCreate",
3579 "main bucket but it's not the first one");
3580 xmlSchemaBucketFree(ret);
3581 return(NULL);
3582 } else if (type == XML_SCHEMA_SCHEMA_IMPORT) {
3583 /*
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00003584 * Create a schema for imports and assign the
3585 * targetNamespace.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003586 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003587 WXS_IMPBUCKET(ret)->schema = xmlSchemaNewSchema(pctxt);
3588 if (WXS_IMPBUCKET(ret)->schema == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003589 xmlSchemaBucketFree(ret);
3590 return(NULL);
3591 }
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00003592 WXS_IMPBUCKET(ret)->schema->targetNamespace = targetNamespace;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003593 }
3594 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003595 if (WXS_IS_BUCKET_IMPMAIN(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003596 int res;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00003597 /*
3598 * Imports go into the "schemasImports" slot of the main *schema*.
3599 * Note that we create an import entry for the main schema as well; i.e.,
3600 * even if there's only one schema, we'll get an import.
3601 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003602 if (mainSchema->schemasImports == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003603 mainSchema->schemasImports = xmlHashCreateDict(5,
3604 WXS_CONSTRUCTOR(pctxt)->dict);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003605 if (mainSchema->schemasImports == NULL) {
3606 xmlSchemaBucketFree(ret);
3607 return(NULL);
3608 }
3609 }
3610 if (targetNamespace == NULL)
3611 res = xmlHashAddEntry(mainSchema->schemasImports,
3612 XML_SCHEMAS_NO_NAMESPACE, ret);
3613 else
3614 res = xmlHashAddEntry(mainSchema->schemasImports,
3615 targetNamespace, ret);
3616 if (res != 0) {
3617 PERROR_INT("xmlSchemaBucketCreate",
3618 "failed to add the schema bucket to the hash");
3619 xmlSchemaBucketFree(ret);
3620 return(NULL);
3621 }
3622 } else {
3623 /* Set the @ownerImport of an include bucket. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003624 if (WXS_IS_BUCKET_IMPMAIN(WXS_CONSTRUCTOR(pctxt)->bucket->type))
3625 WXS_INCBUCKET(ret)->ownerImport =
3626 WXS_IMPBUCKET(WXS_CONSTRUCTOR(pctxt)->bucket);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003627 else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003628 WXS_INCBUCKET(ret)->ownerImport =
3629 WXS_INCBUCKET(WXS_CONSTRUCTOR(pctxt)->bucket)->ownerImport;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003630
3631 /* Includes got into the "includes" slot of the *main* schema. */
3632 if (mainSchema->includes == NULL) {
3633 mainSchema->includes = xmlSchemaItemListCreate();
3634 if (mainSchema->includes == NULL) {
3635 xmlSchemaBucketFree(ret);
3636 return(NULL);
3637 }
3638 }
3639 xmlSchemaItemListAdd(mainSchema->includes, ret);
3640 }
3641 /*
3642 * Add to list of all buckets; this is used for lookup
3643 * during schema construction time only.
3644 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003645 if (xmlSchemaItemListAdd(WXS_CONSTRUCTOR(pctxt)->buckets, ret) == -1)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003646 return(NULL);
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00003647 return(ret);
3648}
3649
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003650static int
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003651xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003652{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003653 if (*list == NULL) {
3654 *list = xmlSchemaItemListCreate();
3655 if (*list == NULL)
3656 return(-1);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003657 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003658 xmlSchemaItemListAddSize(*list, initialSize, item);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003659 return(0);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003660}
3661
3662/**
Daniel Veillardfdc91562002-07-01 21:52:03 +00003663 * xmlSchemaFreeAnnot:
3664 * @annot: a schema type structure
3665 *
3666 * Deallocate a annotation structure
3667 */
3668static void
3669xmlSchemaFreeAnnot(xmlSchemaAnnotPtr annot)
3670{
3671 if (annot == NULL)
3672 return;
Kasimier T. Buchcik004b5462005-08-08 12:43:09 +00003673 if (annot->next == NULL) {
3674 xmlFree(annot);
3675 } else {
3676 xmlSchemaAnnotPtr prev;
3677
3678 do {
3679 prev = annot;
3680 annot = annot->next;
3681 xmlFree(prev);
3682 } while (annot != NULL);
3683 }
Daniel Veillardfdc91562002-07-01 21:52:03 +00003684}
3685
3686/**
Daniel Veillard4255d502002-04-16 15:50:10 +00003687 * xmlSchemaFreeNotation:
3688 * @schema: a schema notation structure
3689 *
3690 * Deallocate a Schema Notation structure.
3691 */
3692static void
3693xmlSchemaFreeNotation(xmlSchemaNotationPtr nota)
3694{
3695 if (nota == NULL)
3696 return;
Daniel Veillard4255d502002-04-16 15:50:10 +00003697 xmlFree(nota);
3698}
3699
3700/**
3701 * xmlSchemaFreeAttribute:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003702 * @attr: an attribute declaration
Daniel Veillard4255d502002-04-16 15:50:10 +00003703 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003704 * Deallocates an attribute declaration structure.
Daniel Veillard4255d502002-04-16 15:50:10 +00003705 */
3706static void
3707xmlSchemaFreeAttribute(xmlSchemaAttributePtr attr)
3708{
3709 if (attr == NULL)
3710 return;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003711 if (attr->annot != NULL)
Daniel Veillardc0826a72004-08-10 14:17:33 +00003712 xmlSchemaFreeAnnot(attr->annot);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00003713 if (attr->defVal != NULL)
3714 xmlSchemaFreeValue(attr->defVal);
Daniel Veillard4255d502002-04-16 15:50:10 +00003715 xmlFree(attr);
3716}
3717
3718/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003719 * xmlSchemaFreeAttributeUse:
3720 * @use: an attribute use
3721 *
3722 * Deallocates an attribute use structure.
3723 */
3724static void
3725xmlSchemaFreeAttributeUse(xmlSchemaAttributeUsePtr use)
3726{
3727 if (use == NULL)
3728 return;
3729 if (use->annot != NULL)
3730 xmlSchemaFreeAnnot(use->annot);
3731 if (use->defVal != NULL)
3732 xmlSchemaFreeValue(use->defVal);
3733 xmlFree(use);
3734}
3735
3736/**
3737 * xmlSchemaFreeAttributeUseProhib:
3738 * @prohib: an attribute use prohibition
3739 *
3740 * Deallocates an attribute use structure.
3741 */
3742static void
3743xmlSchemaFreeAttributeUseProhib(xmlSchemaAttributeUseProhibPtr prohib)
3744{
3745 if (prohib == NULL)
3746 return;
3747 xmlFree(prohib);
3748}
3749
3750/**
Daniel Veillard3646d642004-06-02 19:19:14 +00003751 * xmlSchemaFreeWildcardNsSet:
3752 * set: a schema wildcard namespace
3753 *
Daniel Veillard01fa6152004-06-29 17:04:39 +00003754 * Deallocates a list of wildcard constraint structures.
Daniel Veillard3646d642004-06-02 19:19:14 +00003755 */
3756static void
3757xmlSchemaFreeWildcardNsSet(xmlSchemaWildcardNsPtr set)
3758{
3759 xmlSchemaWildcardNsPtr next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003760
Daniel Veillard3646d642004-06-02 19:19:14 +00003761 while (set != NULL) {
3762 next = set->next;
3763 xmlFree(set);
3764 set = next;
3765 }
3766}
3767
3768/**
3769 * xmlSchemaFreeWildcard:
Daniel Veillard01fa6152004-06-29 17:04:39 +00003770 * @wildcard: a wildcard structure
Daniel Veillard3646d642004-06-02 19:19:14 +00003771 *
Daniel Veillard01fa6152004-06-29 17:04:39 +00003772 * Deallocates a wildcard structure.
Daniel Veillard3646d642004-06-02 19:19:14 +00003773 */
Daniel Veillard01fa6152004-06-29 17:04:39 +00003774void
Daniel Veillard3646d642004-06-02 19:19:14 +00003775xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard)
3776{
3777 if (wildcard == NULL)
3778 return;
3779 if (wildcard->annot != NULL)
3780 xmlSchemaFreeAnnot(wildcard->annot);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003781 if (wildcard->nsSet != NULL)
3782 xmlSchemaFreeWildcardNsSet(wildcard->nsSet);
3783 if (wildcard->negNsSet != NULL)
3784 xmlFree(wildcard->negNsSet);
Daniel Veillard3646d642004-06-02 19:19:14 +00003785 xmlFree(wildcard);
3786}
3787
3788/**
Daniel Veillard4255d502002-04-16 15:50:10 +00003789 * xmlSchemaFreeAttributeGroup:
3790 * @schema: a schema attribute group structure
3791 *
3792 * Deallocate a Schema Attribute Group structure.
3793 */
3794static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003795xmlSchemaFreeAttributeGroup(xmlSchemaAttributeGroupPtr attrGr)
Daniel Veillard4255d502002-04-16 15:50:10 +00003796{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003797 if (attrGr == NULL)
Daniel Veillard4255d502002-04-16 15:50:10 +00003798 return;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003799 if (attrGr->annot != NULL)
3800 xmlSchemaFreeAnnot(attrGr->annot);
3801 if (attrGr->attrUses != NULL)
3802 xmlSchemaItemListFree(WXS_LIST_CAST attrGr->attrUses);
3803 xmlFree(attrGr);
Daniel Veillard3646d642004-06-02 19:19:14 +00003804}
3805
3806/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00003807 * xmlSchemaFreeQNameRef:
3808 * @item: a QName reference structure
3809 *
3810 * Deallocatea a QName reference structure.
3811 */
3812static void
3813xmlSchemaFreeQNameRef(xmlSchemaQNameRefPtr item)
3814{
3815 xmlFree(item);
3816}
3817
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00003818/**
Daniel Veillard01fa6152004-06-29 17:04:39 +00003819 * xmlSchemaFreeTypeLinkList:
3820 * @alink: a type link
3821 *
3822 * Deallocate a list of types.
3823 */
3824static void
3825xmlSchemaFreeTypeLinkList(xmlSchemaTypeLinkPtr link)
3826{
3827 xmlSchemaTypeLinkPtr next;
3828
3829 while (link != NULL) {
3830 next = link->next;
3831 xmlFree(link);
3832 link = next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003833 }
Daniel Veillard01fa6152004-06-29 17:04:39 +00003834}
3835
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00003836static void
3837xmlSchemaFreeIDCStateObjList(xmlSchemaIDCStateObjPtr sto)
3838{
3839 xmlSchemaIDCStateObjPtr next;
3840 while (sto != NULL) {
3841 next = sto->next;
3842 if (sto->history != NULL)
3843 xmlFree(sto->history);
3844 if (sto->xpathCtxt != NULL)
3845 xmlFreeStreamCtxt((xmlStreamCtxtPtr) sto->xpathCtxt);
3846 xmlFree(sto);
3847 sto = next;
3848 }
3849}
3850
3851/**
3852 * xmlSchemaFreeIDC:
3853 * @idc: a identity-constraint definition
3854 *
3855 * Deallocates an identity-constraint definition.
3856 */
3857static void
3858xmlSchemaFreeIDC(xmlSchemaIDCPtr idcDef)
3859{
3860 xmlSchemaIDCSelectPtr cur, prev;
3861
3862 if (idcDef == NULL)
3863 return;
3864 if (idcDef->annot != NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003865 xmlSchemaFreeAnnot(idcDef->annot);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00003866 /* Selector */
3867 if (idcDef->selector != NULL) {
3868 if (idcDef->selector->xpathComp != NULL)
3869 xmlFreePattern((xmlPatternPtr) idcDef->selector->xpathComp);
3870 xmlFree(idcDef->selector);
3871 }
3872 /* Fields */
3873 if (idcDef->fields != NULL) {
3874 cur = idcDef->fields;
3875 do {
3876 prev = cur;
3877 cur = cur->next;
3878 if (prev->xpathComp != NULL)
3879 xmlFreePattern((xmlPatternPtr) prev->xpathComp);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003880 xmlFree(prev);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00003881 } while (cur != NULL);
3882 }
3883 xmlFree(idcDef);
3884}
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00003885
Daniel Veillard01fa6152004-06-29 17:04:39 +00003886/**
Daniel Veillard4255d502002-04-16 15:50:10 +00003887 * xmlSchemaFreeElement:
3888 * @schema: a schema element structure
3889 *
3890 * Deallocate a Schema Element structure.
3891 */
3892static void
3893xmlSchemaFreeElement(xmlSchemaElementPtr elem)
3894{
3895 if (elem == NULL)
3896 return;
Daniel Veillard32370232002-10-16 14:08:14 +00003897 if (elem->annot != NULL)
3898 xmlSchemaFreeAnnot(elem->annot);
Daniel Veillard4255d502002-04-16 15:50:10 +00003899 if (elem->contModel != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003900 xmlRegFreeRegexp(elem->contModel);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00003901 if (elem->defVal != NULL)
3902 xmlSchemaFreeValue(elem->defVal);
Daniel Veillard4255d502002-04-16 15:50:10 +00003903 xmlFree(elem);
3904}
3905
3906/**
3907 * xmlSchemaFreeFacet:
3908 * @facet: a schema facet structure
3909 *
3910 * Deallocate a Schema Facet structure.
3911 */
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00003912void
Daniel Veillard4255d502002-04-16 15:50:10 +00003913xmlSchemaFreeFacet(xmlSchemaFacetPtr facet)
3914{
3915 if (facet == NULL)
3916 return;
Daniel Veillard4255d502002-04-16 15:50:10 +00003917 if (facet->val != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003918 xmlSchemaFreeValue(facet->val);
Daniel Veillard4255d502002-04-16 15:50:10 +00003919 if (facet->regexp != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003920 xmlRegFreeRegexp(facet->regexp);
Daniel Veillardfdc91562002-07-01 21:52:03 +00003921 if (facet->annot != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003922 xmlSchemaFreeAnnot(facet->annot);
Daniel Veillard4255d502002-04-16 15:50:10 +00003923 xmlFree(facet);
3924}
3925
3926/**
3927 * xmlSchemaFreeType:
3928 * @type: a schema type structure
3929 *
3930 * Deallocate a Schema Type structure.
3931 */
3932void
3933xmlSchemaFreeType(xmlSchemaTypePtr type)
3934{
3935 if (type == NULL)
3936 return;
Daniel Veillard4255d502002-04-16 15:50:10 +00003937 if (type->annot != NULL)
Daniel Veillard32370232002-10-16 14:08:14 +00003938 xmlSchemaFreeAnnot(type->annot);
Daniel Veillard4255d502002-04-16 15:50:10 +00003939 if (type->facets != NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003940 xmlSchemaFacetPtr facet, next;
Daniel Veillard4255d502002-04-16 15:50:10 +00003941
Daniel Veillardd0c9c322003-10-10 00:49:42 +00003942 facet = type->facets;
3943 while (facet != NULL) {
3944 next = facet->next;
3945 xmlSchemaFreeFacet(facet);
3946 facet = next;
3947 }
Daniel Veillard4255d502002-04-16 15:50:10 +00003948 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00003949 if (type->attrUses != NULL)
3950 xmlSchemaItemListFree((xmlSchemaItemListPtr) type->attrUses);
Daniel Veillard01fa6152004-06-29 17:04:39 +00003951 if (type->memberTypes != NULL)
3952 xmlSchemaFreeTypeLinkList(type->memberTypes);
3953 if (type->facetSet != NULL) {
3954 xmlSchemaFacetLinkPtr next, link;
3955
3956 link = type->facetSet;
3957 do {
3958 next = link->next;
3959 xmlFree(link);
3960 link = next;
3961 } while (link != NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00003962 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00003963 if (type->contModel != NULL)
3964 xmlRegFreeRegexp(type->contModel);
Daniel Veillard4255d502002-04-16 15:50:10 +00003965 xmlFree(type);
3966}
3967
3968/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00003969 * xmlSchemaFreeModelGroupDef:
3970 * @item: a schema model group definition
3971 *
3972 * Deallocates a schema model group definition.
3973 */
3974static void
3975xmlSchemaFreeModelGroupDef(xmlSchemaModelGroupDefPtr item)
3976{
3977 if (item->annot != NULL)
3978 xmlSchemaFreeAnnot(item->annot);
3979 xmlFree(item);
3980}
3981
3982/**
3983 * xmlSchemaFreeModelGroup:
3984 * @item: a schema model group
3985 *
3986 * Deallocates a schema model group structure.
3987 */
3988static void
3989xmlSchemaFreeModelGroup(xmlSchemaModelGroupPtr item)
3990{
3991 if (item->annot != NULL)
3992 xmlSchemaFreeAnnot(item->annot);
3993 xmlFree(item);
3994}
3995
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00003996static void
3997xmlSchemaComponentListFree(xmlSchemaItemListPtr list)
3998{
3999 if ((list == NULL) || (list->nbItems == 0))
4000 return;
4001 {
4002 xmlSchemaTreeItemPtr item;
4003 xmlSchemaTreeItemPtr *items = (xmlSchemaTreeItemPtr *) list->items;
4004 int i;
4005
4006 for (i = 0; i < list->nbItems; i++) {
4007 item = items[i];
4008 if (item == NULL)
4009 continue;
4010 switch (item->type) {
4011 case XML_SCHEMA_TYPE_SIMPLE:
4012 case XML_SCHEMA_TYPE_COMPLEX:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004013 xmlSchemaFreeType((xmlSchemaTypePtr) item);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004014 break;
4015 case XML_SCHEMA_TYPE_ATTRIBUTE:
4016 xmlSchemaFreeAttribute((xmlSchemaAttributePtr) item);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004017 break;
4018 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
4019 xmlSchemaFreeAttributeUse((xmlSchemaAttributeUsePtr) item);
4020 break;
4021 case XML_SCHEMA_EXTRA_ATTR_USE_PROHIB:
4022 xmlSchemaFreeAttributeUseProhib(
4023 (xmlSchemaAttributeUseProhibPtr) item);
4024 break;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004025 case XML_SCHEMA_TYPE_ELEMENT:
4026 xmlSchemaFreeElement((xmlSchemaElementPtr) item);
4027 break;
4028 case XML_SCHEMA_TYPE_PARTICLE:
4029 if (item->annot != NULL)
4030 xmlSchemaFreeAnnot(item->annot);
4031 xmlFree(item);
4032 break;
4033 case XML_SCHEMA_TYPE_SEQUENCE:
4034 case XML_SCHEMA_TYPE_CHOICE:
4035 case XML_SCHEMA_TYPE_ALL:
4036 xmlSchemaFreeModelGroup((xmlSchemaModelGroupPtr) item);
4037 break;
4038 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
4039 xmlSchemaFreeAttributeGroup(
4040 (xmlSchemaAttributeGroupPtr) item);
4041 break;
4042 case XML_SCHEMA_TYPE_GROUP:
4043 xmlSchemaFreeModelGroupDef(
4044 (xmlSchemaModelGroupDefPtr) item);
4045 break;
4046 case XML_SCHEMA_TYPE_ANY:
4047 case XML_SCHEMA_TYPE_ANY_ATTRIBUTE:
4048 xmlSchemaFreeWildcard((xmlSchemaWildcardPtr) item);
4049 break;
4050 case XML_SCHEMA_TYPE_IDC_KEY:
4051 case XML_SCHEMA_TYPE_IDC_UNIQUE:
4052 case XML_SCHEMA_TYPE_IDC_KEYREF:
4053 xmlSchemaFreeIDC((xmlSchemaIDCPtr) item);
4054 break;
4055 case XML_SCHEMA_TYPE_NOTATION:
4056 xmlSchemaFreeNotation((xmlSchemaNotationPtr) item);
4057 break;
4058 case XML_SCHEMA_EXTRA_QNAMEREF:
4059 xmlSchemaFreeQNameRef((xmlSchemaQNameRefPtr) item);
4060 break;
4061 default: {
4062 /* TODO: This should never be hit. */
4063 xmlSchemaPSimpleInternalErr(NULL,
4064 "Internal error: xmlSchemaComponentListFree, "
4065 "unexpected component type '%s'\n",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004066 (const xmlChar *) WXS_ITEM_TYPE_NAME(item));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004067 }
4068 break;
4069 }
4070 }
4071 list->nbItems = 0;
4072 }
4073}
4074
Daniel Veillardb0f397e2003-12-23 23:30:53 +00004075/**
Daniel Veillard4255d502002-04-16 15:50:10 +00004076 * xmlSchemaFree:
4077 * @schema: a schema structure
4078 *
4079 * Deallocate a Schema structure.
4080 */
4081void
4082xmlSchemaFree(xmlSchemaPtr schema)
4083{
4084 if (schema == NULL)
4085 return;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004086 /* @volatiles is not used anymore :-/ */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004087 if (schema->volatiles != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004088 TODO
4089 /*
4090 * Note that those slots are not responsible for freeing
4091 * schema components anymore; this will now be done by
4092 * the schema buckets.
4093 */
Daniel Veillard4255d502002-04-16 15:50:10 +00004094 if (schema->notaDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004095 xmlHashFree(schema->notaDecl, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00004096 if (schema->attrDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004097 xmlHashFree(schema->attrDecl, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00004098 if (schema->attrgrpDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004099 xmlHashFree(schema->attrgrpDecl, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00004100 if (schema->elemDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004101 xmlHashFree(schema->elemDecl, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00004102 if (schema->typeDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004103 xmlHashFree(schema->typeDecl, NULL);
Daniel Veillarda84c0b32003-06-02 16:58:46 +00004104 if (schema->groupDecl != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004105 xmlHashFree(schema->groupDecl, NULL);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00004106 if (schema->idcDef != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004107 xmlHashFree(schema->idcDef, NULL);
4108
Daniel Veillard1d913862003-11-21 00:28:39 +00004109 if (schema->schemasImports != NULL)
4110 xmlHashFree(schema->schemasImports,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004111 (xmlHashDeallocator) xmlSchemaBucketFree);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00004112 if (schema->includes != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004113 xmlSchemaItemListPtr list = (xmlSchemaItemListPtr) schema->includes;
4114 int i;
4115 for (i = 0; i < list->nbItems; i++) {
4116 xmlSchemaBucketFree((xmlSchemaBucketPtr) list->items[i]);
4117 }
4118 xmlSchemaItemListFree(list);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00004119 }
Daniel Veillard4255d502002-04-16 15:50:10 +00004120 if (schema->annot != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004121 xmlSchemaFreeAnnot(schema->annot);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004122 /* Never free the doc here, since this will be done by the buckets. */
4123
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004124 xmlDictFree(schema->dict);
Daniel Veillard4255d502002-04-16 15:50:10 +00004125 xmlFree(schema);
4126}
4127
4128/************************************************************************
4129 * *
Daniel Veillard4255d502002-04-16 15:50:10 +00004130 * Debug functions *
4131 * *
4132 ************************************************************************/
4133
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00004134#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004135
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004136static void
4137xmlSchemaTypeDump(xmlSchemaTypePtr type, FILE * output); /* forward */
4138
Daniel Veillard4255d502002-04-16 15:50:10 +00004139/**
4140 * xmlSchemaElementDump:
4141 * @elem: an element
4142 * @output: the file output
4143 *
4144 * Dump the element
4145 */
4146static void
4147xmlSchemaElementDump(xmlSchemaElementPtr elem, FILE * output,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004148 const xmlChar * name ATTRIBUTE_UNUSED,
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004149 const xmlChar * namespace ATTRIBUTE_UNUSED,
4150 const xmlChar * context ATTRIBUTE_UNUSED)
Daniel Veillard4255d502002-04-16 15:50:10 +00004151{
4152 if (elem == NULL)
4153 return;
4154
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004155
4156 fprintf(output, "Element");
4157 if (elem->flags & XML_SCHEMAS_ELEM_GLOBAL)
4158 fprintf(output, " (global)");
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004159 fprintf(output, ": '%s' ", elem->name);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004160 if (namespace != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004161 fprintf(output, "ns '%s'", namespace);
Daniel Veillard4255d502002-04-16 15:50:10 +00004162 fprintf(output, "\n");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004163#if 0
Daniel Veillard4255d502002-04-16 15:50:10 +00004164 if ((elem->minOccurs != 1) || (elem->maxOccurs != 1)) {
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004165 fprintf(output, " min %d ", elem->minOccurs);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004166 if (elem->maxOccurs >= UNBOUNDED)
4167 fprintf(output, "max: unbounded\n");
4168 else if (elem->maxOccurs != 1)
4169 fprintf(output, "max: %d\n", elem->maxOccurs);
4170 else
4171 fprintf(output, "\n");
Daniel Veillard4255d502002-04-16 15:50:10 +00004172 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004173#endif
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004174 /*
4175 * Misc other properties.
4176 */
4177 if ((elem->flags & XML_SCHEMAS_ELEM_NILLABLE) ||
4178 (elem->flags & XML_SCHEMAS_ELEM_ABSTRACT) ||
4179 (elem->flags & XML_SCHEMAS_ELEM_FIXED) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004180 (elem->flags & XML_SCHEMAS_ELEM_DEFAULT)) {
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004181 fprintf(output, " props: ");
4182 if (elem->flags & XML_SCHEMAS_ELEM_FIXED)
4183 fprintf(output, "[fixed] ");
4184 if (elem->flags & XML_SCHEMAS_ELEM_DEFAULT)
4185 fprintf(output, "[default] ");
4186 if (elem->flags & XML_SCHEMAS_ELEM_ABSTRACT)
4187 fprintf(output, "[abstract] ");
4188 if (elem->flags & XML_SCHEMAS_ELEM_NILLABLE)
4189 fprintf(output, "[nillable] ");
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004190 fprintf(output, "\n");
Daniel Veillard4255d502002-04-16 15:50:10 +00004191 }
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004192 /*
4193 * Default/fixed value.
4194 */
Daniel Veillard4255d502002-04-16 15:50:10 +00004195 if (elem->value != NULL)
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004196 fprintf(output, " value: '%s'\n", elem->value);
4197 /*
4198 * Type.
4199 */
4200 if (elem->namedType != NULL) {
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004201 fprintf(output, " type: '%s' ", elem->namedType);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004202 if (elem->namedTypeNs != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004203 fprintf(output, "ns '%s'\n", elem->namedTypeNs);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004204 else
4205 fprintf(output, "\n");
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004206 } else if (elem->subtypes != NULL) {
4207 /*
4208 * Dump local types.
4209 */
4210 xmlSchemaTypeDump(elem->subtypes, output);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004211 }
4212 /*
4213 * Substitution group.
4214 */
4215 if (elem->substGroup != NULL) {
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004216 fprintf(output, " substitutionGroup: '%s' ", elem->substGroup);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004217 if (elem->substGroupNs != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004218 fprintf(output, "ns '%s'\n", elem->substGroupNs);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004219 else
4220 fprintf(output, "\n");
4221 }
Daniel Veillard4255d502002-04-16 15:50:10 +00004222}
4223
4224/**
4225 * xmlSchemaAnnotDump:
4226 * @output: the file output
4227 * @annot: a annotation
4228 *
4229 * Dump the annotation
4230 */
4231static void
4232xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot)
4233{
4234 xmlChar *content;
4235
4236 if (annot == NULL)
4237 return;
4238
4239 content = xmlNodeGetContent(annot->content);
4240 if (content != NULL) {
4241 fprintf(output, " Annot: %s\n", content);
4242 xmlFree(content);
4243 } else
4244 fprintf(output, " Annot: empty\n");
4245}
4246
4247/**
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004248 * xmlSchemaContentModelDump:
4249 * @particle: the schema particle
4250 * @output: the file output
4251 * @depth: the depth used for intentation
Daniel Veillard4255d502002-04-16 15:50:10 +00004252 *
4253 * Dump a SchemaType structure
4254 */
4255static void
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004256xmlSchemaContentModelDump(xmlSchemaParticlePtr particle, FILE * output, int depth)
4257{
4258 xmlChar *str = NULL;
4259 xmlSchemaTreeItemPtr term;
4260 char shift[100];
4261 int i;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004262
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004263 if (particle == NULL)
4264 return;
4265 for (i = 0;((i < depth) && (i < 25));i++)
4266 shift[2 * i] = shift[2 * i + 1] = ' ';
4267 shift[2 * i] = shift[2 * i + 1] = 0;
4268 fprintf(output, shift);
4269 if (particle->children == NULL) {
4270 fprintf(output, "MISSING particle term\n");
4271 return;
4272 }
4273 term = particle->children;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004274 if (term == NULL) {
4275 fprintf(output, "(NULL)");
4276 } else {
4277 switch (term->type) {
4278 case XML_SCHEMA_TYPE_ELEMENT:
4279 fprintf(output, "ELEM '%s'", xmlSchemaFormatQName(&str,
4280 ((xmlSchemaElementPtr)term)->targetNamespace,
4281 ((xmlSchemaElementPtr)term)->name));
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004282 FREE_AND_NULL(str);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004283 break;
4284 case XML_SCHEMA_TYPE_SEQUENCE:
4285 fprintf(output, "SEQUENCE");
4286 break;
4287 case XML_SCHEMA_TYPE_CHOICE:
4288 fprintf(output, "CHOICE");
4289 break;
4290 case XML_SCHEMA_TYPE_ALL:
4291 fprintf(output, "ALL");
4292 break;
4293 case XML_SCHEMA_TYPE_ANY:
4294 fprintf(output, "ANY");
4295 break;
4296 default:
4297 fprintf(output, "UNKNOWN\n");
4298 return;
4299 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004300 }
4301 if (particle->minOccurs != 1)
4302 fprintf(output, " min: %d", particle->minOccurs);
4303 if (particle->maxOccurs >= UNBOUNDED)
4304 fprintf(output, " max: unbounded");
4305 else if (particle->maxOccurs != 1)
4306 fprintf(output, " max: %d", particle->maxOccurs);
4307 fprintf(output, "\n");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004308 if (term &&
4309 ((term->type == XML_SCHEMA_TYPE_SEQUENCE) ||
4310 (term->type == XML_SCHEMA_TYPE_CHOICE) ||
4311 (term->type == XML_SCHEMA_TYPE_ALL)) &&
4312 (term->children != NULL)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004313 xmlSchemaContentModelDump((xmlSchemaParticlePtr) term->children,
4314 output, depth +1);
4315 }
4316 if (particle->next != NULL)
4317 xmlSchemaContentModelDump((xmlSchemaParticlePtr) particle->next,
4318 output, depth);
4319}
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004320
4321/**
4322 * xmlSchemaAttrUsesDump:
4323 * @uses: attribute uses list
4324 * @output: the file output
4325 *
4326 * Dumps a list of attribute use components.
4327 */
4328static void
4329xmlSchemaAttrUsesDump(xmlSchemaItemListPtr uses, FILE * output)
4330{
4331 xmlSchemaAttributeUsePtr use;
4332 xmlSchemaAttributeUseProhibPtr prohib;
4333 xmlSchemaQNameRefPtr ref;
4334 const xmlChar *name, *tns;
4335 xmlChar *str = NULL;
4336 int i;
4337
4338 if ((uses == NULL) || (uses->nbItems == 0))
4339 return;
4340
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004341 fprintf(output, " attributes:\n");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004342 for (i = 0; i < uses->nbItems; i++) {
4343 use = uses->items[i];
4344 if (use->type == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB) {
4345 fprintf(output, " [prohibition] ");
4346 prohib = (xmlSchemaAttributeUseProhibPtr) use;
4347 name = prohib->name;
4348 tns = prohib->targetNamespace;
4349 } else if (use->type == XML_SCHEMA_EXTRA_QNAMEREF) {
4350 fprintf(output, " [reference] ");
4351 ref = (xmlSchemaQNameRefPtr) use;
4352 name = ref->name;
4353 tns = ref->targetNamespace;
4354 } else {
4355 fprintf(output, " [use] ");
4356 name = WXS_ATTRUSE_DECL_NAME(use);
4357 tns = WXS_ATTRUSE_DECL_TNS(use);
4358 }
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004359 fprintf(output, "'%s'\n",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004360 (const char *) xmlSchemaFormatQName(&str, tns, name));
4361 FREE_AND_NULL(str);
4362 }
4363}
4364
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004365/**
4366 * xmlSchemaTypeDump:
4367 * @output: the file output
4368 * @type: a type structure
4369 *
4370 * Dump a SchemaType structure
4371 */
4372static void
Daniel Veillard4255d502002-04-16 15:50:10 +00004373xmlSchemaTypeDump(xmlSchemaTypePtr type, FILE * output)
4374{
4375 if (type == NULL) {
4376 fprintf(output, "Type: NULL\n");
4377 return;
4378 }
4379 fprintf(output, "Type: ");
4380 if (type->name != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004381 fprintf(output, "'%s' ", type->name);
Daniel Veillard4255d502002-04-16 15:50:10 +00004382 else
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004383 fprintf(output, "(no name) ");
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004384 if (type->targetNamespace != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004385 fprintf(output, "ns '%s' ", type->targetNamespace);
Daniel Veillard4255d502002-04-16 15:50:10 +00004386 switch (type->type) {
4387 case XML_SCHEMA_TYPE_BASIC:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004388 fprintf(output, "[basic] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004389 break;
4390 case XML_SCHEMA_TYPE_SIMPLE:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004391 fprintf(output, "[simple] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004392 break;
4393 case XML_SCHEMA_TYPE_COMPLEX:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004394 fprintf(output, "[complex] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004395 break;
4396 case XML_SCHEMA_TYPE_SEQUENCE:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004397 fprintf(output, "[sequence] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004398 break;
4399 case XML_SCHEMA_TYPE_CHOICE:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004400 fprintf(output, "[choice] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004401 break;
4402 case XML_SCHEMA_TYPE_ALL:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004403 fprintf(output, "[all] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004404 break;
4405 case XML_SCHEMA_TYPE_UR:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004406 fprintf(output, "[ur] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004407 break;
4408 case XML_SCHEMA_TYPE_RESTRICTION:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004409 fprintf(output, "[restriction] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004410 break;
4411 case XML_SCHEMA_TYPE_EXTENSION:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004412 fprintf(output, "[extension] ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004413 break;
4414 default:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004415 fprintf(output, "[unknown type %d] ", type->type);
Daniel Veillard4255d502002-04-16 15:50:10 +00004416 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004417 }
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004418 fprintf(output, "content: ");
Daniel Veillard4255d502002-04-16 15:50:10 +00004419 switch (type->contentType) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004420 case XML_SCHEMA_CONTENT_UNKNOWN:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004421 fprintf(output, "[unknown] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004422 break;
4423 case XML_SCHEMA_CONTENT_EMPTY:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004424 fprintf(output, "[empty] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004425 break;
4426 case XML_SCHEMA_CONTENT_ELEMENTS:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004427 fprintf(output, "[element] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004428 break;
4429 case XML_SCHEMA_CONTENT_MIXED:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004430 fprintf(output, "[mixed] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004431 break;
4432 case XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS:
Daniel Veillardb7c6ac42004-06-29 22:01:27 +00004433 /* not used. */
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004434 break;
4435 case XML_SCHEMA_CONTENT_BASIC:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004436 fprintf(output, "[basic] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004437 break;
4438 case XML_SCHEMA_CONTENT_SIMPLE:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004439 fprintf(output, "[simple] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004440 break;
4441 case XML_SCHEMA_CONTENT_ANY:
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004442 fprintf(output, "[any] ");
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004443 break;
Daniel Veillard4255d502002-04-16 15:50:10 +00004444 }
4445 fprintf(output, "\n");
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004446 if (type->base != NULL) {
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004447 fprintf(output, " base type: '%s'", type->base);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004448 if (type->baseNs != NULL)
Kasimier T. Buchcikee8e8ae2005-10-17 14:15:37 +00004449 fprintf(output, " ns '%s'\n", type->baseNs);
Kasimier T. Buchcikf500aec2005-01-19 16:30:24 +00004450 else
4451 fprintf(output, "\n");
4452 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004453 if (type->attrUses != NULL)
4454 xmlSchemaAttrUsesDump(type->attrUses, output);
Daniel Veillard4255d502002-04-16 15:50:10 +00004455 if (type->annot != NULL)
4456 xmlSchemaAnnotDump(output, type->annot);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004457#ifdef DUMP_CONTENT_MODEL
4458 if ((type->type == XML_SCHEMA_TYPE_COMPLEX) &&
4459 (type->subtypes != NULL)) {
4460 xmlSchemaContentModelDump((xmlSchemaParticlePtr) type->subtypes,
4461 output, 1);
Daniel Veillard4255d502002-04-16 15:50:10 +00004462 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004463#endif
Daniel Veillard4255d502002-04-16 15:50:10 +00004464}
4465
4466/**
4467 * xmlSchemaDump:
4468 * @output: the file output
4469 * @schema: a schema structure
4470 *
4471 * Dump a Schema structure.
4472 */
4473void
4474xmlSchemaDump(FILE * output, xmlSchemaPtr schema)
4475{
Daniel Veillardce682bc2004-11-05 17:22:25 +00004476 if (output == NULL)
4477 return;
Daniel Veillard4255d502002-04-16 15:50:10 +00004478 if (schema == NULL) {
4479 fprintf(output, "Schemas: NULL\n");
4480 return;
4481 }
4482 fprintf(output, "Schemas: ");
4483 if (schema->name != NULL)
4484 fprintf(output, "%s, ", schema->name);
4485 else
4486 fprintf(output, "no name, ");
4487 if (schema->targetNamespace != NULL)
Daniel Veillard580ced82003-03-21 21:22:48 +00004488 fprintf(output, "%s", (const char *) schema->targetNamespace);
Daniel Veillard4255d502002-04-16 15:50:10 +00004489 else
4490 fprintf(output, "no target namespace");
4491 fprintf(output, "\n");
4492 if (schema->annot != NULL)
4493 xmlSchemaAnnotDump(output, schema->annot);
Daniel Veillard4255d502002-04-16 15:50:10 +00004494 xmlHashScan(schema->typeDecl, (xmlHashScanner) xmlSchemaTypeDump,
4495 output);
4496 xmlHashScanFull(schema->elemDecl,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004497 (xmlHashScannerFull) xmlSchemaElementDump, output);
Daniel Veillard4255d502002-04-16 15:50:10 +00004498}
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004499
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004500#ifdef DEBUG_IDC_NODE_TABLE
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004501/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004502 * xmlSchemaDebugDumpIDCTable:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004503 * @vctxt: the WXS validation context
4504 *
4505 * Displays the current IDC table for debug purposes.
4506 */
4507static void
4508xmlSchemaDebugDumpIDCTable(FILE * output,
4509 const xmlChar *namespaceName,
4510 const xmlChar *localName,
4511 xmlSchemaPSVIIDCBindingPtr bind)
4512{
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004513 xmlChar *str = NULL;
4514 const xmlChar *value;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004515 xmlSchemaPSVIIDCNodePtr tab;
4516 xmlSchemaPSVIIDCKeyPtr key;
4517 int i, j, res;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004518
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004519 fprintf(output, "IDC: TABLES on '%s'\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004520 xmlSchemaFormatQName(&str, namespaceName, localName));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004521 FREE_AND_NULL(str)
4522
4523 if (bind == NULL)
4524 return;
4525 do {
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004526 fprintf(output, "IDC: BINDING '%s' (%d)\n",
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004527 xmlSchemaGetComponentQName(&str,
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004528 bind->definition), bind->nbNodes);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004529 FREE_AND_NULL(str)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004530 for (i = 0; i < bind->nbNodes; i++) {
4531 tab = bind->nodeTable[i];
4532 fprintf(output, " ( ");
4533 for (j = 0; j < bind->definition->nbFields; j++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004534 key = tab->keys[j];
4535 if ((key != NULL) && (key->val != NULL)) {
4536 res = xmlSchemaGetCanonValue(key->val, &value);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00004537 if (res >= 0)
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004538 fprintf(output, "'%s' ", value);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004539 else
Kasimier T. Buchcik87250a92005-01-28 15:59:53 +00004540 fprintf(output, "CANON-VALUE-FAILED ");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004541 if (res == 0)
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00004542 FREE_AND_NULL(value)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004543 } else if (key != NULL)
Kasimier T. Buchcik87250a92005-01-28 15:59:53 +00004544 fprintf(output, "(no val), ");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004545 else
4546 fprintf(output, "(key missing), ");
4547 }
4548 fprintf(output, ")\n");
4549 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004550 if (bind->dupls && bind->dupls->nbItems) {
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004551 fprintf(output, "IDC: dupls (%d):\n", bind->dupls->nbItems);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004552 for (i = 0; i < bind->dupls->nbItems; i++) {
4553 tab = bind->dupls->items[i];
4554 fprintf(output, " ( ");
4555 for (j = 0; j < bind->definition->nbFields; j++) {
4556 key = tab->keys[j];
4557 if ((key != NULL) && (key->val != NULL)) {
4558 res = xmlSchemaGetCanonValue(key->val, &value);
4559 if (res >= 0)
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +00004560 fprintf(output, "'%s' ", value);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +00004561 else
4562 fprintf(output, "CANON-VALUE-FAILED ");
4563 if (res == 0)
4564 FREE_AND_NULL(value)
4565 } else if (key != NULL)
4566 fprintf(output, "(no val), ");
4567 else
4568 fprintf(output, "(key missing), ");
4569 }
4570 fprintf(output, ")\n");
4571 }
4572 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00004573 bind = bind->next;
4574 } while (bind != NULL);
4575}
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00004576#endif /* DEBUG_IDC */
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00004577#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillard4255d502002-04-16 15:50:10 +00004578
4579/************************************************************************
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004580 * *
4581 * Utilities *
4582 * *
4583 ************************************************************************/
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004584
Daniel Veillardc0826a72004-08-10 14:17:33 +00004585/**
4586 * xmlSchemaGetPropNode:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004587 * @node: the element node
Daniel Veillardc0826a72004-08-10 14:17:33 +00004588 * @name: the name of the attribute
4589 *
4590 * Seeks an attribute with a name of @name in
4591 * no namespace.
4592 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004593 * Returns the attribute or NULL if not present.
Daniel Veillardc0826a72004-08-10 14:17:33 +00004594 */
Daniel Veillardb7c6ac42004-06-29 22:01:27 +00004595static xmlAttrPtr
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004596xmlSchemaGetPropNode(xmlNodePtr node, const char *name)
Daniel Veillard01fa6152004-06-29 17:04:39 +00004597{
4598 xmlAttrPtr prop;
4599
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004600 if ((node == NULL) || (name == NULL))
Daniel Veillardc0826a72004-08-10 14:17:33 +00004601 return(NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +00004602 prop = node->properties;
4603 while (prop != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004604 if ((prop->ns == NULL) && xmlStrEqual(prop->name, BAD_CAST name))
Daniel Veillardc0826a72004-08-10 14:17:33 +00004605 return(prop);
4606 prop = prop->next;
4607 }
4608 return (NULL);
4609}
4610
4611/**
4612 * xmlSchemaGetPropNodeNs:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004613 * @node: the element node
Daniel Veillardc0826a72004-08-10 14:17:33 +00004614 * @uri: the uri
4615 * @name: the name of the attribute
4616 *
4617 * Seeks an attribute with a local name of @name and
4618 * a namespace URI of @uri.
4619 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004620 * Returns the attribute or NULL if not present.
Daniel Veillardc0826a72004-08-10 14:17:33 +00004621 */
4622static xmlAttrPtr
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004623xmlSchemaGetPropNodeNs(xmlNodePtr node, const char *uri, const char *name)
Daniel Veillardc0826a72004-08-10 14:17:33 +00004624{
4625 xmlAttrPtr prop;
4626
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004627 if ((node == NULL) || (name == NULL))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004628 return(NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00004629 prop = node->properties;
4630 while (prop != NULL) {
4631 if ((prop->ns != NULL) &&
4632 xmlStrEqual(prop->name, BAD_CAST name) &&
4633 xmlStrEqual(prop->ns->href, BAD_CAST uri))
Daniel Veillard01fa6152004-06-29 17:04:39 +00004634 return(prop);
4635 prop = prop->next;
4636 }
4637 return (NULL);
4638}
4639
4640static const xmlChar *
4641xmlSchemaGetNodeContent(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node)
4642{
4643 xmlChar *val;
4644 const xmlChar *ret;
4645
4646 val = xmlNodeGetContent(node);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004647 if (val == NULL)
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +00004648 val = xmlStrdup((xmlChar *)"");
Daniel Veillard01fa6152004-06-29 17:04:39 +00004649 ret = xmlDictLookup(ctxt->dict, val, -1);
4650 xmlFree(val);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004651 return(ret);
Daniel Veillard01fa6152004-06-29 17:04:39 +00004652}
4653
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004654static const xmlChar *
4655xmlSchemaGetNodeContentNoDict(xmlNodePtr node)
4656{
4657 return((const xmlChar*) xmlNodeGetContent(node));
4658}
4659
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004660/**
4661 * xmlSchemaGetProp:
4662 * @ctxt: the parser context
4663 * @node: the node
4664 * @name: the property name
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004665 *
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004666 * Read a attribute value and internalize the string
4667 *
4668 * Returns the string or NULL if not present.
4669 */
4670static const xmlChar *
4671xmlSchemaGetProp(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node,
4672 const char *name)
4673{
4674 xmlChar *val;
4675 const xmlChar *ret;
4676
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004677 val = xmlGetNoNsProp(node, BAD_CAST name);
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004678 if (val == NULL)
4679 return(NULL);
4680 ret = xmlDictLookup(ctxt->dict, val, -1);
4681 xmlFree(val);
4682 return(ret);
4683}
4684
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004685/************************************************************************
Daniel Veillard4255d502002-04-16 15:50:10 +00004686 * *
4687 * Parsing functions *
4688 * *
4689 ************************************************************************/
4690
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004691#define WXS_FIND_GLOBAL_ITEM(slot) \
4692 if (xmlStrEqual(nsName, schema->targetNamespace)) { \
4693 ret = xmlHashLookup(schema->slot, name); \
4694 if (ret != NULL) goto exit; \
4695 } \
4696 if (xmlHashSize(schema->schemasImports) > 1) { \
4697 xmlSchemaImportPtr import; \
4698 if (nsName == NULL) \
4699 import = xmlHashLookup(schema->schemasImports, \
4700 XML_SCHEMAS_NO_NAMESPACE); \
4701 else \
4702 import = xmlHashLookup(schema->schemasImports, nsName); \
4703 if (import == NULL) \
4704 goto exit; \
4705 ret = xmlHashLookup(import->schema->slot, name); \
4706 }
4707
Daniel Veillard4255d502002-04-16 15:50:10 +00004708/**
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004709 * xmlSchemaGetElem:
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +00004710 * @schema: the schema context
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004711 * @name: the element name
4712 * @ns: the element namespace
4713 *
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +00004714 * Lookup a global element declaration in the schema.
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004715 *
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +00004716 * Returns the element declaration or NULL if not found.
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004717 */
4718static xmlSchemaElementPtr
4719xmlSchemaGetElem(xmlSchemaPtr schema, const xmlChar * name,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00004720 const xmlChar * nsName)
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004721{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004722 xmlSchemaElementPtr ret = NULL;
4723
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004724 if ((name == NULL) || (schema == NULL))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004725 return(NULL);
4726 if (schema != NULL) {
4727 WXS_FIND_GLOBAL_ITEM(elemDecl)
4728 }
4729exit:
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004730#ifdef DEBUG
4731 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004732 if (nsName == NULL)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004733 fprintf(stderr, "Unable to lookup element decl. %s", name);
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004734 else
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004735 fprintf(stderr, "Unable to lookup element decl. %s:%s", name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004736 nsName);
Daniel Veillardbe9c6322003-11-22 20:37:51 +00004737 }
4738#endif
4739 return (ret);
4740}
4741
4742/**
Daniel Veillard4255d502002-04-16 15:50:10 +00004743 * xmlSchemaGetType:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004744 * @schema: the main schema
4745 * @name: the type's name
4746 * nsName: the type's namespace
Daniel Veillard4255d502002-04-16 15:50:10 +00004747 *
4748 * Lookup a type in the schemas or the predefined types
4749 *
Daniel Veillarda84c0b32003-06-02 16:58:46 +00004750 * Returns the group definition or NULL if not found.
Daniel Veillard4255d502002-04-16 15:50:10 +00004751 */
4752static xmlSchemaTypePtr
4753xmlSchemaGetType(xmlSchemaPtr schema, const xmlChar * name,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00004754 const xmlChar * nsName)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004755{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004756 xmlSchemaTypePtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00004757
4758 if (name == NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004759 return (NULL);
4760 /* First try the built-in types. */
4761 if ((nsName != NULL) && xmlStrEqual(nsName, xmlSchemaNs)) {
4762 ret = xmlSchemaGetPredefinedType(name, nsName);
4763 if (ret != NULL)
4764 goto exit;
4765 /*
4766 * Note that we try the parsed schemas as well here
4767 * since one might have parsed the S4S, which contain more
4768 * than the built-in types.
4769 * TODO: Can we optimize this?
4770 */
4771 }
Daniel Veillard4255d502002-04-16 15:50:10 +00004772 if (schema != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004773 WXS_FIND_GLOBAL_ITEM(typeDecl)
4774 }
4775exit:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004776
Daniel Veillard4255d502002-04-16 15:50:10 +00004777#ifdef DEBUG
4778 if (ret == NULL) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00004779 if (nsName == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004780 fprintf(stderr, "Unable to lookup type %s", name);
4781 else
4782 fprintf(stderr, "Unable to lookup type %s:%s", name,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00004783 nsName);
Daniel Veillard4255d502002-04-16 15:50:10 +00004784 }
4785#endif
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004786 return (ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00004787}
4788
Daniel Veillard3646d642004-06-02 19:19:14 +00004789/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004790 * xmlSchemaGetAttributeDecl:
4791 * @schema: the context of the schema
Daniel Veillard3646d642004-06-02 19:19:14 +00004792 * @name: the name of the attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004793 * @ns: the target namespace of the attribute
Daniel Veillard3646d642004-06-02 19:19:14 +00004794 *
4795 * Lookup a an attribute in the schema or imported schemas
4796 *
4797 * Returns the attribute declaration or NULL if not found.
4798 */
4799static xmlSchemaAttributePtr
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004800xmlSchemaGetAttributeDecl(xmlSchemaPtr schema, const xmlChar * name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004801 const xmlChar * nsName)
Daniel Veillard3646d642004-06-02 19:19:14 +00004802{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004803 xmlSchemaAttributePtr ret = NULL;
Daniel Veillard3646d642004-06-02 19:19:14 +00004804
4805 if ((name == NULL) || (schema == NULL))
4806 return (NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004807 if (schema != NULL) {
4808 WXS_FIND_GLOBAL_ITEM(attrDecl)
Daniel Veillard3646d642004-06-02 19:19:14 +00004809 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004810exit:
Daniel Veillard3646d642004-06-02 19:19:14 +00004811#ifdef DEBUG
4812 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004813 if (nsName == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +00004814 fprintf(stderr, "Unable to lookup attribute %s", name);
4815 else
4816 fprintf(stderr, "Unable to lookup attribute %s:%s", name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004817 nsName);
Daniel Veillard3646d642004-06-02 19:19:14 +00004818 }
4819#endif
4820 return (ret);
4821}
4822
4823/**
4824 * xmlSchemaGetAttributeGroup:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004825 * @schema: the context of the schema
Daniel Veillard3646d642004-06-02 19:19:14 +00004826 * @name: the name of the attribute group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004827 * @ns: the target namespace of the attribute group
Daniel Veillard3646d642004-06-02 19:19:14 +00004828 *
4829 * Lookup a an attribute group in the schema or imported schemas
4830 *
4831 * Returns the attribute group definition or NULL if not found.
4832 */
4833static xmlSchemaAttributeGroupPtr
4834xmlSchemaGetAttributeGroup(xmlSchemaPtr schema, const xmlChar * name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004835 const xmlChar * nsName)
Daniel Veillard3646d642004-06-02 19:19:14 +00004836{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004837 xmlSchemaAttributeGroupPtr ret = NULL;
Daniel Veillard3646d642004-06-02 19:19:14 +00004838
4839 if ((name == NULL) || (schema == NULL))
4840 return (NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004841 if (schema != NULL) {
4842 WXS_FIND_GLOBAL_ITEM(attrgrpDecl)
4843 }
4844exit:
4845 /* TODO:
4846 if ((ret != NULL) && (ret->redef != NULL)) {
4847 * Return the last redefinition. *
4848 ret = ret->redef;
Daniel Veillard3646d642004-06-02 19:19:14 +00004849 }
William M. Brack2f2a6632004-08-20 23:09:47 +00004850 */
Daniel Veillard3646d642004-06-02 19:19:14 +00004851#ifdef DEBUG
4852 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004853 if (nsName == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +00004854 fprintf(stderr, "Unable to lookup attribute group %s", name);
4855 else
4856 fprintf(stderr, "Unable to lookup attribute group %s:%s", name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004857 nsName);
Daniel Veillard3646d642004-06-02 19:19:14 +00004858 }
4859#endif
4860 return (ret);
4861}
4862
4863/**
4864 * xmlSchemaGetGroup:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004865 * @schema: the context of the schema
Daniel Veillard3646d642004-06-02 19:19:14 +00004866 * @name: the name of the group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004867 * @ns: the target namespace of the group
Daniel Veillard3646d642004-06-02 19:19:14 +00004868 *
4869 * Lookup a group in the schema or imported schemas
4870 *
4871 * Returns the group definition or NULL if not found.
4872 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004873static xmlSchemaModelGroupDefPtr
Daniel Veillard3646d642004-06-02 19:19:14 +00004874xmlSchemaGetGroup(xmlSchemaPtr schema, const xmlChar * name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004875 const xmlChar * nsName)
Daniel Veillard3646d642004-06-02 19:19:14 +00004876{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004877 xmlSchemaModelGroupDefPtr ret = NULL;
Daniel Veillard3646d642004-06-02 19:19:14 +00004878
4879 if ((name == NULL) || (schema == NULL))
4880 return (NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004881 if (schema != NULL) {
4882 WXS_FIND_GLOBAL_ITEM(groupDecl)
Daniel Veillard3646d642004-06-02 19:19:14 +00004883 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004884exit:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004885
Daniel Veillard3646d642004-06-02 19:19:14 +00004886#ifdef DEBUG
4887 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004888 if (nsName == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +00004889 fprintf(stderr, "Unable to lookup group %s", name);
4890 else
4891 fprintf(stderr, "Unable to lookup group %s:%s", name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004892 nsName);
Daniel Veillard3646d642004-06-02 19:19:14 +00004893 }
4894#endif
4895 return (ret);
4896}
4897
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004898static xmlSchemaNotationPtr
4899xmlSchemaGetNotation(xmlSchemaPtr schema,
4900 const xmlChar *name,
4901 const xmlChar *nsName)
4902{
4903 xmlSchemaNotationPtr ret = NULL;
4904
4905 if ((name == NULL) || (schema == NULL))
4906 return (NULL);
4907 if (schema != NULL) {
4908 WXS_FIND_GLOBAL_ITEM(notaDecl)
4909 }
4910exit:
4911 return (ret);
4912}
4913
4914static xmlSchemaIDCPtr
4915xmlSchemaGetIDC(xmlSchemaPtr schema,
4916 const xmlChar *name,
4917 const xmlChar *nsName)
4918{
4919 xmlSchemaIDCPtr ret = NULL;
4920
4921 if ((name == NULL) || (schema == NULL))
4922 return (NULL);
4923 if (schema != NULL) {
4924 WXS_FIND_GLOBAL_ITEM(idcDef)
4925 }
4926exit:
4927 return (ret);
4928}
4929
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004930/**
4931 * xmlSchemaGetNamedComponent:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004932 * @schema: the schema
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004933 * @name: the name of the group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004934 * @ns: the target namespace of the group
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004935 *
4936 * Lookup a group in the schema or imported schemas
4937 *
4938 * Returns the group definition or NULL if not found.
4939 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004940static xmlSchemaBasicItemPtr
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004941xmlSchemaGetNamedComponent(xmlSchemaPtr schema,
4942 xmlSchemaTypeType itemType,
4943 const xmlChar *name,
4944 const xmlChar *targetNs)
4945{
4946 switch (itemType) {
4947 case XML_SCHEMA_TYPE_GROUP:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004948 return ((xmlSchemaBasicItemPtr) xmlSchemaGetGroup(schema,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004949 name, targetNs));
4950 case XML_SCHEMA_TYPE_ELEMENT:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004951 return ((xmlSchemaBasicItemPtr) xmlSchemaGetElem(schema,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004952 name, targetNs));
4953 default:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00004954 TODO
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00004955 return (NULL);
4956 }
4957}
4958
Daniel Veillard4255d502002-04-16 15:50:10 +00004959/************************************************************************
4960 * *
4961 * Parsing functions *
4962 * *
4963 ************************************************************************/
4964
4965#define IS_BLANK_NODE(n) \
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004966 (((n)->type == XML_TEXT_NODE) && (xmlSchemaIsBlank((n)->content, -1)))
Daniel Veillard4255d502002-04-16 15:50:10 +00004967
4968/**
4969 * xmlSchemaIsBlank:
4970 * @str: a string
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004971 * @len: the length of the string or -1
Daniel Veillard4255d502002-04-16 15:50:10 +00004972 *
4973 * Check if a string is ignorable
4974 *
4975 * Returns 1 if the string is NULL or made of blanks chars, 0 otherwise
4976 */
4977static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004978xmlSchemaIsBlank(xmlChar * str, int len)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004979{
Daniel Veillard4255d502002-04-16 15:50:10 +00004980 if (str == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004981 return (1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004982 if (len < 0) {
4983 while (*str != 0) {
4984 if (!(IS_BLANK_CH(*str)))
4985 return (0);
4986 str++;
4987 }
4988 } else while ((*str != 0) && (len != 0)) {
4989 if (!(IS_BLANK_CH(*str)))
4990 return (0);
4991 str++;
4992 len--;
Daniel Veillard4255d502002-04-16 15:50:10 +00004993 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00004994
Daniel Veillardd0c9c322003-10-10 00:49:42 +00004995 return (1);
Daniel Veillard4255d502002-04-16 15:50:10 +00004996}
4997
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00004998#define WXS_COMP_NAME(c, t) ((t) (c))->name
4999#define WXS_COMP_TNS(c, t) ((t) (c))->targetNamespace
5000/*
5001* xmlSchemaFindRedefCompInGraph:
5002* ATTENTION TODO: This uses pointer comp. for strings.
5003*/
5004static xmlSchemaBasicItemPtr
5005xmlSchemaFindRedefCompInGraph(xmlSchemaBucketPtr bucket,
5006 xmlSchemaTypeType type,
5007 const xmlChar *name,
5008 const xmlChar *nsName)
5009{
5010 xmlSchemaBasicItemPtr ret;
5011 int i;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005012
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005013 if ((bucket == NULL) || (name == NULL))
5014 return(NULL);
5015 if ((bucket->globals == NULL) ||
5016 (bucket->globals->nbItems == 0))
5017 goto subschemas;
5018 /*
5019 * Search in global components.
5020 */
5021 for (i = 0; i < bucket->globals->nbItems; i++) {
5022 ret = bucket->globals->items[i];
5023 if (ret->type == type) {
5024 switch (type) {
5025 case XML_SCHEMA_TYPE_COMPLEX:
5026 case XML_SCHEMA_TYPE_SIMPLE:
5027 if ((WXS_COMP_NAME(ret, xmlSchemaTypePtr) == name) &&
5028 (WXS_COMP_TNS(ret, xmlSchemaTypePtr) ==
5029 nsName))
5030 {
5031 return(ret);
5032 }
5033 break;
5034 case XML_SCHEMA_TYPE_GROUP:
5035 if ((WXS_COMP_NAME(ret,
5036 xmlSchemaModelGroupDefPtr) == name) &&
5037 (WXS_COMP_TNS(ret,
5038 xmlSchemaModelGroupDefPtr) == nsName))
5039 {
5040 return(ret);
5041 }
5042 break;
5043 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
5044 if ((WXS_COMP_NAME(ret,
5045 xmlSchemaAttributeGroupPtr) == name) &&
5046 (WXS_COMP_TNS(ret,
5047 xmlSchemaAttributeGroupPtr) == nsName))
5048 {
5049 return(ret);
5050 }
Kasimier T. Buchcik5d2998b2005-11-22 17:36:01 +00005051 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005052 default:
5053 /* Should not be hit. */
5054 return(NULL);
5055 }
5056 }
5057 }
5058subschemas:
5059 /*
5060 * Process imported/included schemas.
5061 */
5062 if (bucket->relations != NULL) {
5063 xmlSchemaSchemaRelationPtr rel = bucket->relations;
5064
5065 /*
5066 * TODO: Marking the bucket will not avoid multiple searches
5067 * in the same schema, but avoids at least circularity.
5068 */
5069 bucket->flags |= XML_SCHEMA_BUCKET_MARKED;
5070 do {
5071 if ((rel->bucket != NULL) &&
5072 ((rel->bucket->flags & XML_SCHEMA_BUCKET_MARKED) == 0)) {
5073 ret = xmlSchemaFindRedefCompInGraph(rel->bucket,
5074 type, name, nsName);
5075 if (ret != NULL)
5076 return(ret);
5077 }
5078 rel = rel->next;
5079 } while (rel != NULL);
5080 bucket->flags ^= XML_SCHEMA_BUCKET_MARKED;
5081 }
5082 return(NULL);
5083}
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005084
5085/**
Daniel Veillard4255d502002-04-16 15:50:10 +00005086 * xmlSchemaAddNotation:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005087 * @ctxt: a schema parser context
Daniel Veillard4255d502002-04-16 15:50:10 +00005088 * @schema: the schema being built
5089 * @name: the item name
5090 *
Daniel Veillardc0826a72004-08-10 14:17:33 +00005091 * Add an XML schema annotation declaration
Daniel Veillard4255d502002-04-16 15:50:10 +00005092 * *WARNING* this interface is highly subject to change
5093 *
5094 * Returns the new struture or NULL in case of error
5095 */
5096static xmlSchemaNotationPtr
5097xmlSchemaAddNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005098 const xmlChar *name, const xmlChar *nsName,
5099 xmlNodePtr node ATTRIBUTE_UNUSED)
Daniel Veillard4255d502002-04-16 15:50:10 +00005100{
5101 xmlSchemaNotationPtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00005102
5103 if ((ctxt == NULL) || (schema == NULL) || (name == NULL))
5104 return (NULL);
5105
Daniel Veillard4255d502002-04-16 15:50:10 +00005106 ret = (xmlSchemaNotationPtr) xmlMalloc(sizeof(xmlSchemaNotation));
5107 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005108 xmlSchemaPErrMemory(ctxt, "add annotation", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00005109 return (NULL);
5110 }
5111 memset(ret, 0, sizeof(xmlSchemaNotation));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005112 ret->type = XML_SCHEMA_TYPE_NOTATION;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005113 ret->name = name;
5114 ret->targetNamespace = nsName;
5115 /* TODO: do we need the node to be set?
5116 * ret->node = node;*/
5117 WXS_ADD_GLOBAL(ctxt, ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00005118 return (ret);
5119}
5120
Daniel Veillard4255d502002-04-16 15:50:10 +00005121/**
5122 * xmlSchemaAddAttribute:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005123 * @ctxt: a schema parser context
Daniel Veillard4255d502002-04-16 15:50:10 +00005124 * @schema: the schema being built
5125 * @name: the item name
Daniel Veillardbe9c6322003-11-22 20:37:51 +00005126 * @namespace: the namespace
Daniel Veillard4255d502002-04-16 15:50:10 +00005127 *
5128 * Add an XML schema Attrribute declaration
5129 * *WARNING* this interface is highly subject to change
5130 *
5131 * Returns the new struture or NULL in case of error
5132 */
5133static xmlSchemaAttributePtr
5134xmlSchemaAddAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005135 const xmlChar * name, const xmlChar * nsName,
Kasimier T. Buchcik87250a92005-01-28 15:59:53 +00005136 xmlNodePtr node, int topLevel)
Daniel Veillard4255d502002-04-16 15:50:10 +00005137{
5138 xmlSchemaAttributePtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00005139
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005140 if ((ctxt == NULL) || (schema == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00005141 return (NULL);
5142
5143 ret = (xmlSchemaAttributePtr) xmlMalloc(sizeof(xmlSchemaAttribute));
5144 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005145 xmlSchemaPErrMemory(ctxt, "allocating attribute", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00005146 return (NULL);
5147 }
5148 memset(ret, 0, sizeof(xmlSchemaAttribute));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005149 ret->type = XML_SCHEMA_TYPE_ATTRIBUTE;
5150 ret->node = node;
5151 ret->name = name;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005152 ret->targetNamespace = nsName;
5153
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005154 if (topLevel)
5155 WXS_ADD_GLOBAL(ctxt, ret);
5156 else
5157 WXS_ADD_LOCAL(ctxt, ret);
5158 WXS_ADD_PENDING(ctxt, ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00005159 return (ret);
5160}
5161
5162/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005163 * xmlSchemaAddAttributeUse:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005164 * @ctxt: a schema parser context
Daniel Veillard4255d502002-04-16 15:50:10 +00005165 * @schema: the schema being built
5166 * @name: the item name
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005167 * @namespace: the namespace
Daniel Veillard4255d502002-04-16 15:50:10 +00005168 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005169 * Add an XML schema Attrribute declaration
5170 * *WARNING* this interface is highly subject to change
5171 *
5172 * Returns the new struture or NULL in case of error
5173 */
5174static xmlSchemaAttributeUsePtr
5175xmlSchemaAddAttributeUse(xmlSchemaParserCtxtPtr pctxt,
5176 xmlNodePtr node)
5177{
5178 xmlSchemaAttributeUsePtr ret = NULL;
5179
5180 if (pctxt == NULL)
5181 return (NULL);
5182
5183 ret = (xmlSchemaAttributeUsePtr) xmlMalloc(sizeof(xmlSchemaAttributeUse));
5184 if (ret == NULL) {
5185 xmlSchemaPErrMemory(pctxt, "allocating attribute", NULL);
5186 return (NULL);
5187 }
5188 memset(ret, 0, sizeof(xmlSchemaAttributeUse));
5189 ret->type = XML_SCHEMA_TYPE_ATTRIBUTE_USE;
5190 ret->node = node;
5191
5192 WXS_ADD_LOCAL(pctxt, ret);
5193 return (ret);
5194}
5195
5196/*
5197* xmlSchemaAddRedef:
5198*
5199* Adds a redefinition information. This is used at a later stage to:
5200* resolve references to the redefined components and to check constraints.
5201*/
5202static xmlSchemaRedefPtr
5203xmlSchemaAddRedef(xmlSchemaParserCtxtPtr pctxt,
5204 xmlSchemaBucketPtr targetBucket,
5205 void *item,
5206 const xmlChar *refName,
5207 const xmlChar *refTargetNs)
5208{
5209 xmlSchemaRedefPtr ret;
5210
5211 ret = (xmlSchemaRedefPtr)
5212 xmlMalloc(sizeof(xmlSchemaRedef));
5213 if (ret == NULL) {
5214 xmlSchemaPErrMemory(pctxt,
5215 "allocating redefinition info", NULL);
5216 return (NULL);
5217 }
5218 memset(ret, 0, sizeof(xmlSchemaRedef));
5219 ret->item = item;
5220 ret->targetBucket = targetBucket;
5221 ret->refName = refName;
5222 ret->refTargetNs = refTargetNs;
5223 if (WXS_CONSTRUCTOR(pctxt)->redefs == NULL)
5224 WXS_CONSTRUCTOR(pctxt)->redefs = ret;
5225 else
5226 WXS_CONSTRUCTOR(pctxt)->lastRedef->next = ret;
5227 WXS_CONSTRUCTOR(pctxt)->lastRedef = ret;
5228
5229 return (ret);
5230}
5231
5232/**
5233 * xmlSchemaAddAttributeGroupDefinition:
5234 * @ctxt: a schema parser context
5235 * @schema: the schema being built
5236 * @name: the item name
5237 * @nsName: the target namespace
5238 * @node: the corresponding node
5239 *
5240 * Add an XML schema Attrribute Group definition.
Daniel Veillard4255d502002-04-16 15:50:10 +00005241 *
5242 * Returns the new struture or NULL in case of error
5243 */
5244static xmlSchemaAttributeGroupPtr
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005245xmlSchemaAddAttributeGroupDefinition(xmlSchemaParserCtxtPtr pctxt,
5246 xmlSchemaPtr schema ATTRIBUTE_UNUSED,
5247 const xmlChar *name,
5248 const xmlChar *nsName,
5249 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00005250{
5251 xmlSchemaAttributeGroupPtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00005252
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005253 if ((pctxt == NULL) || (name == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00005254 return (NULL);
5255
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005256 ret = (xmlSchemaAttributeGroupPtr)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005257 xmlMalloc(sizeof(xmlSchemaAttributeGroup));
Daniel Veillard4255d502002-04-16 15:50:10 +00005258 if (ret == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005259 xmlSchemaPErrMemory(pctxt, "allocating attribute group", NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005260 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00005261 }
5262 memset(ret, 0, sizeof(xmlSchemaAttributeGroup));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005263 ret->type = XML_SCHEMA_TYPE_ATTRIBUTEGROUP;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005264 ret->name = name;
5265 ret->targetNamespace = nsName;
5266 ret->node = node;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005267
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005268 /* TODO: Remove the flag. */
5269 ret->flags |= XML_SCHEMAS_ATTRGROUP_GLOBAL;
5270 if (pctxt->isRedefine) {
5271 pctxt->redef = xmlSchemaAddRedef(pctxt, pctxt->redefined,
5272 ret, name, nsName);
5273 if (pctxt->redef == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005274 xmlFree(ret);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005275 return(NULL);
5276 }
5277 pctxt->redefCounter = 0;
5278 }
5279 WXS_ADD_GLOBAL(pctxt, ret);
5280 WXS_ADD_PENDING(pctxt, ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00005281 return (ret);
5282}
5283
5284/**
5285 * xmlSchemaAddElement:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00005286 * @ctxt: a schema parser context
Daniel Veillard4255d502002-04-16 15:50:10 +00005287 * @schema: the schema being built
5288 * @name: the type name
5289 * @namespace: the type namespace
5290 *
5291 * Add an XML schema Element declaration
5292 * *WARNING* this interface is highly subject to change
5293 *
5294 * Returns the new struture or NULL in case of error
5295 */
5296static xmlSchemaElementPtr
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005297xmlSchemaAddElement(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005298 const xmlChar * name, const xmlChar * nsName,
William M. Brack2f2a6632004-08-20 23:09:47 +00005299 xmlNodePtr node, int topLevel)
Daniel Veillard4255d502002-04-16 15:50:10 +00005300{
5301 xmlSchemaElementPtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00005302
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005303 if ((ctxt == NULL) || (name == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00005304 return (NULL);
5305
Daniel Veillard4255d502002-04-16 15:50:10 +00005306 ret = (xmlSchemaElementPtr) xmlMalloc(sizeof(xmlSchemaElement));
5307 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005308 xmlSchemaPErrMemory(ctxt, "allocating element", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00005309 return (NULL);
5310 }
5311 memset(ret, 0, sizeof(xmlSchemaElement));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005312 ret->type = XML_SCHEMA_TYPE_ELEMENT;
5313 ret->name = name;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005314 ret->targetNamespace = nsName;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005315 ret->node = node;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005316
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005317 if (topLevel)
5318 WXS_ADD_GLOBAL(ctxt, ret);
5319 else
5320 WXS_ADD_LOCAL(ctxt, ret);
5321 WXS_ADD_PENDING(ctxt, ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00005322 return (ret);
5323}
5324
5325/**
5326 * xmlSchemaAddType:
Daniel Veillard01fa6152004-06-29 17:04:39 +00005327 * @ctxt: a schema parser context
Daniel Veillard4255d502002-04-16 15:50:10 +00005328 * @schema: the schema being built
5329 * @name: the item name
Daniel Veillardbe9c6322003-11-22 20:37:51 +00005330 * @namespace: the namespace
Daniel Veillard4255d502002-04-16 15:50:10 +00005331 *
Daniel Veillard01fa6152004-06-29 17:04:39 +00005332 * Add an XML schema item
Daniel Veillard4255d502002-04-16 15:50:10 +00005333 * *WARNING* this interface is highly subject to change
5334 *
5335 * Returns the new struture or NULL in case of error
5336 */
5337static xmlSchemaTypePtr
5338xmlSchemaAddType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005339 xmlSchemaTypeType type,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00005340 const xmlChar * name, const xmlChar * nsName,
5341 xmlNodePtr node, int topLevel)
Daniel Veillard4255d502002-04-16 15:50:10 +00005342{
5343 xmlSchemaTypePtr ret = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00005344
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005345 if ((ctxt == NULL) || (schema == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00005346 return (NULL);
5347
5348 ret = (xmlSchemaTypePtr) xmlMalloc(sizeof(xmlSchemaType));
5349 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005350 xmlSchemaPErrMemory(ctxt, "allocating type", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00005351 return (NULL);
5352 }
5353 memset(ret, 0, sizeof(xmlSchemaType));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005354 ret->type = type;
5355 ret->name = name;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005356 ret->targetNamespace = nsName;
5357 ret->node = node;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005358 if (topLevel) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005359 if (ctxt->isRedefine) {
5360 ctxt->redef = xmlSchemaAddRedef(ctxt, ctxt->redefined,
5361 ret, name, nsName);
5362 if (ctxt->redef == NULL) {
5363 xmlFree(ret);
5364 return(NULL);
5365 }
5366 ctxt->redefCounter = 0;
5367 }
5368 WXS_ADD_GLOBAL(ctxt, ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005369 } else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005370 WXS_ADD_LOCAL(ctxt, ret);
5371 WXS_ADD_PENDING(ctxt, ret);
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005372 return (ret);
5373}
5374
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005375static xmlSchemaQNameRefPtr
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005376xmlSchemaNewQNameRef(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005377 xmlSchemaTypeType refType,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005378 const xmlChar *refName,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005379 const xmlChar *refNs)
5380{
5381 xmlSchemaQNameRefPtr ret;
5382
5383 ret = (xmlSchemaQNameRefPtr)
5384 xmlMalloc(sizeof(xmlSchemaQNameRef));
5385 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005386 xmlSchemaPErrMemory(pctxt,
5387 "allocating QName reference item", NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005388 return (NULL);
5389 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005390 ret->node = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005391 ret->type = XML_SCHEMA_EXTRA_QNAMEREF;
5392 ret->name = refName;
5393 ret->targetNamespace = refNs;
5394 ret->item = NULL;
5395 ret->itemType = refType;
5396 /*
5397 * Store the reference item in the schema.
5398 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005399 WXS_ADD_LOCAL(pctxt, ret);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005400 return (ret);
5401}
5402
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005403static xmlSchemaAttributeUseProhibPtr
5404xmlSchemaAddAttributeUseProhib(xmlSchemaParserCtxtPtr pctxt)
5405{
5406 xmlSchemaAttributeUseProhibPtr ret;
5407
5408 ret = (xmlSchemaAttributeUseProhibPtr)
5409 xmlMalloc(sizeof(xmlSchemaAttributeUseProhib));
5410 if (ret == NULL) {
5411 xmlSchemaPErrMemory(pctxt,
5412 "allocating attribute use prohibition", NULL);
5413 return (NULL);
5414 }
5415 memset(ret, 0, sizeof(xmlSchemaAttributeUseProhib));
5416 ret->type = XML_SCHEMA_EXTRA_ATTR_USE_PROHIB;
5417 WXS_ADD_LOCAL(pctxt, ret);
5418 return (ret);
5419}
5420
5421
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005422/**
5423 * xmlSchemaAddModelGroup:
5424 * @ctxt: a schema parser context
5425 * @schema: the schema being built
5426 * @type: the "compositor" type of the model group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005427 * @node: the node in the schema doc
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005428 *
5429 * Adds a schema model group
5430 * *WARNING* this interface is highly subject to change
5431 *
5432 * Returns the new struture or NULL in case of error
5433 */
5434static xmlSchemaModelGroupPtr
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005435xmlSchemaAddModelGroup(xmlSchemaParserCtxtPtr ctxt,
5436 xmlSchemaPtr schema,
5437 xmlSchemaTypeType type,
5438 xmlNodePtr node)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005439{
5440 xmlSchemaModelGroupPtr ret = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005441
5442 if ((ctxt == NULL) || (schema == NULL))
5443 return (NULL);
5444
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005445 ret = (xmlSchemaModelGroupPtr)
5446 xmlMalloc(sizeof(xmlSchemaModelGroup));
5447 if (ret == NULL) {
5448 xmlSchemaPErrMemory(ctxt, "allocating model group component",
5449 NULL);
5450 return (NULL);
5451 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005452 memset(ret, 0, sizeof(xmlSchemaModelGroup));
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005453 ret->type = type;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005454 ret->node = node;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005455 WXS_ADD_LOCAL(ctxt, ret);
5456 if ((type == XML_SCHEMA_TYPE_SEQUENCE) ||
5457 (type == XML_SCHEMA_TYPE_CHOICE))
5458 WXS_ADD_PENDING(ctxt, ret);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005459 return (ret);
5460}
5461
5462
5463/**
5464 * xmlSchemaAddParticle:
5465 * @ctxt: a schema parser context
5466 * @schema: the schema being built
5467 * @node: the corresponding node in the schema doc
5468 * @min: the minOccurs
5469 * @max: the maxOccurs
5470 *
5471 * Adds an XML schema particle component.
5472 * *WARNING* this interface is highly subject to change
5473 *
5474 * Returns the new struture or NULL in case of error
5475 */
5476static xmlSchemaParticlePtr
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +00005477xmlSchemaAddParticle(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005478 xmlNodePtr node, int min, int max)
5479{
5480 xmlSchemaParticlePtr ret = NULL;
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +00005481 if (ctxt == NULL)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005482 return (NULL);
5483
5484#ifdef DEBUG
5485 fprintf(stderr, "Adding particle component\n");
5486#endif
5487 ret = (xmlSchemaParticlePtr)
5488 xmlMalloc(sizeof(xmlSchemaParticle));
5489 if (ret == NULL) {
5490 xmlSchemaPErrMemory(ctxt, "allocating particle component",
5491 NULL);
5492 return (NULL);
5493 }
5494 ret->type = XML_SCHEMA_TYPE_PARTICLE;
5495 ret->annot = NULL;
5496 ret->node = node;
5497 ret->minOccurs = min;
5498 ret->maxOccurs = max;
5499 ret->next = NULL;
5500 ret->children = NULL;
5501
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005502 WXS_ADD_LOCAL(ctxt, ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005503 /*
5504 * Note that addition to pending components will be done locally
5505 * to the specific parsing function, since the most particles
5506 * need not to be fixed up (i.e. the reference to be resolved).
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005507 * REMOVED: WXS_ADD_PENDING(ctxt, ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005508 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005509 return (ret);
5510}
5511
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005512/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005513 * xmlSchemaAddModelGroupDefinition:
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005514 * @ctxt: a schema validation context
5515 * @schema: the schema being built
5516 * @name: the group name
5517 *
5518 * Add an XML schema Group definition
5519 *
5520 * Returns the new struture or NULL in case of error
5521 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005522static xmlSchemaModelGroupDefPtr
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005523xmlSchemaAddModelGroupDefinition(xmlSchemaParserCtxtPtr ctxt,
5524 xmlSchemaPtr schema,
5525 const xmlChar *name,
5526 const xmlChar *nsName,
5527 xmlNodePtr node)
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005528{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005529 xmlSchemaModelGroupDefPtr ret = NULL;
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005530
5531 if ((ctxt == NULL) || (schema == NULL) || (name == NULL))
5532 return (NULL);
5533
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005534 ret = (xmlSchemaModelGroupDefPtr)
5535 xmlMalloc(sizeof(xmlSchemaModelGroupDef));
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005536 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005537 xmlSchemaPErrMemory(ctxt, "adding group", NULL);
Daniel Veillarda84c0b32003-06-02 16:58:46 +00005538 return (NULL);
5539 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005540 memset(ret, 0, sizeof(xmlSchemaModelGroupDef));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005541 ret->name = name;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005542 ret->type = XML_SCHEMA_TYPE_GROUP;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005543 ret->node = node;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005544 ret->targetNamespace = nsName;
5545
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005546 if (ctxt->isRedefine) {
5547 ctxt->redef = xmlSchemaAddRedef(ctxt, ctxt->redefined,
5548 ret, name, nsName);
5549 if (ctxt->redef == NULL) {
5550 xmlFree(ret);
5551 return(NULL);
5552 }
5553 ctxt->redefCounter = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005554 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005555 WXS_ADD_GLOBAL(ctxt, ret);
5556 WXS_ADD_PENDING(ctxt, ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00005557 return (ret);
5558}
5559
Daniel Veillard3646d642004-06-02 19:19:14 +00005560/**
5561 * xmlSchemaNewWildcardNs:
5562 * @ctxt: a schema validation context
5563 *
5564 * Creates a new wildcard namespace constraint.
5565 *
5566 * Returns the new struture or NULL in case of error
5567 */
5568static xmlSchemaWildcardNsPtr
5569xmlSchemaNewWildcardNsConstraint(xmlSchemaParserCtxtPtr ctxt)
5570{
5571 xmlSchemaWildcardNsPtr ret;
5572
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005573 ret = (xmlSchemaWildcardNsPtr)
Daniel Veillard3646d642004-06-02 19:19:14 +00005574 xmlMalloc(sizeof(xmlSchemaWildcardNs));
5575 if (ret == NULL) {
5576 xmlSchemaPErrMemory(ctxt, "creating wildcard namespace constraint", NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005577 return (NULL);
Daniel Veillard3646d642004-06-02 19:19:14 +00005578 }
5579 ret->value = NULL;
5580 ret->next = NULL;
5581 return (ret);
5582}
5583
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005584static xmlSchemaIDCPtr
5585xmlSchemaAddIDC(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
5586 const xmlChar *name, const xmlChar *nsName,
5587 int category, xmlNodePtr node)
5588{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005589 xmlSchemaIDCPtr ret = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005590
5591 if ((ctxt == NULL) || (schema == NULL) || (name == NULL))
5592 return (NULL);
5593
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005594 ret = (xmlSchemaIDCPtr) xmlMalloc(sizeof(xmlSchemaIDC));
5595 if (ret == NULL) {
5596 xmlSchemaPErrMemory(ctxt,
5597 "allocating an identity-constraint definition", NULL);
5598 return (NULL);
5599 }
5600 memset(ret, 0, sizeof(xmlSchemaIDC));
5601 /* The target namespace of the parent element declaration. */
5602 ret->targetNamespace = nsName;
5603 ret->name = name;
5604 ret->type = category;
5605 ret->node = node;
5606
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005607 WXS_ADD_GLOBAL(ctxt, ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005608 /*
5609 * Only keyrefs need to be fixup up.
5610 */
5611 if (category == XML_SCHEMA_TYPE_IDC_KEYREF)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005612 WXS_ADD_PENDING(ctxt, ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005613 return (ret);
5614}
5615
Daniel Veillard3646d642004-06-02 19:19:14 +00005616/**
5617 * xmlSchemaAddWildcard:
5618 * @ctxt: a schema validation context
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005619 * @schema: a schema
5620 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005621 * Adds a wildcard.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005622 * It corresponds to a xsd:anyAttribute and xsd:any.
Daniel Veillard3646d642004-06-02 19:19:14 +00005623 *
5624 * Returns the new struture or NULL in case of error
5625 */
5626static xmlSchemaWildcardPtr
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005627xmlSchemaAddWildcard(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
5628 xmlSchemaTypeType type, xmlNodePtr node)
Daniel Veillard3646d642004-06-02 19:19:14 +00005629{
5630 xmlSchemaWildcardPtr ret = NULL;
5631
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005632 if ((ctxt == NULL) || (schema == NULL))
Daniel Veillard3646d642004-06-02 19:19:14 +00005633 return (NULL);
5634
5635 ret = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard));
5636 if (ret == NULL) {
5637 xmlSchemaPErrMemory(ctxt, "adding wildcard", NULL);
5638 return (NULL);
5639 }
5640 memset(ret, 0, sizeof(xmlSchemaWildcard));
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005641 ret->type = type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005642 ret->node = node;
5643 WXS_ADD_LOCAL(ctxt, ret);
Daniel Veillard3646d642004-06-02 19:19:14 +00005644 return (ret);
5645}
5646
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005647static void
5648xmlSchemaSubstGroupFree(xmlSchemaSubstGroupPtr group)
5649{
5650 if (group == NULL)
5651 return;
5652 if (group->members != NULL)
5653 xmlSchemaItemListFree(group->members);
5654 xmlFree(group);
5655}
5656
5657static xmlSchemaSubstGroupPtr
5658xmlSchemaSubstGroupAdd(xmlSchemaParserCtxtPtr pctxt,
5659 xmlSchemaElementPtr head)
5660{
5661 xmlSchemaSubstGroupPtr ret;
5662
5663 /* Init subst group hash. */
5664 if (WXS_SUBST_GROUPS(pctxt) == NULL) {
5665 WXS_SUBST_GROUPS(pctxt) = xmlHashCreateDict(10, pctxt->dict);
5666 if (WXS_SUBST_GROUPS(pctxt) == NULL)
5667 return(NULL);
5668 }
5669 /* Create a new substitution group. */
5670 ret = (xmlSchemaSubstGroupPtr) xmlMalloc(sizeof(xmlSchemaSubstGroup));
5671 if (ret == NULL) {
5672 xmlSchemaPErrMemory(NULL,
5673 "allocating a substitution group container", NULL);
5674 return(NULL);
5675 }
5676 memset(ret, 0, sizeof(xmlSchemaSubstGroup));
5677 ret->head = head;
5678 /* Create list of members. */
5679 ret->members = xmlSchemaItemListCreate();
5680 if (ret->members == NULL) {
5681 xmlSchemaSubstGroupFree(ret);
5682 return(NULL);
5683 }
5684 /* Add subst group to hash. */
5685 if (xmlHashAddEntry2(WXS_SUBST_GROUPS(pctxt),
5686 head->name, head->targetNamespace, ret) != 0) {
5687 PERROR_INT("xmlSchemaSubstGroupAdd",
5688 "failed to add a new substitution container");
5689 xmlSchemaSubstGroupFree(ret);
5690 return(NULL);
5691 }
5692 return(ret);
5693}
5694
5695static xmlSchemaSubstGroupPtr
5696xmlSchemaSubstGroupGet(xmlSchemaParserCtxtPtr pctxt,
5697 xmlSchemaElementPtr head)
5698{
5699 if (WXS_SUBST_GROUPS(pctxt) == NULL)
5700 return(NULL);
5701 return(xmlHashLookup2(WXS_SUBST_GROUPS(pctxt),
5702 head->name, head->targetNamespace));
5703
5704}
5705
5706/**
5707 * xmlSchemaAddElementSubstitutionMember:
5708 * @pctxt: a schema parser context
5709 * @head: the head of the substitution group
5710 * @member: the new member of the substitution group
5711 *
5712 * Allocate a new annotation structure.
5713 *
5714 * Returns the newly allocated structure or NULL in case or error
5715 */
5716static int
5717xmlSchemaAddElementSubstitutionMember(xmlSchemaParserCtxtPtr pctxt,
5718 xmlSchemaElementPtr head,
5719 xmlSchemaElementPtr member)
5720{
5721 xmlSchemaSubstGroupPtr substGroup = NULL;
5722
5723 if ((pctxt == NULL) || (head == NULL) || (member == NULL))
5724 return (-1);
5725
5726 substGroup = xmlSchemaSubstGroupGet(pctxt, head);
5727 if (substGroup == NULL)
5728 substGroup = xmlSchemaSubstGroupAdd(pctxt, head);
5729 if (substGroup == NULL)
5730 return(-1);
5731 if (xmlSchemaItemListAdd(substGroup->members, member) == -1)
5732 return(-1);
5733 return(0);
5734}
5735
Daniel Veillard4255d502002-04-16 15:50:10 +00005736/************************************************************************
5737 * *
5738 * Utilities for parsing *
5739 * *
5740 ************************************************************************/
5741
Daniel Veillard4255d502002-04-16 15:50:10 +00005742/**
Daniel Veillardc0826a72004-08-10 14:17:33 +00005743 * xmlSchemaPValAttrNodeQNameValue:
5744 * @ctxt: a schema parser context
5745 * @schema: the schema context
5746 * @ownerDes: the designation of the parent element
5747 * @ownerItem: the parent as a schema object
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005748 * @value: the QName value
Daniel Veillardc0826a72004-08-10 14:17:33 +00005749 * @local: the resulting local part if found, the attribute value otherwise
5750 * @uri: the resulting namespace URI if found
5751 *
5752 * Extracts the local name and the URI of a QName value and validates it.
5753 * This one is intended to be used on attribute values that
5754 * should resolve to schema components.
5755 *
5756 * Returns 0, in case the QName is valid, a positive error code
5757 * if not valid and -1 if an internal error occurs.
5758 */
5759static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005760xmlSchemaPValAttrNodeQNameValue(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005761 xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005762 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005763 xmlAttrPtr attr,
5764 const xmlChar *value,
5765 const xmlChar **uri,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005766 const xmlChar **local)
5767{
5768 const xmlChar *pref;
5769 xmlNsPtr ns;
5770 int len, ret;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005771
Daniel Veillardc0826a72004-08-10 14:17:33 +00005772 *uri = NULL;
5773 *local = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00005774 ret = xmlValidateQName(value, 1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005775 if (ret > 0) {
5776 xmlSchemaPSimpleTypeErr(ctxt,
5777 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
5778 ownerItem, (xmlNodePtr) attr,
5779 xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME),
5780 NULL, value, NULL, NULL, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005781 *local = value;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005782 return (ctxt->err);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005783 } else if (ret < 0)
5784 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005785
5786 if (!strchr((char *) value, ':')) {
Daniel Veillard24505b02005-07-28 23:49:35 +00005787 ns = xmlSearchNs(attr->doc, attr->parent, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005788 if (ns)
5789 *uri = xmlDictLookup(ctxt->dict, ns->href, -1);
5790 else if (schema->flags & XML_SCHEMAS_INCLUDING_CONVERT_NS) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005791 /* TODO: move XML_SCHEMAS_INCLUDING_CONVERT_NS to the
5792 * parser context. */
Daniel Veillardc0826a72004-08-10 14:17:33 +00005793 /*
5794 * This one takes care of included schemas with no
5795 * target namespace.
5796 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00005797 *uri = ctxt->targetNamespace;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005798 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00005799 *local = xmlDictLookup(ctxt->dict, value, -1);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005800 return (0);
5801 }
5802 /*
5803 * At this point xmlSplitQName3 has to return a local name.
5804 */
5805 *local = xmlSplitQName3(value, &len);
5806 *local = xmlDictLookup(ctxt->dict, *local, -1);
5807 pref = xmlDictLookup(ctxt->dict, value, len);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005808 ns = xmlSearchNs(attr->doc, attr->parent, pref);
5809 if (ns == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005810 xmlSchemaPSimpleTypeErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005811 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005812 ownerItem, (xmlNodePtr) attr,
5813 xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), NULL, value,
5814 "The value '%s' of simple type 'xs:QName' has no "
5815 "corresponding namespace declaration in scope", value, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005816 return (ctxt->err);
5817 } else {
5818 *uri = xmlDictLookup(ctxt->dict, ns->href, -1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005819 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00005820 return (0);
5821}
5822
5823/**
5824 * xmlSchemaPValAttrNodeQName:
5825 * @ctxt: a schema parser context
5826 * @schema: the schema context
5827 * @ownerDes: the designation of the owner element
5828 * @ownerItem: the owner as a schema object
5829 * @attr: the attribute node
5830 * @local: the resulting local part if found, the attribute value otherwise
5831 * @uri: the resulting namespace URI if found
5832 *
5833 * Extracts and validates the QName of an attribute value.
5834 * This one is intended to be used on attribute values that
5835 * should resolve to schema components.
5836 *
5837 * Returns 0, in case the QName is valid, a positive error code
5838 * if not valid and -1 if an internal error occurs.
5839 */
5840static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005841xmlSchemaPValAttrNodeQName(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005842 xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005843 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005844 xmlAttrPtr attr,
5845 const xmlChar **uri,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005846 const xmlChar **local)
5847{
5848 const xmlChar *value;
5849
5850 value = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005851 return (xmlSchemaPValAttrNodeQNameValue(ctxt, schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005852 ownerItem, attr, value, uri, local));
Daniel Veillardc0826a72004-08-10 14:17:33 +00005853}
5854
5855/**
5856 * xmlSchemaPValAttrQName:
5857 * @ctxt: a schema parser context
5858 * @schema: the schema context
5859 * @ownerDes: the designation of the parent element
5860 * @ownerItem: the owner as a schema object
5861 * @ownerElem: the parent node of the attribute
5862 * @name: the name of the attribute
5863 * @local: the resulting local part if found, the attribute value otherwise
5864 * @uri: the resulting namespace URI if found
5865 *
5866 * Extracts and validates the QName of an attribute value.
5867 *
5868 * Returns 0, in case the QName is valid, a positive error code
5869 * if not valid and -1 if an internal error occurs.
5870 */
5871static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005872xmlSchemaPValAttrQName(xmlSchemaParserCtxtPtr ctxt,
5873 xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005874 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005875 xmlNodePtr ownerElem,
5876 const char *name,
5877 const xmlChar **uri,
Daniel Veillardc0826a72004-08-10 14:17:33 +00005878 const xmlChar **local)
5879{
5880 xmlAttrPtr attr;
5881
5882 attr = xmlSchemaGetPropNode(ownerElem, name);
5883 if (attr == NULL) {
5884 *local = NULL;
5885 *uri = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005886 return (0);
Daniel Veillardc0826a72004-08-10 14:17:33 +00005887 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005888 return (xmlSchemaPValAttrNodeQName(ctxt, schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005889 ownerItem, attr, uri, local));
Daniel Veillardc0826a72004-08-10 14:17:33 +00005890}
5891
5892/**
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005893 * xmlSchemaPValAttrID:
5894 * @ctxt: a schema parser context
5895 * @schema: the schema context
5896 * @ownerDes: the designation of the parent element
5897 * @ownerItem: the owner as a schema object
5898 * @ownerElem: the parent node of the attribute
5899 * @name: the name of the attribute
5900 *
5901 * Extracts and validates the ID of an attribute value.
5902 *
5903 * Returns 0, in case the ID is valid, a positive error code
5904 * if not valid and -1 if an internal error occurs.
5905 */
5906static int
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005907xmlSchemaPValAttrNodeID(xmlSchemaParserCtxtPtr ctxt, xmlAttrPtr attr)
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005908{
5909 int ret;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005910 const xmlChar *value;
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005911
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005912 if (attr == NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005913 return(0);
5914 value = xmlSchemaGetNodeContentNoDict((xmlNodePtr) attr);
5915 ret = xmlValidateNCName(value, 1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005916 if (ret == 0) {
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005917 /*
5918 * NOTE: the IDness might have already be declared in the DTD
5919 */
5920 if (attr->atype != XML_ATTRIBUTE_ID) {
5921 xmlIDPtr res;
5922 xmlChar *strip;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005923
5924 /*
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005925 * TODO: Use xmlSchemaStrip here; it's not exported at this
5926 * moment.
5927 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005928 strip = xmlSchemaCollapseString(value);
5929 if (strip != NULL) {
5930 xmlFree((xmlChar *) value);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005931 value = strip;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005932 }
5933 res = xmlAddID(NULL, attr->doc, value, attr);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005934 if (res == NULL) {
5935 ret = XML_SCHEMAP_S4S_ATTR_INVALID_VALUE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005936 xmlSchemaPSimpleTypeErr(ctxt,
5937 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005938 NULL, (xmlNodePtr) attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005939 xmlSchemaGetBuiltInType(XML_SCHEMAS_ID),
5940 NULL, NULL, "Duplicate value '%s' of simple "
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005941 "type 'xs:ID'", value, NULL);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005942 } else
5943 attr->atype = XML_ATTRIBUTE_ID;
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005944 }
5945 } else if (ret > 0) {
5946 ret = XML_SCHEMAP_S4S_ATTR_INVALID_VALUE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005947 xmlSchemaPSimpleTypeErr(ctxt,
5948 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005949 NULL, (xmlNodePtr) attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005950 xmlSchemaGetBuiltInType(XML_SCHEMAS_ID),
5951 NULL, NULL, "The value '%s' of simple type 'xs:ID' is "
5952 "not a valid 'xs:NCName'",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005953 value, NULL);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005954 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005955 if (value != NULL)
5956 xmlFree((xmlChar *)value);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005957
5958 return (ret);
5959}
5960
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00005961static int
5962xmlSchemaPValAttrID(xmlSchemaParserCtxtPtr ctxt,
5963 xmlNodePtr ownerElem,
5964 const xmlChar *name)
5965{
5966 xmlAttrPtr attr;
5967
5968 attr = xmlSchemaGetPropNode(ownerElem, (const char *) name);
5969 if (attr == NULL)
5970 return(0);
5971 return(xmlSchemaPValAttrNodeID(ctxt, attr));
5972
5973}
5974
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +00005975/**
Daniel Veillard4255d502002-04-16 15:50:10 +00005976 * xmlGetMaxOccurs:
5977 * @ctxt: a schema validation context
5978 * @node: a subtree containing XML Schema informations
5979 *
5980 * Get the maxOccurs property
5981 *
5982 * Returns the default if not found, or the value
5983 */
5984static int
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00005985xmlGetMaxOccurs(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node,
5986 int min, int max, int def, const char *expected)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00005987{
Daniel Veillardbe9c6322003-11-22 20:37:51 +00005988 const xmlChar *val, *cur;
Daniel Veillard4255d502002-04-16 15:50:10 +00005989 int ret = 0;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00005990 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +00005991
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00005992 attr = xmlSchemaGetPropNode(node, "maxOccurs");
5993 if (attr == NULL)
5994 return (def);
5995 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Daniel Veillard4255d502002-04-16 15:50:10 +00005996
5997 if (xmlStrEqual(val, (const xmlChar *) "unbounded")) {
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00005998 if (max != UNBOUNDED) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00005999 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006000 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
6001 /* XML_SCHEMAP_INVALID_MINOCCURS, */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006002 NULL, (xmlNodePtr) attr, NULL, expected,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006003 val, NULL, NULL, NULL);
6004 return (def);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006005 } else
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006006 return (UNBOUNDED); /* encoding it with -1 might be another option */
Daniel Veillard4255d502002-04-16 15:50:10 +00006007 }
6008
6009 cur = val;
William M. Brack76e95df2003-10-18 16:20:14 +00006010 while (IS_BLANK_CH(*cur))
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006011 cur++;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006012 if (*cur == 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006013 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006014 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
6015 /* XML_SCHEMAP_INVALID_MINOCCURS, */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006016 NULL, (xmlNodePtr) attr, NULL, expected,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006017 val, NULL, NULL, NULL);
6018 return (def);
6019 }
Daniel Veillard4255d502002-04-16 15:50:10 +00006020 while ((*cur >= '0') && (*cur <= '9')) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006021 ret = ret * 10 + (*cur - '0');
6022 cur++;
Daniel Veillard4255d502002-04-16 15:50:10 +00006023 }
William M. Brack76e95df2003-10-18 16:20:14 +00006024 while (IS_BLANK_CH(*cur))
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006025 cur++;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006026 /*
6027 * TODO: Restrict the maximal value to Integer.
6028 */
6029 if ((*cur != 0) || (ret < min) || ((max != -1) && (ret > max))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006030 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006031 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
6032 /* XML_SCHEMAP_INVALID_MINOCCURS, */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006033 NULL, (xmlNodePtr) attr, NULL, expected,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006034 val, NULL, NULL, NULL);
6035 return (def);
Daniel Veillard4255d502002-04-16 15:50:10 +00006036 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006037 return (ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00006038}
6039
6040/**
6041 * xmlGetMinOccurs:
6042 * @ctxt: a schema validation context
6043 * @node: a subtree containing XML Schema informations
6044 *
6045 * Get the minOccurs property
6046 *
6047 * Returns the default if not found, or the value
6048 */
6049static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006050xmlGetMinOccurs(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006051 int min, int max, int def, const char *expected)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006052{
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006053 const xmlChar *val, *cur;
Daniel Veillard4255d502002-04-16 15:50:10 +00006054 int ret = 0;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006055 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +00006056
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006057 attr = xmlSchemaGetPropNode(node, "minOccurs");
6058 if (attr == NULL)
6059 return (def);
6060 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Daniel Veillard4255d502002-04-16 15:50:10 +00006061 cur = val;
William M. Brack76e95df2003-10-18 16:20:14 +00006062 while (IS_BLANK_CH(*cur))
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006063 cur++;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006064 if (*cur == 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006065 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006066 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
6067 /* XML_SCHEMAP_INVALID_MINOCCURS, */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006068 NULL, (xmlNodePtr) attr, NULL, expected,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006069 val, NULL, NULL, NULL);
6070 return (def);
6071 }
Daniel Veillard4255d502002-04-16 15:50:10 +00006072 while ((*cur >= '0') && (*cur <= '9')) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006073 ret = ret * 10 + (*cur - '0');
6074 cur++;
Daniel Veillard4255d502002-04-16 15:50:10 +00006075 }
William M. Brack76e95df2003-10-18 16:20:14 +00006076 while (IS_BLANK_CH(*cur))
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006077 cur++;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006078 /*
6079 * TODO: Restrict the maximal value to Integer.
6080 */
6081 if ((*cur != 0) || (ret < min) || ((max != -1) && (ret > max))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006082 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006083 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
6084 /* XML_SCHEMAP_INVALID_MINOCCURS, */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006085 NULL, (xmlNodePtr) attr, NULL, expected,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006086 val, NULL, NULL, NULL);
6087 return (def);
Daniel Veillard4255d502002-04-16 15:50:10 +00006088 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006089 return (ret);
Daniel Veillard4255d502002-04-16 15:50:10 +00006090}
6091
6092/**
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006093 * xmlSchemaPGetBoolNodeValue:
6094 * @ctxt: a schema validation context
6095 * @ownerDes: owner designation
6096 * @ownerItem: the owner as a schema item
6097 * @node: the node holding the value
6098 *
6099 * Converts a boolean string value into 1 or 0.
6100 *
6101 * Returns 0 or 1.
6102 */
6103static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006104xmlSchemaPGetBoolNodeValue(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006105 xmlSchemaBasicItemPtr ownerItem,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006106 xmlNodePtr node)
6107{
6108 xmlChar *value = NULL;
6109 int res = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006110
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006111 value = xmlNodeGetContent(node);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006112 /*
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006113 * 3.2.2.1 Lexical representation
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006114 * An instance of a datatype that is defined as ·boolean·
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006115 * can have the following legal literals {true, false, 1, 0}.
6116 */
6117 if (xmlStrEqual(BAD_CAST value, BAD_CAST "true"))
6118 res = 1;
6119 else if (xmlStrEqual(BAD_CAST value, BAD_CAST "false"))
6120 res = 0;
6121 else if (xmlStrEqual(BAD_CAST value, BAD_CAST "1"))
6122 res = 1;
6123 else if (xmlStrEqual(BAD_CAST value, BAD_CAST "0"))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006124 res = 0;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006125 else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006126 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006127 XML_SCHEMAP_INVALID_BOOLEAN,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006128 ownerItem, node,
6129 xmlSchemaGetBuiltInType(XML_SCHEMAS_BOOLEAN),
6130 NULL, BAD_CAST value,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00006131 NULL, NULL, NULL);
6132 }
6133 if (value != NULL)
6134 xmlFree(value);
6135 return (res);
6136}
6137
6138/**
Daniel Veillard4255d502002-04-16 15:50:10 +00006139 * xmlGetBooleanProp:
6140 * @ctxt: a schema validation context
6141 * @node: a subtree containing XML Schema informations
6142 * @name: the attribute name
6143 * @def: the default value
6144 *
Daniel Veillardc0826a72004-08-10 14:17:33 +00006145 * Evaluate if a boolean property is set
Daniel Veillard4255d502002-04-16 15:50:10 +00006146 *
6147 * Returns the default if not found, 0 if found to be false,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006148 * 1 if found to be true
Daniel Veillard4255d502002-04-16 15:50:10 +00006149 */
6150static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006151xmlGetBooleanProp(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006152 xmlNodePtr node,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006153 const char *name, int def)
6154{
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006155 const xmlChar *val;
Daniel Veillard4255d502002-04-16 15:50:10 +00006156
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006157 val = xmlSchemaGetProp(ctxt, node, name);
Daniel Veillard4255d502002-04-16 15:50:10 +00006158 if (val == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006159 return (def);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006160 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00006161 * 3.2.2.1 Lexical representation
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006162 * An instance of a datatype that is defined as ·boolean·
Daniel Veillardc0826a72004-08-10 14:17:33 +00006163 * can have the following legal literals {true, false, 1, 0}.
6164 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006165 if (xmlStrEqual(val, BAD_CAST "true"))
6166 def = 1;
6167 else if (xmlStrEqual(val, BAD_CAST "false"))
6168 def = 0;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006169 else if (xmlStrEqual(val, BAD_CAST "1"))
6170 def = 1;
6171 else if (xmlStrEqual(val, BAD_CAST "0"))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006172 def = 0;
6173 else {
6174 xmlSchemaPSimpleTypeErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006175 XML_SCHEMAP_INVALID_BOOLEAN,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006176 NULL,
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +00006177 (xmlNodePtr) xmlSchemaGetPropNode(node, name),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006178 xmlSchemaGetBuiltInType(XML_SCHEMAS_BOOLEAN),
6179 NULL, val, NULL, NULL, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00006180 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006181 return (def);
Daniel Veillard4255d502002-04-16 15:50:10 +00006182}
6183
6184/************************************************************************
6185 * *
6186 * Shema extraction from an Infoset *
6187 * *
6188 ************************************************************************/
6189static xmlSchemaTypePtr xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr
6190 ctxt, xmlSchemaPtr schema,
Daniel Veillard3646d642004-06-02 19:19:14 +00006191 xmlNodePtr node,
6192 int topLevel);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006193static xmlSchemaTypePtr xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr
6194 ctxt,
Daniel Veillard4255d502002-04-16 15:50:10 +00006195 xmlSchemaPtr schema,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006196 xmlNodePtr node,
Daniel Veillard3646d642004-06-02 19:19:14 +00006197 int topLevel);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006198static xmlSchemaTypePtr xmlSchemaParseRestriction(xmlSchemaParserCtxtPtr
6199 ctxt,
Daniel Veillard4255d502002-04-16 15:50:10 +00006200 xmlSchemaPtr schema,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006201 xmlNodePtr node,
6202 xmlSchemaTypeType parentType);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006203static xmlSchemaBasicItemPtr
6204xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt,
6205 xmlSchemaPtr schema,
6206 xmlNodePtr node,
6207 xmlSchemaItemListPtr uses,
6208 int parentType);
Daniel Veillard4255d502002-04-16 15:50:10 +00006209static xmlSchemaTypePtr xmlSchemaParseList(xmlSchemaParserCtxtPtr ctxt,
6210 xmlSchemaPtr schema,
6211 xmlNodePtr node);
Daniel Veillard3646d642004-06-02 19:19:14 +00006212static xmlSchemaWildcardPtr
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006213xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt,
6214 xmlSchemaPtr schema, xmlNodePtr node);
Daniel Veillard4255d502002-04-16 15:50:10 +00006215
6216/**
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00006217 * xmlSchemaPValAttrNodeValue:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006218 *
Daniel Veillard01fa6152004-06-29 17:04:39 +00006219 * @ctxt: a schema parser context
Daniel Veillardc0826a72004-08-10 14:17:33 +00006220 * @ownerDes: the designation of the parent element
6221 * @ownerItem: the schema object owner if existent
6222 * @attr: the schema attribute node being validated
6223 * @value: the value
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006224 * @type: the built-in type to be validated against
Daniel Veillard01fa6152004-06-29 17:04:39 +00006225 *
6226 * Validates a value against the given built-in type.
6227 * This one is intended to be used internally for validation
6228 * of schema attribute values during parsing of the schema.
6229 *
6230 * Returns 0 if the value is valid, a positive error code
6231 * number otherwise and -1 in case of an internal or API error.
6232 */
6233static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006234xmlSchemaPValAttrNodeValue(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006235 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006236 xmlAttrPtr attr,
6237 const xmlChar *value,
6238 xmlSchemaTypePtr type)
Daniel Veillard01fa6152004-06-29 17:04:39 +00006239{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006240
6241 int ret = 0;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006242
6243 /*
6244 * NOTE: Should we move this to xmlschematypes.c? Hmm, but this
6245 * one is really meant to be used internally, so better not.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006246 */
6247 if ((pctxt == NULL) || (type == NULL) || (attr == NULL))
Daniel Veillard01fa6152004-06-29 17:04:39 +00006248 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006249 if (type->type != XML_SCHEMA_TYPE_BASIC) {
6250 PERROR_INT("xmlSchemaPValAttrNodeValue",
6251 "the given type is not a built-in type");
6252 return (-1);
6253 }
Daniel Veillard01fa6152004-06-29 17:04:39 +00006254 switch (type->builtInType) {
6255 case XML_SCHEMAS_NCNAME:
Kasimier T. Buchcik91feaf82004-11-12 14:04:58 +00006256 case XML_SCHEMAS_QNAME:
6257 case XML_SCHEMAS_ANYURI:
6258 case XML_SCHEMAS_TOKEN:
6259 case XML_SCHEMAS_LANGUAGE:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006260 ret = xmlSchemaValPredefTypeNode(type, value, NULL,
6261 (xmlNodePtr) attr);
Kasimier T. Buchcik91feaf82004-11-12 14:04:58 +00006262 break;
Daniel Veillard01fa6152004-06-29 17:04:39 +00006263 default: {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006264 PERROR_INT("xmlSchemaPValAttrNodeValue",
Kasimier T. Buchcik69dea3a2005-11-07 14:02:44 +00006265 "validation using the given type is not supported while "
6266 "parsing a schema");
Daniel Veillard01fa6152004-06-29 17:04:39 +00006267 return (-1);
6268 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006269 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00006270 /*
6271 * TODO: Should we use the S4S error codes instead?
6272 */
Kasimier T. Buchcik91feaf82004-11-12 14:04:58 +00006273 if (ret < 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006274 PERROR_INT("xmlSchemaPValAttrNodeValue",
6275 "failed to validate a schema attribute value");
Kasimier T. Buchcik91feaf82004-11-12 14:04:58 +00006276 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006277 } else if (ret > 0) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006278 if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006279 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2;
6280 else
6281 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1;
6282 xmlSchemaPSimpleTypeErr(pctxt,
6283 ret, ownerItem, (xmlNodePtr) attr,
6284 type, NULL, value, NULL, NULL, NULL);
6285 }
Daniel Veillard01fa6152004-06-29 17:04:39 +00006286 return (ret);
6287}
6288
6289/**
Daniel Veillardc0826a72004-08-10 14:17:33 +00006290 * xmlSchemaPValAttrNode:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006291 *
Daniel Veillardc0826a72004-08-10 14:17:33 +00006292 * @ctxt: a schema parser context
6293 * @ownerDes: the designation of the parent element
6294 * @ownerItem: the schema object owner if existent
6295 * @attr: the schema attribute node being validated
6296 * @type: the built-in type to be validated against
6297 * @value: the resulting value if any
6298 *
6299 * Extracts and validates a value against the given built-in type.
6300 * This one is intended to be used internally for validation
6301 * of schema attribute values during parsing of the schema.
6302 *
6303 * Returns 0 if the value is valid, a positive error code
6304 * number otherwise and -1 in case of an internal or API error.
6305 */
6306static int
6307xmlSchemaPValAttrNode(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006308 xmlSchemaBasicItemPtr ownerItem,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006309 xmlAttrPtr attr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006310 xmlSchemaTypePtr type,
6311 const xmlChar **value)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006312{
Daniel Veillardc0826a72004-08-10 14:17:33 +00006313 const xmlChar *val;
6314
6315 if ((ctxt == NULL) || (type == NULL) || (attr == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006316 return (-1);
6317
Daniel Veillardc0826a72004-08-10 14:17:33 +00006318 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
6319 if (value != NULL)
6320 *value = val;
6321
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006322 return (xmlSchemaPValAttrNodeValue(ctxt, ownerItem, attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006323 val, type));
Daniel Veillardc0826a72004-08-10 14:17:33 +00006324}
6325
6326/**
6327 * xmlSchemaPValAttr:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006328 *
Daniel Veillardc0826a72004-08-10 14:17:33 +00006329 * @ctxt: a schema parser context
6330 * @node: the element node of the attribute
6331 * @ownerDes: the designation of the parent element
6332 * @ownerItem: the schema object owner if existent
6333 * @ownerElem: the owner element node
6334 * @name: the name of the schema attribute node
6335 * @type: the built-in type to be validated against
6336 * @value: the resulting value if any
6337 *
6338 * Extracts and validates a value against the given built-in type.
6339 * This one is intended to be used internally for validation
6340 * of schema attribute values during parsing of the schema.
6341 *
6342 * Returns 0 if the value is valid, a positive error code
6343 * number otherwise and -1 in case of an internal or API error.
6344 */
6345static int
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006346xmlSchemaPValAttr(xmlSchemaParserCtxtPtr ctxt,
6347 xmlSchemaBasicItemPtr ownerItem,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006348 xmlNodePtr ownerElem,
6349 const char *name,
6350 xmlSchemaTypePtr type,
6351 const xmlChar **value)
6352{
6353 xmlAttrPtr attr;
6354
6355 if ((ctxt == NULL) || (type == NULL)) {
6356 if (value != NULL)
6357 *value = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006358 return (-1);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006359 }
6360 if (type->type != XML_SCHEMA_TYPE_BASIC) {
6361 if (value != NULL)
6362 *value = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006363 xmlSchemaPErr(ctxt, ownerElem,
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +00006364 XML_SCHEMAP_INTERNAL,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006365 "Internal error: xmlSchemaPValAttr, the given "
6366 "type '%s' is not a built-in type.\n",
6367 type->name, NULL);
6368 return (-1);
6369 }
6370 attr = xmlSchemaGetPropNode(ownerElem, name);
6371 if (attr == NULL) {
6372 if (value != NULL)
6373 *value = NULL;
6374 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006375 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006376 return (xmlSchemaPValAttrNode(ctxt, ownerItem, attr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006377 type, value));
6378}
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00006379
6380static int
6381xmlSchemaCheckReference(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006382 xmlSchemaPtr schema ATTRIBUTE_UNUSED,
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00006383 xmlNodePtr node,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006384 xmlAttrPtr attr,
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00006385 const xmlChar *namespaceName)
6386{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006387 /* TODO: Pointer comparison instead? */
6388 if (xmlStrEqual(pctxt->targetNamespace, namespaceName))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006389 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006390 if (xmlStrEqual(xmlSchemaNs, namespaceName))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006391 return (0);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006392 /*
6393 * Check if the referenced namespace was <import>ed.
6394 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006395 if (WXS_BUCKET(pctxt)->relations != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006396 xmlSchemaSchemaRelationPtr rel;
6397
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006398 rel = WXS_BUCKET(pctxt)->relations;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006399 do {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006400 if (WXS_IS_BUCKET_IMPMAIN(rel->type) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006401 xmlStrEqual(namespaceName, rel->importNamespace))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006402 return (0);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006403 rel = rel->next;
6404 } while (rel != NULL);
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00006405 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006406 /*
6407 * No matching <import>ed namespace found.
6408 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006409 {
6410 xmlNodePtr n = (attr != NULL) ? (xmlNodePtr) attr : node;
6411
6412 if (namespaceName == NULL)
6413 xmlSchemaCustomErr(ACTXT_CAST pctxt,
6414 XML_SCHEMAP_SRC_RESOLVE, n, NULL,
6415 "References from this schema to components in no "
6416 "namespace are not allowed, since not indicated by an "
6417 "import statement", NULL, NULL);
6418 else
6419 xmlSchemaCustomErr(ACTXT_CAST pctxt,
6420 XML_SCHEMAP_SRC_RESOLVE, n, NULL,
6421 "References from this schema to components in the "
6422 "namespace '%s' are not allowed, since not indicated by an "
6423 "import statement", namespaceName, NULL);
6424 }
6425 return (XML_SCHEMAP_SRC_RESOLVE);
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00006426}
6427
Daniel Veillardc0826a72004-08-10 14:17:33 +00006428/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006429 * xmlSchemaParseLocalAttributes:
Daniel Veillard4255d502002-04-16 15:50:10 +00006430 * @ctxt: a schema validation context
6431 * @schema: the schema being built
6432 * @node: a subtree containing XML Schema informations
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006433 * @type: the hosting type where the attributes will be anchored
Daniel Veillard4255d502002-04-16 15:50:10 +00006434 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006435 * Parses attribute uses and attribute declarations and
6436 * attribute group references.
Daniel Veillard4255d502002-04-16 15:50:10 +00006437 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006438static int
6439xmlSchemaParseLocalAttributes(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
6440 xmlNodePtr *child, xmlSchemaItemListPtr *list,
6441 int parentType, int *hasRefs)
Daniel Veillard4255d502002-04-16 15:50:10 +00006442{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006443 void *item;
Daniel Veillard4255d502002-04-16 15:50:10 +00006444
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006445 while ((IS_SCHEMA((*child), "attribute")) ||
6446 (IS_SCHEMA((*child), "attributeGroup"))) {
6447 if (IS_SCHEMA((*child), "attribute")) {
6448 item = xmlSchemaParseLocalAttribute(ctxt, schema, *child,
6449 *list, parentType);
6450 } else {
6451 item = xmlSchemaParseAttributeGroupRef(ctxt, schema, *child);
6452 if ((item != NULL) && (hasRefs != NULL))
6453 *hasRefs = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006454 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006455 if (item != NULL) {
6456 if (*list == NULL) {
6457 /* TODO: Customize grow factor. */
6458 *list = xmlSchemaItemListCreate();
6459 if (*list == NULL)
6460 return(-1);
6461 }
6462 if (xmlSchemaItemListAddSize(*list, 2, item) == -1)
6463 return(-1);
6464 }
6465 *child = (*child)->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006466 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006467 return (0);
Daniel Veillard4255d502002-04-16 15:50:10 +00006468}
6469
6470/**
6471 * xmlSchemaParseAnnotation:
6472 * @ctxt: a schema validation context
6473 * @schema: the schema being built
6474 * @node: a subtree containing XML Schema informations
6475 *
6476 * parse a XML schema Attrribute declaration
6477 * *WARNING* this interface is highly subject to change
6478 *
William M. Bracke7091952004-05-11 15:09:58 +00006479 * Returns -1 in case of error, 0 if the declaration is improper and
Daniel Veillard4255d502002-04-16 15:50:10 +00006480 * 1 in case of success.
6481 */
6482static xmlSchemaAnnotPtr
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00006483xmlSchemaParseAnnotation(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, int needed)
Daniel Veillard4255d502002-04-16 15:50:10 +00006484{
6485 xmlSchemaAnnotPtr ret;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006486 xmlNodePtr child = NULL;
6487 xmlAttrPtr attr;
6488 int barked = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +00006489
Daniel Veillardc0826a72004-08-10 14:17:33 +00006490 /*
6491 * INFO: S4S completed.
6492 */
6493 /*
6494 * id = ID
6495 * {any attributes with non-schema namespace . . .}>
6496 * Content: (appinfo | documentation)*
6497 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00006498 if ((ctxt == NULL) || (node == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00006499 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006500 if (needed)
6501 ret = xmlSchemaNewAnnot(ctxt, node);
6502 else
6503 ret = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006504 attr = node->properties;
6505 while (attr != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006506 if (((attr->ns == NULL) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00006507 (!xmlStrEqual(attr->name, BAD_CAST "id"))) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006508 ((attr->ns != NULL) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00006509 xmlStrEqual(attr->ns->href, xmlSchemaNs))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006510
6511 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006512 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006513 }
6514 attr = attr->next;
6515 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006516 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Daniel Veillardc0826a72004-08-10 14:17:33 +00006517 /*
6518 * And now for the children...
6519 */
6520 child = node->children;
6521 while (child != NULL) {
6522 if (IS_SCHEMA(child, "appinfo")) {
6523 /* TODO: make available the content of "appinfo". */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006524 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00006525 * source = anyURI
6526 * {any attributes with non-schema namespace . . .}>
6527 * Content: ({any})*
6528 */
6529 attr = child->properties;
6530 while (attr != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006531 if (((attr->ns == NULL) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00006532 (!xmlStrEqual(attr->name, BAD_CAST "source"))) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006533 ((attr->ns != NULL) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00006534 xmlStrEqual(attr->ns->href, xmlSchemaNs))) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006535
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006536 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006537 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006538 }
6539 attr = attr->next;
6540 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006541 xmlSchemaPValAttr(ctxt, NULL, child, "source",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006542 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006543 child = child->next;
6544 } else if (IS_SCHEMA(child, "documentation")) {
6545 /* TODO: make available the content of "documentation". */
6546 /*
6547 * source = anyURI
6548 * {any attributes with non-schema namespace . . .}>
6549 * Content: ({any})*
6550 */
6551 attr = child->properties;
6552 while (attr != NULL) {
6553 if (attr->ns == NULL) {
6554 if (!xmlStrEqual(attr->name, BAD_CAST "source")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006555 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006556 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006557 }
6558 } else {
6559 if (xmlStrEqual(attr->ns->href, xmlSchemaNs) ||
6560 (xmlStrEqual(attr->name, BAD_CAST "lang") &&
6561 (!xmlStrEqual(attr->ns->href, XML_XML_NAMESPACE)))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006562
6563 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006564 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006565 }
6566 }
6567 attr = attr->next;
6568 }
6569 /*
6570 * Attribute "xml:lang".
6571 */
6572 attr = xmlSchemaGetPropNodeNs(child, (const char *) XML_XML_NAMESPACE, "lang");
6573 if (attr != NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006574 xmlSchemaPValAttrNode(ctxt, NULL, attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006575 xmlSchemaGetBuiltInType(XML_SCHEMAS_LANGUAGE), NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006576 child = child->next;
6577 } else {
6578 if (!barked)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006579 xmlSchemaPContentErr(ctxt,
6580 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006581 NULL, node, child, NULL, "(appinfo | documentation)*");
Daniel Veillardc0826a72004-08-10 14:17:33 +00006582 barked = 1;
6583 child = child->next;
6584 }
6585 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006586
Daniel Veillard4255d502002-04-16 15:50:10 +00006587 return (ret);
6588}
6589
6590/**
6591 * xmlSchemaParseFacet:
6592 * @ctxt: a schema validation context
6593 * @schema: the schema being built
6594 * @node: a subtree containing XML Schema informations
6595 *
6596 * parse a XML schema Facet declaration
6597 * *WARNING* this interface is highly subject to change
6598 *
6599 * Returns the new type structure or NULL in case of error
6600 */
6601static xmlSchemaFacetPtr
6602xmlSchemaParseFacet(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006603 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00006604{
6605 xmlSchemaFacetPtr facet;
6606 xmlNodePtr child = NULL;
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006607 const xmlChar *value;
Daniel Veillard4255d502002-04-16 15:50:10 +00006608
6609 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
6610 return (NULL);
6611
Daniel Veillard8bc6cf92003-02-27 17:42:22 +00006612 facet = xmlSchemaNewFacet();
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006613 if (facet == NULL) {
6614 xmlSchemaPErrMemory(ctxt, "allocating facet", node);
6615 return (NULL);
6616 }
Daniel Veillard4255d502002-04-16 15:50:10 +00006617 facet->node = node;
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006618 value = xmlSchemaGetProp(ctxt, node, "value");
Daniel Veillard4255d502002-04-16 15:50:10 +00006619 if (value == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006620 xmlSchemaPErr2(ctxt, node, child, XML_SCHEMAP_FACET_NO_VALUE,
6621 "Facet %s has no value\n", node->name, NULL);
6622 xmlSchemaFreeFacet(facet);
Daniel Veillard4255d502002-04-16 15:50:10 +00006623 return (NULL);
6624 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006625 if (IS_SCHEMA(node, "minInclusive")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006626 facet->type = XML_SCHEMA_FACET_MININCLUSIVE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006627 } else if (IS_SCHEMA(node, "minExclusive")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006628 facet->type = XML_SCHEMA_FACET_MINEXCLUSIVE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006629 } else if (IS_SCHEMA(node, "maxInclusive")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006630 facet->type = XML_SCHEMA_FACET_MAXINCLUSIVE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006631 } else if (IS_SCHEMA(node, "maxExclusive")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006632 facet->type = XML_SCHEMA_FACET_MAXEXCLUSIVE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006633 } else if (IS_SCHEMA(node, "totalDigits")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006634 facet->type = XML_SCHEMA_FACET_TOTALDIGITS;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006635 } else if (IS_SCHEMA(node, "fractionDigits")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006636 facet->type = XML_SCHEMA_FACET_FRACTIONDIGITS;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006637 } else if (IS_SCHEMA(node, "pattern")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006638 facet->type = XML_SCHEMA_FACET_PATTERN;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006639 } else if (IS_SCHEMA(node, "enumeration")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006640 facet->type = XML_SCHEMA_FACET_ENUMERATION;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006641 } else if (IS_SCHEMA(node, "whiteSpace")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006642 facet->type = XML_SCHEMA_FACET_WHITESPACE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006643 } else if (IS_SCHEMA(node, "length")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006644 facet->type = XML_SCHEMA_FACET_LENGTH;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006645 } else if (IS_SCHEMA(node, "maxLength")) {
Daniel Veillard4255d502002-04-16 15:50:10 +00006646 facet->type = XML_SCHEMA_FACET_MAXLENGTH;
6647 } else if (IS_SCHEMA(node, "minLength")) {
6648 facet->type = XML_SCHEMA_FACET_MINLENGTH;
6649 } else {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006650 xmlSchemaPErr2(ctxt, node, child, XML_SCHEMAP_UNKNOWN_FACET_TYPE,
6651 "Unknown facet type %s\n", node->name, NULL);
6652 xmlSchemaFreeFacet(facet);
6653 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00006654 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006655 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Daniel Veillard4255d502002-04-16 15:50:10 +00006656 facet->value = value;
Daniel Veillard01fa6152004-06-29 17:04:39 +00006657 if ((facet->type != XML_SCHEMA_FACET_PATTERN) &&
6658 (facet->type != XML_SCHEMA_FACET_ENUMERATION)) {
6659 const xmlChar *fixed;
6660
6661 fixed = xmlSchemaGetProp(ctxt, node, "fixed");
6662 if (fixed != NULL) {
6663 if (xmlStrEqual(fixed, BAD_CAST "true"))
6664 facet->fixed = 1;
6665 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006666 }
Daniel Veillard4255d502002-04-16 15:50:10 +00006667 child = node->children;
6668
6669 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00006670 facet->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006671 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00006672 }
6673 if (child != NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006674 xmlSchemaPErr2(ctxt, node, child, XML_SCHEMAP_UNKNOWN_FACET_CHILD,
6675 "Facet %s has unexpected child content\n",
6676 node->name, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00006677 }
6678 return (facet);
6679}
6680
6681/**
Daniel Veillardc0826a72004-08-10 14:17:33 +00006682 * xmlSchemaParseWildcardNs:
6683 * @ctxt: a schema parser context
6684 * @wildc: the wildcard, already created
6685 * @node: a subtree containing XML Schema informations
6686 *
6687 * Parses the attribute "processContents" and "namespace"
6688 * of a xsd:anyAttribute and xsd:any.
6689 * *WARNING* this interface is highly subject to change
6690 *
6691 * Returns 0 if everything goes fine, a positive error code
6692 * if something is not valid and -1 if an internal error occurs.
6693 */
6694static int
6695xmlSchemaParseWildcardNs(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006696 xmlSchemaPtr schema ATTRIBUTE_UNUSED,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006697 xmlSchemaWildcardPtr wildc,
6698 xmlNodePtr node)
6699{
6700 const xmlChar *pc, *ns, *dictnsItem;
6701 int ret = 0;
6702 xmlChar *nsItem;
6703 xmlSchemaWildcardNsPtr tmp, lastNs = NULL;
6704 xmlAttrPtr attr;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006705
Daniel Veillardc0826a72004-08-10 14:17:33 +00006706 pc = xmlSchemaGetProp(ctxt, node, "processContents");
6707 if ((pc == NULL)
6708 || (xmlStrEqual(pc, (const xmlChar *) "strict"))) {
6709 wildc->processContents = XML_SCHEMAS_ANY_STRICT;
6710 } else if (xmlStrEqual(pc, (const xmlChar *) "skip")) {
6711 wildc->processContents = XML_SCHEMAS_ANY_SKIP;
6712 } else if (xmlStrEqual(pc, (const xmlChar *) "lax")) {
6713 wildc->processContents = XML_SCHEMAS_ANY_LAX;
6714 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006715 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006716 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006717 NULL, node,
6718 NULL, "(strict | skip | lax)", pc,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006719 NULL, NULL, NULL);
6720 wildc->processContents = XML_SCHEMAS_ANY_STRICT;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006721 ret = XML_SCHEMAP_S4S_ATTR_INVALID_VALUE;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006722 }
6723 /*
6724 * Build the namespace constraints.
6725 */
6726 attr = xmlSchemaGetPropNode(node, "namespace");
6727 ns = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +00006728 if ((attr == NULL) || (xmlStrEqual(ns, BAD_CAST "##any")))
Daniel Veillardc0826a72004-08-10 14:17:33 +00006729 wildc->any = 1;
6730 else if (xmlStrEqual(ns, BAD_CAST "##other")) {
6731 wildc->negNsSet = xmlSchemaNewWildcardNsConstraint(ctxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006732 if (wildc->negNsSet == NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00006733 return (-1);
6734 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006735 wildc->negNsSet->value = ctxt->targetNamespace;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006736 } else {
Daniel Veillardc0826a72004-08-10 14:17:33 +00006737 const xmlChar *end, *cur;
6738
6739 cur = ns;
6740 do {
6741 while (IS_BLANK_CH(*cur))
6742 cur++;
6743 end = cur;
6744 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
6745 end++;
6746 if (end == cur)
6747 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006748 nsItem = xmlStrndup(cur, end - cur);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006749 if ((xmlStrEqual(nsItem, BAD_CAST "##other")) ||
6750 (xmlStrEqual(nsItem, BAD_CAST "##any"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006751 xmlSchemaPSimpleTypeErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006752 XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006753 NULL, (xmlNodePtr) attr,
6754 NULL,
6755 "((##any | ##other) | List of (xs:anyURI | "
6756 "(##targetNamespace | ##local)))",
Daniel Veillardc0826a72004-08-10 14:17:33 +00006757 nsItem, NULL, NULL, NULL);
6758 ret = XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER;
6759 } else {
6760 if (xmlStrEqual(nsItem, BAD_CAST "##targetNamespace")) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00006761 dictnsItem = ctxt->targetNamespace;
Daniel Veillardc0826a72004-08-10 14:17:33 +00006762 } else if (xmlStrEqual(nsItem, BAD_CAST "##local")) {
6763 dictnsItem = NULL;
6764 } else {
6765 /*
6766 * Validate the item (anyURI).
6767 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006768 xmlSchemaPValAttrNodeValue(ctxt, NULL, attr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00006769 nsItem, xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI));
6770 dictnsItem = xmlDictLookup(ctxt->dict, nsItem, -1);
6771 }
6772 /*
6773 * Avoid dublicate namespaces.
6774 */
6775 tmp = wildc->nsSet;
6776 while (tmp != NULL) {
6777 if (dictnsItem == tmp->value)
6778 break;
6779 tmp = tmp->next;
6780 }
6781 if (tmp == NULL) {
6782 tmp = xmlSchemaNewWildcardNsConstraint(ctxt);
6783 if (tmp == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006784 xmlFree(nsItem);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006785 return (-1);
6786 }
6787 tmp->value = dictnsItem;
6788 tmp->next = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006789 if (wildc->nsSet == NULL)
Daniel Veillardc0826a72004-08-10 14:17:33 +00006790 wildc->nsSet = tmp;
6791 else
6792 lastNs->next = tmp;
6793 lastNs = tmp;
6794 }
6795
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006796 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00006797 xmlFree(nsItem);
6798 cur = end;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006799 } while (*cur != 0);
Daniel Veillardc0826a72004-08-10 14:17:33 +00006800 }
6801 return (ret);
6802}
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006803
6804static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006805xmlSchemaPCheckParticleCorrect_2(xmlSchemaParserCtxtPtr ctxt,
6806 xmlSchemaParticlePtr item ATTRIBUTE_UNUSED,
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006807 xmlNodePtr node,
6808 int minOccurs,
6809 int maxOccurs) {
6810
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006811 if ((maxOccurs == 0) && ( minOccurs == 0))
6812 return (0);
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006813 if (maxOccurs != UNBOUNDED) {
6814 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006815 * TODO: Maybe we should better not create the particle,
6816 * if min/max is invalid, since it could confuse the build of the
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006817 * content model.
6818 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006819 /*
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006820 * 3.9.6 Schema Component Constraint: Particle Correct
6821 *
6822 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006823 if (maxOccurs < 1) {
6824 /*
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006825 * 2.2 {max occurs} must be greater than or equal to 1.
6826 */
6827 xmlSchemaPCustomAttrErr(ctxt,
6828 XML_SCHEMAP_P_PROPS_CORRECT_2_2,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006829 NULL, NULL,
6830 xmlSchemaGetPropNode(node, "maxOccurs"),
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006831 "The value must be greater than or equal to 1");
6832 return (XML_SCHEMAP_P_PROPS_CORRECT_2_2);
6833 } else if (minOccurs > maxOccurs) {
6834 /*
6835 * 2.1 {min occurs} must not be greater than {max occurs}.
6836 */
6837 xmlSchemaPCustomAttrErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006838 XML_SCHEMAP_P_PROPS_CORRECT_2_1,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006839 NULL, NULL,
6840 xmlSchemaGetPropNode(node, "minOccurs"),
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006841 "The value must not be greater than the value of 'maxOccurs'");
6842 return (XML_SCHEMAP_P_PROPS_CORRECT_2_1);
6843 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006844 }
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006845 return (0);
6846}
6847
Daniel Veillardc0826a72004-08-10 14:17:33 +00006848/**
Daniel Veillard4255d502002-04-16 15:50:10 +00006849 * xmlSchemaParseAny:
6850 * @ctxt: a schema validation context
6851 * @schema: the schema being built
6852 * @node: a subtree containing XML Schema informations
6853 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006854 * Parsea a XML schema <any> element. A particle and wildcard
6855 * will be created (except if minOccurs==maxOccurs==0, in this case
6856 * nothing will be created).
Daniel Veillard4255d502002-04-16 15:50:10 +00006857 * *WARNING* this interface is highly subject to change
6858 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006859 * Returns the particle or NULL in case of error or if minOccurs==maxOccurs==0
Daniel Veillard4255d502002-04-16 15:50:10 +00006860 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006861static xmlSchemaParticlePtr
Daniel Veillard4255d502002-04-16 15:50:10 +00006862xmlSchemaParseAny(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
6863 xmlNodePtr node)
6864{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006865 xmlSchemaParticlePtr particle;
Daniel Veillard4255d502002-04-16 15:50:10 +00006866 xmlNodePtr child = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006867 xmlSchemaWildcardPtr wild;
6868 int min, max;
6869 xmlAttrPtr attr;
6870 xmlSchemaAnnotPtr annot = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00006871
6872 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
6873 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006874 /*
6875 * Check for illegal attributes.
6876 */
6877 attr = node->properties;
6878 while (attr != NULL) {
6879 if (attr->ns == NULL) {
6880 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
6881 (!xmlStrEqual(attr->name, BAD_CAST "minOccurs")) &&
6882 (!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) &&
6883 (!xmlStrEqual(attr->name, BAD_CAST "namespace")) &&
6884 (!xmlStrEqual(attr->name, BAD_CAST "processContents"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006885 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006886 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006887 }
6888 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006889 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006890 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006891 }
6892 attr = attr->next;
6893 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006894 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006895 /*
6896 * minOccurs/maxOccurs.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006897 */
6898 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
6899 "(xs:nonNegativeInteger | unbounded)");
6900 min = xmlGetMinOccurs(ctxt, node, 0, -1, 1,
6901 "xs:nonNegativeInteger");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006902 xmlSchemaPCheckParticleCorrect_2(ctxt, NULL, node, min, max);
6903 /*
6904 * Create & parse the wildcard.
6905 */
6906 wild = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY, node);
6907 if (wild == NULL)
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00006908 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006909 xmlSchemaParseWildcardNs(ctxt, schema, wild, node);
Kasimier T. Buchcik31113c72005-01-13 16:57:20 +00006910 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006911 * And now for the children...
Kasimier T. Buchcik31113c72005-01-13 16:57:20 +00006912 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006913 child = node->children;
Daniel Veillard4255d502002-04-16 15:50:10 +00006914 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00006915 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006916 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00006917 }
6918 if (child != NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006919 xmlSchemaPContentErr(ctxt,
6920 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006921 NULL, node, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006922 NULL, "(annotation?)");
Daniel Veillard4255d502002-04-16 15:50:10 +00006923 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006924 /*
6925 * No component if minOccurs==maxOccurs==0.
6926 */
6927 if ((min == 0) && (max == 0)) {
6928 /* Don't free the wildcard, since it's already on the list. */
6929 return (NULL);
6930 }
6931 /*
6932 * Create the particle.
6933 */
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +00006934 particle = xmlSchemaAddParticle(ctxt, node, min, max);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006935 if (particle == NULL)
6936 return (NULL);
6937 particle->annot = annot;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00006938 particle->children = (xmlSchemaTreeItemPtr) wild;
Daniel Veillard4255d502002-04-16 15:50:10 +00006939
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006940 return (particle);
Daniel Veillard4255d502002-04-16 15:50:10 +00006941}
6942
6943/**
6944 * xmlSchemaParseNotation:
6945 * @ctxt: a schema validation context
6946 * @schema: the schema being built
6947 * @node: a subtree containing XML Schema informations
6948 *
6949 * parse a XML schema Notation declaration
6950 *
6951 * Returns the new structure or NULL in case of error
6952 */
6953static xmlSchemaNotationPtr
6954xmlSchemaParseNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006955 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00006956{
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006957 const xmlChar *name;
Daniel Veillard4255d502002-04-16 15:50:10 +00006958 xmlSchemaNotationPtr ret;
6959 xmlNodePtr child = NULL;
6960
6961 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
6962 return (NULL);
Daniel Veillardbe9c6322003-11-22 20:37:51 +00006963 name = xmlSchemaGetProp(ctxt, node, "name");
Daniel Veillard4255d502002-04-16 15:50:10 +00006964 if (name == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006965 xmlSchemaPErr2(ctxt, node, child, XML_SCHEMAP_NOTATION_NO_NAME,
6966 "Notation has no name\n", NULL, NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00006967 return (NULL);
6968 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006969 ret = xmlSchemaAddNotation(ctxt, schema, name,
6970 ctxt->targetNamespace, node);
6971 if (ret == NULL)
Daniel Veillard4255d502002-04-16 15:50:10 +00006972 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006973 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikff858ca2005-02-18 11:37:58 +00006974
Daniel Veillard4255d502002-04-16 15:50:10 +00006975 child = node->children;
6976 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00006977 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00006978 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00006979 }
6980 if (child != NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006981 xmlSchemaPContentErr(ctxt,
6982 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00006983 NULL, node, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00006984 NULL, "(annotation?)");
Daniel Veillard4255d502002-04-16 15:50:10 +00006985 }
6986
6987 return (ret);
6988}
6989
6990/**
6991 * xmlSchemaParseAnyAttribute:
6992 * @ctxt: a schema validation context
6993 * @schema: the schema being built
6994 * @node: a subtree containing XML Schema informations
6995 *
6996 * parse a XML schema AnyAttrribute declaration
6997 * *WARNING* this interface is highly subject to change
6998 *
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00006999 * Returns a wildcard or NULL.
Daniel Veillard4255d502002-04-16 15:50:10 +00007000 */
Daniel Veillard3646d642004-06-02 19:19:14 +00007001static xmlSchemaWildcardPtr
Daniel Veillardd0c9c322003-10-10 00:49:42 +00007002xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt,
7003 xmlSchemaPtr schema, xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00007004{
Daniel Veillard3646d642004-06-02 19:19:14 +00007005 xmlSchemaWildcardPtr ret;
Daniel Veillard4255d502002-04-16 15:50:10 +00007006 xmlNodePtr child = NULL;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007007 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +00007008
7009 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
7010 return (NULL);
7011
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00007012 ret = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY_ATTRIBUTE,
7013 node);
Daniel Veillard4255d502002-04-16 15:50:10 +00007014 if (ret == NULL) {
7015 return (NULL);
7016 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007017 /*
7018 * Check for illegal attributes.
7019 */
7020 attr = node->properties;
7021 while (attr != NULL) {
7022 if (attr->ns == NULL) {
7023 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
7024 (!xmlStrEqual(attr->name, BAD_CAST "namespace")) &&
7025 (!xmlStrEqual(attr->name, BAD_CAST "processContents"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007026 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007027 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007028 }
7029 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007030 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007031 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007032 }
7033 attr = attr->next;
7034 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007035 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007036 /*
7037 * Parse the namespace list.
7038 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007039 if (xmlSchemaParseWildcardNs(ctxt, schema, ret, node) != 0)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007040 return (NULL);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007041 /*
7042 * And now for the children...
7043 */
Daniel Veillard4255d502002-04-16 15:50:10 +00007044 child = node->children;
7045 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007046 ret->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00007047 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00007048 }
7049 if (child != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00007050 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007051 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007052 NULL, node, child,
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007053 NULL, "(annotation?)");
Daniel Veillard4255d502002-04-16 15:50:10 +00007054 }
7055
7056 return (ret);
7057}
7058
7059
7060/**
7061 * xmlSchemaParseAttribute:
7062 * @ctxt: a schema validation context
7063 * @schema: the schema being built
7064 * @node: a subtree containing XML Schema informations
7065 *
7066 * parse a XML schema Attrribute declaration
7067 * *WARNING* this interface is highly subject to change
7068 *
William M. Bracke7091952004-05-11 15:09:58 +00007069 * Returns the attribute declaration.
Daniel Veillard4255d502002-04-16 15:50:10 +00007070 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007071static xmlSchemaBasicItemPtr
7072xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt,
7073 xmlSchemaPtr schema,
7074 xmlNodePtr node,
7075 xmlSchemaItemListPtr uses,
7076 int parentType)
Daniel Veillard4255d502002-04-16 15:50:10 +00007077{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007078 const xmlChar *attrValue, *name = NULL, *ns = NULL;
7079 xmlSchemaAttributeUsePtr use = NULL;
7080 xmlNodePtr child = NULL;
7081 xmlAttrPtr attr;
7082 const xmlChar *tmpNs = NULL, *tmpName = NULL, *defValue = NULL;
7083 int isRef = 0, occurs = XML_SCHEMAS_ATTR_USE_OPTIONAL;
7084 int nberrors, hasForm = 0, defValueType = 0;
7085
7086#define WXS_ATTR_DEF_VAL_DEFAULT 1
7087#define WXS_ATTR_DEF_VAL_FIXED 2
7088
7089 /*
7090 * 3.2.3 Constraints on XML Representations of Attribute Declarations
7091 */
7092
7093 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
7094 return (NULL);
7095 attr = xmlSchemaGetPropNode(node, "ref");
7096 if (attr != NULL) {
7097 if (xmlSchemaPValAttrNodeQName(pctxt, schema,
7098 NULL, attr, &tmpNs, &tmpName) != 0) {
7099 return (NULL);
7100 }
7101 if (xmlSchemaCheckReference(pctxt, schema, node, attr, tmpNs) != 0)
7102 return(NULL);
7103 isRef = 1;
7104 }
7105 nberrors = pctxt->nberrors;
7106 /*
7107 * Check for illegal attributes.
7108 */
7109 attr = node->properties;
7110 while (attr != NULL) {
7111 if (attr->ns == NULL) {
7112 if (isRef) {
7113 if (xmlStrEqual(attr->name, BAD_CAST "id")) {
7114 xmlSchemaPValAttrNodeID(pctxt, attr);
7115 goto attr_next;
7116 } else if (xmlStrEqual(attr->name, BAD_CAST "ref")) {
7117 goto attr_next;
7118 }
7119 } else {
7120 if (xmlStrEqual(attr->name, BAD_CAST "name")) {
7121 goto attr_next;
7122 } else if (xmlStrEqual(attr->name, BAD_CAST "id")) {
7123 xmlSchemaPValAttrNodeID(pctxt, attr);
7124 goto attr_next;
7125 } else if (xmlStrEqual(attr->name, BAD_CAST "type")) {
7126 xmlSchemaPValAttrNodeQName(pctxt, schema, NULL,
7127 attr, &tmpNs, &tmpName);
7128 goto attr_next;
7129 } else if (xmlStrEqual(attr->name, BAD_CAST "form")) {
7130 /*
7131 * Evaluate the target namespace
7132 */
7133 hasForm = 1;
7134 attrValue = xmlSchemaGetNodeContent(pctxt,
7135 (xmlNodePtr) attr);
7136 if (xmlStrEqual(attrValue, BAD_CAST "qualified")) {
7137 ns = pctxt->targetNamespace;
7138 } else if (!xmlStrEqual(attrValue, BAD_CAST "unqualified"))
7139 {
7140 xmlSchemaPSimpleTypeErr(pctxt,
7141 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
7142 NULL, (xmlNodePtr) attr,
7143 NULL, "(qualified | unqualified)",
7144 attrValue, NULL, NULL, NULL);
7145 }
7146 goto attr_next;
7147 }
7148 }
7149 if (xmlStrEqual(attr->name, BAD_CAST "use")) {
7150
7151 attrValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr);
7152 /* TODO: Maybe we need to normalize the value beforehand. */
7153 if (xmlStrEqual(attrValue, BAD_CAST "optional"))
7154 occurs = XML_SCHEMAS_ATTR_USE_OPTIONAL;
7155 else if (xmlStrEqual(attrValue, BAD_CAST "prohibited"))
7156 occurs = XML_SCHEMAS_ATTR_USE_PROHIBITED;
7157 else if (xmlStrEqual(attrValue, BAD_CAST "required"))
7158 occurs = XML_SCHEMAS_ATTR_USE_REQUIRED;
7159 else {
7160 xmlSchemaPSimpleTypeErr(pctxt,
7161 XML_SCHEMAP_INVALID_ATTR_USE,
7162 NULL, (xmlNodePtr) attr,
7163 NULL, "(optional | prohibited | required)",
7164 attrValue, NULL, NULL, NULL);
7165 }
7166 goto attr_next;
7167 } else if (xmlStrEqual(attr->name, BAD_CAST "default")) {
7168 /*
7169 * 3.2.3 : 1
7170 * default and fixed must not both be present.
7171 */
7172 if (defValue) {
7173 xmlSchemaPMutualExclAttrErr(pctxt,
7174 XML_SCHEMAP_SRC_ATTRIBUTE_1,
7175 NULL, attr, "default", "fixed");
7176 } else {
7177 defValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr);
7178 defValueType = WXS_ATTR_DEF_VAL_DEFAULT;
7179 }
7180 goto attr_next;
7181 } else if (xmlStrEqual(attr->name, BAD_CAST "fixed")) {
7182 /*
7183 * 3.2.3 : 1
7184 * default and fixed must not both be present.
7185 */
7186 if (defValue) {
7187 xmlSchemaPMutualExclAttrErr(pctxt,
7188 XML_SCHEMAP_SRC_ATTRIBUTE_1,
7189 NULL, attr, "default", "fixed");
7190 } else {
7191 defValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr);
7192 defValueType = WXS_ATTR_DEF_VAL_FIXED;
7193 }
7194 goto attr_next;
7195 }
7196 } else if (! xmlStrEqual(attr->ns->href, xmlSchemaNs))
7197 goto attr_next;
7198
7199 xmlSchemaPIllegalAttrErr(pctxt,
7200 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
7201
7202attr_next:
7203 attr = attr->next;
7204 }
7205 /*
7206 * 3.2.3 : 2
7207 * If default and use are both present, use must have
7208 * the actual value optional.
7209 */
7210 if ((defValueType == WXS_ATTR_DEF_VAL_DEFAULT) &&
7211 (occurs != XML_SCHEMAS_ATTR_USE_OPTIONAL)) {
7212 xmlSchemaPSimpleTypeErr(pctxt,
7213 XML_SCHEMAP_SRC_ATTRIBUTE_2,
7214 NULL, node, NULL,
7215 "(optional | prohibited | required)", NULL,
7216 "The value of the attribute 'use' must be 'optional' "
7217 "if the attribute 'default' is present",
7218 NULL, NULL);
7219 }
7220 /*
7221 * We want correct attributes.
7222 */
7223 if (nberrors != pctxt->nberrors)
7224 return(NULL);
7225 if (! isRef) {
7226 xmlSchemaAttributePtr attrDecl;
7227
7228 /* TODO: move XML_SCHEMAS_QUALIF_ATTR to the parser. */
7229 if ((! hasForm) && (schema->flags & XML_SCHEMAS_QUALIF_ATTR))
7230 ns = pctxt->targetNamespace;
7231 /*
7232 * 3.2.6 Schema Component Constraint: xsi: Not Allowed
7233 * TODO: Move this to the component layer.
7234 */
7235 if (xmlStrEqual(ns, xmlSchemaInstanceNs)) {
7236 xmlSchemaCustomErr(ACTXT_CAST pctxt,
7237 XML_SCHEMAP_NO_XSI,
7238 node, NULL,
7239 "The target namespace must not match '%s'",
7240 xmlSchemaInstanceNs, NULL);
7241 }
7242 attr = xmlSchemaGetPropNode(node, "name");
7243 if (attr == NULL) {
7244 xmlSchemaPMissingAttrErr(pctxt, XML_SCHEMAP_S4S_ATTR_MISSING,
7245 NULL, node, "name", NULL);
7246 return (NULL);
7247 }
7248 if (xmlSchemaPValAttrNode(pctxt, NULL, attr,
7249 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) {
7250 return (NULL);
7251 }
7252 /*
7253 * 3.2.6 Schema Component Constraint: xmlns Not Allowed
7254 * TODO: Move this to the component layer.
7255 */
7256 if (xmlStrEqual(name, BAD_CAST "xmlns")) {
7257 xmlSchemaPSimpleTypeErr(pctxt,
7258 XML_SCHEMAP_NO_XMLNS,
7259 NULL, (xmlNodePtr) attr,
7260 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), NULL, NULL,
7261 "The value of the attribute must not match 'xmlns'",
7262 NULL, NULL);
7263 return (NULL);
7264 }
7265 if (occurs == XML_SCHEMAS_ATTR_USE_PROHIBITED)
7266 goto check_children;
7267 /*
7268 * Create the attribute use component.
7269 */
7270 use = xmlSchemaAddAttributeUse(pctxt, node);
7271 if (use == NULL)
7272 return(NULL);
7273 use->occurs = occurs;
7274 /*
7275 * Create the attribute declaration.
7276 */
7277 attrDecl = xmlSchemaAddAttribute(pctxt, schema, name, ns, node, 0);
7278 if (attrDecl == NULL)
7279 return (NULL);
7280 if (tmpName != NULL) {
7281 attrDecl->typeName = tmpName;
7282 attrDecl->typeNs = tmpNs;
7283 }
7284 use->attrDecl = attrDecl;
7285 /*
7286 * Value constraint.
7287 */
7288 if (defValue != NULL) {
7289 attrDecl->defValue = defValue;
7290 if (defValueType == WXS_ATTR_DEF_VAL_FIXED)
7291 attrDecl->flags |= XML_SCHEMAS_ATTR_FIXED;
7292 }
7293 } else if (occurs != XML_SCHEMAS_ATTR_USE_PROHIBITED) {
7294 xmlSchemaQNameRefPtr ref;
7295
7296 /*
7297 * Create the attribute use component.
7298 */
7299 use = xmlSchemaAddAttributeUse(pctxt, node);
7300 if (use == NULL)
7301 return(NULL);
7302 /*
7303 * We need to resolve the reference at later stage.
7304 */
7305 WXS_ADD_PENDING(pctxt, use);
7306 use->occurs = occurs;
7307 /*
7308 * Create a QName reference to the attribute declaration.
7309 */
7310 ref = xmlSchemaNewQNameRef(pctxt, XML_SCHEMA_TYPE_ATTRIBUTE,
7311 tmpName, tmpNs);
7312 if (ref == NULL)
7313 return(NULL);
7314 /*
7315 * Assign the reference. This will be substituted for the
7316 * referenced attribute declaration when the QName is resolved.
7317 */
7318 use->attrDecl = WXS_ATTR_CAST ref;
7319 /*
7320 * Value constraint.
7321 */
7322 if (defValue != NULL)
7323 use->defValue = defValue;
7324 if (defValueType == WXS_ATTR_DEF_VAL_FIXED)
7325 use->flags |= XML_SCHEMA_ATTR_USE_FIXED;
7326 }
7327
7328check_children:
7329 /*
7330 * And now for the children...
7331 */
7332 child = node->children;
7333 if (occurs == XML_SCHEMAS_ATTR_USE_PROHIBITED) {
7334 xmlSchemaAttributeUseProhibPtr prohib;
7335
7336 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007337 xmlSchemaParseAnnotation(pctxt, child, 0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007338 child = child->next;
7339 }
7340 if (child != NULL) {
7341 xmlSchemaPContentErr(pctxt,
7342 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
7343 NULL, node, child, NULL,
7344 "(annotation?)");
7345 }
7346 /*
7347 * Check for pointlessness of attribute prohibitions.
7348 */
7349 if (parentType == XML_SCHEMA_TYPE_ATTRIBUTEGROUP) {
7350 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
7351 XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH,
7352 node, NULL,
7353 "Skipping attribute use prohibition, since it is "
7354 "pointless inside an <attributeGroup>",
7355 NULL, NULL, NULL);
7356 return(NULL);
7357 } else if (parentType == XML_SCHEMA_TYPE_EXTENSION) {
7358 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
7359 XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH,
7360 node, NULL,
7361 "Skipping attribute use prohibition, since it is "
7362 "pointless when extending a type",
7363 NULL, NULL, NULL);
7364 return(NULL);
7365 }
7366 if (! isRef) {
7367 tmpName = name;
7368 tmpNs = ns;
7369 }
7370 /*
7371 * Check for duplicate attribute prohibitions.
7372 */
7373 if (uses) {
7374 int i;
7375
7376 for (i = 0; i < uses->nbItems; i++) {
7377 use = uses->items[i];
7378 if ((use->type == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB) &&
7379 (tmpName == (WXS_ATTR_PROHIB_CAST use)->name) &&
7380 (tmpNs == (WXS_ATTR_PROHIB_CAST use)->targetNamespace))
7381 {
7382 xmlChar *str = NULL;
7383
7384 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
7385 XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH,
7386 node, NULL,
7387 "Skipping duplicate attribute use prohibition '%s'",
7388 xmlSchemaFormatQName(&str, tmpNs, tmpName),
7389 NULL, NULL);
7390 FREE_AND_NULL(str)
7391 return(NULL);
7392 }
7393 }
7394 }
7395 /*
7396 * Create the attribute prohibition helper component.
7397 */
7398 prohib = xmlSchemaAddAttributeUseProhib(pctxt);
7399 if (prohib == NULL)
7400 return(NULL);
7401 prohib->node = node;
7402 prohib->name = tmpName;
7403 prohib->targetNamespace = tmpNs;
7404 if (isRef) {
7405 /*
7406 * We need at least to resolve to the attribute declaration.
7407 */
7408 WXS_ADD_PENDING(pctxt, prohib);
7409 }
7410 return(WXS_BASIC_CAST prohib);
7411 } else {
7412 if (IS_SCHEMA(child, "annotation")) {
7413 /*
7414 * TODO: Should this go into the attr decl?
7415 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007416 use->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007417 child = child->next;
7418 }
7419 if (isRef) {
7420 if (child != NULL) {
7421 if (IS_SCHEMA(child, "simpleType"))
7422 /*
7423 * 3.2.3 : 3.2
7424 * If ref is present, then all of <simpleType>,
7425 * form and type must be absent.
7426 */
7427 xmlSchemaPContentErr(pctxt,
7428 XML_SCHEMAP_SRC_ATTRIBUTE_3_2,
7429 NULL, node, child, NULL,
7430 "(annotation?)");
7431 else
7432 xmlSchemaPContentErr(pctxt,
7433 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
7434 NULL, node, child, NULL,
7435 "(annotation?)");
7436 }
7437 } else {
7438 if (IS_SCHEMA(child, "simpleType")) {
7439 if (WXS_ATTRUSE_DECL(use)->typeName != NULL) {
7440 /*
7441 * 3.2.3 : 4
7442 * type and <simpleType> must not both be present.
7443 */
7444 xmlSchemaPContentErr(pctxt, XML_SCHEMAP_SRC_ATTRIBUTE_4,
7445 NULL, node, child,
7446 "The attribute 'type' and the <simpleType> child "
7447 "are mutually exclusive", NULL);
7448 } else
7449 WXS_ATTRUSE_TYPEDEF(use) =
7450 xmlSchemaParseSimpleType(pctxt, schema, child, 0);
7451 child = child->next;
7452 }
7453 if (child != NULL)
7454 xmlSchemaPContentErr(pctxt, XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
7455 NULL, node, child, NULL,
7456 "(annotation?, simpleType?)");
7457 }
7458 }
7459 return (WXS_BASIC_CAST use);
7460}
7461
7462
7463static xmlSchemaAttributePtr
7464xmlSchemaParseGlobalAttribute(xmlSchemaParserCtxtPtr pctxt,
7465 xmlSchemaPtr schema,
7466 xmlNodePtr node)
7467{
7468 const xmlChar *attrValue;
Daniel Veillard4255d502002-04-16 15:50:10 +00007469 xmlSchemaAttributePtr ret;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007470 xmlNodePtr child = NULL;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007471 xmlAttrPtr attr;
William M. Bracke7091952004-05-11 15:09:58 +00007472
7473 /*
7474 * Note that the w3c spec assumes the schema to be validated with schema
7475 * for schemas beforehand.
7476 *
7477 * 3.2.3 Constraints on XML Representations of Attribute Declarations
William M. Bracke7091952004-05-11 15:09:58 +00007478 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007479 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
7480 return (NULL);
7481 /*
7482 * 3.2.3 : 3.1
7483 * One of ref or name must be present, but not both
7484 */
7485 attr = xmlSchemaGetPropNode(node, "name");
7486 if (attr == NULL) {
7487 xmlSchemaPMissingAttrErr(pctxt, XML_SCHEMAP_S4S_ATTR_MISSING,
7488 NULL, node, "name", NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00007489 return (NULL);
7490 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007491 if (xmlSchemaPValAttrNode(pctxt, NULL, attr,
7492 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &attrValue) != 0) {
7493 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007494 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007495 /*
7496 * 3.2.6 Schema Component Constraint: xmlns Not Allowed
7497 * TODO: Move this to the component layer.
7498 */
7499 if (xmlStrEqual(attrValue, BAD_CAST "xmlns")) {
7500 xmlSchemaPSimpleTypeErr(pctxt,
7501 XML_SCHEMAP_NO_XMLNS,
7502 NULL, (xmlNodePtr) attr,
7503 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), NULL, NULL,
7504 "The value of the attribute must not match 'xmlns'",
7505 NULL, NULL);
7506 return (NULL);
7507 }
7508 /*
7509 * 3.2.6 Schema Component Constraint: xsi: Not Allowed
7510 * TODO: Move this to the component layer.
7511 * Or better leave it here and add it to the component layer
7512 * if we have a schema construction API.
7513 */
7514 if (xmlStrEqual(pctxt->targetNamespace, xmlSchemaInstanceNs)) {
7515 xmlSchemaCustomErr(ACTXT_CAST pctxt,
7516 XML_SCHEMAP_NO_XSI, node, NULL,
7517 "The target namespace must not match '%s'",
7518 xmlSchemaInstanceNs, NULL);
7519 }
7520
7521 ret = xmlSchemaAddAttribute(pctxt, schema, attrValue,
7522 pctxt->targetNamespace, node, 1);
7523 if (ret == NULL)
7524 return (NULL);
7525 ret->flags |= XML_SCHEMAS_ATTR_GLOBAL;
7526
7527 /*
7528 * Check for illegal attributes.
7529 */
7530 attr = node->properties;
7531 while (attr != NULL) {
7532 if (attr->ns == NULL) {
7533 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
7534 (!xmlStrEqual(attr->name, BAD_CAST "default")) &&
7535 (!xmlStrEqual(attr->name, BAD_CAST "fixed")) &&
7536 (!xmlStrEqual(attr->name, BAD_CAST "name")) &&
7537 (!xmlStrEqual(attr->name, BAD_CAST "type")))
7538 {
7539 xmlSchemaPIllegalAttrErr(pctxt,
7540 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
7541 }
7542 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
7543 xmlSchemaPIllegalAttrErr(pctxt,
7544 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
7545 }
7546 attr = attr->next;
7547 }
7548 xmlSchemaPValAttrQName(pctxt, schema, NULL,
7549 node, "type", &ret->typeNs, &ret->typeName);
7550
7551 xmlSchemaPValAttrID(pctxt, node, BAD_CAST "id");
William M. Bracke7091952004-05-11 15:09:58 +00007552 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00007553 * Attribute "fixed".
William M. Bracke7091952004-05-11 15:09:58 +00007554 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007555 ret->defValue = xmlSchemaGetProp(pctxt, node, "fixed");
Daniel Veillardc0826a72004-08-10 14:17:33 +00007556 if (ret->defValue != NULL)
7557 ret->flags |= XML_SCHEMAS_ATTR_FIXED;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007558 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00007559 * Attribute "default".
7560 */
7561 attr = xmlSchemaGetPropNode(node, "default");
7562 if (attr != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007563 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00007564 * 3.2.3 : 1
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007565 * default and fixed must not both be present.
Daniel Veillardc0826a72004-08-10 14:17:33 +00007566 */
7567 if (ret->flags & XML_SCHEMAS_ATTR_FIXED) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007568 xmlSchemaPMutualExclAttrErr(pctxt, XML_SCHEMAP_SRC_ATTRIBUTE_1,
7569 WXS_BASIC_CAST ret, attr, "default", "fixed");
Daniel Veillardc0826a72004-08-10 14:17:33 +00007570 } else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007571 ret->defValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007572 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00007573 /*
7574 * And now for the children...
7575 */
Daniel Veillard4255d502002-04-16 15:50:10 +00007576 child = node->children;
7577 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007578 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00007579 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007580 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007581 if (IS_SCHEMA(child, "simpleType")) {
7582 if (ret->typeName != NULL) {
7583 /*
7584 * 3.2.3 : 4
7585 * type and <simpleType> must not both be present.
7586 */
7587 xmlSchemaPContentErr(pctxt, XML_SCHEMAP_SRC_ATTRIBUTE_4,
7588 NULL, node, child,
7589 "The attribute 'type' and the <simpleType> child "
7590 "are mutually exclusive", NULL);
7591 } else
7592 ret->subtypes = xmlSchemaParseSimpleType(pctxt, schema, child, 0);
7593 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00007594 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007595 if (child != NULL)
7596 xmlSchemaPContentErr(pctxt, XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
7597 NULL, node, child, NULL,
7598 "(annotation?, simpleType?)");
7599
Daniel Veillard4255d502002-04-16 15:50:10 +00007600 return (ret);
7601}
7602
7603/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007604 * xmlSchemaParseAttributeGroupRef:
Daniel Veillard4255d502002-04-16 15:50:10 +00007605 * @ctxt: a schema validation context
7606 * @schema: the schema being built
7607 * @node: a subtree containing XML Schema informations
7608 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007609 * Parse an attribute group definition reference.
7610 * Note that a reference to an attribute group does not
7611 * correspond to any component at all.
Daniel Veillard4255d502002-04-16 15:50:10 +00007612 * *WARNING* this interface is highly subject to change
7613 *
7614 * Returns the attribute group or NULL in case of error.
7615 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007616static xmlSchemaQNameRefPtr
7617xmlSchemaParseAttributeGroupRef(xmlSchemaParserCtxtPtr pctxt,
7618 xmlSchemaPtr schema,
7619 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00007620{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007621 xmlSchemaQNameRefPtr ret;
Daniel Veillard4255d502002-04-16 15:50:10 +00007622 xmlNodePtr child = NULL;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007623 xmlAttrPtr attr;
7624 const xmlChar *refNs = NULL, *ref = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00007625
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007626 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
Daniel Veillard4255d502002-04-16 15:50:10 +00007627 return (NULL);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007628
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007629 attr = xmlSchemaGetPropNode(node, "ref");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007630 if (attr == NULL) {
7631 xmlSchemaPMissingAttrErr(pctxt,
7632 XML_SCHEMAP_S4S_ATTR_MISSING,
7633 NULL, node, "ref", NULL);
7634 return (NULL);
7635 }
7636 xmlSchemaPValAttrNodeQName(pctxt, schema,
7637 NULL, attr, &refNs, &ref);
7638 if (xmlSchemaCheckReference(pctxt, schema, node, attr, refNs) != 0)
7639 return(NULL);
7640
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007641 /*
7642 * Check for illegal attributes.
7643 */
7644 attr = node->properties;
7645 while (attr != NULL) {
7646 if (attr->ns == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007647 if ((!xmlStrEqual(attr->name, BAD_CAST "ref")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007648 (!xmlStrEqual(attr->name, BAD_CAST "id")))
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007649 {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007650 xmlSchemaPIllegalAttrErr(pctxt,
7651 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007652 }
7653 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007654 xmlSchemaPIllegalAttrErr(pctxt,
7655 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007656 }
7657 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007658 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00007659 /* Attribute ID */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007660 xmlSchemaPValAttrID(pctxt, node, BAD_CAST "id");
7661
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007662 /*
7663 * And now for the children...
7664 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007665 child = node->children;
Daniel Veillard4255d502002-04-16 15:50:10 +00007666 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007667 /*
7668 * TODO: We do not have a place to store the annotation, do we?
7669 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007670 xmlSchemaParseAnnotation(pctxt, child, 0);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00007671 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00007672 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007673 if (child != NULL) {
7674 xmlSchemaPContentErr(pctxt,
7675 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
7676 NULL, node, child, NULL,
7677 "(annotation?)");
7678 }
7679
7680 /*
7681 * Handle attribute group redefinitions.
7682 */
7683 if (pctxt->isRedefine && pctxt->redef &&
7684 (pctxt->redef->item->type ==
7685 XML_SCHEMA_TYPE_ATTRIBUTEGROUP) &&
7686 (ref == pctxt->redef->refName) &&
7687 (refNs == pctxt->redef->refTargetNs))
7688 {
7689 /*
7690 * SPEC src-redefine:
7691 * (7.1) "If it has an <attributeGroup> among its contents
7692 * the ·actual value· of whose ref [attribute] is the same
7693 * as the ·actual value· of its own name attribute plus
7694 * target namespace, then it must have exactly one such group."
7695 */
7696 if (pctxt->redefCounter != 0) {
7697 xmlChar *str = NULL;
7698
7699 xmlSchemaCustomErr(ACTXT_CAST pctxt,
7700 XML_SCHEMAP_SRC_REDEFINE, node, NULL,
7701 "The redefining attribute group definition "
7702 "'%s' must not contain more than one "
7703 "reference to the redefined definition",
7704 xmlSchemaFormatQName(&str, refNs, ref), NULL);
7705 FREE_AND_NULL(str);
7706 return(NULL);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007707 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007708 pctxt->redefCounter++;
7709 /*
7710 * URGENT TODO: How to ensure that the reference will not be
7711 * handled by the normal component resolution mechanism?
7712 */
7713 ret = xmlSchemaNewQNameRef(pctxt,
7714 XML_SCHEMA_TYPE_ATTRIBUTEGROUP, ref, refNs);
7715 if (ret == NULL)
7716 return(NULL);
7717 ret->node = node;
7718 pctxt->redef->reference = WXS_BASIC_CAST ret;
7719 } else {
7720 /*
7721 * Create a QName-reference helper component. We will substitute this
7722 * component for the attribute uses of the referenced attribute group
7723 * definition.
7724 */
7725 ret = xmlSchemaNewQNameRef(pctxt,
7726 XML_SCHEMA_TYPE_ATTRIBUTEGROUP, ref, refNs);
7727 if (ret == NULL)
7728 return(NULL);
7729 ret->node = node;
7730 /* Add to pending items, to be able to resolve the reference. */
7731 WXS_ADD_PENDING(pctxt, ret);
7732 }
7733 return (ret);
7734}
7735
7736/**
7737 * xmlSchemaParseAttributeGroupDefinition:
7738 * @pctxt: a schema validation context
7739 * @schema: the schema being built
7740 * @node: a subtree containing XML Schema informations
7741 *
7742 * parse a XML schema Attribute Group declaration
7743 * *WARNING* this interface is highly subject to change
7744 *
7745 * Returns the attribute group definition or NULL in case of error.
7746 */
7747static xmlSchemaAttributeGroupPtr
7748xmlSchemaParseAttributeGroupDefinition(xmlSchemaParserCtxtPtr pctxt,
7749 xmlSchemaPtr schema,
7750 xmlNodePtr node)
7751{
7752 const xmlChar *name;
7753 xmlSchemaAttributeGroupPtr ret;
7754 xmlNodePtr child = NULL;
7755 xmlAttrPtr attr;
7756 int hasRefs = 0;
7757
7758 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
7759 return (NULL);
7760
7761 attr = xmlSchemaGetPropNode(node, "name");
7762 if (attr == NULL) {
7763 xmlSchemaPMissingAttrErr(pctxt,
7764 XML_SCHEMAP_S4S_ATTR_MISSING,
7765 NULL, node, "name", NULL);
7766 return (NULL);
7767 }
7768 /*
7769 * The name is crucial, exit if invalid.
7770 */
7771 if (xmlSchemaPValAttrNode(pctxt,
7772 NULL, attr,
7773 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) {
7774 return (NULL);
7775 }
7776 ret = xmlSchemaAddAttributeGroupDefinition(pctxt, schema,
7777 name, pctxt->targetNamespace, node);
7778 if (ret == NULL)
7779 return (NULL);
7780 /*
7781 * Check for illegal attributes.
7782 */
7783 attr = node->properties;
7784 while (attr != NULL) {
7785 if (attr->ns == NULL) {
7786 if ((!xmlStrEqual(attr->name, BAD_CAST "name")) &&
7787 (!xmlStrEqual(attr->name, BAD_CAST "id")))
7788 {
7789 xmlSchemaPIllegalAttrErr(pctxt,
7790 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
7791 }
7792 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
7793 xmlSchemaPIllegalAttrErr(pctxt,
7794 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
7795 }
7796 attr = attr->next;
7797 }
7798 /* Attribute ID */
7799 xmlSchemaPValAttrID(pctxt, node, BAD_CAST "id");
7800 /*
7801 * And now for the children...
7802 */
7803 child = node->children;
7804 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00007805 ret->annot = xmlSchemaParseAnnotation(pctxt, child, 1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007806 child = child->next;
7807 }
7808 /*
7809 * Parse contained attribute decls/refs.
7810 */
7811 if (xmlSchemaParseLocalAttributes(pctxt, schema, &child,
7812 (xmlSchemaItemListPtr *) &(ret->attrUses),
7813 XML_SCHEMA_TYPE_ATTRIBUTEGROUP, &hasRefs) == -1)
7814 return(NULL);
7815 if (hasRefs)
7816 ret->flags |= XML_SCHEMAS_ATTRGROUP_HAS_REFS;
7817 /*
7818 * Parse the attribute wildcard.
7819 */
7820 if (IS_SCHEMA(child, "anyAttribute")) {
7821 ret->attributeWildcard = xmlSchemaParseAnyAttribute(pctxt,
7822 schema, child);
7823 child = child->next;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00007824 }
Daniel Veillard4255d502002-04-16 15:50:10 +00007825 if (child != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007826 xmlSchemaPContentErr(pctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007827 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007828 NULL, node, child, NULL,
7829 "(annotation?, ((attribute | attributeGroup)*, anyAttribute?))");
Daniel Veillard4255d502002-04-16 15:50:10 +00007830 }
Daniel Veillard4255d502002-04-16 15:50:10 +00007831 return (ret);
7832}
7833
7834/**
William M. Brack2f2a6632004-08-20 23:09:47 +00007835 * xmlSchemaPValAttrFormDefault:
7836 * @value: the value
7837 * @flags: the flags to be modified
7838 * @flagQualified: the specific flag for "qualified"
7839 *
7840 * Returns 0 if the value is valid, 1 otherwise.
7841 */
7842static int
7843xmlSchemaPValAttrFormDefault(const xmlChar *value,
7844 int *flags,
7845 int flagQualified)
7846{
7847 if (xmlStrEqual(value, BAD_CAST "qualified")) {
7848 if ((*flags & flagQualified) == 0)
7849 *flags |= flagQualified;
7850 } else if (!xmlStrEqual(value, BAD_CAST "unqualified"))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007851 return (1);
7852
William M. Brack2f2a6632004-08-20 23:09:47 +00007853 return (0);
7854}
7855
7856/**
Daniel Veillardc0826a72004-08-10 14:17:33 +00007857 * xmlSchemaPValAttrBlockFinal:
7858 * @value: the value
7859 * @flags: the flags to be modified
7860 * @flagAll: the specific flag for "#all"
7861 * @flagExtension: the specific flag for "extension"
7862 * @flagRestriction: the specific flag for "restriction"
7863 * @flagSubstitution: the specific flag for "substitution"
7864 * @flagList: the specific flag for "list"
7865 * @flagUnion: the specific flag for "union"
7866 *
7867 * Validates the value of the attribute "final" and "block". The value
7868 * is converted into the specified flag values and returned in @flags.
7869 *
7870 * Returns 0 if the value is valid, 1 otherwise.
7871 */
7872
7873static int
7874xmlSchemaPValAttrBlockFinal(const xmlChar *value,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007875 int *flags,
Daniel Veillardc0826a72004-08-10 14:17:33 +00007876 int flagAll,
7877 int flagExtension,
7878 int flagRestriction,
7879 int flagSubstitution,
7880 int flagList,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007881 int flagUnion)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007882{
7883 int ret = 0;
7884
7885 /*
7886 * TODO: This does not check for dublicate entries.
7887 */
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +00007888 if ((flags == NULL) || (value == NULL))
7889 return (-1);
7890 if (value[0] == 0)
7891 return (0);
Daniel Veillardc0826a72004-08-10 14:17:33 +00007892 if (xmlStrEqual(value, BAD_CAST "#all")) {
7893 if (flagAll != -1)
7894 *flags |= flagAll;
7895 else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007896 if (flagExtension != -1)
7897 *flags |= flagExtension;
7898 if (flagRestriction != -1)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007899 *flags |= flagRestriction;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007900 if (flagSubstitution != -1)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007901 *flags |= flagSubstitution;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007902 if (flagList != -1)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007903 *flags |= flagList;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007904 if (flagUnion != -1)
Daniel Veillardc0826a72004-08-10 14:17:33 +00007905 *flags |= flagUnion;
7906 }
7907 } else {
7908 const xmlChar *end, *cur = value;
7909 xmlChar *item;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007910
Daniel Veillardc0826a72004-08-10 14:17:33 +00007911 do {
7912 while (IS_BLANK_CH(*cur))
7913 cur++;
7914 end = cur;
7915 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
7916 end++;
7917 if (end == cur)
7918 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007919 item = xmlStrndup(cur, end - cur);
Daniel Veillardc0826a72004-08-10 14:17:33 +00007920 if (xmlStrEqual(item, BAD_CAST "extension")) {
7921 if (flagExtension != -1) {
7922 if ((*flags & flagExtension) == 0)
7923 *flags |= flagExtension;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007924 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007925 ret = 1;
7926 } else if (xmlStrEqual(item, BAD_CAST "restriction")) {
7927 if (flagRestriction != -1) {
7928 if ((*flags & flagRestriction) == 0)
7929 *flags |= flagRestriction;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007930 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007931 ret = 1;
7932 } else if (xmlStrEqual(item, BAD_CAST "substitution")) {
7933 if (flagSubstitution != -1) {
7934 if ((*flags & flagSubstitution) == 0)
7935 *flags |= flagSubstitution;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007936 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007937 ret = 1;
7938 } else if (xmlStrEqual(item, BAD_CAST "list")) {
7939 if (flagList != -1) {
7940 if ((*flags & flagList) == 0)
7941 *flags |= flagList;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007942 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007943 ret = 1;
7944 } else if (xmlStrEqual(item, BAD_CAST "union")) {
7945 if (flagUnion != -1) {
7946 if ((*flags & flagUnion) == 0)
7947 *flags |= flagUnion;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007948 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007949 ret = 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007950 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00007951 ret = 1;
7952 if (item != NULL)
7953 xmlFree(item);
7954 cur = end;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007955 } while ((ret == 0) && (*cur != 0));
7956 }
7957
Daniel Veillardc0826a72004-08-10 14:17:33 +00007958 return (ret);
7959}
7960
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007961static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007962xmlSchemaCheckCSelectorXPath(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007963 xmlSchemaIDCPtr idc,
7964 xmlSchemaIDCSelectPtr selector,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007965 xmlAttrPtr attr,
7966 int isField)
7967{
7968 xmlNodePtr node;
7969
7970 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007971 * c-selector-xpath:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007972 * Schema Component Constraint: Selector Value OK
7973 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007974 * TODO: 1 The {selector} must be a valid XPath expression, as defined
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007975 * in [XPath].
7976 */
7977 if (selector == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007978 xmlSchemaPErr(ctxt, idc->node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007979 XML_SCHEMAP_INTERNAL,
7980 "Internal error: xmlSchemaCheckCSelectorXPath, "
7981 "the selector is not specified.\n", NULL, NULL);
7982 return (-1);
7983 }
7984 if (attr == NULL)
7985 node = idc->node;
7986 else
7987 node = (xmlNodePtr) attr;
7988 if (selector->xpath == NULL) {
7989 xmlSchemaPCustomErr(ctxt,
7990 /* TODO: Adjust error code. */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00007991 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00007992 NULL, node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007993 "The XPath expression of the selector is not valid", NULL);
7994 return (XML_SCHEMAP_S4S_ATTR_INVALID_VALUE);
7995 } else {
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00007996 const xmlChar **nsArray = NULL;
7997 xmlNsPtr *nsList = NULL;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00007998 /*
7999 * Compile the XPath expression.
8000 */
8001 /*
8002 * TODO: We need the array of in-scope namespaces for compilation.
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008003 * TODO: Call xmlPatterncompile with different options for selector/
8004 * field.
8005 */
Daniel Veillard14b56432006-03-09 18:41:40 +00008006 if (attr == NULL)
Daniel Veillardaac7c682006-03-10 13:40:16 +00008007 nsList = NULL;
Daniel Veillard14b56432006-03-09 18:41:40 +00008008 else
8009 nsList = xmlGetNsList(attr->doc, attr->parent);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008010 /*
8011 * Build an array of prefixes and namespaces.
8012 */
8013 if (nsList != NULL) {
8014 int i, count = 0;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008015
8016 for (i = 0; nsList[i] != NULL; i++)
8017 count++;
8018
8019 nsArray = (const xmlChar **) xmlMalloc(
8020 (count * 2 + 1) * sizeof(const xmlChar *));
8021 if (nsArray == NULL) {
8022 xmlSchemaPErrMemory(ctxt, "allocating a namespace array",
8023 NULL);
Kasimier T. Buchcik940ab0c2005-10-19 17:00:53 +00008024 xmlFree(nsList);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008025 return (-1);
8026 }
8027 for (i = 0; i < count; i++) {
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008028 nsArray[2 * i] = nsList[i]->href;
8029 nsArray[2 * i + 1] = nsList[i]->prefix;
8030 }
8031 nsArray[count * 2] = NULL;
8032 xmlFree(nsList);
8033 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008034 /*
8035 * TODO: Differentiate between "selector" and "field".
8036 */
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008037 if (isField)
8038 selector->xpathComp = (void *) xmlPatterncompile(selector->xpath,
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +00008039 NULL, XML_PATTERN_XSFIELD, nsArray);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008040 else
8041 selector->xpathComp = (void *) xmlPatterncompile(selector->xpath,
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +00008042 NULL, XML_PATTERN_XSSEL, nsArray);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008043 if (nsArray != NULL)
8044 xmlFree((xmlChar **) nsArray);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008045
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +00008046 if (selector->xpathComp == NULL) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008047 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +00008048 /* TODO: Adjust error code? */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008049 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008050 NULL, node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008051 "The XPath expression '%s' could not be "
8052 "compiled", selector->xpath);
8053 return (XML_SCHEMAP_S4S_ATTR_INVALID_VALUE);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008054 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008055 }
8056 return (0);
8057}
8058
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008059#define ADD_ANNOTATION(annot) \
8060 xmlSchemaAnnotPtr cur = item->annot; \
8061 if (item->annot == NULL) { \
8062 item->annot = annot; \
8063 return (annot); \
8064 } \
8065 cur = item->annot; \
8066 if (cur->next != NULL) { \
8067 cur = cur->next; \
8068 } \
8069 cur->next = annot;
8070
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008071/**
8072 * xmlSchemaAssignAnnotation:
8073 * @item: the schema component
8074 * @annot: the annotation
8075 *
8076 * Adds the annotation to the given schema component.
8077 *
8078 * Returns the given annotaion.
8079 */
8080static xmlSchemaAnnotPtr
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008081xmlSchemaAddAnnotation(xmlSchemaAnnotItemPtr annItem,
8082 xmlSchemaAnnotPtr annot)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008083{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008084 if ((annItem == NULL) || (annot == NULL))
8085 return (NULL);
8086 switch (annItem->type) {
8087 case XML_SCHEMA_TYPE_ELEMENT: {
8088 xmlSchemaElementPtr item = (xmlSchemaElementPtr) annItem;
8089 ADD_ANNOTATION(annot)
8090 }
8091 break;
8092 case XML_SCHEMA_TYPE_ATTRIBUTE: {
8093 xmlSchemaAttributePtr item = (xmlSchemaAttributePtr) annItem;
8094 ADD_ANNOTATION(annot)
8095 }
8096 break;
8097 case XML_SCHEMA_TYPE_ANY_ATTRIBUTE:
8098 case XML_SCHEMA_TYPE_ANY: {
8099 xmlSchemaWildcardPtr item = (xmlSchemaWildcardPtr) annItem;
8100 ADD_ANNOTATION(annot)
8101 }
8102 break;
8103 case XML_SCHEMA_TYPE_PARTICLE:
8104 case XML_SCHEMA_TYPE_IDC_KEY:
8105 case XML_SCHEMA_TYPE_IDC_KEYREF:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008106 case XML_SCHEMA_TYPE_IDC_UNIQUE: {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008107 xmlSchemaAnnotItemPtr item = (xmlSchemaAnnotItemPtr) annItem;
8108 ADD_ANNOTATION(annot)
8109 }
8110 break;
8111 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP: {
8112 xmlSchemaAttributeGroupPtr item =
8113 (xmlSchemaAttributeGroupPtr) annItem;
8114 ADD_ANNOTATION(annot)
8115 }
8116 break;
8117 case XML_SCHEMA_TYPE_NOTATION: {
8118 xmlSchemaNotationPtr item = (xmlSchemaNotationPtr) annItem;
8119 ADD_ANNOTATION(annot)
8120 }
8121 break;
8122 case XML_SCHEMA_FACET_MININCLUSIVE:
8123 case XML_SCHEMA_FACET_MINEXCLUSIVE:
8124 case XML_SCHEMA_FACET_MAXINCLUSIVE:
8125 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
8126 case XML_SCHEMA_FACET_TOTALDIGITS:
8127 case XML_SCHEMA_FACET_FRACTIONDIGITS:
8128 case XML_SCHEMA_FACET_PATTERN:
8129 case XML_SCHEMA_FACET_ENUMERATION:
8130 case XML_SCHEMA_FACET_WHITESPACE:
8131 case XML_SCHEMA_FACET_LENGTH:
8132 case XML_SCHEMA_FACET_MAXLENGTH:
8133 case XML_SCHEMA_FACET_MINLENGTH: {
8134 xmlSchemaFacetPtr item = (xmlSchemaFacetPtr) annItem;
8135 ADD_ANNOTATION(annot)
8136 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008137 break;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008138 case XML_SCHEMA_TYPE_SIMPLE:
8139 case XML_SCHEMA_TYPE_COMPLEX: {
8140 xmlSchemaTypePtr item = (xmlSchemaTypePtr) annItem;
8141 ADD_ANNOTATION(annot)
8142 }
8143 break;
8144 case XML_SCHEMA_TYPE_GROUP: {
8145 xmlSchemaModelGroupDefPtr item = (xmlSchemaModelGroupDefPtr) annItem;
8146 ADD_ANNOTATION(annot)
8147 }
8148 break;
8149 case XML_SCHEMA_TYPE_SEQUENCE:
8150 case XML_SCHEMA_TYPE_CHOICE:
8151 case XML_SCHEMA_TYPE_ALL: {
8152 xmlSchemaModelGroupPtr item = (xmlSchemaModelGroupPtr) annItem;
8153 ADD_ANNOTATION(annot)
8154 }
8155 break;
8156 default:
8157 xmlSchemaPCustomErr(NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008158 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008159 NULL, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008160 "Internal error: xmlSchemaAddAnnotation, "
8161 "The item is not a annotated schema component", NULL);
8162 break;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008163 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008164 return (annot);
8165}
8166
8167/**
8168 * xmlSchemaParseIDCSelectorAndField:
8169 * @ctxt: a schema validation context
8170 * @schema: the schema being built
8171 * @node: a subtree containing XML Schema informations
8172 *
8173 * Parses a XML Schema identity-contraint definition's
8174 * <selector> and <field> elements.
8175 *
8176 * Returns the parsed identity-constraint definition.
8177 */
8178static xmlSchemaIDCSelectPtr
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008179xmlSchemaParseIDCSelectorAndField(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008180 xmlSchemaIDCPtr idc,
8181 xmlNodePtr node,
8182 int isField)
8183{
8184 xmlSchemaIDCSelectPtr item;
8185 xmlNodePtr child = NULL;
8186 xmlAttrPtr attr;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008187
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008188 /*
8189 * Check for illegal attributes.
8190 */
8191 attr = node->properties;
8192 while (attr != NULL) {
8193 if (attr->ns == NULL) {
8194 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
8195 (!xmlStrEqual(attr->name, BAD_CAST "xpath"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008196 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008197 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008198 }
8199 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008200 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008201 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008202 }
8203 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008204 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008205 /*
8206 * Create the item.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008207 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008208 item = (xmlSchemaIDCSelectPtr) xmlMalloc(sizeof(xmlSchemaIDCSelect));
8209 if (item == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008210 xmlSchemaPErrMemory(ctxt,
8211 "allocating a 'selector' of an identity-constraint definition",
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008212 NULL);
8213 return (NULL);
8214 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008215 memset(item, 0, sizeof(xmlSchemaIDCSelect));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008216 /*
8217 * Attribute "xpath" (mandatory).
8218 */
8219 attr = xmlSchemaGetPropNode(node, "xpath");
8220 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008221 xmlSchemaPMissingAttrErr(ctxt,
8222 XML_SCHEMAP_S4S_ATTR_MISSING,
8223 NULL, node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008224 "name", NULL);
8225 } else {
8226 item->xpath = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
8227 /*
8228 * URGENT TODO: "field"s have an other syntax than "selector"s.
8229 */
8230
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +00008231 if (xmlSchemaCheckCSelectorXPath(ctxt, idc, item, attr,
8232 isField) == -1) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008233 xmlSchemaPErr(ctxt,
8234 (xmlNodePtr) attr,
8235 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008236 "Internal error: xmlSchemaParseIDCSelectorAndField, "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008237 "validating the XPath expression of a IDC selector.\n",
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008238 NULL, NULL);
8239 }
8240
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008241 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008242 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008243 /*
8244 * And now for the children...
8245 */
8246 child = node->children;
8247 if (IS_SCHEMA(child, "annotation")) {
8248 /*
8249 * Add the annotation to the parent IDC.
8250 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008251 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) idc,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008252 xmlSchemaParseAnnotation(ctxt, child, 1));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008253 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008254 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008255 if (child != NULL) {
8256 xmlSchemaPContentErr(ctxt,
8257 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008258 NULL, node, child,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008259 NULL, "(annotation?)");
8260 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008261
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008262 return (item);
8263}
8264
8265/**
8266 * xmlSchemaParseIDC:
8267 * @ctxt: a schema validation context
8268 * @schema: the schema being built
8269 * @node: a subtree containing XML Schema informations
8270 *
8271 * Parses a XML Schema identity-contraint definition.
8272 *
8273 * Returns the parsed identity-constraint definition.
8274 */
8275static xmlSchemaIDCPtr
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008276xmlSchemaParseIDC(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008277 xmlSchemaPtr schema,
8278 xmlNodePtr node,
8279 xmlSchemaTypeType idcCategory,
8280 const xmlChar *targetNamespace)
8281{
8282 xmlSchemaIDCPtr item = NULL;
8283 xmlNodePtr child = NULL;
8284 xmlAttrPtr attr;
8285 const xmlChar *name = NULL;
8286 xmlSchemaIDCSelectPtr field = NULL, lastField = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008287
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008288 /*
8289 * Check for illegal attributes.
8290 */
8291 attr = node->properties;
8292 while (attr != NULL) {
8293 if (attr->ns == NULL) {
8294 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
8295 (!xmlStrEqual(attr->name, BAD_CAST "name")) &&
8296 ((idcCategory != XML_SCHEMA_TYPE_IDC_KEYREF) ||
8297 (!xmlStrEqual(attr->name, BAD_CAST "refer")))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008298 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008299 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008300 }
8301 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008302 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008303 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008304 }
8305 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008306 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008307 /*
8308 * Attribute "name" (mandatory).
8309 */
8310 attr = xmlSchemaGetPropNode(node, "name");
8311 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008312 xmlSchemaPMissingAttrErr(ctxt,
8313 XML_SCHEMAP_S4S_ATTR_MISSING,
8314 NULL, node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008315 "name", NULL);
8316 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008317 } else if (xmlSchemaPValAttrNode(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008318 NULL, attr,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008319 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) {
8320 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008321 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008322 /* Create the component. */
8323 item = xmlSchemaAddIDC(ctxt, schema, name, targetNamespace,
8324 idcCategory, node);
8325 if (item == NULL)
8326 return(NULL);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008327
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008328 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008329 if (idcCategory == XML_SCHEMA_TYPE_IDC_KEYREF) {
8330 /*
8331 * Attribute "refer" (mandatory).
8332 */
8333 attr = xmlSchemaGetPropNode(node, "refer");
8334 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008335 xmlSchemaPMissingAttrErr(ctxt,
8336 XML_SCHEMAP_S4S_ATTR_MISSING,
8337 NULL, node,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008338 "refer", NULL);
8339 } else {
8340 /*
8341 * Create a reference item.
8342 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008343 item->ref = xmlSchemaNewQNameRef(ctxt, XML_SCHEMA_TYPE_IDC_KEY,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008344 NULL, NULL);
8345 if (item->ref == NULL)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008346 return (NULL);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008347 xmlSchemaPValAttrNodeQName(ctxt, schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008348 NULL, attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008349 &(item->ref->targetNamespace),
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008350 &(item->ref->name));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008351 xmlSchemaCheckReference(ctxt, schema, node, attr,
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00008352 item->ref->targetNamespace);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008353 }
8354 }
8355 /*
8356 * And now for the children...
8357 */
8358 child = node->children;
8359 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008360 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008361 child = child->next;
8362 }
Kasimier T. Buchcikff858ca2005-02-18 11:37:58 +00008363 if (child == NULL) {
8364 xmlSchemaPContentErr(ctxt,
8365 XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008366 NULL, node, child,
Kasimier T. Buchcikff858ca2005-02-18 11:37:58 +00008367 "A child element is missing",
8368 "(annotation?, (selector, field+))");
8369 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008370 /*
8371 * Child element <selector>.
8372 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008373 if (IS_SCHEMA(child, "selector")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008374 item->selector = xmlSchemaParseIDCSelectorAndField(ctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008375 item, child, 0);
8376 child = child->next;
8377 /*
8378 * Child elements <field>.
8379 */
8380 if (IS_SCHEMA(child, "field")) {
8381 do {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008382 field = xmlSchemaParseIDCSelectorAndField(ctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008383 item, child, 1);
8384 if (field != NULL) {
8385 field->index = item->nbFields;
8386 item->nbFields++;
8387 if (lastField != NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008388 lastField->next = field;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008389 else
8390 item->fields = field;
8391 lastField = field;
8392 }
8393 child = child->next;
8394 } while (IS_SCHEMA(child, "field"));
8395 } else {
8396 xmlSchemaPContentErr(ctxt,
8397 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008398 NULL, node, child,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008399 NULL, "(annotation?, (selector, field+))");
8400 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008401 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008402 if (child != NULL) {
8403 xmlSchemaPContentErr(ctxt,
8404 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008405 NULL, node, child,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008406 NULL, "(annotation?, (selector, field+))");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008407 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008408
8409 return (item);
8410}
8411
Daniel Veillardc0826a72004-08-10 14:17:33 +00008412/**
Daniel Veillard4255d502002-04-16 15:50:10 +00008413 * xmlSchemaParseElement:
8414 * @ctxt: a schema validation context
8415 * @schema: the schema being built
8416 * @node: a subtree containing XML Schema informations
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008417 * @topLevel: indicates if this is global declaration
Daniel Veillard4255d502002-04-16 15:50:10 +00008418 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008419 * Parses a XML schema element declaration.
Daniel Veillard4255d502002-04-16 15:50:10 +00008420 * *WARNING* this interface is highly subject to change
8421 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008422 * Returns the element declaration or a particle; NULL in case
8423 * of an error or if the particle has minOccurs==maxOccurs==0.
Daniel Veillard4255d502002-04-16 15:50:10 +00008424 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008425static xmlSchemaBasicItemPtr
Daniel Veillard4255d502002-04-16 15:50:10 +00008426xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008427 xmlNodePtr node, int *isElemRef, int topLevel)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008428{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008429 xmlSchemaElementPtr decl = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008430 xmlSchemaParticlePtr particle = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008431 xmlSchemaAnnotPtr annot = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008432 xmlNodePtr child = NULL;
8433 xmlAttrPtr attr, nameAttr;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008434 int min, max, isRef = 0;
8435 xmlChar *des = NULL;
William M. Bracke7091952004-05-11 15:09:58 +00008436
8437 /* 3.3.3 Constraints on XML Representations of Element Declarations */
8438 /* TODO: Complete implementation of 3.3.6 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008439
Daniel Veillard4255d502002-04-16 15:50:10 +00008440 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008441 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008442
8443 if (isElemRef != NULL)
8444 *isElemRef = 0;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008445 /*
8446 * If we get a "ref" attribute on a local <element> we will assume it's
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008447 * a reference - even if there's a "name" attribute; this seems to be more
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008448 * robust.
8449 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00008450 nameAttr = xmlSchemaGetPropNode(node, "name");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008451 attr = xmlSchemaGetPropNode(node, "ref");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008452 if ((topLevel) || (attr == NULL)) {
8453 if (nameAttr == NULL) {
8454 xmlSchemaPMissingAttrErr(ctxt,
8455 XML_SCHEMAP_S4S_ATTR_MISSING,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008456 NULL, node, "name", NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00008457 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008458 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008459 } else
Daniel Veillardc0826a72004-08-10 14:17:33 +00008460 isRef = 1;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008461
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008462 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008463 child = node->children;
8464 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008465 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008466 child = child->next;
8467 }
8468 /*
8469 * Skip particle part if a global declaration.
8470 */
8471 if (topLevel)
8472 goto declaration_part;
8473 /*
8474 * The particle part ==================================================
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008475 */
8476 min = xmlGetMinOccurs(ctxt, node, 0, -1, 1, "xs:nonNegativeInteger");
8477 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1, "(xs:nonNegativeInteger | unbounded)");
8478 xmlSchemaPCheckParticleCorrect_2(ctxt, NULL, node, min, max);
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +00008479 particle = xmlSchemaAddParticle(ctxt, node, min, max);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008480 if (particle == NULL)
8481 goto return_null;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008482
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008483 /* ret->flags |= XML_SCHEMAS_ELEM_REF; */
8484
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008485 if (isRef) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008486 const xmlChar *refNs = NULL, *ref = NULL;
8487 xmlSchemaQNameRefPtr refer = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008488 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008489 * The reference part =============================================
Daniel Veillardc0826a72004-08-10 14:17:33 +00008490 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008491 if (isElemRef != NULL)
8492 *isElemRef = 1;
8493
Daniel Veillardc0826a72004-08-10 14:17:33 +00008494 xmlSchemaPValAttrNodeQName(ctxt, schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008495 NULL, attr, &refNs, &ref);
8496 xmlSchemaCheckReference(ctxt, schema, node, attr, refNs);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008497 /*
8498 * SPEC (3.3.3 : 2.1) "One of ref or name must be present, but not both"
Daniel Veillardc0826a72004-08-10 14:17:33 +00008499 */
8500 if (nameAttr != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008501 xmlSchemaPMutualExclAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008502 XML_SCHEMAP_SRC_ELEMENT_2_1, NULL, nameAttr, "ref", "name");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008503 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008504 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008505 * Check for illegal attributes.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008506 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00008507 attr = node->properties;
8508 while (attr != NULL) {
8509 if (attr->ns == NULL) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00008510 if (xmlStrEqual(attr->name, BAD_CAST "ref") ||
8511 xmlStrEqual(attr->name, BAD_CAST "name") ||
8512 xmlStrEqual(attr->name, BAD_CAST "id") ||
8513 xmlStrEqual(attr->name, BAD_CAST "maxOccurs") ||
8514 xmlStrEqual(attr->name, BAD_CAST "minOccurs"))
8515 {
8516 attr = attr->next;
8517 continue;
8518 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008519 /* SPEC (3.3.3 : 2.2) */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008520 xmlSchemaPCustomAttrErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008521 XML_SCHEMAP_SRC_ELEMENT_2_2,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008522 NULL, NULL, attr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008523 "Only the attributes 'minOccurs', 'maxOccurs' and "
8524 "'id' are allowed in addition to 'ref'");
8525 break;
8526 }
8527 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
8528 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008529 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00008530 }
8531 attr = attr->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008532 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00008533 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008534 * No children except <annotation> expected.
Daniel Veillardc0826a72004-08-10 14:17:33 +00008535 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008536 if (child != NULL) {
8537 xmlSchemaPContentErr(ctxt, XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008538 NULL, node, child, NULL, "(annotation?)");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008539 }
8540 if ((min == 0) && (max == 0))
8541 goto return_null;
8542 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008543 * Create the reference item and attach it to the particle.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008544 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008545 refer = xmlSchemaNewQNameRef(ctxt, XML_SCHEMA_TYPE_ELEMENT,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008546 ref, refNs);
8547 if (refer == NULL)
8548 goto return_null;
8549 particle->children = (xmlSchemaTreeItemPtr) refer;
8550 particle->annot = annot;
8551 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008552 * Add the particle to pending components, since the reference
8553 * need to be resolved.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008554 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008555 WXS_ADD_PENDING(ctxt, particle);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008556 return ((xmlSchemaBasicItemPtr) particle);
8557 }
8558 /*
8559 * The declaration part ===============================================
8560 */
8561declaration_part:
8562 {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008563 const xmlChar *ns = NULL, *fixed, *name, *attrValue;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008564 xmlSchemaIDCPtr curIDC = NULL, lastIDC = NULL;
8565
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008566 if (xmlSchemaPValAttrNode(ctxt, NULL, nameAttr,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008567 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008568 goto return_null;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008569 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00008570 * Evaluate the target namespace.
8571 */
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00008572 if (topLevel) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008573 ns = ctxt->targetNamespace;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00008574 } else {
8575 attr = xmlSchemaGetPropNode(node, "form");
8576 if (attr != NULL) {
8577 attrValue = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
8578 if (xmlStrEqual(attrValue, BAD_CAST "qualified")) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008579 ns = ctxt->targetNamespace;
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00008580 } else if (!xmlStrEqual(attrValue, BAD_CAST "unqualified")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008581 xmlSchemaPSimpleTypeErr(ctxt,
8582 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
8583 NULL, (xmlNodePtr) attr,
8584 NULL, "(qualified | unqualified)",
8585 attrValue, NULL, NULL, NULL);
Kasimier T. Buchcikb4a9e642004-08-30 10:56:53 +00008586 }
8587 } else if (schema->flags & XML_SCHEMAS_QUALIF_ELEM)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008588 ns = ctxt->targetNamespace;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008589 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008590 decl = xmlSchemaAddElement(ctxt, name, ns, node, topLevel);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008591 if (decl == NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008592 goto return_null;
William M. Bracke7091952004-05-11 15:09:58 +00008593 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008594 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00008595 * Check for illegal attributes.
8596 */
William M. Bracke7091952004-05-11 15:09:58 +00008597 attr = node->properties;
8598 while (attr != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00008599 if (attr->ns == NULL) {
8600 if ((!xmlStrEqual(attr->name, BAD_CAST "name")) &&
8601 (!xmlStrEqual(attr->name, BAD_CAST "type")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008602 (!xmlStrEqual(attr->name, BAD_CAST "id")) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00008603 (!xmlStrEqual(attr->name, BAD_CAST "default")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008604 (!xmlStrEqual(attr->name, BAD_CAST "fixed")) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00008605 (!xmlStrEqual(attr->name, BAD_CAST "block")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008606 (!xmlStrEqual(attr->name, BAD_CAST "nillable")))
8607 {
8608 if (topLevel == 0) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00008609 if ((!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00008610 (!xmlStrEqual(attr->name, BAD_CAST "minOccurs")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008611 (!xmlStrEqual(attr->name, BAD_CAST "form")))
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00008612 {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00008613 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008614 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00008615 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008616 } else if ((!xmlStrEqual(attr->name, BAD_CAST "final")) &&
8617 (!xmlStrEqual(attr->name, BAD_CAST "abstract")) &&
Daniel Veillardc0826a72004-08-10 14:17:33 +00008618 (!xmlStrEqual(attr->name, BAD_CAST "substitutionGroup"))) {
8619
8620 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008621 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00008622 }
8623 }
8624 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008625
Daniel Veillardc0826a72004-08-10 14:17:33 +00008626 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008627 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Bracke7091952004-05-11 15:09:58 +00008628 }
8629 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008630 }
William M. Bracke7091952004-05-11 15:09:58 +00008631 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00008632 * Extract/validate attributes.
8633 */
8634 if (topLevel) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008635 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00008636 * Process top attributes of global element declarations here.
8637 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008638 decl->flags |= XML_SCHEMAS_ELEM_GLOBAL;
8639 decl->flags |= XML_SCHEMAS_ELEM_TOPLEVEL;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008640 xmlSchemaPValAttrQName(ctxt, schema,
8641 NULL, node, "substitutionGroup",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008642 &(decl->substGroupNs), &(decl->substGroup));
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008643 if (xmlGetBooleanProp(ctxt, node, "abstract", 0))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008644 decl->flags |= XML_SCHEMAS_ELEM_ABSTRACT;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008645 /*
8646 * Attribute "final".
8647 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008648 attr = xmlSchemaGetPropNode(node, "final");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008649 if (attr == NULL) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00008650 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_EXTENSION)
8651 decl->flags |= XML_SCHEMAS_ELEM_FINAL_EXTENSION;
8652 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION)
8653 decl->flags |= XML_SCHEMAS_ELEM_FINAL_RESTRICTION;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008654 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008655 attrValue = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
8656 if (xmlSchemaPValAttrBlockFinal(attrValue, &(decl->flags),
Daniel Veillardc0826a72004-08-10 14:17:33 +00008657 -1,
8658 XML_SCHEMAS_ELEM_FINAL_EXTENSION,
8659 XML_SCHEMAS_ELEM_FINAL_RESTRICTION, -1, -1, -1) != 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008660 xmlSchemaPSimpleTypeErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008661 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008662 NULL, (xmlNodePtr) attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008663 NULL, "(#all | List of (extension | restriction))",
Daniel Veillardc0826a72004-08-10 14:17:33 +00008664 attrValue, NULL, NULL, NULL);
8665 }
8666 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008667 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00008668 /*
8669 * Attribute "block".
8670 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008671 attr = xmlSchemaGetPropNode(node, "block");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008672 if (attr == NULL) {
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +00008673 /*
8674 * Apply default "block" values.
8675 */
8676 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION)
8677 decl->flags |= XML_SCHEMAS_ELEM_BLOCK_RESTRICTION;
8678 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION)
8679 decl->flags |= XML_SCHEMAS_ELEM_BLOCK_EXTENSION;
8680 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION)
8681 decl->flags |= XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008682 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008683 attrValue = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
8684 if (xmlSchemaPValAttrBlockFinal(attrValue, &(decl->flags),
Daniel Veillardc0826a72004-08-10 14:17:33 +00008685 -1,
8686 XML_SCHEMAS_ELEM_BLOCK_EXTENSION,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008687 XML_SCHEMAS_ELEM_BLOCK_RESTRICTION,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008688 XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION, -1, -1) != 0) {
8689 xmlSchemaPSimpleTypeErr(ctxt,
8690 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008691 NULL, (xmlNodePtr) attr,
William M. Brack2f2a6632004-08-20 23:09:47 +00008692 NULL, "(#all | List of (extension | "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008693 "restriction | substitution))", attrValue,
8694 NULL, NULL, NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00008695 }
8696 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008697 if (xmlGetBooleanProp(ctxt, node, "nillable", 0))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008698 decl->flags |= XML_SCHEMAS_ELEM_NILLABLE;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00008699
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008700 attr = xmlSchemaGetPropNode(node, "type");
8701 if (attr != NULL) {
8702 xmlSchemaPValAttrNodeQName(ctxt, schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008703 NULL, attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008704 &(decl->namedTypeNs), &(decl->namedType));
8705 xmlSchemaCheckReference(ctxt, schema, node,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008706 attr, decl->namedTypeNs);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008707 }
8708 decl->value = xmlSchemaGetProp(ctxt, node, "default");
8709 attr = xmlSchemaGetPropNode(node, "fixed");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008710 if (attr != NULL) {
8711 fixed = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008712 if (decl->value != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008713 /*
8714 * 3.3.3 : 1
8715 * default and fixed must not both be present.
Daniel Veillardc0826a72004-08-10 14:17:33 +00008716 */
8717 xmlSchemaPMutualExclAttrErr(ctxt,
8718 XML_SCHEMAP_SRC_ELEMENT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008719 NULL, attr, "default", "fixed");
Daniel Veillardc0826a72004-08-10 14:17:33 +00008720 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008721 decl->flags |= XML_SCHEMAS_ELEM_FIXED;
8722 decl->value = fixed;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008723 }
William M. Bracke7091952004-05-11 15:09:58 +00008724 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008725 /*
8726 * And now for the children...
8727 */
William M. Bracke7091952004-05-11 15:09:58 +00008728 if (IS_SCHEMA(child, "complexType")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008729 /*
8730 * 3.3.3 : 3
Daniel Veillardc0826a72004-08-10 14:17:33 +00008731 * "type" and either <simpleType> or <complexType> are mutually
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008732 * exclusive
Daniel Veillardc0826a72004-08-10 14:17:33 +00008733 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008734 if (decl->namedType != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00008735 xmlSchemaPContentErr(ctxt,
8736 XML_SCHEMAP_SRC_ELEMENT_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008737 NULL, node, child,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008738 "The attribute 'type' and the <complexType> child are "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008739 "mutually exclusive", NULL);
William M. Bracke7091952004-05-11 15:09:58 +00008740 } else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008741 WXS_ELEM_TYPEDEF(decl) = xmlSchemaParseComplexType(ctxt, schema, child, 0);
William M. Bracke7091952004-05-11 15:09:58 +00008742 child = child->next;
8743 } else if (IS_SCHEMA(child, "simpleType")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008744 /*
8745 * 3.3.3 : 3
Daniel Veillardc0826a72004-08-10 14:17:33 +00008746 * "type" and either <simpleType> or <complexType> are
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008747 * mutually exclusive
Daniel Veillardc0826a72004-08-10 14:17:33 +00008748 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008749 if (decl->namedType != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00008750 xmlSchemaPContentErr(ctxt,
8751 XML_SCHEMAP_SRC_ELEMENT_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008752 NULL, node, child,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008753 "The attribute 'type' and the <simpleType> child are "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008754 "mutually exclusive", NULL);
William M. Bracke7091952004-05-11 15:09:58 +00008755 } else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008756 WXS_ELEM_TYPEDEF(decl) = xmlSchemaParseSimpleType(ctxt, schema, child, 0);
William M. Bracke7091952004-05-11 15:09:58 +00008757 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008758 }
William M. Bracke7091952004-05-11 15:09:58 +00008759 while ((IS_SCHEMA(child, "unique")) ||
Daniel Veillardc0826a72004-08-10 14:17:33 +00008760 (IS_SCHEMA(child, "key")) || (IS_SCHEMA(child, "keyref"))) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008761 if (IS_SCHEMA(child, "unique")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008762 curIDC = xmlSchemaParseIDC(ctxt, schema, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008763 XML_SCHEMA_TYPE_IDC_UNIQUE, decl->targetNamespace);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008764 } else if (IS_SCHEMA(child, "key")) {
8765 curIDC = xmlSchemaParseIDC(ctxt, schema, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008766 XML_SCHEMA_TYPE_IDC_KEY, decl->targetNamespace);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008767 } else if (IS_SCHEMA(child, "keyref")) {
8768 curIDC = xmlSchemaParseIDC(ctxt, schema, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008769 XML_SCHEMA_TYPE_IDC_KEYREF, decl->targetNamespace);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008770 }
8771 if (lastIDC != NULL)
8772 lastIDC->next = curIDC;
8773 else
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008774 decl->idcs = (void *) curIDC;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008775 lastIDC = curIDC;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +00008776 child = child->next;
William M. Bracke7091952004-05-11 15:09:58 +00008777 }
8778 if (child != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +00008779 xmlSchemaPContentErr(ctxt,
8780 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008781 NULL, node, child,
Daniel Veillardc0826a72004-08-10 14:17:33 +00008782 NULL, "(annotation?, ((simpleType | complexType)?, "
8783 "(unique | key | keyref)*))");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008784 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008785 decl->annot = annot;
Daniel Veillardc0826a72004-08-10 14:17:33 +00008786 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00008787 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008788 * NOTE: Element Declaration Representation OK 4. will be checked at a
Daniel Veillardc0826a72004-08-10 14:17:33 +00008789 * different layer.
8790 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008791 FREE_AND_NULL(des)
8792 if (topLevel)
8793 return ((xmlSchemaBasicItemPtr) decl);
8794 else {
8795 particle->children = (xmlSchemaTreeItemPtr) decl;
8796 return ((xmlSchemaBasicItemPtr) particle);
8797 }
8798
8799return_null:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008800 FREE_AND_NULL(des);
8801 if (annot != NULL) {
8802 if (particle != NULL)
8803 particle->annot = NULL;
8804 if (decl != NULL)
8805 decl->annot = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008806 xmlSchemaFreeAnnot(annot);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008807 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008808 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00008809}
8810
8811/**
8812 * xmlSchemaParseUnion:
8813 * @ctxt: a schema validation context
8814 * @schema: the schema being built
8815 * @node: a subtree containing XML Schema informations
8816 *
8817 * parse a XML schema Union definition
8818 * *WARNING* this interface is highly subject to change
8819 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008820 * Returns -1 in case of internal error, 0 in case of success and a positive
8821 * error code otherwise.
Daniel Veillard4255d502002-04-16 15:50:10 +00008822 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008823static int
Daniel Veillard4255d502002-04-16 15:50:10 +00008824xmlSchemaParseUnion(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00008825 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00008826{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008827 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +00008828 xmlNodePtr child = NULL;
William M. Brack2f2a6632004-08-20 23:09:47 +00008829 xmlAttrPtr attr;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008830 const xmlChar *cur = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +00008831
8832 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008833 return (-1);
8834 /* Not a component, don't create it. */
8835 type = ctxt->ctxtType;
8836 /*
8837 * Mark the simple type as being of variety "union".
8838 */
8839 type->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008840 /*
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00008841 * SPEC (Base type) (2) "If the <list> or <union> alternative is chosen,
8842 * then the ·simple ur-type definition·."
8843 */
8844 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
William M. Brack2f2a6632004-08-20 23:09:47 +00008845 /*
8846 * Check for illegal attributes.
8847 */
8848 attr = node->properties;
8849 while (attr != NULL) {
8850 if (attr->ns == NULL) {
8851 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
8852 (!xmlStrEqual(attr->name, BAD_CAST "memberTypes"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008853 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008854 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +00008855 }
8856 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008857 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008858 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +00008859 }
8860 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008861 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008862 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
William M. Brack2f2a6632004-08-20 23:09:47 +00008863 /*
8864 * Attribute "memberTypes". This is a list of QNames.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008865 * TODO: Check the value to contain anything.
William M. Brack2f2a6632004-08-20 23:09:47 +00008866 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008867 attr = xmlSchemaGetPropNode(node, "memberTypes");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008868 if (attr != NULL) {
8869 const xmlChar *end;
8870 xmlChar *tmp;
8871 const xmlChar *localName, *nsName;
8872 xmlSchemaTypeLinkPtr link, lastLink = NULL;
8873 xmlSchemaQNameRefPtr ref;
8874
8875 cur = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008876 type->base = cur;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008877 do {
8878 while (IS_BLANK_CH(*cur))
8879 cur++;
8880 end = cur;
8881 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
8882 end++;
8883 if (end == cur)
8884 break;
8885 tmp = xmlStrndup(cur, end - cur);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008886 if (xmlSchemaPValAttrNodeQNameValue(ctxt, schema,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008887 NULL, attr, BAD_CAST tmp, &nsName, &localName) == 0) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008888 /*
8889 * Create the member type link.
8890 */
8891 link = (xmlSchemaTypeLinkPtr)
8892 xmlMalloc(sizeof(xmlSchemaTypeLink));
8893 if (link == NULL) {
8894 xmlSchemaPErrMemory(ctxt, "xmlSchemaParseUnion, "
8895 "allocating a type link", NULL);
8896 return (-1);
8897 }
8898 link->type = NULL;
8899 link->next = NULL;
8900 if (lastLink == NULL)
8901 type->memberTypes = link;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008902 else
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008903 lastLink->next = link;
8904 lastLink = link;
8905 /*
8906 * Create a reference item.
8907 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00008908 ref = xmlSchemaNewQNameRef(ctxt, XML_SCHEMA_TYPE_SIMPLE,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008909 localName, nsName);
8910 if (ref == NULL) {
8911 FREE_AND_NULL(tmp)
8912 return (-1);
8913 }
8914 /*
8915 * Assign the reference to the link, it will be resolved
8916 * later during fixup of the union simple type.
8917 */
8918 link->type = (xmlSchemaTypePtr) ref;
8919 }
8920 FREE_AND_NULL(tmp)
8921 cur = end;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008922 } while (*cur != 0);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008923
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008924 }
William M. Brack2f2a6632004-08-20 23:09:47 +00008925 /*
8926 * And now for the children...
8927 */
Daniel Veillard4255d502002-04-16 15:50:10 +00008928 child = node->children;
8929 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008930 /*
8931 * Add the annotation to the simple type ancestor.
8932 */
8933 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00008934 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +00008935 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00008936 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008937 if (IS_SCHEMA(child, "simpleType")) {
8938 xmlSchemaTypePtr subtype, last = NULL;
8939
8940 /*
8941 * Anchor the member types in the "subtypes" field of the
8942 * simple type.
8943 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008944 while (IS_SCHEMA(child, "simpleType")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008945 subtype = (xmlSchemaTypePtr)
8946 xmlSchemaParseSimpleType(ctxt, schema, child, 0);
8947 if (subtype != NULL) {
8948 if (last == NULL) {
8949 type->subtypes = subtype;
8950 last = subtype;
8951 } else {
8952 last->next = subtype;
8953 last = subtype;
8954 }
8955 last->next = NULL;
8956 }
8957 child = child->next;
8958 }
Daniel Veillard4255d502002-04-16 15:50:10 +00008959 }
8960 if (child != NULL) {
William M. Brack2f2a6632004-08-20 23:09:47 +00008961 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008962 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008963 NULL, node, child, NULL, "(annotation?, simpleType*)");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008964 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008965 if ((attr == NULL) && (type->subtypes == NULL)) {
8966 /*
8967 * src-union-memberTypes-or-simpleTypes
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008968 * Either the memberTypes [attribute] of the <union> element must
8969 * be non-empty or there must be at least one simpleType [child].
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008970 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008971 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008972 XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00008973 NULL, node,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008974 "Either the attribute 'memberTypes' or "
8975 "at least one <simpleType> child must be present", NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00008976 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008977 return (0);
Daniel Veillard4255d502002-04-16 15:50:10 +00008978}
8979
8980/**
8981 * xmlSchemaParseList:
8982 * @ctxt: a schema validation context
8983 * @schema: the schema being built
8984 * @node: a subtree containing XML Schema informations
8985 *
8986 * parse a XML schema List definition
8987 * *WARNING* this interface is highly subject to change
8988 *
William M. Bracke7091952004-05-11 15:09:58 +00008989 * Returns -1 in case of error, 0 if the declaration is improper and
Daniel Veillard4255d502002-04-16 15:50:10 +00008990 * 1 in case of success.
8991 */
8992static xmlSchemaTypePtr
8993xmlSchemaParseList(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillardd0c9c322003-10-10 00:49:42 +00008994 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00008995{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00008996 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +00008997 xmlNodePtr child = NULL;
William M. Brack2f2a6632004-08-20 23:09:47 +00008998 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +00008999
9000 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
9001 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009002 /* Not a component, don't create it. */
9003 type = ctxt->ctxtType;
9004 /*
9005 * Mark the type as being of variety "list".
9006 */
9007 type->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009008 /*
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +00009009 * SPEC (Base type) (2) "If the <list> or <union> alternative is chosen,
9010 * then the ·simple ur-type definition·."
9011 */
9012 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
William M. Brack2f2a6632004-08-20 23:09:47 +00009013 /*
9014 * Check for illegal attributes.
9015 */
9016 attr = node->properties;
9017 while (attr != NULL) {
9018 if (attr->ns == NULL) {
9019 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
9020 (!xmlStrEqual(attr->name, BAD_CAST "itemType"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009021 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009022 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +00009023 }
9024 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009025 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009026 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +00009027 }
9028 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009029 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009030
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009031 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009032
William M. Brack2f2a6632004-08-20 23:09:47 +00009033 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009034 * Attribute "itemType". NOTE that we will use the "ref" and "refNs"
9035 * fields for holding the reference to the itemType.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009036 *
9037 * REVAMP TODO: Use the "base" and "baseNs" fields, since we will remove
9038 * the "ref" fields.
William M. Brack2f2a6632004-08-20 23:09:47 +00009039 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009040 xmlSchemaPValAttrQName(ctxt, schema, NULL,
9041 node, "itemType", &(type->baseNs), &(type->base));
William M. Brack2f2a6632004-08-20 23:09:47 +00009042 /*
9043 * And now for the children...
9044 */
Daniel Veillard4255d502002-04-16 15:50:10 +00009045 child = node->children;
9046 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009047 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009048 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009049 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009050 }
William M. Brack2f2a6632004-08-20 23:09:47 +00009051 if (IS_SCHEMA(child, "simpleType")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009052 /*
9053 * src-list-itemType-or-simpleType
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009054 * Either the itemType [attribute] or the <simpleType> [child] of
9055 * the <list> element must be present, but not both.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009056 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009057 if (type->base != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009058 xmlSchemaPCustomErr(ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +00009059 XML_SCHEMAP_SRC_SIMPLE_TYPE_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009060 NULL, node,
William M. Brack2f2a6632004-08-20 23:09:47 +00009061 "The attribute 'itemType' and the <simpleType> child "
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009062 "are mutually exclusive", NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009063 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009064 type->subtypes = xmlSchemaParseSimpleType(ctxt, schema, child, 0);
William M. Brack2f2a6632004-08-20 23:09:47 +00009065 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009066 child = child->next;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009067 } else if (type->base == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009068 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009069 XML_SCHEMAP_SRC_SIMPLE_TYPE_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009070 NULL, node,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009071 "Either the attribute 'itemType' or the <simpleType> child "
9072 "must be present", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00009073 }
9074 if (child != NULL) {
William M. Brack2f2a6632004-08-20 23:09:47 +00009075 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009076 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009077 NULL, node, child, NULL, "(annotation?, simpleType?)");
Daniel Veillard4255d502002-04-16 15:50:10 +00009078 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009079 if ((type->base == NULL) &&
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009080 (type->subtypes == NULL) &&
9081 (xmlSchemaGetPropNode(node, "itemType") == NULL)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009082 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009083 XML_SCHEMAP_SRC_SIMPLE_TYPE_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009084 NULL, node,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009085 "Either the attribute 'itemType' or the <simpleType> child "
9086 "must be present", NULL);
9087 }
9088 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +00009089}
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009090
Daniel Veillard4255d502002-04-16 15:50:10 +00009091/**
9092 * xmlSchemaParseSimpleType:
9093 * @ctxt: a schema validation context
9094 * @schema: the schema being built
9095 * @node: a subtree containing XML Schema informations
9096 *
9097 * parse a XML schema Simple Type definition
9098 * *WARNING* this interface is highly subject to change
9099 *
William M. Bracke7091952004-05-11 15:09:58 +00009100 * Returns -1 in case of error, 0 if the declaration is improper and
Daniel Veillardc0826a72004-08-10 14:17:33 +00009101 * 1 in case of success.
Daniel Veillard4255d502002-04-16 15:50:10 +00009102 */
9103static xmlSchemaTypePtr
9104xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillard3646d642004-06-02 19:19:14 +00009105 xmlNodePtr node, int topLevel)
Daniel Veillard4255d502002-04-16 15:50:10 +00009106{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009107 xmlSchemaTypePtr type, oldCtxtType;
Daniel Veillard4255d502002-04-16 15:50:10 +00009108 xmlNodePtr child = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00009109 const xmlChar *attrValue = NULL;
Daniel Veillardc0826a72004-08-10 14:17:33 +00009110 xmlAttrPtr attr;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009111 int hasRestriction = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +00009112
9113 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
9114 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009115
Daniel Veillardc0826a72004-08-10 14:17:33 +00009116 if (topLevel) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009117 attr = xmlSchemaGetPropNode(node, "name");
Daniel Veillardc0826a72004-08-10 14:17:33 +00009118 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009119 xmlSchemaPMissingAttrErr(ctxt,
9120 XML_SCHEMAP_S4S_ATTR_MISSING,
9121 NULL, node,
Daniel Veillardc0826a72004-08-10 14:17:33 +00009122 "name", NULL);
9123 return (NULL);
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +00009124 } else {
9125 if (xmlSchemaPValAttrNode(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009126 NULL, attr,
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +00009127 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &attrValue) != 0)
9128 return (NULL);
9129 /*
9130 * Skip built-in types.
9131 */
9132 if (ctxt->isS4S) {
9133 xmlSchemaTypePtr biType;
9134
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009135 if (ctxt->isRedefine) {
9136 /*
9137 * REDEFINE: Disallow redefinition of built-in-types.
9138 * TODO: It seems that the spec does not say anything
9139 * about this case.
9140 */
9141 xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_REDEFINE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009142 NULL, node,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009143 "Redefinition of built-in simple types is not "
9144 "supported", NULL);
9145 return(NULL);
9146 }
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +00009147 biType = xmlSchemaGetPredefinedType(attrValue, xmlSchemaNs);
9148 if (biType != NULL)
9149 return (biType);
9150 }
Daniel Veillard01fa6152004-06-29 17:04:39 +00009151 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00009152 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009153 /*
9154 * TargetNamespace:
9155 * SPEC "The ·actual value· of the targetNamespace [attribute]
9156 * of the <schema> ancestor element information item if present,
9157 * otherwise ·absent·.
9158 */
Daniel Veillardc0826a72004-08-10 14:17:33 +00009159 if (topLevel == 0) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009160#ifdef ENABLE_NAMED_LOCALS
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009161 char buf[40];
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009162#endif
Daniel Veillard01fa6152004-06-29 17:04:39 +00009163 /*
Daniel Veillardc0826a72004-08-10 14:17:33 +00009164 * Parse as local simple type definition.
Daniel Veillard01fa6152004-06-29 17:04:39 +00009165 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009166#ifdef ENABLE_NAMED_LOCALS
Kasimier T. Buchcik87250a92005-01-28 15:59:53 +00009167 snprintf(buf, 39, "#ST%d", ctxt->counter++ + 1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009168 type = xmlSchemaAddType(ctxt, schema,
9169 XML_SCHEMA_TYPE_SIMPLE,
9170 xmlDictLookup(ctxt->dict, (const xmlChar *)buf, -1),
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009171 ctxt->targetNamespace, node, 0);
9172#else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009173 type = xmlSchemaAddType(ctxt, schema,
9174 XML_SCHEMA_TYPE_SIMPLE,
9175 NULL, ctxt->targetNamespace, node, 0);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009176#endif
Daniel Veillardc0826a72004-08-10 14:17:33 +00009177 if (type == NULL)
9178 return (NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009179 type->type = XML_SCHEMA_TYPE_SIMPLE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009180 type->contentType = XML_SCHEMA_CONTENT_SIMPLE;
Daniel Veillardc0826a72004-08-10 14:17:33 +00009181 /*
9182 * Check for illegal attributes.
9183 */
9184 attr = node->properties;
9185 while (attr != NULL) {
9186 if (attr->ns == NULL) {
9187 if (!xmlStrEqual(attr->name, BAD_CAST "id")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009188 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009189 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillard01fa6152004-06-29 17:04:39 +00009190 }
Daniel Veillardc0826a72004-08-10 14:17:33 +00009191 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009192 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009193 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009194 }
9195 attr = attr->next;
Daniel Veillard01fa6152004-06-29 17:04:39 +00009196 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009197 } else {
Daniel Veillardc0826a72004-08-10 14:17:33 +00009198 /*
9199 * Parse as global simple type definition.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009200 *
9201 * Note that attrValue is the value of the attribute "name" here.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009202 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009203 type = xmlSchemaAddType(ctxt, schema, XML_SCHEMA_TYPE_SIMPLE,
9204 attrValue, ctxt->targetNamespace, node, 1);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009205 if (type == NULL)
9206 return (NULL);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009207 type->type = XML_SCHEMA_TYPE_SIMPLE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009208 type->contentType = XML_SCHEMA_CONTENT_SIMPLE;
Daniel Veillardc0826a72004-08-10 14:17:33 +00009209 type->flags |= XML_SCHEMAS_TYPE_GLOBAL;
9210 /*
9211 * Check for illegal attributes.
9212 */
9213 attr = node->properties;
9214 while (attr != NULL) {
9215 if (attr->ns == NULL) {
9216 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
9217 (!xmlStrEqual(attr->name, BAD_CAST "name")) &&
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009218 (!xmlStrEqual(attr->name, BAD_CAST "final"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009219 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009220 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009221 }
9222 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009223 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009224 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Daniel Veillardc0826a72004-08-10 14:17:33 +00009225 }
9226 attr = attr->next;
9227 }
9228 /*
9229 * Attribute "final".
9230 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009231 attr = xmlSchemaGetPropNode(node, "final");
Daniel Veillardc0826a72004-08-10 14:17:33 +00009232 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009233 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION)
9234 type->flags |= XML_SCHEMAS_TYPE_FINAL_RESTRICTION;
9235 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_LIST)
9236 type->flags |= XML_SCHEMAS_TYPE_FINAL_LIST;
9237 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_UNION)
9238 type->flags |= XML_SCHEMAS_TYPE_FINAL_UNION;
Daniel Veillardc0826a72004-08-10 14:17:33 +00009239 } else {
9240 attrValue = xmlSchemaGetProp(ctxt, node, "final");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009241 if (xmlSchemaPValAttrBlockFinal(attrValue, &(type->flags),
9242 -1, -1, XML_SCHEMAS_TYPE_FINAL_RESTRICTION, -1,
Daniel Veillardc0826a72004-08-10 14:17:33 +00009243 XML_SCHEMAS_TYPE_FINAL_LIST,
9244 XML_SCHEMAS_TYPE_FINAL_UNION) != 0) {
9245
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009246 xmlSchemaPSimpleTypeErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +00009247 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009248 WXS_BASIC_CAST type, (xmlNodePtr) attr,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009249 NULL, "(#all | List of (list | union | restriction)",
Daniel Veillardc0826a72004-08-10 14:17:33 +00009250 attrValue, NULL, NULL, NULL);
9251 }
9252 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009253 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009254 type->targetNamespace = ctxt->targetNamespace;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009255 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Daniel Veillardc0826a72004-08-10 14:17:33 +00009256 /*
9257 * And now for the children...
9258 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009259 oldCtxtType = ctxt->ctxtType;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009260
Daniel Veillardc0826a72004-08-10 14:17:33 +00009261 ctxt->ctxtType = type;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009262
Daniel Veillard4255d502002-04-16 15:50:10 +00009263 child = node->children;
9264 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009265 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009266 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00009267 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009268 if (child == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009269 xmlSchemaPContentErr(ctxt, XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009270 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009271 "(annotation?, (restriction | list | union))");
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009272 } else if (IS_SCHEMA(child, "restriction")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009273 xmlSchemaParseRestriction(ctxt, schema, child,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009274 XML_SCHEMA_TYPE_SIMPLE);
9275 hasRestriction = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009276 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009277 } else if (IS_SCHEMA(child, "list")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009278 xmlSchemaParseList(ctxt, schema, child);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009279 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009280 } else if (IS_SCHEMA(child, "union")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009281 xmlSchemaParseUnion(ctxt, schema, child);
Daniel Veillardd0c9c322003-10-10 00:49:42 +00009282 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +00009283 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009284 if (child != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009285 xmlSchemaPContentErr(ctxt, XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009286 NULL, node, child, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +00009287 "(annotation?, (restriction | list | union))");
Daniel Veillard4255d502002-04-16 15:50:10 +00009288 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009289 /*
9290 * REDEFINE: SPEC src-redefine (5)
9291 * "Within the [children], each <simpleType> must have a
9292 * <restriction> among its [children] ... the ·actual value· of whose
9293 * base [attribute] must be the same as the ·actual value· of its own
9294 * name attribute plus target namespace;"
9295 */
9296 if (topLevel && ctxt->isRedefine && (! hasRestriction)) {
9297 xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_REDEFINE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009298 NULL, node, "This is a redefinition, thus the "
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009299 "<simpleType> must have a <restriction> child", NULL);
9300 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009301
Kasimier T. Buchcik87876402004-09-29 13:29:03 +00009302 ctxt->ctxtType = oldCtxtType;
Daniel Veillard4255d502002-04-16 15:50:10 +00009303 return (type);
9304}
9305
Daniel Veillard4255d502002-04-16 15:50:10 +00009306/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009307 * xmlSchemaParseModelGroupDefRef:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009308 * @ctxt: the parser context
9309 * @schema: the schema being built
9310 * @node: the node
Daniel Veillard4255d502002-04-16 15:50:10 +00009311 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009312 * Parses a reference to a model group definition.
Daniel Veillard4255d502002-04-16 15:50:10 +00009313 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009314 * We will return a particle component with a qname-component or
9315 * NULL in case of an error.
Daniel Veillard4255d502002-04-16 15:50:10 +00009316 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009317static xmlSchemaTreeItemPtr
9318xmlSchemaParseModelGroupDefRef(xmlSchemaParserCtxtPtr ctxt,
9319 xmlSchemaPtr schema,
9320 xmlNodePtr node)
Daniel Veillard4255d502002-04-16 15:50:10 +00009321{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009322 xmlSchemaParticlePtr item;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009323 xmlNodePtr child = NULL;
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009324 xmlAttrPtr attr;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009325 const xmlChar *ref = NULL, *refNs = NULL;
9326 int min, max;
9327
9328 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009329 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009330
9331 attr = xmlSchemaGetPropNode(node, "ref");
9332 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009333 xmlSchemaPMissingAttrErr(ctxt,
9334 XML_SCHEMAP_S4S_ATTR_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009335 NULL, node, "ref", NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009336 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009337 } else if (xmlSchemaPValAttrNodeQName(ctxt, schema, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009338 attr, &refNs, &ref) != 0) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009339 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009340 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009341 xmlSchemaCheckReference(ctxt, schema, node, attr, refNs);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009342 min = xmlGetMinOccurs(ctxt, node, 0, -1, 1, "xs:nonNegativeInteger");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009343 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009344 "(xs:nonNegativeInteger | unbounded)");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009345 /*
9346 * Check for illegal attributes.
9347 */
9348 attr = node->properties;
9349 while (attr != NULL) {
9350 if (attr->ns == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009351 if ((!xmlStrEqual(attr->name, BAD_CAST "ref")) &&
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009352 (!xmlStrEqual(attr->name, BAD_CAST "id")) &&
9353 (!xmlStrEqual(attr->name, BAD_CAST "minOccurs")) &&
9354 (!xmlStrEqual(attr->name, BAD_CAST "maxOccurs"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009355 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009356 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009357 }
9358 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009359 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009360 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009361 }
9362 attr = attr->next;
9363 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009364 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +00009365 item = xmlSchemaAddParticle(ctxt, node, min, max);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009366 if (item == NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009367 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009368 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009369 * Create a qname-reference and set as the term; it will be substituted
9370 * for the model group after the reference has been resolved.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009371 */
9372 item->children = (xmlSchemaTreeItemPtr)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009373 xmlSchemaNewQNameRef(ctxt, XML_SCHEMA_TYPE_GROUP, ref, refNs);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009374 xmlSchemaPCheckParticleCorrect_2(ctxt, item, node, min, max);
9375 /*
9376 * And now for the children...
9377 */
9378 child = node->children;
9379 /* TODO: Is annotation even allowed for a model group reference? */
9380 if (IS_SCHEMA(child, "annotation")) {
9381 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009382 * TODO: What to do exactly with the annotation?
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009383 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009384 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009385 child = child->next;
9386 }
9387 if (child != NULL) {
9388 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009389 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009390 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009391 "(annotation?)");
9392 }
9393 /*
9394 * Corresponds to no component at all if minOccurs==maxOccurs==0.
9395 */
9396 if ((min == 0) && (max == 0))
9397 return (NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009398
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009399 return ((xmlSchemaTreeItemPtr) item);
9400}
9401
9402/**
9403 * xmlSchemaParseModelGroupDefinition:
9404 * @ctxt: a schema validation context
9405 * @schema: the schema being built
9406 * @node: a subtree containing XML Schema informations
9407 *
9408 * Parses a XML schema model group definition.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009409 *
9410 * Note that the contraint src-redefine (6.2) can't be applied until
9411 * references have been resolved. So we will do this at the
9412 * component fixup level.
9413 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009414 * *WARNING* this interface is highly subject to change
9415 *
9416 * Returns -1 in case of error, 0 if the declaration is improper and
9417 * 1 in case of success.
9418 */
9419static xmlSchemaModelGroupDefPtr
9420xmlSchemaParseModelGroupDefinition(xmlSchemaParserCtxtPtr ctxt,
9421 xmlSchemaPtr schema,
9422 xmlNodePtr node)
9423{
9424 xmlSchemaModelGroupDefPtr item;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009425 xmlNodePtr child = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009426 xmlAttrPtr attr;
9427 const xmlChar *name;
Daniel Veillard4255d502002-04-16 15:50:10 +00009428
9429 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009430 return (NULL);
9431
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009432 attr = xmlSchemaGetPropNode(node, "name");
9433 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009434 xmlSchemaPMissingAttrErr(ctxt,
9435 XML_SCHEMAP_S4S_ATTR_MISSING,
9436 NULL, node,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009437 "name", NULL);
9438 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009439 } else if (xmlSchemaPValAttrNode(ctxt, NULL, attr,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009440 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) {
9441 return (NULL);
9442 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009443 item = xmlSchemaAddModelGroupDefinition(ctxt, schema, name,
9444 ctxt->targetNamespace, node);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009445 if (item == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009446 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009447 /*
9448 * Check for illegal attributes.
9449 */
9450 attr = node->properties;
9451 while (attr != NULL) {
9452 if (attr->ns == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009453 if ((!xmlStrEqual(attr->name, BAD_CAST "name")) &&
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009454 (!xmlStrEqual(attr->name, BAD_CAST "id"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009455 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009456 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009457 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009458 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009459 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009460 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009461 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009462 attr = attr->next;
9463 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009464 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009465 /*
9466 * And now for the children...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009467 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009468 child = node->children;
9469 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009470 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009471 child = child->next;
9472 }
9473 if (IS_SCHEMA(child, "all")) {
9474 item->children = xmlSchemaParseModelGroup(ctxt, schema, child,
9475 XML_SCHEMA_TYPE_ALL, 0);
9476 child = child->next;
9477 } else if (IS_SCHEMA(child, "choice")) {
9478 item->children = xmlSchemaParseModelGroup(ctxt, schema, child,
9479 XML_SCHEMA_TYPE_CHOICE, 0);
9480 child = child->next;
9481 } else if (IS_SCHEMA(child, "sequence")) {
9482 item->children = xmlSchemaParseModelGroup(ctxt, schema, child,
9483 XML_SCHEMA_TYPE_SEQUENCE, 0);
9484 child = child->next;
9485 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009486
9487
9488
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009489 if (child != NULL) {
9490 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009491 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009492 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009493 "(annotation?, (all | choice | sequence)?)");
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009494 }
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009495 return (item);
Daniel Veillard4255d502002-04-16 15:50:10 +00009496}
9497
9498/**
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009499 * xmlSchemaCleanupDoc:
9500 * @ctxt: a schema validation context
9501 * @node: the root of the document.
9502 *
9503 * removes unwanted nodes in a schemas document tree
9504 */
9505static void
9506xmlSchemaCleanupDoc(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr root)
9507{
9508 xmlNodePtr delete, cur;
9509
9510 if ((ctxt == NULL) || (root == NULL)) return;
9511
9512 /*
9513 * Remove all the blank text nodes
9514 */
9515 delete = NULL;
9516 cur = root;
9517 while (cur != NULL) {
9518 if (delete != NULL) {
9519 xmlUnlinkNode(delete);
9520 xmlFreeNode(delete);
9521 delete = NULL;
9522 }
9523 if (cur->type == XML_TEXT_NODE) {
9524 if (IS_BLANK_NODE(cur)) {
9525 if (xmlNodeGetSpacePreserve(cur) != 1) {
9526 delete = cur;
9527 }
9528 }
9529 } else if ((cur->type != XML_ELEMENT_NODE) &&
9530 (cur->type != XML_CDATA_SECTION_NODE)) {
9531 delete = cur;
9532 goto skip_children;
9533 }
9534
9535 /*
9536 * Skip to next node
9537 */
9538 if (cur->children != NULL) {
9539 if ((cur->children->type != XML_ENTITY_DECL) &&
9540 (cur->children->type != XML_ENTITY_REF_NODE) &&
9541 (cur->children->type != XML_ENTITY_NODE)) {
9542 cur = cur->children;
9543 continue;
9544 }
9545 }
9546 skip_children:
9547 if (cur->next != NULL) {
9548 cur = cur->next;
9549 continue;
9550 }
9551
9552 do {
9553 cur = cur->parent;
9554 if (cur == NULL)
9555 break;
9556 if (cur == root) {
9557 cur = NULL;
9558 break;
9559 }
9560 if (cur->next != NULL) {
9561 cur = cur->next;
9562 break;
9563 }
9564 } while (cur != NULL);
9565 }
9566 if (delete != NULL) {
9567 xmlUnlinkNode(delete);
9568 xmlFreeNode(delete);
9569 delete = NULL;
9570 }
9571}
9572
William M. Brack2f2a6632004-08-20 23:09:47 +00009573
William M. Brack2f2a6632004-08-20 23:09:47 +00009574static void
9575xmlSchemaClearSchemaDefaults(xmlSchemaPtr schema)
9576{
9577 if (schema->flags & XML_SCHEMAS_QUALIF_ELEM)
9578 schema->flags ^= XML_SCHEMAS_QUALIF_ELEM;
9579
9580 if (schema->flags & XML_SCHEMAS_QUALIF_ATTR)
9581 schema->flags ^= XML_SCHEMAS_QUALIF_ATTR;
9582
9583 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_EXTENSION)
9584 schema->flags ^= XML_SCHEMAS_FINAL_DEFAULT_EXTENSION;
9585 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION)
9586 schema->flags ^= XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION;
9587 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_LIST)
9588 schema->flags ^= XML_SCHEMAS_FINAL_DEFAULT_LIST;
9589 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_UNION)
9590 schema->flags ^= XML_SCHEMAS_FINAL_DEFAULT_UNION;
9591
9592 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION)
9593 schema->flags ^= XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION;
9594 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION)
9595 schema->flags ^= XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION;
9596 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION)
9597 schema->flags ^= XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION;
9598}
9599
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009600static int
9601xmlSchemaParseSchemaElement(xmlSchemaParserCtxtPtr ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +00009602 xmlSchemaPtr schema,
9603 xmlNodePtr node)
9604{
9605 xmlAttrPtr attr;
9606 const xmlChar *val;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009607 int res = 0, oldErrs = ctxt->nberrors;
William M. Brack2f2a6632004-08-20 23:09:47 +00009608
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009609 /*
9610 * Those flags should be moved to the parser context flags,
9611 * since they are not visible at the component level. I.e.
9612 * they are used if processing schema *documents* only.
9613 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009614 res = xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009615 HFAILURE;
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +00009616
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009617 /*
9618 * Since the version is of type xs:token, we won't bother to
9619 * check it.
9620 */
9621 /* REMOVED:
9622 attr = xmlSchemaGetPropNode(node, "version");
9623 if (attr != NULL) {
9624 res = xmlSchemaPValAttrNode(ctxt, NULL, NULL, attr,
9625 xmlSchemaGetBuiltInType(XML_SCHEMAS_TOKEN), &val);
9626 HFAILURE;
9627 }
9628 */
9629 attr = xmlSchemaGetPropNode(node, "targetNamespace");
9630 if (attr != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009631 res = xmlSchemaPValAttrNode(ctxt, NULL, attr,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009632 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), NULL);
9633 HFAILURE;
9634 if (res != 0) {
9635 ctxt->stop = XML_SCHEMAP_S4S_ATTR_INVALID_VALUE;
9636 goto exit;
9637 }
9638 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009639 attr = xmlSchemaGetPropNode(node, "elementFormDefault");
William M. Brack2f2a6632004-08-20 23:09:47 +00009640 if (attr != NULL) {
9641 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009642 res = xmlSchemaPValAttrFormDefault(val, &schema->flags,
9643 XML_SCHEMAS_QUALIF_ELEM);
9644 HFAILURE;
9645 if (res != 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009646 xmlSchemaPSimpleTypeErr(ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +00009647 XML_SCHEMAP_ELEMFORMDEFAULT_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009648 NULL, (xmlNodePtr) attr, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +00009649 "(qualified | unqualified)", val, NULL, NULL, NULL);
9650 }
9651 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009652 attr = xmlSchemaGetPropNode(node, "attributeFormDefault");
William M. Brack2f2a6632004-08-20 23:09:47 +00009653 if (attr != NULL) {
9654 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009655 res = xmlSchemaPValAttrFormDefault(val, &schema->flags,
9656 XML_SCHEMAS_QUALIF_ATTR);
9657 HFAILURE;
9658 if (res != 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009659 xmlSchemaPSimpleTypeErr(ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +00009660 XML_SCHEMAP_ATTRFORMDEFAULT_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009661 NULL, (xmlNodePtr) attr, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +00009662 "(qualified | unqualified)", val, NULL, NULL, NULL);
9663 }
9664 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009665 attr = xmlSchemaGetPropNode(node, "finalDefault");
William M. Brack2f2a6632004-08-20 23:09:47 +00009666 if (attr != NULL) {
9667 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009668 res = xmlSchemaPValAttrBlockFinal(val, &(schema->flags), -1,
William M. Brack2f2a6632004-08-20 23:09:47 +00009669 XML_SCHEMAS_FINAL_DEFAULT_EXTENSION,
9670 XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION,
9671 -1,
9672 XML_SCHEMAS_FINAL_DEFAULT_LIST,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009673 XML_SCHEMAS_FINAL_DEFAULT_UNION);
9674 HFAILURE;
9675 if (res != 0) {
William M. Brack2f2a6632004-08-20 23:09:47 +00009676 xmlSchemaPSimpleTypeErr(ctxt,
9677 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009678 NULL, (xmlNodePtr) attr, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +00009679 "(#all | List of (extension | restriction | list | union))",
9680 val, NULL, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009681 }
William M. Brack2f2a6632004-08-20 23:09:47 +00009682 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009683 attr = xmlSchemaGetPropNode(node, "blockDefault");
William M. Brack2f2a6632004-08-20 23:09:47 +00009684 if (attr != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009685 val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr);
9686 res = xmlSchemaPValAttrBlockFinal(val, &(schema->flags), -1,
William M. Brack2f2a6632004-08-20 23:09:47 +00009687 XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION,
9688 XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009689 XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION, -1, -1);
9690 HFAILURE;
9691 if (res != 0) {
9692 xmlSchemaPSimpleTypeErr(ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +00009693 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009694 NULL, (xmlNodePtr) attr, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +00009695 "(#all | List of (extension | restriction | substitution))",
9696 val, NULL, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009697 }
William M. Brack2f2a6632004-08-20 23:09:47 +00009698 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009699
9700exit:
9701 if (oldErrs != ctxt->nberrors)
9702 res = ctxt->err;
9703 return(res);
9704exit_failure:
9705 return(-1);
William M. Brack2f2a6632004-08-20 23:09:47 +00009706}
9707
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009708/**
9709 * xmlSchemaParseSchemaTopLevel:
9710 * @ctxt: a schema validation context
9711 * @schema: the schemas
9712 * @nodes: the list of top level nodes
9713 *
9714 * Returns the internal XML Schema structure built from the resource or
9715 * NULL in case of error
9716 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009717static int
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009718xmlSchemaParseSchemaTopLevel(xmlSchemaParserCtxtPtr ctxt,
9719 xmlSchemaPtr schema, xmlNodePtr nodes)
9720{
9721 xmlNodePtr child;
9722 xmlSchemaAnnotPtr annot;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009723 int res = 0, oldErrs, tmpOldErrs;
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009724
9725 if ((ctxt == NULL) || (schema == NULL) || (nodes == NULL))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009726 return(-1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009727
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009728 oldErrs = ctxt->nberrors;
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009729 child = nodes;
9730 while ((IS_SCHEMA(child, "include")) ||
9731 (IS_SCHEMA(child, "import")) ||
9732 (IS_SCHEMA(child, "redefine")) ||
9733 (IS_SCHEMA(child, "annotation"))) {
9734 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009735 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009736 if (schema->annot == NULL)
9737 schema->annot = annot;
9738 else
9739 xmlSchemaFreeAnnot(annot);
9740 } else if (IS_SCHEMA(child, "import")) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009741 tmpOldErrs = ctxt->nberrors;
9742 res = xmlSchemaParseImport(ctxt, schema, child);
9743 HFAILURE;
9744 HSTOP(ctxt);
9745 if (tmpOldErrs != ctxt->nberrors)
9746 goto exit;
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009747 } else if (IS_SCHEMA(child, "include")) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009748 tmpOldErrs = ctxt->nberrors;
9749 res = xmlSchemaParseInclude(ctxt, schema, child);
9750 HFAILURE;
9751 HSTOP(ctxt);
9752 if (tmpOldErrs != ctxt->nberrors)
9753 goto exit;
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009754 } else if (IS_SCHEMA(child, "redefine")) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009755 tmpOldErrs = ctxt->nberrors;
9756 res = xmlSchemaParseRedefine(ctxt, schema, child);
9757 HFAILURE;
9758 HSTOP(ctxt);
9759 if (tmpOldErrs != ctxt->nberrors)
9760 goto exit;
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009761 }
9762 child = child->next;
9763 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009764 /*
9765 * URGENT TODO: Change the functions to return int results.
9766 * We need especially to catch internal errors.
9767 */
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009768 while (child != NULL) {
9769 if (IS_SCHEMA(child, "complexType")) {
Daniel Veillard3646d642004-06-02 19:19:14 +00009770 xmlSchemaParseComplexType(ctxt, schema, child, 1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009771 child = child->next;
9772 } else if (IS_SCHEMA(child, "simpleType")) {
Daniel Veillard3646d642004-06-02 19:19:14 +00009773 xmlSchemaParseSimpleType(ctxt, schema, child, 1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009774 child = child->next;
9775 } else if (IS_SCHEMA(child, "element")) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009776 xmlSchemaParseElement(ctxt, schema, child, NULL, 1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009777 child = child->next;
9778 } else if (IS_SCHEMA(child, "attribute")) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009779 xmlSchemaParseGlobalAttribute(ctxt, schema, child);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009780 child = child->next;
9781 } else if (IS_SCHEMA(child, "attributeGroup")) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009782 xmlSchemaParseAttributeGroupDefinition(ctxt, schema, child);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009783 child = child->next;
9784 } else if (IS_SCHEMA(child, "group")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +00009785 xmlSchemaParseModelGroupDefinition(ctxt, schema, child);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009786 child = child->next;
9787 } else if (IS_SCHEMA(child, "notation")) {
9788 xmlSchemaParseNotation(ctxt, schema, child);
9789 child = child->next;
9790 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009791 xmlSchemaPContentErr(ctxt,
9792 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009793 NULL, child->parent, child,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009794 NULL, "((include | import | redefine | annotation)*, "
9795 "(((simpleType | complexType | group | attributeGroup) "
9796 "| element | attribute | notation), annotation*)*)");
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009797 child = child->next;
9798 }
9799 while (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009800 /*
9801 * TODO: We should add all annotations.
9802 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +00009803 annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009804 if (schema->annot == NULL)
9805 schema->annot = annot;
9806 else
9807 xmlSchemaFreeAnnot(annot);
9808 child = child->next;
9809 }
9810 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009811exit:
Daniel Veillard01fa6152004-06-29 17:04:39 +00009812 ctxt->ctxtType = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009813 if (oldErrs != ctxt->nberrors)
9814 res = ctxt->err;
9815 return(res);
9816exit_failure:
9817 return(-1);
Daniel Veillardbd2904b2003-11-25 15:38:59 +00009818}
9819
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009820static xmlSchemaSchemaRelationPtr
9821xmlSchemaSchemaRelationCreate(void)
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00009822{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009823 xmlSchemaSchemaRelationPtr ret;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00009824
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009825 ret = (xmlSchemaSchemaRelationPtr)
9826 xmlMalloc(sizeof(xmlSchemaSchemaRelation));
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00009827 if (ret == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009828 xmlSchemaPErrMemory(NULL, "allocating schema relation", NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009829 return(NULL);
9830 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009831 memset(ret, 0, sizeof(xmlSchemaSchemaRelation));
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009832 return(ret);
9833}
9834
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009835#if 0
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009836static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009837xmlSchemaSchemaRelationFree(xmlSchemaSchemaRelationPtr rel)
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009838{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009839 xmlFree(rel);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +00009840}
9841#endif
9842
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009843static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009844xmlSchemaRedefListFree(xmlSchemaRedefPtr redef)
9845{
9846 xmlSchemaRedefPtr prev;
9847
9848 while (redef != NULL) {
9849 prev = redef;
9850 redef = redef->next;
9851 xmlFree(prev);
9852 }
9853}
9854
9855static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009856xmlSchemaConstructionCtxtFree(xmlSchemaConstructionCtxtPtr con)
9857{
9858 /*
9859 * After the construction context has been freed, there will be
9860 * no schema graph available any more. Only the schema buckets
9861 * will stay alive, which are put into the "schemasImports" and
9862 * "includes" slots of the xmlSchema.
9863 */
9864 if (con->buckets != NULL)
9865 xmlSchemaItemListFree(con->buckets);
9866 if (con->pending != NULL)
9867 xmlSchemaItemListFree(con->pending);
9868 if (con->substGroups != NULL)
9869 xmlHashFree(con->substGroups,
9870 (xmlHashDeallocator) xmlSchemaSubstGroupFree);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009871 if (con->redefs != NULL)
9872 xmlSchemaRedefListFree(con->redefs);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009873 if (con->dict != NULL)
9874 xmlDictFree(con->dict);
9875 xmlFree(con);
9876}
9877
9878static xmlSchemaConstructionCtxtPtr
9879xmlSchemaConstructionCtxtCreate(xmlDictPtr dict)
9880{
9881 xmlSchemaConstructionCtxtPtr ret;
9882
9883 ret = (xmlSchemaConstructionCtxtPtr)
9884 xmlMalloc(sizeof(xmlSchemaConstructionCtxt));
9885 if (ret == NULL) {
9886 xmlSchemaPErrMemory(NULL,
9887 "allocating schema construction context", NULL);
9888 return (NULL);
9889 }
9890 memset(ret, 0, sizeof(xmlSchemaConstructionCtxt));
9891
9892 ret->buckets = xmlSchemaItemListCreate();
9893 if (ret->buckets == NULL) {
9894 xmlSchemaPErrMemory(NULL,
9895 "allocating list of schema buckets", NULL);
9896 xmlFree(ret);
9897 return (NULL);
9898 }
9899 ret->pending = xmlSchemaItemListCreate();
9900 if (ret->pending == NULL) {
9901 xmlSchemaPErrMemory(NULL,
9902 "allocating list of pending global components", NULL);
9903 xmlSchemaConstructionCtxtFree(ret);
9904 return (NULL);
9905 }
9906 ret->dict = dict;
9907 xmlDictReference(dict);
9908 return(ret);
9909}
9910
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00009911static xmlSchemaParserCtxtPtr
9912xmlSchemaParserCtxtCreate(void)
9913{
9914 xmlSchemaParserCtxtPtr ret;
9915
9916 ret = (xmlSchemaParserCtxtPtr) xmlMalloc(sizeof(xmlSchemaParserCtxt));
9917 if (ret == NULL) {
9918 xmlSchemaPErrMemory(NULL, "allocating schema parser context",
9919 NULL);
9920 return (NULL);
9921 }
9922 memset(ret, 0, sizeof(xmlSchemaParserCtxt));
9923 ret->type = XML_SCHEMA_CTXT_PARSER;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +00009924 ret->attrProhibs = xmlSchemaItemListCreate();
9925 if (ret->attrProhibs == NULL) {
9926 xmlFree(ret);
9927 return(NULL);
9928 }
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00009929 return(ret);
9930}
9931
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009932/**
9933 * xmlSchemaNewParserCtxtUseDict:
9934 * @URL: the location of the schema
9935 * @dict: the dictionary to be used
9936 *
9937 * Create an XML Schemas parse context for that file/resource expected
9938 * to contain an XML Schemas file.
9939 *
9940 * Returns the parser context or NULL in case of error
9941 */
9942static xmlSchemaParserCtxtPtr
9943xmlSchemaNewParserCtxtUseDict(const char *URL, xmlDictPtr dict)
9944{
9945 xmlSchemaParserCtxtPtr ret;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009946
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +00009947 ret = xmlSchemaParserCtxtCreate();
9948 if (ret == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009949 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009950 ret->dict = dict;
9951 xmlDictReference(dict);
9952 if (URL != NULL)
9953 ret->URL = xmlDictLookup(dict, (const xmlChar *) URL, -1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009954 return (ret);
9955}
9956
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +00009957static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009958xmlSchemaCreatePCtxtOnVCtxt(xmlSchemaValidCtxtPtr vctxt)
9959{
9960 if (vctxt->pctxt == NULL) {
9961 if (vctxt->schema != NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009962 vctxt->pctxt =
9963 xmlSchemaNewParserCtxtUseDict("*", vctxt->schema->dict);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009964 else
9965 vctxt->pctxt = xmlSchemaNewParserCtxt("*");
9966 if (vctxt->pctxt == NULL) {
9967 VERROR_INT("xmlSchemaCreatePCtxtOnVCtxt",
9968 "failed to create a temp. parser context");
9969 return (-1);
9970 }
9971 /* TODO: Pass user data. */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009972 xmlSchemaSetParserErrors(vctxt->pctxt, vctxt->error,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +00009973 vctxt->warning, vctxt->errCtxt);
9974 xmlSchemaSetParserStructuredErrors(vctxt->pctxt, vctxt->serror,
9975 vctxt->errCtxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +00009976 }
9977 return (0);
9978}
9979
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +00009980/**
9981 * xmlSchemaGetSchemaBucket:
9982 * @pctxt: the schema parser context
9983 * @schemaLocation: the URI of the schema document
9984 *
9985 * Returns a schema bucket if it was already parsed.
9986 *
9987 * Returns a schema bucket if it was already parsed from
9988 * @schemaLocation, NULL otherwise.
9989 */
9990static xmlSchemaBucketPtr
9991xmlSchemaGetSchemaBucket(xmlSchemaParserCtxtPtr pctxt,
9992 const xmlChar *schemaLocation)
9993{
9994 xmlSchemaBucketPtr cur;
9995 xmlSchemaItemListPtr list;
9996
9997 list = pctxt->constructor->buckets;
9998 if (list->nbItems == 0)
9999 return(NULL);
10000 else {
10001 int i;
10002 for (i = 0; i < list->nbItems; i++) {
10003 cur = (xmlSchemaBucketPtr) list->items[i];
10004 /* Pointer comparison! */
10005 if (cur->schemaLocation == schemaLocation)
10006 return(cur);
10007 }
10008 }
10009 return(NULL);
10010}
10011
10012static xmlSchemaBucketPtr
10013xmlSchemaGetChameleonSchemaBucket(xmlSchemaParserCtxtPtr pctxt,
10014 const xmlChar *schemaLocation,
10015 const xmlChar *targetNamespace)
10016{
10017 xmlSchemaBucketPtr cur;
10018 xmlSchemaItemListPtr list;
10019
10020 list = pctxt->constructor->buckets;
10021 if (list->nbItems == 0)
10022 return(NULL);
10023 else {
10024 int i;
10025 for (i = 0; i < list->nbItems; i++) {
10026 cur = (xmlSchemaBucketPtr) list->items[i];
10027 /* Pointer comparison! */
10028 if ((cur->origTargetNamespace == NULL) &&
10029 (cur->schemaLocation == schemaLocation) &&
10030 (cur->targetNamespace == targetNamespace))
10031 return(cur);
10032 }
10033 }
10034 return(NULL);
10035}
10036
10037
10038#define IS_BAD_SCHEMA_DOC(b) \
10039 (((b)->doc == NULL) && ((b)->schemaLocation != NULL))
10040
10041static xmlSchemaBucketPtr
10042xmlSchemaGetSchemaBucketByTNS(xmlSchemaParserCtxtPtr pctxt,
10043 const xmlChar *targetNamespace,
10044 int imported)
10045{
10046 xmlSchemaBucketPtr cur;
10047 xmlSchemaItemListPtr list;
10048
10049 list = pctxt->constructor->buckets;
10050 if (list->nbItems == 0)
10051 return(NULL);
10052 else {
10053 int i;
10054 for (i = 0; i < list->nbItems; i++) {
10055 cur = (xmlSchemaBucketPtr) list->items[i];
10056 if ((! IS_BAD_SCHEMA_DOC(cur)) &&
10057 (cur->origTargetNamespace == targetNamespace) &&
10058 ((imported && cur->imported) ||
10059 ((!imported) && (!cur->imported))))
10060 return(cur);
10061 }
10062 }
10063 return(NULL);
10064}
10065
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010066static int
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010067xmlSchemaParseNewDocWithContext(xmlSchemaParserCtxtPtr pctxt,
10068 xmlSchemaPtr schema,
10069 xmlSchemaBucketPtr bucket)
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010070{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010071 int oldFlags;
10072 xmlDocPtr oldDoc;
10073 xmlNodePtr node;
10074 int ret, oldErrs;
10075 xmlSchemaBucketPtr oldbucket = pctxt->constructor->bucket;
10076
10077 /*
10078 * Save old values; reset the *main* schema.
10079 * URGENT TODO: This is not good; move the per-document information
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000010080 * to the parser. Get rid of passing the main schema to the
10081 * parsing functions.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010082 */
10083 oldFlags = schema->flags;
10084 oldDoc = schema->doc;
10085 if (schema->flags != 0)
10086 xmlSchemaClearSchemaDefaults(schema);
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000010087 schema->doc = bucket->doc;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010088 pctxt->schema = schema;
10089 /*
10090 * Keep the current target namespace on the parser *not* on the
10091 * main schema.
10092 */
10093 pctxt->targetNamespace = bucket->targetNamespace;
10094 WXS_CONSTRUCTOR(pctxt)->bucket = bucket;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010095
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010096 if ((bucket->targetNamespace != NULL) &&
10097 xmlStrEqual(bucket->targetNamespace, xmlSchemaNs)) {
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010098 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010099 * We are parsing the schema for schemas!
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010100 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010101 pctxt->isS4S = 1;
10102 }
10103 /* Mark it as parsed, even if parsing fails. */
10104 bucket->parsed++;
10105 /* Compile the schema doc. */
10106 node = xmlDocGetRootElement(bucket->doc);
10107 ret = xmlSchemaParseSchemaElement(pctxt, schema, node);
10108 if (ret != 0)
10109 goto exit;
10110 /* An empty schema; just get out. */
10111 if (node->children == NULL)
10112 goto exit;
10113 oldErrs = pctxt->nberrors;
10114 ret = xmlSchemaParseSchemaTopLevel(pctxt, schema, node->children);
10115 if (ret != 0)
10116 goto exit;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010117 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010118 * TODO: Not nice, but I'm not 100% sure we will get always an error
10119 * as a result of the obove functions; so better rely on pctxt->err
10120 * as well.
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010121 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010122 if ((ret == 0) && (oldErrs != pctxt->nberrors)) {
10123 ret = pctxt->err;
10124 goto exit;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010125 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010126
10127exit:
10128 WXS_CONSTRUCTOR(pctxt)->bucket = oldbucket;
10129 /* Restore schema values. */
10130 schema->doc = oldDoc;
10131 schema->flags = oldFlags;
10132 return(ret);
10133}
10134
10135static int
10136xmlSchemaParseNewDoc(xmlSchemaParserCtxtPtr pctxt,
10137 xmlSchemaPtr schema,
10138 xmlSchemaBucketPtr bucket)
10139{
10140 xmlSchemaParserCtxtPtr newpctxt;
10141 int res = 0;
10142
10143 if (bucket == NULL)
10144 return(0);
10145 if (bucket->parsed) {
10146 PERROR_INT("xmlSchemaParseNewDoc",
10147 "reparsing a schema doc");
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010148 return(-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010149 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010150 if (bucket->doc == NULL) {
10151 PERROR_INT("xmlSchemaParseNewDoc",
10152 "parsing a schema doc, but there's no doc");
10153 return(-1);
Kasimier T. Buchcik5dd55d92004-11-26 12:35:21 +000010154 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010155 if (pctxt->constructor == NULL) {
10156 PERROR_INT("xmlSchemaParseNewDoc",
10157 "no constructor");
10158 return(-1);
10159 }
10160 /* Create and init the temporary parser context. */
10161 newpctxt = xmlSchemaNewParserCtxtUseDict(
10162 (const char *) bucket->schemaLocation, pctxt->dict);
10163 if (newpctxt == NULL)
10164 return(-1);
10165 newpctxt->constructor = pctxt->constructor;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010166 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010167 * TODO: Can we avoid that the parser knows about the main schema?
10168 * It would be better if he knows about the current schema bucket
10169 * only.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010170 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010171 newpctxt->schema = schema;
10172 xmlSchemaSetParserErrors(newpctxt, pctxt->error, pctxt->warning,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000010173 pctxt->errCtxt);
10174 xmlSchemaSetParserStructuredErrors(newpctxt, pctxt->serror,
10175 pctxt->errCtxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010176 newpctxt->counter = pctxt->counter;
10177
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010178
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010179 res = xmlSchemaParseNewDocWithContext(newpctxt, schema, bucket);
10180
10181 /* Channel back errors and cleanup the temporary parser context. */
10182 if (res != 0)
10183 pctxt->err = res;
10184 pctxt->nberrors += newpctxt->nberrors;
10185 pctxt->counter = newpctxt->counter;
10186 newpctxt->constructor = NULL;
10187 /* Free the parser context. */
10188 xmlSchemaFreeParserCtxt(newpctxt);
10189 return(res);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010190}
William M. Brack2f2a6632004-08-20 23:09:47 +000010191
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010192static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010193xmlSchemaSchemaRelationAddChild(xmlSchemaBucketPtr bucket,
10194 xmlSchemaSchemaRelationPtr rel)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010195{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010196 xmlSchemaSchemaRelationPtr cur = bucket->relations;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010197
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010198 if (cur == NULL) {
10199 bucket->relations = rel;
10200 return;
10201 }
10202 while (cur->next != NULL)
10203 cur = cur->next;
10204 cur->next = rel;
10205}
10206
10207
10208static const xmlChar *
10209xmlSchemaBuildAbsoluteURI(xmlDictPtr dict, const xmlChar* location,
10210 xmlNodePtr ctxtNode)
10211{
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010212 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010213 * Build an absolue location URI.
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010214 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010215 if (location != NULL) {
10216 if (ctxtNode == NULL)
10217 return(location);
10218 else {
10219 xmlChar *base, *URI;
10220 const xmlChar *ret = NULL;
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000010221
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010222 base = xmlNodeGetBase(ctxtNode->doc, ctxtNode);
10223 if (base == NULL) {
10224 URI = xmlBuildURI(location, ctxtNode->doc->URL);
10225 } else {
10226 URI = xmlBuildURI(location, base);
10227 xmlFree(base);
10228 }
10229 if (URI != NULL) {
10230 ret = xmlDictLookup(dict, URI, -1);
10231 xmlFree(URI);
10232 return(ret);
10233 }
10234 }
10235 }
10236 return(NULL);
10237}
10238
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000010239
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000010240
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010241/**
10242 * xmlSchemaAddSchemaDoc:
10243 * @pctxt: a schema validation context
10244 * @schema: the schema being built
10245 * @node: a subtree containing XML Schema informations
10246 *
10247 * Parse an included (and to-be-redefined) XML schema document.
10248 *
10249 * Returns 0 on success, a positive error code on errors and
10250 * -1 in case of an internal or API error.
10251 */
10252
10253static int
10254xmlSchemaAddSchemaDoc(xmlSchemaParserCtxtPtr pctxt,
10255 int type, /* import or include or redefine */
10256 const xmlChar *schemaLocation,
10257 xmlDocPtr schemaDoc,
10258 const char *schemaBuffer,
10259 int schemaBufferLen,
10260 xmlNodePtr invokingNode,
10261 const xmlChar *sourceTargetNamespace,
10262 const xmlChar *importNamespace,
10263 xmlSchemaBucketPtr *bucket)
10264{
10265 const xmlChar *targetNamespace = NULL;
10266 xmlSchemaSchemaRelationPtr relation = NULL;
10267 xmlDocPtr doc = NULL;
10268 int res = 0, err = 0, located = 0, preserveDoc = 0;
10269 xmlSchemaBucketPtr bkt = NULL;
10270
10271 if (bucket != NULL)
10272 *bucket = NULL;
10273
10274 switch (type) {
10275 case XML_SCHEMA_SCHEMA_IMPORT:
10276 case XML_SCHEMA_SCHEMA_MAIN:
10277 err = XML_SCHEMAP_SRC_IMPORT;
10278 break;
10279 case XML_SCHEMA_SCHEMA_INCLUDE:
10280 err = XML_SCHEMAP_SRC_INCLUDE;
10281 break;
10282 case XML_SCHEMA_SCHEMA_REDEFINE:
10283 err = XML_SCHEMAP_SRC_REDEFINE;
10284 break;
10285 }
10286
10287
10288 /* Special handling for the main schema:
10289 * skip the location and relation logic and just parse the doc.
10290 * We need just a bucket to be returned in this case.
10291 */
10292 if ((type == XML_SCHEMA_SCHEMA_MAIN) || (! WXS_HAS_BUCKETS(pctxt)))
10293 goto doc_load;
10294
10295 /* Note that we expect the location to be an absulute URI. */
10296 if (schemaLocation != NULL) {
10297 bkt = xmlSchemaGetSchemaBucket(pctxt, schemaLocation);
10298 if ((bkt != NULL) &&
10299 (pctxt->constructor->bucket == bkt)) {
10300 /* Report self-imports/inclusions/redefinitions. */
10301
10302 xmlSchemaCustomErr(ACTXT_CAST pctxt, err,
10303 invokingNode, NULL,
10304 "The schema must not import/include/redefine itself",
10305 NULL, NULL);
10306 goto exit;
10307 }
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +000010308 }
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010309 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010310 * Create a relation for the graph of schemas.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010311 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010312 relation = xmlSchemaSchemaRelationCreate();
10313 if (relation == NULL)
10314 return(-1);
10315 xmlSchemaSchemaRelationAddChild(pctxt->constructor->bucket,
10316 relation);
10317 relation->type = type;
10318
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010319 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010320 * Save the namespace import information.
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010321 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010322 if (WXS_IS_BUCKET_IMPMAIN(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010323 relation->importNamespace = importNamespace;
10324 if (schemaLocation == NULL) {
10325 /*
10326 * No location; this is just an import of the namespace.
10327 * Note that we don't assign a bucket to the relation
10328 * in this case.
10329 */
10330 goto exit;
10331 }
10332 targetNamespace = importNamespace;
10333 }
10334
10335 /* Did we already fetch the doc? */
10336 if (bkt != NULL) {
10337 /* TODO: The following nasty cases will produce an error. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010338 if ((WXS_IS_BUCKET_IMPMAIN(type)) && (! bkt->imported)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010339 /* We included/redefined and then try to import a schema. */
10340 xmlSchemaCustomErr(ACTXT_CAST pctxt, err,
10341 invokingNode, NULL,
10342 "The schema document '%s' cannot be imported, since "
10343 "it was already included or redefined",
10344 schemaLocation, NULL);
10345 goto exit;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010346 } else if ((! WXS_IS_BUCKET_IMPMAIN(type)) && (bkt->imported)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010347 /* We imported and then try to include/redefine a schema. */
10348 xmlSchemaCustomErr(ACTXT_CAST pctxt, err,
10349 invokingNode, NULL,
10350 "The schema document '%s' cannot be included or "
10351 "redefined, since it was already imported",
10352 schemaLocation, NULL);
10353 goto exit;
10354 }
10355 }
10356
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010357 if (WXS_IS_BUCKET_IMPMAIN(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010358 /*
10359 * Given that the schemaLocation [attribute] is only a hint, it is open
10360 * to applications to ignore all but the first <import> for a given
10361 * namespace, regardless of the ·actual value· of schemaLocation, but
10362 * such a strategy risks missing useful information when new
10363 * schemaLocations are offered.
10364 *
10365 * We will use the first <import> that comes with a location.
10366 * Further <import>s *with* a location, will result in an error.
10367 * TODO: Better would be to just report a warning here, but
10368 * we'll try it this way until someone complains.
10369 *
10370 * Schema Document Location Strategy:
10371 * 3 Based on the namespace name, identify an existing schema document,
10372 * either as a resource which is an XML document or a <schema> element
10373 * information item, in some local schema repository;
10374 * 5 Attempt to resolve the namespace name to locate such a resource.
10375 *
10376 * NOTE: (3) and (5) are not supported.
10377 */
10378 if (bkt != NULL) {
10379 relation->bucket = bkt;
10380 goto exit;
10381 }
10382 bkt = xmlSchemaGetSchemaBucketByTNS(pctxt,
10383 importNamespace, 1);
10384
10385 if (bkt != NULL) {
10386 relation->bucket = bkt;
10387 if (bkt->schemaLocation == NULL) {
10388 /* First given location of the schema; load the doc. */
10389 bkt->schemaLocation = schemaLocation;
10390 } else {
10391 if (!xmlStrEqual(schemaLocation,
10392 bkt->schemaLocation)) {
10393 /*
10394 * Additional location given; just skip it.
10395 * URGENT TODO: We should report a warning here.
10396 * res = XML_SCHEMAP_SRC_IMPORT;
10397 */
10398 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
10399 XML_SCHEMAP_WARN_SKIP_SCHEMA,
10400 invokingNode, NULL,
10401 "Skipping import of schema located at '%s' for the "
10402 "namespace '%s', since this namespace was already "
10403 "imported with the schema located at '%s'",
10404 schemaLocation, importNamespace, bkt->schemaLocation);
10405 }
10406 goto exit;
10407 }
10408 }
10409 /*
10410 * No bucket + first location: load the doc and create a
10411 * bucket.
10412 */
10413 } else {
10414 /* <include> and <redefine> */
10415 if (bkt != NULL) {
10416
10417 if ((bkt->origTargetNamespace == NULL) &&
10418 (bkt->targetNamespace != sourceTargetNamespace)) {
10419 xmlSchemaBucketPtr chamel;
10420
10421 /*
10422 * Chameleon include/redefine: skip loading only if it was
10423 * aleady build for the targetNamespace of the including
10424 * schema.
10425 */
10426 /*
10427 * URGENT TODO: If the schema is a chameleon-include then copy
10428 * the components into the including schema and modify the
10429 * targetNamespace of those components, do nothing otherwise.
10430 * NOTE: This is currently worked-around by compiling the
10431 * chameleon for every destinct including targetNamespace; thus
10432 * not performant at the moment.
10433 * TODO: Check when the namespace in wildcards for chameleons
10434 * needs to be converted: before we built wildcard intersections
10435 * or after.
10436 * Answer: after!
10437 */
10438 chamel = xmlSchemaGetChameleonSchemaBucket(pctxt,
10439 schemaLocation, sourceTargetNamespace);
10440 if (chamel != NULL) {
10441 /* A fitting chameleon was already parsed; NOP. */
10442 relation->bucket = chamel;
10443 goto exit;
10444 }
10445 /*
10446 * We need to parse the chameleon again for a different
10447 * targetNamespace.
10448 * CHAMELEON TODO: Optimize this by only parsing the
10449 * chameleon once, and then copying the components to
10450 * the new targetNamespace.
10451 */
10452 bkt = NULL;
10453 } else {
10454 relation->bucket = bkt;
10455 goto exit;
10456 }
10457 }
10458 }
10459 if ((bkt != NULL) && (bkt->doc != NULL)) {
10460 PERROR_INT("xmlSchemaAddSchemaDoc",
10461 "trying to load a schema doc, but a doc is already "
10462 "assigned to the schema bucket");
10463 goto exit_failure;
10464 }
10465
10466doc_load:
10467 /*
10468 * Load the document.
10469 */
10470 if (schemaDoc != NULL) {
10471 doc = schemaDoc;
10472 /* Don' free this one, since it was provided by the caller. */
10473 preserveDoc = 1;
10474 /* TODO: Does the context or the doc hold the location? */
10475 if (schemaDoc->URL != NULL)
10476 schemaLocation = xmlDictLookup(pctxt->dict,
10477 schemaDoc->URL, -1);
10478
10479 } else if ((schemaLocation != NULL) || (schemaBuffer != NULL)) {
10480 xmlParserCtxtPtr parserCtxt;
10481
10482 parserCtxt = xmlNewParserCtxt();
10483 if (parserCtxt == NULL) {
10484 xmlSchemaPErrMemory(NULL, "xmlSchemaGetDoc, "
10485 "allocating a parser context", NULL);
10486 goto exit_failure;
10487 }
10488 if ((pctxt->dict != NULL) && (parserCtxt->dict != NULL)) {
10489 /*
10490 * TODO: Do we have to burden the schema parser dict with all
10491 * the content of the schema doc?
10492 */
10493 xmlDictFree(parserCtxt->dict);
10494 parserCtxt->dict = pctxt->dict;
10495 xmlDictReference(parserCtxt->dict);
10496 }
10497 if (schemaLocation != NULL) {
10498 /* Parse from file. */
10499 doc = xmlCtxtReadFile(parserCtxt, (const char *) schemaLocation,
10500 NULL, SCHEMAS_PARSE_OPTIONS);
10501 } else if (schemaBuffer != NULL) {
10502 /* Parse from memory buffer. */
10503 doc = xmlCtxtReadMemory(parserCtxt, schemaBuffer, schemaBufferLen,
10504 NULL, NULL, SCHEMAS_PARSE_OPTIONS);
10505 schemaLocation = xmlStrdup(BAD_CAST "in_memory_buffer");
10506 if (doc != NULL)
10507 doc->URL = schemaLocation;
10508 }
10509 /*
10510 * For <import>:
10511 * 2.1 The referent is (a fragment of) a resource which is an
10512 * XML document (see clause 1.1), which in turn corresponds to
10513 * a <schema> element information item in a well-formed information
10514 * set, which in turn corresponds to a valid schema.
10515 * TODO: (2.1) fragments of XML documents are not supported.
10516 *
10517 * 2.2 The referent is a <schema> element information item in
10518 * a well-formed information set, which in turn corresponds
10519 * to a valid schema.
10520 * TODO: (2.2) is not supported.
10521 */
10522 if (doc == NULL) {
10523 xmlErrorPtr lerr;
10524 lerr = xmlGetLastError();
10525 /*
10526 * Check if this a parser error, or if the document could
10527 * just not be located.
10528 * TODO: Try to find specific error codes to react only on
10529 * localisation failures.
10530 */
10531 if ((lerr == NULL) || (lerr->domain != XML_FROM_IO)) {
10532 /*
10533 * We assume a parser error here.
10534 */
10535 located = 1;
10536 /* TODO: Error code ?? */
10537 res = XML_SCHEMAP_SRC_IMPORT_2_1;
10538 xmlSchemaCustomErr(ACTXT_CAST pctxt, res,
10539 invokingNode, NULL,
10540 "Failed to parse the XML resource '%s'",
10541 schemaLocation, NULL);
10542 }
10543 }
10544 xmlFreeParserCtxt(parserCtxt);
10545 if ((doc == NULL) && located)
10546 goto exit_error;
10547 } else {
10548 xmlSchemaPErr(pctxt, NULL,
10549 XML_SCHEMAP_NOTHING_TO_PARSE,
10550 "No information for parsing was provided with the "
10551 "given schema parser context.\n",
10552 NULL, NULL);
10553 goto exit_failure;
10554 }
10555 /*
10556 * Preprocess the document.
10557 */
10558 if (doc != NULL) {
10559 xmlNodePtr docElem = NULL;
10560
10561 located = 1;
10562 docElem = xmlDocGetRootElement(doc);
10563 if (docElem == NULL) {
10564 xmlSchemaCustomErr(ACTXT_CAST pctxt, XML_SCHEMAP_NOROOT,
10565 invokingNode, NULL,
10566 "The document '%s' has no document element",
10567 schemaLocation, NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010568 goto exit_error;
10569 }
10570 /*
10571 * Remove all the blank text nodes.
10572 */
10573 xmlSchemaCleanupDoc(pctxt, docElem);
10574 /*
10575 * Check the schema's top level element.
10576 */
10577 if (!IS_SCHEMA(docElem, "schema")) {
10578 xmlSchemaCustomErr(ACTXT_CAST pctxt, XML_SCHEMAP_NOT_SCHEMA,
10579 invokingNode, NULL,
10580 "The XML document '%s' is not a schema document",
10581 schemaLocation, NULL);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010582 goto exit_error;
10583 }
10584 /*
10585 * Note that we don't apply a type check for the
10586 * targetNamespace value here.
10587 */
10588 targetNamespace = xmlSchemaGetProp(pctxt, docElem,
10589 "targetNamespace");
10590 }
10591
10592/* after_doc_loading: */
10593 if ((bkt == NULL) && located) {
10594 /* Only create a bucket if the schema was located. */
10595 bkt = xmlSchemaBucketCreate(pctxt, type,
10596 targetNamespace);
10597 if (bkt == NULL)
10598 goto exit_failure;
10599 }
10600 if (bkt != NULL) {
10601 bkt->schemaLocation = schemaLocation;
10602 bkt->located = located;
10603 if (doc != NULL) {
10604 bkt->doc = doc;
10605 bkt->targetNamespace = targetNamespace;
10606 bkt->origTargetNamespace = targetNamespace;
10607 if (preserveDoc)
10608 bkt->preserveDoc = 1;
10609 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010610 if (WXS_IS_BUCKET_IMPMAIN(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010611 bkt->imported++;
10612 /*
10613 * Add it to the graph of schemas.
10614 */
10615 if (relation != NULL)
10616 relation->bucket = bkt;
10617 }
10618
10619exit:
10620 /*
10621 * Return the bucket explicitely; this is needed for the
10622 * main schema.
10623 */
10624 if (bucket != NULL)
10625 *bucket = bkt;
10626 return (0);
10627
10628exit_error:
10629 if ((doc != NULL) && (! preserveDoc)) {
10630 xmlFreeDoc(doc);
10631 if (bkt != NULL)
10632 bkt->doc = NULL;
10633 }
10634 return(pctxt->err);
10635
10636exit_failure:
10637 if ((doc != NULL) && (! preserveDoc)) {
10638 xmlFreeDoc(doc);
10639 if (bkt != NULL)
10640 bkt->doc = NULL;
10641 }
10642 return (-1);
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010643}
10644
William M. Brack2f2a6632004-08-20 23:09:47 +000010645/**
10646 * xmlSchemaParseImport:
10647 * @ctxt: a schema validation context
10648 * @schema: the schema being built
10649 * @node: a subtree containing XML Schema informations
10650 *
10651 * parse a XML schema Import definition
10652 * *WARNING* this interface is highly subject to change
10653 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010654 * Returns 0 in case of success, a positive error code if
10655 * not valid and -1 in case of an internal error.
William M. Brack2f2a6632004-08-20 23:09:47 +000010656 */
10657static int
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010658xmlSchemaParseImport(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema,
William M. Brack2f2a6632004-08-20 23:09:47 +000010659 xmlNodePtr node)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010660{
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000010661 xmlNodePtr child;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010662 const xmlChar *namespaceName = NULL, *schemaLocation = NULL;
10663 const xmlChar *thisTargetNamespace;
William M. Brack2f2a6632004-08-20 23:09:47 +000010664 xmlAttrPtr attr;
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010665 int ret = 0;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010666 xmlSchemaBucketPtr bucket = NULL;
William M. Brack2f2a6632004-08-20 23:09:47 +000010667
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010668 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
William M. Brack2f2a6632004-08-20 23:09:47 +000010669 return (-1);
10670
10671 /*
10672 * Check for illegal attributes.
10673 */
10674 attr = node->properties;
10675 while (attr != NULL) {
10676 if (attr->ns == NULL) {
10677 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
10678 (!xmlStrEqual(attr->name, BAD_CAST "namespace")) &&
10679 (!xmlStrEqual(attr->name, BAD_CAST "schemaLocation"))) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010680 xmlSchemaPIllegalAttrErr(pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010681 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +000010682 }
10683 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010684 xmlSchemaPIllegalAttrErr(pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010685 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +000010686 }
10687 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010688 }
William M. Brack2f2a6632004-08-20 23:09:47 +000010689 /*
10690 * Extract and validate attributes.
10691 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010692 if (xmlSchemaPValAttr(pctxt, NULL, node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010693 "namespace", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI),
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010694 &namespaceName) != 0) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010695 xmlSchemaPSimpleTypeErr(pctxt,
10696 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010697 NULL, node,
10698 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI),
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010699 NULL, namespaceName, NULL, NULL, NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010700 return (pctxt->err);
William M. Brack2f2a6632004-08-20 23:09:47 +000010701 }
10702
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010703 if (xmlSchemaPValAttr(pctxt, NULL, node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010704 "schemaLocation", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI),
William M. Brack2f2a6632004-08-20 23:09:47 +000010705 &schemaLocation) != 0) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010706 xmlSchemaPSimpleTypeErr(pctxt,
10707 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010708 NULL, node,
10709 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI),
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010710 NULL, namespaceName, NULL, NULL, NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010711 return (pctxt->err);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010712 }
William M. Brack2f2a6632004-08-20 23:09:47 +000010713 /*
10714 * And now for the children...
10715 */
10716 child = node->children;
10717 if (IS_SCHEMA(child, "annotation")) {
10718 /*
10719 * the annotation here is simply discarded ...
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000010720 * TODO: really?
William M. Brack2f2a6632004-08-20 23:09:47 +000010721 */
10722 child = child->next;
10723 }
10724 if (child != NULL) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010725 xmlSchemaPContentErr(pctxt,
10726 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010727 NULL, node, child, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +000010728 "(annotation?)");
10729 }
10730 /*
10731 * Apply additional constraints.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010732 *
10733 * Note that it is important to use the original @targetNamespace
10734 * (or none at all), to rule out imports of schemas _with_ a
10735 * @targetNamespace if the importing schema is a chameleon schema
10736 * (with no @targetNamespace).
William M. Brack2f2a6632004-08-20 23:09:47 +000010737 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010738 thisTargetNamespace = WXS_BUCKET(pctxt)->origTargetNamespace;
Kasimier T. Buchcikb474fa42005-03-11 12:34:42 +000010739 if (namespaceName != NULL) {
William M. Brack2f2a6632004-08-20 23:09:47 +000010740 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010741 * 1.1 If the namespace [attribute] is present, then its ·actual value·
10742 * must not match the ·actual value· of the enclosing <schema>'s
William M. Brack2f2a6632004-08-20 23:09:47 +000010743 * targetNamespace [attribute].
10744 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010745 if (xmlStrEqual(thisTargetNamespace, namespaceName)) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010746 xmlSchemaPCustomErr(pctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +000010747 XML_SCHEMAP_SRC_IMPORT_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010748 NULL, node,
William M. Brack2f2a6632004-08-20 23:09:47 +000010749 "The value of the attribute 'namespace' must not match "
10750 "the target namespace '%s' of the importing schema",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010751 thisTargetNamespace);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010752 return (pctxt->err);
William M. Brack2f2a6632004-08-20 23:09:47 +000010753 }
10754 } else {
10755 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010756 * 1.2 If the namespace [attribute] is not present, then the enclosing
William M. Brack2f2a6632004-08-20 23:09:47 +000010757 * <schema> must have a targetNamespace [attribute].
10758 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010759 if (thisTargetNamespace == NULL) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010760 xmlSchemaPCustomErr(pctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +000010761 XML_SCHEMAP_SRC_IMPORT_1_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010762 NULL, node,
William M. Brack2f2a6632004-08-20 23:09:47 +000010763 "The attribute 'namespace' must be existent if "
10764 "the importing schema has no target namespace",
10765 NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010766 return (pctxt->err);
William M. Brack2f2a6632004-08-20 23:09:47 +000010767 }
10768 }
William M. Brack2f2a6632004-08-20 23:09:47 +000010769 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000010770 * Locate and acquire the schema document.
William M. Brack2f2a6632004-08-20 23:09:47 +000010771 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010772 if (schemaLocation != NULL)
10773 schemaLocation = xmlSchemaBuildAbsoluteURI(pctxt->dict,
10774 schemaLocation, node);
10775 ret = xmlSchemaAddSchemaDoc(pctxt, XML_SCHEMA_SCHEMA_IMPORT,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010776 schemaLocation, NULL, NULL, 0, node, thisTargetNamespace,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010777 namespaceName, &bucket);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000010778
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010779 if (ret != 0)
10780 return(ret);
10781
10782 /*
10783 * For <import>: "It is *not* an error for the application
10784 * schema reference strategy to fail."
10785 * So just don't parse if no schema document was found.
10786 * Note that we will get no bucket if the schema could not be
10787 * located or if there was no schemaLocation.
10788 */
10789 if ((bucket == NULL) && (schemaLocation != NULL)) {
10790 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
10791 XML_SCHEMAP_WARN_UNLOCATED_SCHEMA,
10792 node, NULL,
10793 "Failed to locate a schema at location '%s'. "
10794 "Skipping the import", schemaLocation, NULL, NULL);
10795 }
10796
10797 if ((bucket != NULL) && CAN_PARSE_SCHEMA(bucket)) {
10798 ret = xmlSchemaParseNewDoc(pctxt, schema, bucket);
10799 }
10800
10801 return (ret);
William M. Brack2f2a6632004-08-20 23:09:47 +000010802}
10803
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010804static int
10805xmlSchemaParseIncludeOrRedefineAttrs(xmlSchemaParserCtxtPtr pctxt,
10806 xmlSchemaPtr schema,
10807 xmlNodePtr node,
10808 xmlChar **schemaLocation,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010809 int type)
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010810{
10811 xmlAttrPtr attr;
10812
10813 if ((pctxt == NULL) || (schema == NULL) || (node == NULL) ||
10814 (schemaLocation == NULL))
10815 return (-1);
10816
10817 *schemaLocation = NULL;
10818 /*
10819 * Check for illegal attributes.
10820 * Applies for both <include> and <redefine>.
10821 */
10822 attr = node->properties;
10823 while (attr != NULL) {
10824 if (attr->ns == NULL) {
10825 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
10826 (!xmlStrEqual(attr->name, BAD_CAST "schemaLocation"))) {
10827 xmlSchemaPIllegalAttrErr(pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010828 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010829 }
10830 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
10831 xmlSchemaPIllegalAttrErr(pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010832 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010833 }
10834 attr = attr->next;
10835 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010836 xmlSchemaPValAttrID(pctxt, node, BAD_CAST "id");
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010837 /*
10838 * Preliminary step, extract the URI-Reference and make an URI
10839 * from the base.
10840 */
10841 /*
10842 * Attribute "schemaLocation" is mandatory.
10843 */
10844 attr = xmlSchemaGetPropNode(node, "schemaLocation");
10845 if (attr != NULL) {
10846 xmlChar *base = NULL;
10847 xmlChar *uri = NULL;
10848
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010849 if (xmlSchemaPValAttrNode(pctxt, NULL, attr,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010850 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI),
10851 (const xmlChar **) schemaLocation) != 0)
10852 goto exit_error;
10853 base = xmlNodeGetBase(node->doc, node);
10854 if (base == NULL) {
10855 uri = xmlBuildURI(*schemaLocation, node->doc->URL);
10856 } else {
10857 uri = xmlBuildURI(*schemaLocation, base);
10858 xmlFree(base);
10859 }
10860 if (uri == NULL) {
10861 PERROR_INT("xmlSchemaParseIncludeOrRedefine",
10862 "could not build an URI from the schemaLocation")
10863 goto exit_failure;
10864 }
10865 (*schemaLocation) = (xmlChar *) xmlDictLookup(pctxt->dict, uri, -1);
10866 xmlFree(uri);
10867 } else {
10868 xmlSchemaPMissingAttrErr(pctxt,
10869 XML_SCHEMAP_S4S_ATTR_MISSING,
10870 NULL, node, "schemaLocation", NULL);
10871 goto exit_error;
10872 }
10873 /*
10874 * Report self-inclusion and self-redefinition.
10875 */
10876 if (xmlStrEqual(*schemaLocation, pctxt->URL)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010877 if (type == XML_SCHEMA_SCHEMA_REDEFINE) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010878 xmlSchemaPCustomErr(pctxt,
10879 XML_SCHEMAP_SRC_REDEFINE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010880 NULL, node,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010881 "The schema document '%s' cannot redefine itself.",
10882 *schemaLocation);
10883 } else {
10884 xmlSchemaPCustomErr(pctxt,
10885 XML_SCHEMAP_SRC_INCLUDE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010886 NULL, node,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010887 "The schema document '%s' cannot include itself.",
10888 *schemaLocation);
10889 }
10890 goto exit_error;
10891 }
10892
10893 return(0);
10894exit_error:
10895 return(pctxt->err);
10896exit_failure:
10897 return(-1);
10898}
10899
10900static int
10901xmlSchemaParseIncludeOrRedefine(xmlSchemaParserCtxtPtr pctxt,
10902 xmlSchemaPtr schema,
10903 xmlNodePtr node,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010904 int type)
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010905{
10906 xmlNodePtr child = NULL;
10907 const xmlChar *schemaLocation = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000010908 int res = 0; /* hasRedefinitions = 0 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010909 int isChameleon = 0, wasChameleon = 0;
10910 xmlSchemaBucketPtr bucket = NULL;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010911
10912 if ((pctxt == NULL) || (schema == NULL) || (node == NULL))
10913 return (-1);
10914
10915 /*
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000010916 * Parse attributes. Note that the returned schemaLocation will
10917 * be already converted to an absolute URI.
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010918 */
10919 res = xmlSchemaParseIncludeOrRedefineAttrs(pctxt, schema,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010920 node, (xmlChar **) (&schemaLocation), type);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010921 if (res != 0)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010922 return(res);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010923 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010924 * Load and add the schema document.
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010925 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010926 res = xmlSchemaAddSchemaDoc(pctxt, type, schemaLocation, NULL,
10927 NULL, 0, node, pctxt->targetNamespace, NULL, &bucket);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000010928 if (res != 0)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010929 return(res);
10930 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010931 * If we get no schema bucket back, then this means that the schema
10932 * document could not be located or was broken XML or was not
10933 * a schema document.
10934 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010935 if ((bucket == NULL) || (bucket->doc == NULL)) {
10936 if (type == XML_SCHEMA_SCHEMA_INCLUDE) {
10937 /*
10938 * WARNING for <include>:
10939 * We will raise an error if the schema cannot be located
10940 * for inclusions, since the that was the feedback from the
10941 * schema people. I.e. the following spec piece will *not* be
10942 * satisfied:
10943 * SPEC src-include: "It is not an error for the ·actual value· of the
10944 * schemaLocation [attribute] to fail to resolve it all, in which
10945 * case no corresponding inclusion is performed.
10946 * So do we need a warning report here?"
10947 */
10948 res = XML_SCHEMAP_SRC_INCLUDE;
10949 xmlSchemaCustomErr(ACTXT_CAST pctxt, res,
10950 node, NULL,
10951 "Failed to load the document '%s' for inclusion",
10952 schemaLocation, NULL);
10953 } else {
10954 /*
10955 * NOTE: This was changed to raise an error even if no redefinitions
10956 * are specified.
10957 *
10958 * SPEC src-redefine (1)
10959 * "If there are any element information items among the [children]
10960 * other than <annotation> then the ·actual value· of the
10961 * schemaLocation [attribute] must successfully resolve."
10962 * TODO: Ask the WG if a the location has always to resolve
10963 * here as well!
10964 */
10965 res = XML_SCHEMAP_SRC_REDEFINE;
10966 xmlSchemaCustomErr(ACTXT_CAST pctxt, res,
10967 node, NULL,
10968 "Failed to load the document '%s' for redefinition",
10969 schemaLocation, NULL);
10970 }
10971 } else {
10972 /*
10973 * Check targetNamespace sanity before parsing the new schema.
10974 * TODO: Note that we won't check further content if the
10975 * targetNamespace was bad.
10976 */
10977 if (bucket->origTargetNamespace != NULL) {
10978 /*
10979 * SPEC src-include (2.1)
10980 * "SII has a targetNamespace [attribute], and its ·actual
10981 * value· is identical to the ·actual value· of the targetNamespace
10982 * [attribute] of SIIÂ’ (which must have such an [attribute])."
10983 */
10984 if (pctxt->targetNamespace == NULL) {
10985 xmlSchemaCustomErr(ACTXT_CAST pctxt,
10986 XML_SCHEMAP_SRC_INCLUDE,
10987 node, NULL,
10988 "The target namespace of the included/redefined schema "
10989 "'%s' has to be absent, since the including/redefining "
10990 "schema has no target namespace",
10991 schemaLocation, NULL);
10992 goto exit_error;
10993 } else if (!xmlStrEqual(bucket->origTargetNamespace,
10994 pctxt->targetNamespace)) {
10995 /* TODO: Change error function. */
10996 xmlSchemaPCustomErrExt(pctxt,
10997 XML_SCHEMAP_SRC_INCLUDE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000010998 NULL, node,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000010999 "The target namespace '%s' of the included/redefined "
11000 "schema '%s' differs from '%s' of the "
11001 "including/redefining schema",
11002 bucket->origTargetNamespace, schemaLocation,
11003 pctxt->targetNamespace);
11004 goto exit_error;
11005 }
11006 } else if (pctxt->targetNamespace != NULL) {
11007 /*
11008 * Chameleons: the original target namespace will
11009 * differ from the resulting namespace.
11010 */
11011 isChameleon = 1;
11012 if (bucket->parsed &&
11013 (bucket->targetNamespace != pctxt->targetNamespace)) {
11014 /*
11015 * This is a sanity check, I dunno yet if this can happen.
11016 */
11017 PERROR_INT("xmlSchemaParseIncludeOrRedefine",
11018 "trying to use an already parsed schema for a "
11019 "different targetNamespace");
11020 return(-1);
11021 }
11022 bucket->targetNamespace = pctxt->targetNamespace;
11023 }
11024 }
11025 /*
11026 * Parse the schema.
11027 */
11028 if (bucket && (!bucket->parsed) && (bucket->doc != NULL)) {
11029 if (isChameleon) {
11030 /* TODO: Get rid of this flag on the schema itself. */
11031 if ((schema->flags & XML_SCHEMAS_INCLUDING_CONVERT_NS) == 0) {
11032 schema->flags |= XML_SCHEMAS_INCLUDING_CONVERT_NS;
11033 } else
11034 wasChameleon = 1;
11035 }
11036 xmlSchemaParseNewDoc(pctxt, schema, bucket);
11037 /* Restore chameleon flag. */
11038 if (isChameleon && (!wasChameleon))
11039 schema->flags ^= XML_SCHEMAS_INCLUDING_CONVERT_NS;
11040 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011041 /*
11042 * And now for the children...
11043 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011044 child = node->children;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011045 if (type == XML_SCHEMA_SCHEMA_REDEFINE) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011046 /*
11047 * Parse (simpleType | complexType | group | attributeGroup))*
11048 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011049 pctxt->redefined = bucket;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011050 /*
11051 * How to proceed if the redefined schema was not located?
11052 */
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011053 pctxt->isRedefine = 1;
11054 while (IS_SCHEMA(child, "annotation") ||
11055 IS_SCHEMA(child, "simpleType") ||
11056 IS_SCHEMA(child, "complexType") ||
11057 IS_SCHEMA(child, "group") ||
11058 IS_SCHEMA(child, "attributeGroup")) {
11059 if (IS_SCHEMA(child, "annotation")) {
11060 /*
11061 * TODO: discard or not?
11062 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011063 } else if (IS_SCHEMA(child, "simpleType")) {
11064 xmlSchemaParseSimpleType(pctxt, schema, child, 1);
11065 } else if (IS_SCHEMA(child, "complexType")) {
11066 xmlSchemaParseComplexType(pctxt, schema, child, 1);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000011067 /* hasRedefinitions = 1; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011068 } else if (IS_SCHEMA(child, "group")) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000011069 /* hasRedefinitions = 1; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011070 xmlSchemaParseModelGroupDefinition(pctxt,
11071 schema, child);
11072 } else if (IS_SCHEMA(child, "attributeGroup")) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000011073 /* hasRedefinitions = 1; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011074 xmlSchemaParseAttributeGroupDefinition(pctxt, schema,
11075 child);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011076 }
11077 child = child->next;
11078 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011079 pctxt->redefined = NULL;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011080 pctxt->isRedefine = 0;
11081 } else {
11082 if (IS_SCHEMA(child, "annotation")) {
11083 /*
11084 * TODO: discard or not?
11085 */
11086 child = child->next;
11087 }
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011088 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011089 if (child != NULL) {
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011090 res = XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011091 if (type == XML_SCHEMA_SCHEMA_REDEFINE) {
11092 xmlSchemaPContentErr(pctxt, res,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011093 NULL, node, child, NULL,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011094 "(annotation | (simpleType | complexType | group | attributeGroup))*");
11095 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011096 xmlSchemaPContentErr(pctxt, res,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011097 NULL, node, child, NULL,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011098 "(annotation?)");
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011099 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011100 }
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011101 return(res);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011102
11103exit_error:
11104 return(pctxt->err);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011105}
11106
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011107static int
11108xmlSchemaParseRedefine(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema,
11109 xmlNodePtr node)
11110{
11111 int res;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011112#ifndef ENABLE_REDEFINE
11113 TODO
11114 return(0);
11115#endif
11116 res = xmlSchemaParseIncludeOrRedefine(pctxt, schema, node,
11117 XML_SCHEMA_SCHEMA_REDEFINE);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011118 if (res != 0)
11119 return(res);
11120 return(0);
11121}
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011122
11123static int
11124xmlSchemaParseInclude(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema,
11125 xmlNodePtr node)
11126{
11127 int res;
11128
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011129 res = xmlSchemaParseIncludeOrRedefine(pctxt, schema, node,
11130 XML_SCHEMA_SCHEMA_INCLUDE);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011131 if (res != 0)
11132 return(res);
11133 return(0);
11134}
11135
Daniel Veillardbd2904b2003-11-25 15:38:59 +000011136/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011137 * xmlSchemaParseModelGroup:
Daniel Veillard4255d502002-04-16 15:50:10 +000011138 * @ctxt: a schema validation context
11139 * @schema: the schema being built
11140 * @node: a subtree containing XML Schema informations
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011141 * @type: the "compositor" type
11142 * @particleNeeded: if a a model group with a particle
Daniel Veillard4255d502002-04-16 15:50:10 +000011143 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011144 * parse a XML schema Sequence definition.
11145 * Applies parts of:
11146 * Schema Representation Constraint:
11147 * Redefinition Constraints and Semantics (src-redefine)
11148 * (6.1), (6.1.1), (6.1.2)
11149 *
11150 * Schema Component Constraint:
11151 * All Group Limited (cos-all-limited) (2)
11152 * TODO: Actually this should go to component-level checks,
11153 * but is done here due to performance. Move it to an other layer
11154 * is schema construction via an API is implemented.
11155 *
Daniel Veillard4255d502002-04-16 15:50:10 +000011156 * *WARNING* this interface is highly subject to change
11157 *
William M. Bracke7091952004-05-11 15:09:58 +000011158 * Returns -1 in case of error, 0 if the declaration is improper and
Daniel Veillard4255d502002-04-16 15:50:10 +000011159 * 1 in case of success.
11160 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011161static xmlSchemaTreeItemPtr
11162xmlSchemaParseModelGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
11163 xmlNodePtr node, xmlSchemaTypeType type,
11164 int withParticle)
Daniel Veillard4255d502002-04-16 15:50:10 +000011165{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011166 xmlSchemaModelGroupPtr item;
11167 xmlSchemaParticlePtr particle = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +000011168 xmlNodePtr child = NULL;
William M. Brack2f2a6632004-08-20 23:09:47 +000011169 xmlAttrPtr attr;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011170 int min = 1, max = 1, isElemRef, hasRefs = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +000011171
11172 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011173 return (NULL);
11174 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011175 * Create a model group with the given compositor.
William M. Brack2f2a6632004-08-20 23:09:47 +000011176 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000011177 item = xmlSchemaAddModelGroup(ctxt, schema, type, node);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011178 if (item == NULL)
11179 return (NULL);
11180
11181 if (withParticle) {
11182 if (type == XML_SCHEMA_TYPE_ALL) {
11183 min = xmlGetMinOccurs(ctxt, node, 0, 1, 1, "(0 | 1)");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011184 max = xmlGetMaxOccurs(ctxt, node, 1, 1, 1, "1");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011185 } else {
11186 /* choice + sequence */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011187 min = xmlGetMinOccurs(ctxt, node, 0, -1, 1, "xs:nonNegativeInteger");
11188 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
11189 "(xs:nonNegativeInteger | unbounded)");
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000011190 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011191 xmlSchemaPCheckParticleCorrect_2(ctxt, NULL, node, min, max);
11192 /*
11193 * Create a particle
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011194 */
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000011195 particle = xmlSchemaAddParticle(ctxt, node, min, max);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011196 if (particle == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011197 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011198 particle->children = (xmlSchemaTreeItemPtr) item;
11199 /*
11200 * Check for illegal attributes.
11201 */
11202 attr = node->properties;
11203 while (attr != NULL) {
11204 if (attr->ns == NULL) {
11205 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
11206 (!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) &&
11207 (!xmlStrEqual(attr->name, BAD_CAST "minOccurs"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011208 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011209 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011210 }
11211 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011212 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011213 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +000011214 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011215 attr = attr->next;
William M. Brack2f2a6632004-08-20 23:09:47 +000011216 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011217 } else {
11218 /*
11219 * Check for illegal attributes.
11220 */
11221 attr = node->properties;
11222 while (attr != NULL) {
11223 if (attr->ns == NULL) {
11224 if (!xmlStrEqual(attr->name, BAD_CAST "id")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011225 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011226 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011227 }
11228 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011229 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011230 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011231 }
11232 attr = attr->next;
11233 }
William M. Brack2f2a6632004-08-20 23:09:47 +000011234 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011235
William M. Brack2f2a6632004-08-20 23:09:47 +000011236 /*
11237 * Extract and validate attributes.
11238 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011239 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
William M. Brack2f2a6632004-08-20 23:09:47 +000011240 /*
11241 * And now for the children...
11242 */
Daniel Veillard4255d502002-04-16 15:50:10 +000011243 child = node->children;
11244 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000011245 item->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011246 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011247 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011248 if (type == XML_SCHEMA_TYPE_ALL) {
11249 xmlSchemaParticlePtr part, last = NULL;
11250
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011251 while (IS_SCHEMA(child, "element")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011252 part = (xmlSchemaParticlePtr) xmlSchemaParseElement(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011253 schema, child, &isElemRef, 0);
11254 /*
11255 * SPEC cos-all-limited (2)
11256 * "The {max occurs} of all the particles in the {particles}
11257 * of the ('all') group must be 0 or 1.
11258 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011259 if (part != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011260 if (isElemRef)
11261 hasRefs++;
11262 if (part->minOccurs > 1) {
11263 xmlSchemaPCustomErr(ctxt,
11264 XML_SCHEMAP_COS_ALL_LIMITED,
11265 NULL, child,
11266 "Invalid value for minOccurs (must be 0 or 1)",
11267 NULL);
11268 /* Reset to 1. */
11269 part->minOccurs = 1;
11270 }
11271 if (part->maxOccurs > 1) {
11272 xmlSchemaPCustomErr(ctxt,
11273 XML_SCHEMAP_COS_ALL_LIMITED,
11274 NULL, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011275 "Invalid value for maxOccurs (must be 0 or 1)",
11276 NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011277 /* Reset to 1. */
11278 part->maxOccurs = 1;
11279 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011280 if (last == NULL)
11281 item->children = (xmlSchemaTreeItemPtr) part;
11282 else
11283 last->next = (xmlSchemaTreeItemPtr) part;
11284 last = part;
11285 }
11286 child = child->next;
11287 }
11288 if (child != NULL) {
11289 xmlSchemaPContentErr(ctxt,
11290 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011291 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011292 "(annotation?, (annotation?, element*)");
11293 }
11294 } else {
11295 /* choice + sequence */
11296 xmlSchemaTreeItemPtr part = NULL, last = NULL;
11297
11298 while ((IS_SCHEMA(child, "element")) ||
11299 (IS_SCHEMA(child, "group")) ||
11300 (IS_SCHEMA(child, "any")) ||
11301 (IS_SCHEMA(child, "choice")) ||
11302 (IS_SCHEMA(child, "sequence"))) {
11303
11304 if (IS_SCHEMA(child, "element")) {
11305 part = (xmlSchemaTreeItemPtr)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011306 xmlSchemaParseElement(ctxt, schema, child, &isElemRef, 0);
11307 if (part && isElemRef)
11308 hasRefs++;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011309 } else if (IS_SCHEMA(child, "group")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011310 part =
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011311 xmlSchemaParseModelGroupDefRef(ctxt, schema, child);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011312 if (part != NULL)
11313 hasRefs++;
11314 /*
11315 * Handle redefinitions.
11316 */
11317 if (ctxt->isRedefine && ctxt->redef &&
11318 (ctxt->redef->item->type == XML_SCHEMA_TYPE_GROUP) &&
11319 part && part->children)
11320 {
11321 if ((xmlSchemaGetQNameRefName(part->children) ==
11322 ctxt->redef->refName) &&
11323 (xmlSchemaGetQNameRefTargetNs(part->children) ==
11324 ctxt->redef->refTargetNs))
11325 {
11326 /*
11327 * SPEC src-redefine:
11328 * (6.1) "If it has a <group> among its contents at
11329 * some level the ·actual value· of whose ref
11330 * [attribute] is the same as the ·actual value· of
11331 * its own name attribute plus target namespace, then
11332 * all of the following must be true:"
11333 * (6.1.1) "It must have exactly one such group."
11334 */
11335 if (ctxt->redefCounter != 0) {
11336 xmlChar *str = NULL;
11337
11338 xmlSchemaCustomErr(ACTXT_CAST ctxt,
11339 XML_SCHEMAP_SRC_REDEFINE, child, NULL,
11340 "The redefining model group definition "
11341 "'%s' must not contain more than one "
11342 "reference to the redefined definition",
11343 xmlSchemaFormatQName(&str,
11344 ctxt->redef->refTargetNs,
11345 ctxt->redef->refName),
11346 NULL);
11347 FREE_AND_NULL(str)
11348 part = NULL;
11349 } else if (((WXS_PARTICLE(part))->minOccurs != 1) ||
11350 ((WXS_PARTICLE(part))->maxOccurs != 1))
11351 {
11352 xmlChar *str = NULL;
11353 /*
11354 * SPEC src-redefine:
11355 * (6.1.2) "The ·actual value· of both that
11356 * group's minOccurs and maxOccurs [attribute]
11357 * must be 1 (or ·absent·).
11358 */
11359 xmlSchemaCustomErr(ACTXT_CAST ctxt,
11360 XML_SCHEMAP_SRC_REDEFINE, child, NULL,
11361 "The redefining model group definition "
11362 "'%s' must not contain a reference to the "
11363 "redefined definition with a "
11364 "maxOccurs/minOccurs other than 1",
11365 xmlSchemaFormatQName(&str,
11366 ctxt->redef->refTargetNs,
11367 ctxt->redef->refName),
11368 NULL);
11369 FREE_AND_NULL(str)
11370 part = NULL;
11371 }
11372 ctxt->redef->reference = WXS_BASIC_CAST part;
11373 ctxt->redefCounter++;
11374 }
11375 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011376 } else if (IS_SCHEMA(child, "any")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011377 part = (xmlSchemaTreeItemPtr)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011378 xmlSchemaParseAny(ctxt, schema, child);
11379 } else if (IS_SCHEMA(child, "choice")) {
11380 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11381 XML_SCHEMA_TYPE_CHOICE, 1);
11382 } else if (IS_SCHEMA(child, "sequence")) {
11383 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11384 XML_SCHEMA_TYPE_SEQUENCE, 1);
11385 }
11386 if (part != NULL) {
11387 if (last == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011388 item->children = part;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011389 else
11390 last->next = part;
11391 last = part;
11392 }
11393 child = child->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011394 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011395 if (child != NULL) {
11396 xmlSchemaPContentErr(ctxt,
11397 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011398 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011399 "(annotation?, (element | group | choice | sequence | any)*)");
11400 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011401 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011402 if ((max == 0) && (min == 0))
11403 return (NULL);
11404 if (hasRefs) {
11405 /*
11406 * We need to resolve references.
11407 */
11408 WXS_ADD_PENDING(ctxt, item);
11409 }
11410 if (withParticle)
11411 return ((xmlSchemaTreeItemPtr) particle);
11412 else
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011413 return ((xmlSchemaTreeItemPtr) item);
Daniel Veillard4255d502002-04-16 15:50:10 +000011414}
11415
11416/**
11417 * xmlSchemaParseRestriction:
11418 * @ctxt: a schema validation context
11419 * @schema: the schema being built
11420 * @node: a subtree containing XML Schema informations
Daniel Veillard4255d502002-04-16 15:50:10 +000011421 *
11422 * parse a XML schema Restriction definition
11423 * *WARNING* this interface is highly subject to change
11424 *
11425 * Returns the type definition or NULL in case of error
11426 */
11427static xmlSchemaTypePtr
11428xmlSchemaParseRestriction(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011429 xmlNodePtr node, xmlSchemaTypeType parentType)
Daniel Veillard4255d502002-04-16 15:50:10 +000011430{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011431 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +000011432 xmlNodePtr child = NULL;
William M. Brack2f2a6632004-08-20 23:09:47 +000011433 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +000011434
11435 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
11436 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011437 /* Not a component, don't create it. */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011438 type = ctxt->ctxtType;
11439 type->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011440
11441 /*
William M. Brack2f2a6632004-08-20 23:09:47 +000011442 * Check for illegal attributes.
11443 */
11444 attr = node->properties;
11445 while (attr != NULL) {
11446 if (attr->ns == NULL) {
11447 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
11448 (!xmlStrEqual(attr->name, BAD_CAST "base"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011449 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011450 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +000011451 }
11452 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011453 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011454 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
William M. Brack2f2a6632004-08-20 23:09:47 +000011455 }
11456 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011457 }
William M. Brack2f2a6632004-08-20 23:09:47 +000011458 /*
11459 * Extract and validate attributes.
11460 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011461 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
William M. Brack2f2a6632004-08-20 23:09:47 +000011462 /*
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011463 * Attribute
William M. Brack2f2a6632004-08-20 23:09:47 +000011464 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011465 /*
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011466 * Extract the base type. The "base" attribute is mandatory if inside
11467 * a complex type or if redefining.
11468 *
11469 * SPEC (1.2) "...otherwise (<restriction> has no <simpleType> "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011470 * among its [children]), the simple type definition which is
11471 * the {content type} of the type definition ·resolved· to by
11472 * the ·actual value· of the base [attribute]"
11473 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011474 if (xmlSchemaPValAttrQName(ctxt, schema, NULL, node, "base",
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011475 &(type->baseNs), &(type->base)) == 0)
11476 {
11477 if ((type->base == NULL) && (type->type == XML_SCHEMA_TYPE_COMPLEX)) {
11478 xmlSchemaPMissingAttrErr(ctxt,
11479 XML_SCHEMAP_S4S_ATTR_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011480 NULL, node, "base", NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011481 } else if ((ctxt->isRedefine) &&
11482 (type->flags & XML_SCHEMAS_TYPE_GLOBAL))
11483 {
11484 if (type->base == NULL) {
11485 xmlSchemaPMissingAttrErr(ctxt,
11486 XML_SCHEMAP_S4S_ATTR_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011487 NULL, node, "base", NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011488 } else if ((! xmlStrEqual(type->base, type->name)) ||
11489 (! xmlStrEqual(type->baseNs, type->targetNamespace)))
11490 {
11491 xmlChar *str1 = NULL, *str2 = NULL;
11492 /*
11493 * REDEFINE: SPEC src-redefine (5)
11494 * "Within the [children], each <simpleType> must have a
11495 * <restriction> among its [children] ... the ·actual value· of
11496 * whose base [attribute] must be the same as the ·actual value·
11497 * of its own name attribute plus target namespace;"
11498 */
11499 xmlSchemaPCustomErrExt(ctxt, XML_SCHEMAP_SRC_REDEFINE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011500 NULL, node, "This is a redefinition, but the QName "
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011501 "value '%s' of the 'base' attribute does not match the "
11502 "type's designation '%s'",
11503 xmlSchemaFormatQName(&str1, type->baseNs, type->base),
Daniel Veillardfef73a52006-03-27 09:38:57 +000011504 xmlSchemaFormatQName(&str2, type->targetNamespace,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011505 type->name), NULL);
11506 FREE_AND_NULL(str1);
11507 FREE_AND_NULL(str2);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011508 /* Avoid confusion and erase the values. */
11509 type->base = NULL;
11510 type->baseNs = NULL;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011511 }
11512 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011513 }
William M. Brack2f2a6632004-08-20 23:09:47 +000011514 /*
11515 * And now for the children...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011516 */
Daniel Veillard4255d502002-04-16 15:50:10 +000011517 child = node->children;
11518 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011519 /*
11520 * Add the annotation to the simple type ancestor.
11521 */
11522 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000011523 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011524 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011525 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011526 if (parentType == XML_SCHEMA_TYPE_SIMPLE) {
11527 /*
11528 * Corresponds to <simpleType><restriction><simpleType>.
11529 */
William M. Brack2f2a6632004-08-20 23:09:47 +000011530 if (IS_SCHEMA(child, "simpleType")) {
11531 if (type->base != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011532 /*
William M. Brack2f2a6632004-08-20 23:09:47 +000011533 * src-restriction-base-or-simpleType
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011534 * Either the base [attribute] or the simpleType [child] of the
11535 * <restriction> element must be present, but not both.
William M. Brack2f2a6632004-08-20 23:09:47 +000011536 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011537 xmlSchemaPContentErr(ctxt,
William M. Brack2f2a6632004-08-20 23:09:47 +000011538 XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011539 NULL, node, child,
William M. Brack2f2a6632004-08-20 23:09:47 +000011540 "The attribute 'base' and the <simpleType> child are "
11541 "mutually exclusive", NULL);
11542 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011543 type->baseType = (xmlSchemaTypePtr)
William M. Brack2f2a6632004-08-20 23:09:47 +000011544 xmlSchemaParseSimpleType(ctxt, schema, child, 0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011545 }
William M. Brack2f2a6632004-08-20 23:09:47 +000011546 child = child->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011547 } else if (type->base == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011548 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011549 XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011550 NULL, node, child,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011551 "Either the attribute 'base' or a <simpleType> child "
11552 "must be present", NULL);
William M. Brack2f2a6632004-08-20 23:09:47 +000011553 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011554 } else if (parentType == XML_SCHEMA_TYPE_COMPLEX_CONTENT) {
11555 /*
11556 * Corresponds to <complexType><complexContent><restriction>...
11557 * followed by:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011558 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011559 * Model groups <all>, <choice> and <sequence>.
11560 */
11561 if (IS_SCHEMA(child, "all")) {
11562 type->subtypes = (xmlSchemaTypePtr)
11563 xmlSchemaParseModelGroup(ctxt, schema, child,
11564 XML_SCHEMA_TYPE_ALL, 1);
Daniel Veillard01fa6152004-06-29 17:04:39 +000011565 child = child->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011566 } else if (IS_SCHEMA(child, "choice")) {
11567 type->subtypes = (xmlSchemaTypePtr)
11568 xmlSchemaParseModelGroup(ctxt,
11569 schema, child, XML_SCHEMA_TYPE_CHOICE, 1);
11570 child = child->next;
11571 } else if (IS_SCHEMA(child, "sequence")) {
11572 type->subtypes = (xmlSchemaTypePtr)
11573 xmlSchemaParseModelGroup(ctxt, schema, child,
11574 XML_SCHEMA_TYPE_SEQUENCE, 1);
11575 child = child->next;
11576 /*
11577 * Model group reference <group>.
11578 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011579 } else if (IS_SCHEMA(child, "group")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011580 type->subtypes = (xmlSchemaTypePtr)
11581 xmlSchemaParseModelGroupDefRef(ctxt, schema, child);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011582 /*
11583 * Note that the reference will be resolved in
11584 * xmlSchemaResolveTypeReferences();
11585 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011586 child = child->next;
11587 }
11588 } else if (parentType == XML_SCHEMA_TYPE_SIMPLE_CONTENT) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011589 /*
11590 * Corresponds to <complexType><simpleContent><restriction>...
11591 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011592 * "1.1 the simple type definition corresponding to the <simpleType>
11593 * among the [children] of <restriction> if there is one;"
11594 */
11595 if (IS_SCHEMA(child, "simpleType")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011596 /*
11597 * We will store the to-be-restricted simple type in
11598 * type->contentTypeDef *temporarily*.
11599 */
11600 type->contentTypeDef = (xmlSchemaTypePtr)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011601 xmlSchemaParseSimpleType(ctxt, schema, child, 0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011602 if ( type->contentTypeDef == NULL)
11603 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011604 child = child->next;
11605 }
William M. Brack2f2a6632004-08-20 23:09:47 +000011606 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011607
11608 if ((parentType == XML_SCHEMA_TYPE_SIMPLE) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011609 (parentType == XML_SCHEMA_TYPE_SIMPLE_CONTENT)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011610 xmlSchemaFacetPtr facet, lastfacet = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011611 /*
11612 * Corresponds to <complexType><simpleContent><restriction>...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011613 * <simpleType><restriction>...
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011614 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011615
Daniel Veillard01fa6152004-06-29 17:04:39 +000011616 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011617 * Add the facets to the simple type ancestor.
Daniel Veillard01fa6152004-06-29 17:04:39 +000011618 */
Daniel Veillardc0826a72004-08-10 14:17:33 +000011619 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011620 * TODO: Datatypes: 4.1.3 Constraints on XML Representation of
11621 * Simple Type Definition Schema Representation Constraint:
Daniel Veillardc0826a72004-08-10 14:17:33 +000011622 * *Single Facet Value*
11623 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000011624 while ((IS_SCHEMA(child, "minInclusive")) ||
11625 (IS_SCHEMA(child, "minExclusive")) ||
11626 (IS_SCHEMA(child, "maxInclusive")) ||
11627 (IS_SCHEMA(child, "maxExclusive")) ||
11628 (IS_SCHEMA(child, "totalDigits")) ||
11629 (IS_SCHEMA(child, "fractionDigits")) ||
11630 (IS_SCHEMA(child, "pattern")) ||
11631 (IS_SCHEMA(child, "enumeration")) ||
11632 (IS_SCHEMA(child, "whiteSpace")) ||
11633 (IS_SCHEMA(child, "length")) ||
11634 (IS_SCHEMA(child, "maxLength")) ||
11635 (IS_SCHEMA(child, "minLength"))) {
11636 facet = xmlSchemaParseFacet(ctxt, schema, child);
11637 if (facet != NULL) {
11638 if (lastfacet == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011639 type->facets = facet;
Daniel Veillard01fa6152004-06-29 17:04:39 +000011640 else
11641 lastfacet->next = facet;
11642 lastfacet = facet;
11643 lastfacet->next = NULL;
11644 }
11645 child = child->next;
11646 }
11647 /*
11648 * Create links for derivation and validation.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011649 */
11650 if (type->facets != NULL) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000011651 xmlSchemaFacetLinkPtr facetLink, lastFacetLink = NULL;
11652
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011653 facet = type->facets;
11654 do {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011655 facetLink = (xmlSchemaFacetLinkPtr)
11656 xmlMalloc(sizeof(xmlSchemaFacetLink));
Daniel Veillard01fa6152004-06-29 17:04:39 +000011657 if (facetLink == NULL) {
William M. Brack2f2a6632004-08-20 23:09:47 +000011658 xmlSchemaPErrMemory(ctxt, "allocating a facet link", NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +000011659 xmlFree(facetLink);
11660 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011661 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000011662 facetLink->facet = facet;
11663 facetLink->next = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011664 if (lastFacetLink == NULL)
11665 type->facetSet = facetLink;
Daniel Veillard01fa6152004-06-29 17:04:39 +000011666 else
11667 lastFacetLink->next = facetLink;
11668 lastFacetLink = facetLink;
11669 facet = facet->next;
11670 } while (facet != NULL);
11671 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011672 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011673 if (type->type == XML_SCHEMA_TYPE_COMPLEX) {
11674 /*
11675 * Attribute uses/declarations.
11676 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011677 if (xmlSchemaParseLocalAttributes(ctxt, schema, &child,
11678 (xmlSchemaItemListPtr *) &(type->attrUses),
11679 XML_SCHEMA_TYPE_RESTRICTION, NULL) == -1)
11680 return(NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011681 /*
11682 * Attribute wildcard.
11683 */
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000011684 if (IS_SCHEMA(child, "anyAttribute")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011685 type->attributeWildcard =
11686 xmlSchemaParseAnyAttribute(ctxt, schema, child);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000011687 child = child->next;
11688 }
11689 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011690 if (child != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011691 if (parentType == XML_SCHEMA_TYPE_COMPLEX_CONTENT) {
11692 xmlSchemaPContentErr(ctxt,
11693 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011694 NULL, node, child, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +000011695 "annotation?, (group | all | choice | sequence)?, "
11696 "((attribute | attributeGroup)*, anyAttribute?))");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011697 } else if (parentType == XML_SCHEMA_TYPE_SIMPLE_CONTENT) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011698 xmlSchemaPContentErr(ctxt,
11699 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011700 NULL, node, child, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +000011701 "(annotation?, (simpleType?, (minExclusive | minInclusive | "
11702 "maxExclusive | maxInclusive | totalDigits | fractionDigits | "
11703 "length | minLength | maxLength | enumeration | whiteSpace | "
11704 "pattern)*)?, ((attribute | attributeGroup)*, anyAttribute?))");
11705 } else {
11706 /* Simple type */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011707 xmlSchemaPContentErr(ctxt,
11708 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011709 NULL, node, child, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +000011710 "(annotation?, (simpleType?, (minExclusive | minInclusive | "
11711 "maxExclusive | maxInclusive | totalDigits | fractionDigits | "
11712 "length | minLength | maxLength | enumeration | whiteSpace | "
11713 "pattern)*))");
11714 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011715 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011716 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +000011717}
11718
11719/**
11720 * xmlSchemaParseExtension:
11721 * @ctxt: a schema validation context
11722 * @schema: the schema being built
11723 * @node: a subtree containing XML Schema informations
11724 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011725 * Parses an <extension>, which is found inside a
11726 * <simpleContent> or <complexContent>.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011727 * *WARNING* this interface is highly subject to change.
Daniel Veillard4255d502002-04-16 15:50:10 +000011728 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011729 * TODO: Returns the type definition or NULL in case of error
Daniel Veillard4255d502002-04-16 15:50:10 +000011730 */
11731static xmlSchemaTypePtr
11732xmlSchemaParseExtension(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011733 xmlNodePtr node, xmlSchemaTypeType parentType)
Daniel Veillard4255d502002-04-16 15:50:10 +000011734{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011735 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +000011736 xmlNodePtr child = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011737 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +000011738
11739 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
11740 return (NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011741 /* Not a component, don't create it. */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011742 type = ctxt->ctxtType;
11743 type->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION;
Daniel Veillard4255d502002-04-16 15:50:10 +000011744
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011745 /*
11746 * Check for illegal attributes.
11747 */
11748 attr = node->properties;
11749 while (attr != NULL) {
11750 if (attr->ns == NULL) {
11751 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
11752 (!xmlStrEqual(attr->name, BAD_CAST "base"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011753 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011754 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011755 }
11756 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011757 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011758 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011759 }
11760 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011761 }
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000011762
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011763 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011764
Kasimier T. Buchcik289dbb42005-03-17 12:39:31 +000011765 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011766 * Attribute "base" - mandatory.
Kasimier T. Buchcik289dbb42005-03-17 12:39:31 +000011767 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011768 if ((xmlSchemaPValAttrQName(ctxt, schema, NULL, node,
11769 "base", &(type->baseNs), &(type->base)) == 0) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011770 (type->base == NULL)) {
Kasimier T. Buchcik289dbb42005-03-17 12:39:31 +000011771 xmlSchemaPMissingAttrErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011772 XML_SCHEMAP_S4S_ATTR_MISSING,
11773 NULL, node, "base", NULL);
11774 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011775 /*
11776 * And now for the children...
11777 */
Daniel Veillard4255d502002-04-16 15:50:10 +000011778 child = node->children;
11779 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011780 /*
11781 * Add the annotation to the type ancestor.
11782 */
11783 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000011784 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011785 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011786 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011787 if (parentType == XML_SCHEMA_TYPE_COMPLEX_CONTENT) {
11788 /*
11789 * Corresponds to <complexType><complexContent><extension>... and:
11790 *
11791 * Model groups <all>, <choice>, <sequence> and <group>.
11792 */
11793 if (IS_SCHEMA(child, "all")) {
11794 type->subtypes = (xmlSchemaTypePtr)
11795 xmlSchemaParseModelGroup(ctxt, schema,
11796 child, XML_SCHEMA_TYPE_ALL, 1);
11797 child = child->next;
11798 } else if (IS_SCHEMA(child, "choice")) {
11799 type->subtypes = (xmlSchemaTypePtr)
11800 xmlSchemaParseModelGroup(ctxt, schema,
11801 child, XML_SCHEMA_TYPE_CHOICE, 1);
11802 child = child->next;
11803 } else if (IS_SCHEMA(child, "sequence")) {
11804 type->subtypes = (xmlSchemaTypePtr)
11805 xmlSchemaParseModelGroup(ctxt, schema,
11806 child, XML_SCHEMA_TYPE_SEQUENCE, 1);
11807 child = child->next;
11808 } else if (IS_SCHEMA(child, "group")) {
11809 type->subtypes = (xmlSchemaTypePtr)
11810 xmlSchemaParseModelGroupDefRef(ctxt, schema, child);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011811 /*
11812 * Note that the reference will be resolved in
11813 * xmlSchemaResolveTypeReferences();
11814 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011815 child = child->next;
11816 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011817 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011818 if (child != NULL) {
11819 /*
11820 * Attribute uses/declarations.
11821 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011822 if (xmlSchemaParseLocalAttributes(ctxt, schema, &child,
11823 (xmlSchemaItemListPtr *) &(type->attrUses),
11824 XML_SCHEMA_TYPE_EXTENSION, NULL) == -1)
11825 return(NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011826 /*
11827 * Attribute wildcard.
11828 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011829 if (IS_SCHEMA(child, "anyAttribute")) {
11830 ctxt->ctxtType->attributeWildcard =
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000011831 xmlSchemaParseAnyAttribute(ctxt, schema, child);
11832 child = child->next;
11833 }
11834 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011835 if (child != NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011836 if (parentType == XML_SCHEMA_TYPE_COMPLEX_CONTENT) {
11837 /* Complex content extension. */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011838 xmlSchemaPContentErr(ctxt,
11839 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011840 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011841 "(annotation?, ((group | all | choice | sequence)?, "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011842 "((attribute | attributeGroup)*, anyAttribute?)))");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011843 } else {
11844 /* Simple content extension. */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011845 xmlSchemaPContentErr(ctxt,
11846 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011847 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011848 "(annotation?, ((attribute | attributeGroup)*, "
11849 "anyAttribute?))");
11850 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011851 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011852 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +000011853}
11854
11855/**
11856 * xmlSchemaParseSimpleContent:
11857 * @ctxt: a schema validation context
11858 * @schema: the schema being built
11859 * @node: a subtree containing XML Schema informations
11860 *
11861 * parse a XML schema SimpleContent definition
11862 * *WARNING* this interface is highly subject to change
11863 *
11864 * Returns the type definition or NULL in case of error
11865 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011866static int
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011867xmlSchemaParseSimpleContent(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011868 xmlSchemaPtr schema, xmlNodePtr node,
11869 int *hasRestrictionOrExtension)
Daniel Veillard4255d502002-04-16 15:50:10 +000011870{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011871 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +000011872 xmlNodePtr child = NULL;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011873 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +000011874
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011875 if ((ctxt == NULL) || (schema == NULL) || (node == NULL) ||
11876 (hasRestrictionOrExtension == NULL))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011877 return (-1);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011878 *hasRestrictionOrExtension = 0;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011879 /* Not a component, don't create it. */
11880 type = ctxt->ctxtType;
11881 type->contentType = XML_SCHEMA_CONTENT_SIMPLE;
11882 /*
11883 * Check for illegal attributes.
11884 */
11885 attr = node->properties;
11886 while (attr != NULL) {
11887 if (attr->ns == NULL) {
11888 if ((!xmlStrEqual(attr->name, BAD_CAST "id"))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011889 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011890 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011891 }
11892 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011893 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011894 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011895 }
11896 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011897 }
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000011898
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011899 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Daniel Veillard4255d502002-04-16 15:50:10 +000011900
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011901 /*
11902 * And now for the children...
11903 */
Daniel Veillard4255d502002-04-16 15:50:10 +000011904 child = node->children;
11905 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011906 /*
11907 * Add the annotation to the complex type ancestor.
11908 */
11909 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000011910 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011911 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011912 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011913 if (child == NULL) {
11914 xmlSchemaPContentErr(ctxt,
11915 XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011916 NULL, node, NULL, NULL,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011917 "(annotation?, (restriction | extension))");
11918 }
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011919 if (child == NULL) {
11920 xmlSchemaPContentErr(ctxt,
11921 XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011922 NULL, node, NULL, NULL,
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000011923 "(annotation?, (restriction | extension))");
11924 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011925 if (IS_SCHEMA(child, "restriction")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011926 xmlSchemaParseRestriction(ctxt, schema, child,
11927 XML_SCHEMA_TYPE_SIMPLE_CONTENT);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011928 (*hasRestrictionOrExtension) = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011929 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011930 } else if (IS_SCHEMA(child, "extension")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011931 xmlSchemaParseExtension(ctxt, schema, child,
11932 XML_SCHEMA_TYPE_SIMPLE_CONTENT);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011933 (*hasRestrictionOrExtension) = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011934 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000011935 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011936 if (child != NULL) {
11937 xmlSchemaPContentErr(ctxt,
11938 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011939 NULL, node, child, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011940 "(annotation?, (restriction | extension))");
Daniel Veillard4255d502002-04-16 15:50:10 +000011941 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011942 return (0);
Daniel Veillard4255d502002-04-16 15:50:10 +000011943}
11944
11945/**
11946 * xmlSchemaParseComplexContent:
11947 * @ctxt: a schema validation context
11948 * @schema: the schema being built
11949 * @node: a subtree containing XML Schema informations
11950 *
11951 * parse a XML schema ComplexContent definition
11952 * *WARNING* this interface is highly subject to change
11953 *
11954 * Returns the type definition or NULL in case of error
11955 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011956static int
Daniel Veillardd0c9c322003-10-10 00:49:42 +000011957xmlSchemaParseComplexContent(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011958 xmlSchemaPtr schema, xmlNodePtr node,
11959 int *hasRestrictionOrExtension)
Daniel Veillard4255d502002-04-16 15:50:10 +000011960{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011961 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +000011962 xmlNodePtr child = NULL;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011963 xmlAttrPtr attr;
Daniel Veillard4255d502002-04-16 15:50:10 +000011964
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011965 if ((ctxt == NULL) || (schema == NULL) || (node == NULL) ||
11966 (hasRestrictionOrExtension == NULL))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011967 return (-1);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000011968 *hasRestrictionOrExtension = 0;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011969 /* Not a component, don't create it. */
11970 type = ctxt->ctxtType;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011971 /*
11972 * Check for illegal attributes.
11973 */
11974 attr = node->properties;
11975 while (attr != NULL) {
11976 if (attr->ns == NULL) {
11977 if ((!xmlStrEqual(attr->name, BAD_CAST "id")) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011978 (!xmlStrEqual(attr->name, BAD_CAST "mixed")))
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011979 {
11980 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011981 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011982 }
11983 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
11984 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011985 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011986 }
11987 attr = attr->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000011988 }
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000011989
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011990 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000011991
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011992 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011993 * Set the 'mixed' on the complex type ancestor.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011994 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000011995 if (xmlGetBooleanProp(ctxt, node, "mixed", 0)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000011996 if ((type->flags & XML_SCHEMAS_TYPE_MIXED) == 0)
11997 type->flags |= XML_SCHEMAS_TYPE_MIXED;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000011998 }
Daniel Veillard4255d502002-04-16 15:50:10 +000011999 child = node->children;
12000 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012001 /*
12002 * Add the annotation to the complex type ancestor.
12003 */
12004 xmlSchemaAddAnnotation((xmlSchemaAnnotItemPtr) type,
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000012005 xmlSchemaParseAnnotation(ctxt, child, 1));
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012006 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012007 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012008 if (child == NULL) {
12009 xmlSchemaPContentErr(ctxt,
12010 XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012011 NULL, node, NULL,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012012 NULL, "(annotation?, (restriction | extension))");
12013 }
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012014 if (child == NULL) {
12015 xmlSchemaPContentErr(ctxt,
12016 XML_SCHEMAP_S4S_ELEM_MISSING,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012017 NULL, node, NULL,
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012018 NULL, "(annotation?, (restriction | extension))");
12019 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012020 if (IS_SCHEMA(child, "restriction")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012021 xmlSchemaParseRestriction(ctxt, schema, child,
12022 XML_SCHEMA_TYPE_COMPLEX_CONTENT);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012023 (*hasRestrictionOrExtension) = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012024 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012025 } else if (IS_SCHEMA(child, "extension")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012026 xmlSchemaParseExtension(ctxt, schema, child,
12027 XML_SCHEMA_TYPE_COMPLEX_CONTENT);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012028 (*hasRestrictionOrExtension) = 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012029 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012030 }
Daniel Veillard4255d502002-04-16 15:50:10 +000012031 if (child != NULL) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012032 xmlSchemaPContentErr(ctxt,
12033 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012034 NULL, node, child,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012035 NULL, "(annotation?, (restriction | extension))");
Daniel Veillard4255d502002-04-16 15:50:10 +000012036 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012037 return (0);
Daniel Veillard4255d502002-04-16 15:50:10 +000012038}
12039
12040/**
12041 * xmlSchemaParseComplexType:
12042 * @ctxt: a schema validation context
12043 * @schema: the schema being built
12044 * @node: a subtree containing XML Schema informations
12045 *
12046 * parse a XML schema Complex Type definition
12047 * *WARNING* this interface is highly subject to change
12048 *
12049 * Returns the type definition or NULL in case of error
12050 */
12051static xmlSchemaTypePtr
12052xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema,
Daniel Veillard3646d642004-06-02 19:19:14 +000012053 xmlNodePtr node, int topLevel)
Daniel Veillard4255d502002-04-16 15:50:10 +000012054{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012055 xmlSchemaTypePtr type, ctxtType;
Daniel Veillard4255d502002-04-16 15:50:10 +000012056 xmlNodePtr child = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012057 const xmlChar *name = NULL;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012058 xmlAttrPtr attr;
12059 const xmlChar *attrValue;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012060#ifdef ENABLE_NAMED_LOCALS
Daniel Veillard1a380b82004-10-21 16:00:06 +000012061 char buf[40];
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012062#endif
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012063 int final = 0, block = 0, hasRestrictionOrExtension = 0;
Daniel Veillard1a380b82004-10-21 16:00:06 +000012064
Daniel Veillard4255d502002-04-16 15:50:10 +000012065
12066 if ((ctxt == NULL) || (schema == NULL) || (node == NULL))
12067 return (NULL);
12068
Daniel Veillard01fa6152004-06-29 17:04:39 +000012069 ctxtType = ctxt->ctxtType;
12070
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012071 if (topLevel) {
12072 attr = xmlSchemaGetPropNode(node, "name");
12073 if (attr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012074 xmlSchemaPMissingAttrErr(ctxt,
12075 XML_SCHEMAP_S4S_ATTR_MISSING, NULL, node, "name", NULL);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012076 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012077 } else if (xmlSchemaPValAttrNode(ctxt, NULL, attr,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012078 xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) {
12079 return (NULL);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012080 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012081 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012082
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012083 if (topLevel == 0) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012084 /*
12085 * Parse as local complex type definition.
12086 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012087#ifdef ENABLE_NAMED_LOCALS
Kasimier T. Buchcik87250a92005-01-28 15:59:53 +000012088 snprintf(buf, 39, "#CT%d", ctxt->counter++ + 1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012089 type = xmlSchemaAddType(ctxt, schema,
12090 XML_SCHEMA_TYPE_COMPLEX,
12091 xmlDictLookup(ctxt->dict, (const xmlChar *)buf, -1),
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012092 ctxt->targetNamespace, node, 0);
12093#else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012094 type = xmlSchemaAddType(ctxt, schema,
12095 XML_SCHEMA_TYPE_COMPLEX,
12096 NULL, ctxt->targetNamespace, node, 0);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012097#endif
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012098 if (type == NULL)
12099 return (NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012100 name = type->name;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012101 type->node = node;
12102 type->type = XML_SCHEMA_TYPE_COMPLEX;
12103 /*
12104 * TODO: We need the target namespace.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012105 */
12106 } else {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012107 /*
12108 * Parse as global complex type definition.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012109 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012110 type = xmlSchemaAddType(ctxt, schema,
12111 XML_SCHEMA_TYPE_COMPLEX,
12112 name, ctxt->targetNamespace, node, 1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012113 if (type == NULL)
12114 return (NULL);
12115 type->node = node;
12116 type->type = XML_SCHEMA_TYPE_COMPLEX;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012117 type->flags |= XML_SCHEMAS_TYPE_GLOBAL;
Kasimier T. Buchcik31113c72005-01-13 16:57:20 +000012118 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012119 type->targetNamespace = ctxt->targetNamespace;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012120 /*
12121 * Handle attributes.
12122 */
12123 attr = node->properties;
12124 while (attr != NULL) {
12125 if (attr->ns == NULL) {
12126 if (xmlStrEqual(attr->name, BAD_CAST "id")) {
12127 /*
12128 * Attribute "id".
12129 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012130 xmlSchemaPValAttrID(ctxt, node, BAD_CAST "id");
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012131 } else if (xmlStrEqual(attr->name, BAD_CAST "mixed")) {
12132 /*
12133 * Attribute "mixed".
12134 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012135 if (xmlSchemaPGetBoolNodeValue(ctxt,
12136 NULL, (xmlNodePtr) attr))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012137 type->flags |= XML_SCHEMAS_TYPE_MIXED;
12138 } else if (topLevel) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012139 /*
12140 * Attributes of global complex type definitions.
12141 */
12142 if (xmlStrEqual(attr->name, BAD_CAST "name")) {
12143 /* Pass. */
12144 } else if (xmlStrEqual(attr->name, BAD_CAST "abstract")) {
12145 /*
12146 * Attribute "abstract".
12147 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012148 if (xmlSchemaPGetBoolNodeValue(ctxt,
12149 NULL, (xmlNodePtr) attr))
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012150 type->flags |= XML_SCHEMAS_TYPE_ABSTRACT;
12151 } else if (xmlStrEqual(attr->name, BAD_CAST "final")) {
12152 /*
12153 * Attribute "final".
12154 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012155 attrValue = xmlSchemaGetNodeContent(ctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012156 (xmlNodePtr) attr);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012157 if (xmlSchemaPValAttrBlockFinal(attrValue,
12158 &(type->flags),
12159 -1,
12160 XML_SCHEMAS_TYPE_FINAL_EXTENSION,
12161 XML_SCHEMAS_TYPE_FINAL_RESTRICTION,
12162 -1, -1, -1) != 0)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012163 {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012164 xmlSchemaPSimpleTypeErr(ctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012165 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012166 NULL, (xmlNodePtr) attr, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012167 "(#all | List of (extension | restriction))",
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012168 attrValue, NULL, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012169 } else
12170 final = 1;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012171 } else if (xmlStrEqual(attr->name, BAD_CAST "block")) {
12172 /*
12173 * Attribute "block".
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012174 */
12175 attrValue = xmlSchemaGetNodeContent(ctxt,
12176 (xmlNodePtr) attr);
12177 if (xmlSchemaPValAttrBlockFinal(attrValue, &(type->flags),
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012178 -1,
12179 XML_SCHEMAS_TYPE_BLOCK_EXTENSION,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012180 XML_SCHEMAS_TYPE_BLOCK_RESTRICTION,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012181 -1, -1, -1) != 0) {
12182 xmlSchemaPSimpleTypeErr(ctxt,
12183 XML_SCHEMAP_S4S_ATTR_INVALID_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012184 NULL, (xmlNodePtr) attr, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012185 "(#all | List of (extension | restriction)) ",
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012186 attrValue, NULL, NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012187 } else
12188 block = 1;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012189 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012190 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012191 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012192 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012193 } else {
12194 xmlSchemaPIllegalAttrErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012195 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012196 }
12197 } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012198 xmlSchemaPIllegalAttrErr(ctxt,
12199 XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, NULL, attr);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012200 }
12201 attr = attr->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012202 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012203 if (! block) {
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000012204 /*
12205 * Apply default "block" values.
12206 */
12207 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION)
12208 type->flags |= XML_SCHEMAS_TYPE_BLOCK_RESTRICTION;
12209 if (schema->flags & XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION)
12210 type->flags |= XML_SCHEMAS_TYPE_BLOCK_EXTENSION;
12211 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012212 if (! final) {
12213 /*
12214 * Apply default "block" values.
12215 */
12216 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION)
12217 type->flags |= XML_SCHEMAS_TYPE_FINAL_RESTRICTION;
12218 if (schema->flags & XML_SCHEMAS_FINAL_DEFAULT_EXTENSION)
12219 type->flags |= XML_SCHEMAS_TYPE_FINAL_EXTENSION;
12220 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012221 /*
12222 * And now for the children...
12223 */
Daniel Veillard4255d502002-04-16 15:50:10 +000012224 child = node->children;
12225 if (IS_SCHEMA(child, "annotation")) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000012226 type->annot = xmlSchemaParseAnnotation(ctxt, child, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012227 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012228 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000012229 ctxt->ctxtType = type;
Daniel Veillard4255d502002-04-16 15:50:10 +000012230 if (IS_SCHEMA(child, "simpleContent")) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012231 /*
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012232 * <complexType><simpleContent>...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012233 * 3.4.3 : 2.2
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012234 * Specifying mixed='true' when the <simpleContent>
12235 * alternative is chosen has no effect
12236 */
William M. Bracke7091952004-05-11 15:09:58 +000012237 if (type->flags & XML_SCHEMAS_TYPE_MIXED)
12238 type->flags ^= XML_SCHEMAS_TYPE_MIXED;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012239 xmlSchemaParseSimpleContent(ctxt, schema, child,
12240 &hasRestrictionOrExtension);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012241 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012242 } else if (IS_SCHEMA(child, "complexContent")) {
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012243 /*
12244 * <complexType><complexContent>...
12245 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012246 type->contentType = XML_SCHEMA_CONTENT_EMPTY;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012247 xmlSchemaParseComplexContent(ctxt, schema, child,
12248 &hasRestrictionOrExtension);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012249 child = child->next;
Daniel Veillard4255d502002-04-16 15:50:10 +000012250 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012251 /*
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012252 * E.g <complexType><sequence>... or <complexType><attribute>... etc.
12253 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012254 * SPEC
12255 * "...the third alternative (neither <simpleContent> nor
12256 * <complexContent>) is chosen. This case is understood as shorthand
12257 * for complex content restricting the ·ur-type definition·, and the
12258 * details of the mappings should be modified as necessary.
12259 */
12260 type->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE);
12261 type->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012262 /*
12263 * Parse model groups.
12264 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012265 if (IS_SCHEMA(child, "all")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012266 type->subtypes = (xmlSchemaTypePtr)
12267 xmlSchemaParseModelGroup(ctxt, schema, child,
12268 XML_SCHEMA_TYPE_ALL, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012269 child = child->next;
12270 } else if (IS_SCHEMA(child, "choice")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012271 type->subtypes = (xmlSchemaTypePtr)
12272 xmlSchemaParseModelGroup(ctxt, schema, child,
12273 XML_SCHEMA_TYPE_CHOICE, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012274 child = child->next;
12275 } else if (IS_SCHEMA(child, "sequence")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012276 type->subtypes = (xmlSchemaTypePtr)
12277 xmlSchemaParseModelGroup(ctxt, schema, child,
12278 XML_SCHEMA_TYPE_SEQUENCE, 1);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012279 child = child->next;
12280 } else if (IS_SCHEMA(child, "group")) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012281 type->subtypes = (xmlSchemaTypePtr)
12282 xmlSchemaParseModelGroupDefRef(ctxt, schema, child);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012283 /*
12284 * Note that the reference will be resolved in
12285 * xmlSchemaResolveTypeReferences();
12286 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012287 child = child->next;
12288 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012289 /*
12290 * Parse attribute decls/refs.
12291 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012292 if (xmlSchemaParseLocalAttributes(ctxt, schema, &child,
12293 (xmlSchemaItemListPtr *) &(type->attrUses),
12294 XML_SCHEMA_TYPE_RESTRICTION, NULL) == -1)
12295 return(NULL);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012296 /*
12297 * Parse attribute wildcard.
12298 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012299 if (IS_SCHEMA(child, "anyAttribute")) {
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012300 type->attributeWildcard = xmlSchemaParseAnyAttribute(ctxt, schema, child);
12301 child = child->next;
12302 }
Daniel Veillard4255d502002-04-16 15:50:10 +000012303 }
12304 if (child != NULL) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012305 xmlSchemaPContentErr(ctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012306 XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012307 NULL, node, child,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012308 NULL, "(annotation?, (simpleContent | complexContent | "
12309 "((group | all | choice | sequence)?, ((attribute | "
12310 "attributeGroup)*, anyAttribute?))))");
Daniel Veillard4255d502002-04-16 15:50:10 +000012311 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012312 /*
12313 * REDEFINE: SPEC src-redefine (5)
12314 */
12315 if (topLevel && ctxt->isRedefine && (! hasRestrictionOrExtension)) {
12316 xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_REDEFINE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012317 NULL, node, "This is a redefinition, thus the "
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000012318 "<complexType> must have a <restriction> or <extension> "
12319 "grand-child", NULL);
12320 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000012321 ctxt->ctxtType = ctxtType;
Daniel Veillard4255d502002-04-16 15:50:10 +000012322 return (type);
12323}
12324
Daniel Veillard4255d502002-04-16 15:50:10 +000012325/************************************************************************
12326 * *
12327 * Validating using Schemas *
12328 * *
12329 ************************************************************************/
12330
12331/************************************************************************
12332 * *
12333 * Reading/Writing Schemas *
12334 * *
12335 ************************************************************************/
12336
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012337#if 0 /* Will be enabled if it is clear what options are needed. */
12338/**
12339 * xmlSchemaParserCtxtSetOptions:
12340 * @ctxt: a schema parser context
12341 * @options: a combination of xmlSchemaParserOption
12342 *
12343 * Sets the options to be used during the parse.
12344 *
12345 * Returns 0 in case of success, -1 in case of an
12346 * API error.
12347 */
12348static int
12349xmlSchemaParserCtxtSetOptions(xmlSchemaParserCtxtPtr ctxt,
12350 int options)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012351
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012352{
12353 int i;
12354
12355 if (ctxt == NULL)
12356 return (-1);
12357 /*
12358 * WARNING: Change the start value if adding to the
12359 * xmlSchemaParseOption.
12360 */
12361 for (i = 1; i < (int) sizeof(int) * 8; i++) {
12362 if (options & 1<<i) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012363 return (-1);
12364 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012365 }
12366 ctxt->options = options;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012367 return (0);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012368}
12369
12370/**
12371 * xmlSchemaValidCtxtGetOptions:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012372 * @ctxt: a schema parser context
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012373 *
12374 * Returns the option combination of the parser context.
12375 */
12376static int
12377xmlSchemaParserCtxtGetOptions(xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012378
12379{
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012380 if (ctxt == NULL)
12381 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012382 else
12383 return (ctxt->options);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012384}
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000012385#endif
12386
Daniel Veillard4255d502002-04-16 15:50:10 +000012387/**
12388 * xmlSchemaNewParserCtxt:
12389 * @URL: the location of the schema
12390 *
12391 * Create an XML Schemas parse context for that file/resource expected
12392 * to contain an XML Schemas file.
12393 *
12394 * Returns the parser context or NULL in case of error
12395 */
12396xmlSchemaParserCtxtPtr
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012397xmlSchemaNewParserCtxt(const char *URL)
12398{
Daniel Veillard4255d502002-04-16 15:50:10 +000012399 xmlSchemaParserCtxtPtr ret;
12400
12401 if (URL == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012402 return (NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +000012403
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012404 ret = xmlSchemaParserCtxtCreate();
12405 if (ret == NULL)
12406 return(NULL);
Daniel Veillardbe9c6322003-11-22 20:37:51 +000012407 ret->dict = xmlDictCreate();
12408 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1);
Daniel Veillard4255d502002-04-16 15:50:10 +000012409 return (ret);
12410}
12411
12412/**
Daniel Veillard6045c902002-10-09 21:13:59 +000012413 * xmlSchemaNewMemParserCtxt:
12414 * @buffer: a pointer to a char array containing the schemas
12415 * @size: the size of the array
12416 *
12417 * Create an XML Schemas parse context for that memory buffer expected
12418 * to contain an XML Schemas file.
12419 *
12420 * Returns the parser context or NULL in case of error
12421 */
12422xmlSchemaParserCtxtPtr
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012423xmlSchemaNewMemParserCtxt(const char *buffer, int size)
12424{
Daniel Veillard6045c902002-10-09 21:13:59 +000012425 xmlSchemaParserCtxtPtr ret;
12426
12427 if ((buffer == NULL) || (size <= 0))
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012428 return (NULL);
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012429 ret = xmlSchemaParserCtxtCreate();
12430 if (ret == NULL)
12431 return(NULL);
Daniel Veillard6045c902002-10-09 21:13:59 +000012432 ret->buffer = buffer;
12433 ret->size = size;
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012434 ret->dict = xmlDictCreate();
Daniel Veillard6045c902002-10-09 21:13:59 +000012435 return (ret);
12436}
12437
12438/**
Daniel Veillard9d751502003-10-29 13:21:47 +000012439 * xmlSchemaNewDocParserCtxt:
12440 * @doc: a preparsed document tree
12441 *
12442 * Create an XML Schemas parse context for that document.
12443 * NB. The document may be modified during the parsing process.
12444 *
12445 * Returns the parser context or NULL in case of error
12446 */
12447xmlSchemaParserCtxtPtr
12448xmlSchemaNewDocParserCtxt(xmlDocPtr doc)
12449{
12450 xmlSchemaParserCtxtPtr ret;
12451
12452 if (doc == NULL)
12453 return (NULL);
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000012454 ret = xmlSchemaParserCtxtCreate();
12455 if (ret == NULL)
12456 return(NULL);
Daniel Veillard9d751502003-10-29 13:21:47 +000012457 ret->doc = doc;
William M. Brackcf9eadf2003-12-25 13:24:05 +000012458 ret->dict = xmlDictCreate();
Daniel Veillarddda22c12004-01-24 08:31:30 +000012459 /* The application has responsibility for the document */
12460 ret->preserve = 1;
Daniel Veillard9d751502003-10-29 13:21:47 +000012461
12462 return (ret);
12463}
12464
12465/**
Daniel Veillard4255d502002-04-16 15:50:10 +000012466 * xmlSchemaFreeParserCtxt:
12467 * @ctxt: the schema parser context
12468 *
12469 * Free the resources associated to the schema parser context
12470 */
12471void
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012472xmlSchemaFreeParserCtxt(xmlSchemaParserCtxtPtr ctxt)
12473{
Daniel Veillard4255d502002-04-16 15:50:10 +000012474 if (ctxt == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012475 return;
Daniel Veillarddda22c12004-01-24 08:31:30 +000012476 if (ctxt->doc != NULL && !ctxt->preserve)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012477 xmlFreeDoc(ctxt->doc);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012478 if (ctxt->vctxt != NULL) {
12479 xmlSchemaFreeValidCtxt(ctxt->vctxt);
12480 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012481 if (ctxt->ownsConstructor && (ctxt->constructor != NULL)) {
12482 xmlSchemaConstructionCtxtFree(ctxt->constructor);
12483 ctxt->constructor = NULL;
12484 ctxt->ownsConstructor = 0;
12485 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012486 if (ctxt->attrProhibs != NULL)
12487 xmlSchemaItemListFree(ctxt->attrProhibs);
Daniel Veillardbe9c6322003-11-22 20:37:51 +000012488 xmlDictFree(ctxt->dict);
Daniel Veillard4255d502002-04-16 15:50:10 +000012489 xmlFree(ctxt);
12490}
12491
12492/************************************************************************
12493 * *
12494 * Building the content models *
12495 * *
12496 ************************************************************************/
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012497
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012498static void
12499xmlSchemaBuildContentModelForSubstGroup(xmlSchemaParserCtxtPtr pctxt,
Daniel Veillarda980bef2005-07-18 21:34:03 +000012500 xmlSchemaParticlePtr particle, int counter, xmlAutomataStatePtr end)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012501{
Daniel Veillarda980bef2005-07-18 21:34:03 +000012502 xmlAutomataStatePtr start, tmp;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012503 xmlSchemaElementPtr elemDecl, member;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012504 xmlSchemaSubstGroupPtr substGroup;
12505 int i;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012506
12507 elemDecl = (xmlSchemaElementPtr) particle->children;
12508 /*
12509 * Wrap the substitution group with a CHOICE.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012510 */
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012511 start = pctxt->state;
Daniel Veillarda980bef2005-07-18 21:34:03 +000012512 if (end == NULL)
12513 end = xmlAutomataNewState(pctxt->am);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012514 substGroup = xmlSchemaSubstGroupGet(pctxt, elemDecl);
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012515 if (substGroup == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012516 xmlSchemaPErr(pctxt, WXS_ITEM_NODE(particle),
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012517 XML_SCHEMAP_INTERNAL,
12518 "Internal error: xmlSchemaBuildContentModelForSubstGroup, "
12519 "declaration is marked having a subst. group but none "
12520 "available.\n", elemDecl->name, NULL);
12521 return;
12522 }
Daniel Veillarda980bef2005-07-18 21:34:03 +000012523 if (counter >= 0) {
12524 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012525 * NOTE that we put the declaration in, even if it's abstract.
12526 * However, an error will be raised during *validation* if an element
12527 * information item shall be validated against an abstract element
12528 * declaration.
Daniel Veillarda980bef2005-07-18 21:34:03 +000012529 */
12530 tmp = xmlAutomataNewCountedTrans(pctxt->am, start, NULL, counter);
12531 xmlAutomataNewTransition2(pctxt->am, tmp, end,
12532 elemDecl->name, elemDecl->targetNamespace, elemDecl);
12533 /*
12534 * Add subst. group members.
12535 */
12536 for (i = 0; i < substGroup->members->nbItems; i++) {
12537 member = (xmlSchemaElementPtr) substGroup->members->items[i];
12538 xmlAutomataNewTransition2(pctxt->am, tmp, end,
12539 member->name, member->targetNamespace, member);
12540 }
12541 } else if (particle->maxOccurs == 1) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012542 /*
12543 * NOTE that we put the declaration in, even if it's abstract,
12544 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012545 xmlAutomataNewEpsilon(pctxt->am,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012546 xmlAutomataNewTransition2(pctxt->am,
12547 start, NULL,
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012548 elemDecl->name, elemDecl->targetNamespace, elemDecl), end);
12549 /*
12550 * Add subst. group members.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012551 */
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012552 for (i = 0; i < substGroup->members->nbItems; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012553 member = (xmlSchemaElementPtr) substGroup->members->items[i];
Daniel Veillarda980bef2005-07-18 21:34:03 +000012554 tmp = xmlAutomataNewOnceTrans2(pctxt->am, start, NULL,
12555 member->name, member->targetNamespace,
12556 1, 1, member);
12557 xmlAutomataNewEpsilon(pctxt->am, tmp, end);
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012558 }
12559 } else {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012560 xmlAutomataStatePtr hop;
12561 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12562 UNBOUNDED : particle->maxOccurs - 1;
12563 int minOccurs = particle->minOccurs < 1 ? 0 : particle->minOccurs - 1;
12564
12565 counter =
12566 xmlAutomataNewCounter(pctxt->am, minOccurs,
12567 maxOccurs);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012568 hop = xmlAutomataNewState(pctxt->am);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012569
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012570 xmlAutomataNewEpsilon(pctxt->am,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012571 xmlAutomataNewTransition2(pctxt->am,
12572 start, NULL,
12573 elemDecl->name, elemDecl->targetNamespace, elemDecl),
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012574 hop);
12575 /*
Daniel Veillarda980bef2005-07-18 21:34:03 +000012576 * Add subst. group members.
12577 */
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012578 for (i = 0; i < substGroup->members->nbItems; i++) {
12579 member = (xmlSchemaElementPtr) substGroup->members->items[i];
12580 xmlAutomataNewEpsilon(pctxt->am,
12581 xmlAutomataNewTransition2(pctxt->am,
12582 start, NULL,
12583 member->name, member->targetNamespace, member),
12584 hop);
12585 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012586 xmlAutomataNewCountedTrans(pctxt->am, hop, start, counter);
12587 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
12588 }
12589 if (particle->minOccurs == 0)
12590 xmlAutomataNewEpsilon(pctxt->am, start, end);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012591 pctxt->state = end;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012592}
12593
12594static void
12595xmlSchemaBuildContentModelForElement(xmlSchemaParserCtxtPtr ctxt,
12596 xmlSchemaParticlePtr particle)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012597{
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000012598 if (((xmlSchemaElementPtr) particle->children)->flags &
12599 XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012600 /*
12601 * Substitution groups.
12602 */
Daniel Veillarda980bef2005-07-18 21:34:03 +000012603 xmlSchemaBuildContentModelForSubstGroup(ctxt, particle, -1, NULL);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012604 } else {
12605 xmlSchemaElementPtr elemDecl;
12606 xmlAutomataStatePtr start;
12607
12608 elemDecl = (xmlSchemaElementPtr) particle->children;
12609
12610 if (elemDecl->flags & XML_SCHEMAS_ELEM_ABSTRACT)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012611 return;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012612 if (particle->maxOccurs == 1) {
12613 start = ctxt->state;
12614 ctxt->state = xmlAutomataNewTransition2(ctxt->am, start, NULL,
Daniel Veillarda980bef2005-07-18 21:34:03 +000012615 elemDecl->name, elemDecl->targetNamespace, elemDecl);
12616 } else if ((particle->maxOccurs >= UNBOUNDED) &&
12617 (particle->minOccurs < 2)) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012618 /* Special case. */
Kasimier T. Buchcik7ca5aed2005-12-12 15:13:40 +000012619 start = ctxt->state;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012620 ctxt->state = xmlAutomataNewTransition2(ctxt->am, start, NULL,
Kasimier T. Buchcik7ca5aed2005-12-12 15:13:40 +000012621 elemDecl->name, elemDecl->targetNamespace, elemDecl);
12622 ctxt->state = xmlAutomataNewTransition2(ctxt->am, ctxt->state, ctxt->state,
12623 elemDecl->name, elemDecl->targetNamespace, elemDecl);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012624 } else {
12625 int counter;
12626 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12627 UNBOUNDED : particle->maxOccurs - 1;
12628 int minOccurs = particle->minOccurs < 1 ?
12629 0 : particle->minOccurs - 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012630
12631 start = xmlAutomataNewEpsilon(ctxt->am, ctxt->state, NULL);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012632 counter = xmlAutomataNewCounter(ctxt->am, minOccurs, maxOccurs);
12633 ctxt->state = xmlAutomataNewTransition2(ctxt->am, start, NULL,
12634 elemDecl->name, elemDecl->targetNamespace, elemDecl);
12635 xmlAutomataNewCountedTrans(ctxt->am, ctxt->state, start, counter);
12636 ctxt->state = xmlAutomataNewCounterTrans(ctxt->am, ctxt->state,
12637 NULL, counter);
12638 }
12639 if (particle->minOccurs == 0)
12640 xmlAutomataNewEpsilon(ctxt->am, start, ctxt->state);
12641 }
12642}
12643
Daniel Veillard4255d502002-04-16 15:50:10 +000012644/**
12645 * xmlSchemaBuildAContentModel:
Daniel Veillard4255d502002-04-16 15:50:10 +000012646 * @ctxt: the schema parser context
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012647 * @particle: the particle component
12648 * @name: the complex type's name whose content is being built
Daniel Veillard4255d502002-04-16 15:50:10 +000012649 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012650 * Create the automaton for the {content type} of a complex type.
12651 *
Daniel Veillard4255d502002-04-16 15:50:10 +000012652 */
12653static void
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012654xmlSchemaBuildAContentModel(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012655 xmlSchemaParticlePtr particle)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012656{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012657 if (particle == NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012658 PERROR_INT("xmlSchemaBuildAContentModel", "particle is NULL");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012659 return;
Daniel Veillard4255d502002-04-16 15:50:10 +000012660 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012661 if (particle->children == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000012662 /*
12663 * Just return in this case. A missing "term" of the particle
12664 * might arise due to an invalid "term" component.
12665 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012666 return;
12667 }
12668
12669 switch (particle->children->type) {
12670 case XML_SCHEMA_TYPE_ANY: {
Daniel Veillardc0826a72004-08-10 14:17:33 +000012671 xmlAutomataStatePtr start, end;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012672 xmlSchemaWildcardPtr wild;
Daniel Veillardc0826a72004-08-10 14:17:33 +000012673 xmlSchemaWildcardNsPtr ns;
Daniel Veillard32370232002-10-16 14:08:14 +000012674
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012675 wild = (xmlSchemaWildcardPtr) particle->children;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012676
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012677 start = pctxt->state;
12678 end = xmlAutomataNewState(pctxt->am);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012679
12680 if (particle->maxOccurs == 1) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000012681 if (wild->any == 1) {
12682 /*
12683 * We need to add both transitions:
12684 *
12685 * 1. the {"*", "*"} for elements in a namespace.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012686 */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012687 pctxt->state =
12688 xmlAutomataNewTransition2(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012689 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012690 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, end);
Daniel Veillardc0826a72004-08-10 14:17:33 +000012691 /*
12692 * 2. the {"*"} for elements in no namespace.
12693 */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012694 pctxt->state =
12695 xmlAutomataNewTransition2(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012696 start, NULL, BAD_CAST "*", NULL, wild);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012697 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, end);
Daniel Veillardc0826a72004-08-10 14:17:33 +000012698
12699 } else if (wild->nsSet != NULL) {
12700 ns = wild->nsSet;
12701 do {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012702 pctxt->state = start;
12703 pctxt->state = xmlAutomataNewTransition2(pctxt->am,
12704 pctxt->state, NULL, BAD_CAST "*", ns->value, wild);
12705 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, end);
Daniel Veillardc0826a72004-08-10 14:17:33 +000012706 ns = ns->next;
12707 } while (ns != NULL);
12708
12709 } else if (wild->negNsSet != NULL) {
Daniel Veillard6e65e152005-08-09 11:09:52 +000012710 pctxt->state = xmlAutomataNewNegTrans(pctxt->am,
12711 start, end, BAD_CAST "*", wild->negNsSet->value,
12712 wild);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012713 }
Daniel Veillardc0826a72004-08-10 14:17:33 +000012714 } else {
12715 int counter;
12716 xmlAutomataStatePtr hop;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012717 int maxOccurs =
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012718 particle->maxOccurs == UNBOUNDED ? UNBOUNDED : particle->maxOccurs - 1;
Daniel Veillardc0826a72004-08-10 14:17:33 +000012719 int minOccurs =
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012720 particle->minOccurs < 1 ? 0 : particle->minOccurs - 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012721
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012722 counter = xmlAutomataNewCounter(pctxt->am, minOccurs, maxOccurs);
12723 hop = xmlAutomataNewState(pctxt->am);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012724 if (wild->any == 1) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012725 pctxt->state =
12726 xmlAutomataNewTransition2(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012727 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012728 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
12729 pctxt->state =
12730 xmlAutomataNewTransition2(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012731 start, NULL, BAD_CAST "*", NULL, wild);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012732 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012733 } else if (wild->nsSet != NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000012734 ns = wild->nsSet;
12735 do {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012736 pctxt->state =
12737 xmlAutomataNewTransition2(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012738 start, NULL, BAD_CAST "*", ns->value, wild);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012739 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
Daniel Veillardc0826a72004-08-10 14:17:33 +000012740 ns = ns->next;
12741 } while (ns != NULL);
12742
12743 } else if (wild->negNsSet != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012744 pctxt->state = xmlAutomataNewNegTrans(pctxt->am,
Daniel Veillard9efc4762005-07-19 14:33:55 +000012745 start, hop, BAD_CAST "*", wild->negNsSet->value,
12746 wild);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012747 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012748 xmlAutomataNewCountedTrans(pctxt->am, hop, start, counter);
12749 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
Daniel Veillardc0826a72004-08-10 14:17:33 +000012750 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012751 if (particle->minOccurs == 0) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012752 xmlAutomataNewEpsilon(pctxt->am, start, end);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012753 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012754 pctxt->state = end;
Daniel Veillardc0826a72004-08-10 14:17:33 +000012755 break;
12756 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012757 case XML_SCHEMA_TYPE_ELEMENT:
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012758 xmlSchemaBuildContentModelForElement(pctxt, particle);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000012759 break;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012760 case XML_SCHEMA_TYPE_SEQUENCE:{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012761 xmlSchemaTreeItemPtr sub;
Daniel Veillardb39bc392002-10-26 19:29:51 +000012762
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012763 /*
12764 * If max and min occurances are default (1) then
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012765 * simply iterate over the particles of the <sequence>.
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012766 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012767 if ((particle->minOccurs == 1) && (particle->maxOccurs == 1)) {
12768 sub = particle->children->children;
12769 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012770 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012771 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012772 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012773 }
12774 } else {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012775 xmlAutomataStatePtr oldstate = pctxt->state;
Daniel Veillardb39bc392002-10-26 19:29:51 +000012776
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012777 if (particle->maxOccurs >= UNBOUNDED) {
12778 if (particle->minOccurs > 1) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012779 xmlAutomataStatePtr tmp;
12780 int counter;
Daniel Veillardb39bc392002-10-26 19:29:51 +000012781
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012782 pctxt->state = xmlAutomataNewEpsilon(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012783 oldstate, NULL);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012784 oldstate = pctxt->state;
Daniel Veillardb39bc392002-10-26 19:29:51 +000012785
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012786 counter = xmlAutomataNewCounter(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012787 particle->minOccurs - 1, UNBOUNDED);
Daniel Veillardb39bc392002-10-26 19:29:51 +000012788
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012789 sub = particle->children->children;
12790 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012791 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012792 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012793 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012794 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012795 tmp = pctxt->state;
12796 xmlAutomataNewCountedTrans(pctxt->am, tmp,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012797 oldstate, counter);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012798 pctxt->state =
12799 xmlAutomataNewCounterTrans(pctxt->am, tmp,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012800 NULL, counter);
Daniel Veillardb39bc392002-10-26 19:29:51 +000012801
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012802 } else {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012803 pctxt->state = xmlAutomataNewEpsilon(pctxt->am,
Daniel Veillardafc05b62005-07-17 06:11:19 +000012804 oldstate, NULL);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012805 oldstate = pctxt->state;
Daniel Veillardafc05b62005-07-17 06:11:19 +000012806
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012807 sub = particle->children->children;
12808 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012809 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012810 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012811 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012812 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012813 xmlAutomataNewEpsilon(pctxt->am, pctxt->state,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012814 oldstate);
Daniel Veillardafc05b62005-07-17 06:11:19 +000012815 /*
12816 * epsilon needed to block previous trans from
12817 * being allowed to enter back from another
12818 * construct
12819 */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012820 pctxt->state = xmlAutomataNewEpsilon(pctxt->am,
12821 pctxt->state, NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012822 if (particle->minOccurs == 0) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012823 xmlAutomataNewEpsilon(pctxt->am,
12824 oldstate, pctxt->state);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012825 }
12826 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012827 } else if ((particle->maxOccurs > 1)
12828 || (particle->minOccurs > 1)) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012829 xmlAutomataStatePtr tmp;
12830 int counter;
Daniel Veillardb39bc392002-10-26 19:29:51 +000012831
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012832 pctxt->state = xmlAutomataNewEpsilon(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012833 oldstate, NULL);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012834 oldstate = pctxt->state;
Daniel Veillard4255d502002-04-16 15:50:10 +000012835
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012836 counter = xmlAutomataNewCounter(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012837 particle->minOccurs - 1,
12838 particle->maxOccurs - 1);
Daniel Veillard4255d502002-04-16 15:50:10 +000012839
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012840 sub = particle->children->children;
12841 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012842 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012843 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012844 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012845 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012846 tmp = pctxt->state;
12847 xmlAutomataNewCountedTrans(pctxt->am,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012848 tmp, oldstate, counter);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012849 pctxt->state =
12850 xmlAutomataNewCounterTrans(pctxt->am, tmp, NULL,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012851 counter);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012852 if (particle->minOccurs == 0) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012853 xmlAutomataNewEpsilon(pctxt->am,
12854 oldstate, pctxt->state);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012855 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012856 } else {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012857 sub = particle->children->children;
12858 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012859 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012860 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012861 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012862 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012863 if (particle->minOccurs == 0) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012864 xmlAutomataNewEpsilon(pctxt->am, oldstate,
12865 pctxt->state);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012866 }
12867 }
12868 }
12869 break;
12870 }
12871 case XML_SCHEMA_TYPE_CHOICE:{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012872 xmlSchemaTreeItemPtr sub;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012873 xmlAutomataStatePtr start, end;
Daniel Veillardb509f152002-04-17 16:28:10 +000012874
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012875 start = pctxt->state;
12876 end = xmlAutomataNewState(pctxt->am);
Daniel Veillard7646b182002-04-20 06:41:40 +000012877
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012878 /*
12879 * iterate over the subtypes and remerge the end with an
12880 * epsilon transition
12881 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012882 if (particle->maxOccurs == 1) {
12883 sub = particle->children->children;
12884 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012885 pctxt->state = start;
12886 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012887 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012888 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, end);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012889 sub = sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012890 }
12891 } else {
12892 int counter;
Daniel Veillardafc05b62005-07-17 06:11:19 +000012893 xmlAutomataStatePtr hop, base;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012894 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12895 UNBOUNDED : particle->maxOccurs - 1;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012896 int minOccurs =
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012897 particle->minOccurs < 1 ? 0 : particle->minOccurs - 1;
Daniel Veillard7646b182002-04-20 06:41:40 +000012898
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012899 /*
12900 * use a counter to keep track of the number of transtions
12901 * which went through the choice.
12902 */
12903 counter =
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012904 xmlAutomataNewCounter(pctxt->am, minOccurs, maxOccurs);
12905 hop = xmlAutomataNewState(pctxt->am);
12906 base = xmlAutomataNewState(pctxt->am);
Daniel Veillard6231e842002-04-18 11:54:04 +000012907
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012908 sub = particle->children->children;
12909 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012910 pctxt->state = base;
12911 xmlSchemaBuildAContentModel(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012912 (xmlSchemaParticlePtr) sub);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012913 xmlAutomataNewEpsilon(pctxt->am, pctxt->state, hop);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012914 sub = sub->next;
Daniel Veillarda980bef2005-07-18 21:34:03 +000012915 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012916 xmlAutomataNewEpsilon(pctxt->am, start, base);
12917 xmlAutomataNewCountedTrans(pctxt->am, hop, base, counter);
12918 xmlAutomataNewCounterTrans(pctxt->am, hop, end, counter);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012919 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012920 if (particle->minOccurs == 0) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012921 xmlAutomataNewEpsilon(pctxt->am, start, end);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012922 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012923 pctxt->state = end;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012924 break;
12925 }
12926 case XML_SCHEMA_TYPE_ALL:{
Kasimier T. Buchcik2c9aac02005-07-21 22:14:12 +000012927 xmlAutomataStatePtr start;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012928 xmlSchemaParticlePtr sub;
12929 xmlSchemaElementPtr elemDecl;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012930 int lax;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012931
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012932 sub = (xmlSchemaParticlePtr) particle->children->children;
12933 if (sub == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012934 break;
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012935 start = pctxt->state;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012936 while (sub != NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012937 pctxt->state = start;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012938
12939 elemDecl = (xmlSchemaElementPtr) sub->children;
12940 if (elemDecl == NULL) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012941 PERROR_INT("xmlSchemaBuildAContentModel",
12942 "<element> particle has no term");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012943 return;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012944 };
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000012945 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012946 * NOTE: The {max occurs} of all the particles in the
Kasimier T. Buchcikff858ca2005-02-18 11:37:58 +000012947 * {particles} of the group must be 0 or 1; this is
12948 * already ensured during the parse of the content of
12949 * <all>.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012950 */
Daniel Veillarda980bef2005-07-18 21:34:03 +000012951 if (elemDecl->flags & XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD) {
12952 int counter;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000012953
Daniel Veillarda980bef2005-07-18 21:34:03 +000012954 /*
12955 * This is an abstract group, we need to share
12956 * the same counter for all the element transitions
12957 * derived from the group
12958 */
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012959 counter = xmlAutomataNewCounter(pctxt->am,
Daniel Veillarda980bef2005-07-18 21:34:03 +000012960 sub->minOccurs, sub->maxOccurs);
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012961 xmlSchemaBuildContentModelForSubstGroup(pctxt,
12962 sub, counter, pctxt->state);
Daniel Veillarda980bef2005-07-18 21:34:03 +000012963 } else {
12964 if ((sub->minOccurs == 1) &&
12965 (sub->maxOccurs == 1)) {
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012966 xmlAutomataNewOnceTrans2(pctxt->am, pctxt->state,
12967 pctxt->state,
Daniel Veillarda980bef2005-07-18 21:34:03 +000012968 elemDecl->name,
12969 elemDecl->targetNamespace,
12970 1, 1, elemDecl);
12971 } else if ((sub->minOccurs == 0) &&
12972 (sub->maxOccurs == 1)) {
12973
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012974 xmlAutomataNewCountTrans2(pctxt->am, pctxt->state,
12975 pctxt->state,
Daniel Veillarda980bef2005-07-18 21:34:03 +000012976 elemDecl->name,
12977 elemDecl->targetNamespace,
12978 0,
12979 1,
12980 elemDecl);
12981 }
12982 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012983 sub = (xmlSchemaParticlePtr) sub->next;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012984 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000012985 lax = particle->minOccurs == 0;
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012986 pctxt->state =
12987 xmlAutomataNewAllTrans(pctxt->am, pctxt->state, NULL, lax);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012988 break;
12989 }
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012990 case XML_SCHEMA_TYPE_GROUP:
12991 /*
12992 * If we hit a model group definition, then this means that
12993 * it was empty, thus was not substituted for the containing
12994 * model group. Just do nothing in this case.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000012995 * TODO: But the group should be substituted and not occur at
12996 * all in the content model at this point. Fix this.
Kasimier T. Buchcik041c5ff2005-07-23 14:42:34 +000012997 */
12998 break;
Daniel Veillardd0c9c322003-10-10 00:49:42 +000012999 default:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013000 xmlSchemaInternalErr2(ACTXT_CAST pctxt,
13001 "xmlSchemaBuildAContentModel",
13002 "found unexpected term of type '%s' in content model",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013003 WXS_ITEM_TYPE_NAME(particle->children), NULL);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013004 return;
Daniel Veillard4255d502002-04-16 15:50:10 +000013005 }
13006}
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013007
Daniel Veillard4255d502002-04-16 15:50:10 +000013008/**
13009 * xmlSchemaBuildContentModel:
Daniel Veillard4255d502002-04-16 15:50:10 +000013010 * @ctxt: the schema parser context
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013011 * @type: the complex type definition
Daniel Veillarda84c0b32003-06-02 16:58:46 +000013012 * @name: the element name
Daniel Veillard4255d502002-04-16 15:50:10 +000013013 *
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013014 * Builds the content model of the complex type.
Daniel Veillard4255d502002-04-16 15:50:10 +000013015 */
13016static void
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013017xmlSchemaBuildContentModel(xmlSchemaTypePtr type,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013018 xmlSchemaParserCtxtPtr ctxt)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013019{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013020 if ((type->type != XML_SCHEMA_TYPE_COMPLEX) ||
13021 (type->contModel != NULL) ||
13022 ((type->contentType != XML_SCHEMA_CONTENT_ELEMENTS) &&
13023 (type->contentType != XML_SCHEMA_CONTENT_MIXED)))
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013024 return;
Daniel Veillarddecd64d2002-04-18 14:41:51 +000013025
13026#ifdef DEBUG_CONTENT
13027 xmlGenericError(xmlGenericErrorContext,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013028 "Building content model for %s\n", name);
Daniel Veillarddecd64d2002-04-18 14:41:51 +000013029#endif
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013030 ctxt->am = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +000013031 ctxt->am = xmlNewAutomata();
13032 if (ctxt->am == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013033 xmlGenericError(xmlGenericErrorContext,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013034 "Cannot create automata for complex type %s\n", type->name);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013035 return;
Daniel Veillard4255d502002-04-16 15:50:10 +000013036 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000013037 ctxt->state = xmlAutomataGetInitState(ctxt->am);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013038 /*
13039 * Build the automaton.
13040 */
13041 xmlSchemaBuildAContentModel(ctxt, WXS_TYPE_PARTICLE(type));
Daniel Veillard4255d502002-04-16 15:50:10 +000013042 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013043 type->contModel = xmlAutomataCompile(ctxt->am);
13044 if (type->contModel == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013045 xmlSchemaPCustomErr(ctxt,
13046 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013047 WXS_BASIC_CAST type, type->node,
Daniel Veillardc0826a72004-08-10 14:17:33 +000013048 "Failed to compile the content model", NULL);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013049 } else if (xmlRegexpIsDeterminist(type->contModel) != 1) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013050 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +000013051 XML_SCHEMAP_NOT_DETERMINISTIC,
13052 /* XML_SCHEMAS_ERR_NOTDETERMINIST, */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013053 WXS_BASIC_CAST type, type->node,
Daniel Veillardc0826a72004-08-10 14:17:33 +000013054 "The content model is not determinist", NULL);
Daniel Veillarde19fc232002-04-22 16:01:24 +000013055 } else {
Daniel Veillard118aed72002-09-24 14:13:13 +000013056#ifdef DEBUG_CONTENT_REGEXP
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013057 xmlGenericError(xmlGenericErrorContext,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013058 "Content model of %s:\n", type->name);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000013059 xmlRegexpPrint(stderr, type->contModel);
Daniel Veillard4255d502002-04-16 15:50:10 +000013060#endif
Daniel Veillarde19fc232002-04-22 16:01:24 +000013061 }
Daniel Veillarda84c0b32003-06-02 16:58:46 +000013062 ctxt->state = NULL;
Daniel Veillard4255d502002-04-16 15:50:10 +000013063 xmlFreeAutomata(ctxt->am);
13064 ctxt->am = NULL;
13065}
13066
13067/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013068 * xmlSchemaResolveElementReferences:
Daniel Veillard4255d502002-04-16 15:50:10 +000013069 * @elem: the schema element context
13070 * @ctxt: the schema parser context
13071 *
Daniel Veillardc0826a72004-08-10 14:17:33 +000013072 * Resolves the references of an element declaration
13073 * or particle, which has an element declaration as it's
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013074 * term.
Daniel Veillard4255d502002-04-16 15:50:10 +000013075 */
13076static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013077xmlSchemaResolveElementReferences(xmlSchemaElementPtr elemDecl,
13078 xmlSchemaParserCtxtPtr ctxt)
Daniel Veillard4255d502002-04-16 15:50:10 +000013079{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013080 if ((ctxt == NULL) || (elemDecl == NULL) ||
13081 ((elemDecl != NULL) &&
13082 (elemDecl->flags & XML_SCHEMAS_ELEM_INTERNAL_RESOLVED)))
Daniel Veillardd0c9c322003-10-10 00:49:42 +000013083 return;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013084 elemDecl->flags |= XML_SCHEMAS_ELEM_INTERNAL_RESOLVED;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013085
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013086 if ((elemDecl->subtypes == NULL) && (elemDecl->namedType != NULL)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013087 xmlSchemaTypePtr type;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013088
13089 /* (type definition) ... otherwise the type definition ·resolved·
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013090 * to by the ·actual value· of the type [attribute] ...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013091 */
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013092 type = xmlSchemaGetType(ctxt->schema, elemDecl->namedType,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013093 elemDecl->namedTypeNs);
13094 if (type == NULL) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000013095 xmlSchemaPResCompAttrErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000013096 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013097 WXS_BASIC_CAST elemDecl, elemDecl->node,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013098 "type", elemDecl->namedType, elemDecl->namedTypeNs,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013099 XML_SCHEMA_TYPE_BASIC, "type definition");
13100 } else
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013101 elemDecl->subtypes = type;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013102 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013103 if (elemDecl->substGroup != NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013104 xmlSchemaElementPtr substHead;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013105
Daniel Veillardc0826a72004-08-10 14:17:33 +000013106 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013107 * FIXME TODO: Do we need a new field in _xmlSchemaElement for
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013108 * substitutionGroup?
Daniel Veillard01fa6152004-06-29 17:04:39 +000013109 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013110 substHead = xmlSchemaGetElem(ctxt->schema, elemDecl->substGroup,
13111 elemDecl->substGroupNs);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013112 if (substHead == NULL) {
13113 xmlSchemaPResCompAttrErr(ctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +000013114 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013115 WXS_BASIC_CAST elemDecl, NULL,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013116 "substitutionGroup", elemDecl->substGroup,
13117 elemDecl->substGroupNs, XML_SCHEMA_TYPE_ELEMENT, NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013118 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013119 xmlSchemaResolveElementReferences(substHead, ctxt);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013120 /*
13121 * Set the "substitution group affiliation".
13122 * NOTE that now we use the "refDecl" field for this.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013123 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013124 WXS_SUBST_HEAD(elemDecl) = substHead;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013125 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013126 * The type definitions is set to:
13127 * SPEC "...the {type definition} of the element
13128 * declaration ·resolved· to by the ·actual value·
13129 * of the substitutionGroup [attribute], if present"
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013130 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013131 if (elemDecl->subtypes == NULL)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013132 elemDecl->subtypes = substHead->subtypes;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013133 }
13134 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000013135 /*
13136 * SPEC "The definition of anyType serves as the default type definition
13137 * for element declarations whose XML representation does not specify one."
13138 */
13139 if ((elemDecl->subtypes == NULL) &&
13140 (elemDecl->namedType == NULL) &&
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013141 (elemDecl->substGroup == NULL))
13142 elemDecl->subtypes = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE);
William M. Bracke7091952004-05-11 15:09:58 +000013143}
13144
13145/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013146 * xmlSchemaResolveUnionMemberTypes:
William M. Bracke7091952004-05-11 15:09:58 +000013147 * @ctxt: the schema parser context
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013148 * @type: the schema simple type definition
William M. Bracke7091952004-05-11 15:09:58 +000013149 *
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013150 * Checks and builds the "member type definitions" property of the union
13151 * simple type. This handles part (1), part (2) is done in
13152 * xmlSchemaFinishMemberTypeDefinitionsProperty()
13153 *
Daniel Veillard01fa6152004-06-29 17:04:39 +000013154 * Returns -1 in case of an internal error, 0 otherwise.
William M. Bracke7091952004-05-11 15:09:58 +000013155 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000013156static int
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013157xmlSchemaResolveUnionMemberTypes(xmlSchemaParserCtxtPtr ctxt,
13158 xmlSchemaTypePtr type)
Daniel Veillard377e1a92004-04-16 16:30:05 +000013159{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013160
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013161 xmlSchemaTypeLinkPtr link, lastLink, newLink;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013162 xmlSchemaTypePtr memberType;
Daniel Veillard377e1a92004-04-16 16:30:05 +000013163
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013164 /*
13165 * SPEC (1) "If the <union> alternative is chosen, then [Definition:]
13166 * define the explicit members as the type definitions ·resolved·
13167 * to by the items in the ·actual value· of the memberTypes [attribute],
13168 * if any, followed by the type definitions corresponding to the
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000013169 * <simpleType>s among the [children] of <union>, if any."
Daniel Veillard01fa6152004-06-29 17:04:39 +000013170 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013171 /*
13172 * Resolve references.
13173 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013174 link = type->memberTypes;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013175 lastLink = NULL;
13176 while (link != NULL) {
13177 const xmlChar *name, *nsName;
Daniel Veillardc0826a72004-08-10 14:17:33 +000013178
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013179 name = ((xmlSchemaQNameRefPtr) link->type)->name;
13180 nsName = ((xmlSchemaQNameRefPtr) link->type)->targetNamespace;
13181
13182 memberType = xmlSchemaGetType(ctxt->schema, name, nsName);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013183 if ((memberType == NULL) || (! WXS_IS_SIMPLE(memberType))) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013184 xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013185 WXS_BASIC_CAST type, type->node, "memberTypes",
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013186 name, nsName, XML_SCHEMA_TYPE_SIMPLE, NULL);
13187 /*
13188 * Remove the member type link.
13189 */
13190 if (lastLink == NULL)
13191 type->memberTypes = link->next;
13192 else
13193 lastLink->next = link->next;
13194 newLink = link;
13195 link = link->next;
13196 xmlFree(newLink);
13197 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013198 link->type = memberType;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000013199 lastLink = link;
13200 link = link->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013201 }
13202 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000013203 /*
13204 * Add local simple types,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013205 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000013206 memberType = type->subtypes;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013207 while (memberType != NULL) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000013208 link = (xmlSchemaTypeLinkPtr) xmlMalloc(sizeof(xmlSchemaTypeLink));
13209 if (link == NULL) {
13210 xmlSchemaPErrMemory(ctxt, "allocating a type link", NULL);
13211 return (-1);
13212 }
13213 link->type = memberType;
13214 link->next = NULL;
13215 if (lastLink == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013216 type->memberTypes = link;
13217 else
Daniel Veillard01fa6152004-06-29 17:04:39 +000013218 lastLink->next = link;
13219 lastLink = link;
13220 memberType = memberType->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013221 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000013222 return (0);
Daniel Veillard377e1a92004-04-16 16:30:05 +000013223}
13224
Daniel Veillard4255d502002-04-16 15:50:10 +000013225/**
Daniel Veillard3646d642004-06-02 19:19:14 +000013226 * xmlSchemaIsDerivedFromBuiltInType:
13227 * @ctxt: the schema parser context
13228 * @type: the type definition
13229 * @valType: the value type
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013230 *
Daniel Veillard3646d642004-06-02 19:19:14 +000013231 *
13232 * Returns 1 if the type has the given value type, or
13233 * is derived from such a type.
13234 */
William M. Brack803812b2004-06-03 02:11:24 +000013235static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013236xmlSchemaIsDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType)
Daniel Veillard3646d642004-06-02 19:19:14 +000013237{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013238 if (type == NULL)
13239 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013240 if (WXS_IS_COMPLEX(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013241 return (0);
13242 if (type->type == XML_SCHEMA_TYPE_BASIC) {
13243 if (type->builtInType == valType)
13244 return(1);
13245 if ((type->builtInType == XML_SCHEMAS_ANYSIMPLETYPE) ||
13246 (type->builtInType == XML_SCHEMAS_ANYTYPE))
13247 return (0);
13248 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType));
Daniel Veillard6a0baa02005-12-10 11:11:12 +000013249 }
13250 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType));
Daniel Veillard3646d642004-06-02 19:19:14 +000013251}
13252
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013253#if 0
13254/**
13255 * xmlSchemaIsDerivedFromBuiltInType:
13256 * @ctxt: the schema parser context
13257 * @type: the type definition
13258 * @valType: the value type
13259 *
13260 *
13261 * Returns 1 if the type has the given value type, or
13262 * is derived from such a type.
13263 */
13264static int
13265xmlSchemaIsUserDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType)
13266{
13267 if (type == NULL)
13268 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013269 if (WXS_IS_COMPLEX(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013270 return (0);
13271 if (type->type == XML_SCHEMA_TYPE_BASIC) {
13272 if (type->builtInType == valType)
13273 return(1);
13274 return (0);
13275 } else
13276 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType));
13277
13278 return (0);
13279}
13280#endif
13281
13282static xmlSchemaTypePtr
13283xmlSchemaQueryBuiltInType(xmlSchemaTypePtr type)
13284{
13285 if (type == NULL)
13286 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013287 if (WXS_IS_COMPLEX(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013288 return (NULL);
13289 if (type->type == XML_SCHEMA_TYPE_BASIC)
Daniel Veillard6a0baa02005-12-10 11:11:12 +000013290 return(type);
13291 return(xmlSchemaQueryBuiltInType(type->subtypes));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013292}
13293
Daniel Veillard3646d642004-06-02 19:19:14 +000013294/**
Kasimier T. Buchcik6e224f12005-02-17 11:10:44 +000013295 * xmlSchemaGetPrimitiveType:
Daniel Veillard01fa6152004-06-29 17:04:39 +000013296 * @type: the simpleType definition
13297 *
13298 * Returns the primitive type of the given type or
13299 * NULL in case of error.
13300 */
13301static xmlSchemaTypePtr
13302xmlSchemaGetPrimitiveType(xmlSchemaTypePtr type)
13303{
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000013304
Daniel Veillard01fa6152004-06-29 17:04:39 +000013305 while (type != NULL) {
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000013306 /*
13307 * Note that anySimpleType is actually not a primitive type
13308 * but we need that here.
13309 */
13310 if ((type->builtInType == XML_SCHEMAS_ANYSIMPLETYPE) ||
13311 (type->flags & XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE))
Daniel Veillard01fa6152004-06-29 17:04:39 +000013312 return (type);
13313 type = type->baseType;
13314 }
13315
13316 return (NULL);
13317}
13318
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000013319#if 0
Kasimier T. Buchcik6e224f12005-02-17 11:10:44 +000013320/**
13321 * xmlSchemaGetBuiltInTypeAncestor:
13322 * @type: the simpleType definition
13323 *
13324 * Returns the primitive type of the given type or
13325 * NULL in case of error.
13326 */
13327static xmlSchemaTypePtr
13328xmlSchemaGetBuiltInTypeAncestor(xmlSchemaTypePtr type)
13329{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013330 if (WXS_IS_LIST(type) || WXS_IS_UNION(type))
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000013331 return (0);
Kasimier T. Buchcik6e224f12005-02-17 11:10:44 +000013332 while (type != NULL) {
13333 if (type->type == XML_SCHEMA_TYPE_BASIC)
13334 return (type);
13335 type = type->baseType;
13336 }
13337
13338 return (NULL);
13339}
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000013340#endif
Kasimier T. Buchcik6e224f12005-02-17 11:10:44 +000013341
Daniel Veillard01fa6152004-06-29 17:04:39 +000013342/**
Daniel Veillard50355f02004-06-08 17:52:16 +000013343 * xmlSchemaCloneWildcardNsConstraints:
13344 * @ctxt: the schema parser context
13345 * @dest: the destination wildcard
13346 * @source: the source wildcard
13347 *
13348 * Clones the namespace constraints of source
13349 * and assignes them to dest.
13350 * Returns -1 on internal error, 0 otherwise.
13351 */
Daniel Veillard3646d642004-06-02 19:19:14 +000013352static int
13353xmlSchemaCloneWildcardNsConstraints(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013354 xmlSchemaWildcardPtr dest,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013355 xmlSchemaWildcardPtr source)
Daniel Veillard3646d642004-06-02 19:19:14 +000013356{
13357 xmlSchemaWildcardNsPtr cur, tmp, last;
13358
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013359 if ((source == NULL) || (dest == NULL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013360 return(-1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013361 dest->any = source->any;
Daniel Veillard3646d642004-06-02 19:19:14 +000013362 cur = source->nsSet;
13363 last = NULL;
13364 while (cur != NULL) {
13365 tmp = xmlSchemaNewWildcardNsConstraint(ctxt);
13366 if (tmp == NULL)
13367 return(-1);
13368 tmp->value = cur->value;
13369 if (last == NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013370 dest->nsSet = tmp;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013371 else
Daniel Veillard3646d642004-06-02 19:19:14 +000013372 last->next = tmp;
13373 last = tmp;
13374 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013375 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013376 if (dest->negNsSet != NULL)
13377 xmlSchemaFreeWildcardNsSet(dest->negNsSet);
Daniel Veillard3646d642004-06-02 19:19:14 +000013378 if (source->negNsSet != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013379 dest->negNsSet = xmlSchemaNewWildcardNsConstraint(ctxt);
13380 if (dest->negNsSet == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +000013381 return(-1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013382 dest->negNsSet->value = source->negNsSet->value;
Daniel Veillard3646d642004-06-02 19:19:14 +000013383 } else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013384 dest->negNsSet = NULL;
Daniel Veillard3646d642004-06-02 19:19:14 +000013385 return(0);
13386}
13387
Daniel Veillard50355f02004-06-08 17:52:16 +000013388/**
13389 * xmlSchemaUnionWildcards:
13390 * @ctxt: the schema parser context
13391 * @completeWild: the first wildcard
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013392 * @curWild: the second wildcard
Daniel Veillard50355f02004-06-08 17:52:16 +000013393 *
13394 * Unions the namespace constraints of the given wildcards.
13395 * @completeWild will hold the resulting union.
13396 * Returns a positive error code on failure, -1 in case of an
13397 * internal error, 0 otherwise.
13398 */
Daniel Veillard3646d642004-06-02 19:19:14 +000013399static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013400xmlSchemaUnionWildcards(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillard3646d642004-06-02 19:19:14 +000013401 xmlSchemaWildcardPtr completeWild,
13402 xmlSchemaWildcardPtr curWild)
13403{
13404 xmlSchemaWildcardNsPtr cur, curB, tmp;
13405
13406 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013407 * 1 If O1 and O2 are the same value, then that value must be the
Daniel Veillard3646d642004-06-02 19:19:14 +000013408 * value.
13409 */
13410 if ((completeWild->any == curWild->any) &&
13411 ((completeWild->nsSet == NULL) == (curWild->nsSet == NULL)) &&
13412 ((completeWild->negNsSet == NULL) == (curWild->negNsSet == NULL))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013413
Daniel Veillard3646d642004-06-02 19:19:14 +000013414 if ((completeWild->negNsSet == NULL) ||
13415 (completeWild->negNsSet->value == curWild->negNsSet->value)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013416
Daniel Veillard3646d642004-06-02 19:19:14 +000013417 if (completeWild->nsSet != NULL) {
William M. Brack803812b2004-06-03 02:11:24 +000013418 int found = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013419
13420 /*
13421 * Check equality of sets.
Daniel Veillard3646d642004-06-02 19:19:14 +000013422 */
13423 cur = completeWild->nsSet;
13424 while (cur != NULL) {
13425 found = 0;
13426 curB = curWild->nsSet;
13427 while (curB != NULL) {
13428 if (cur->value == curB->value) {
13429 found = 1;
13430 break;
13431 }
13432 curB = curB->next;
13433 }
13434 if (!found)
13435 break;
13436 cur = cur->next;
13437 }
13438 if (found)
13439 return(0);
13440 } else
13441 return(0);
13442 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013443 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013444 /*
13445 * 2 If either O1 or O2 is any, then any must be the value
13446 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013447 if (completeWild->any != curWild->any) {
Daniel Veillard3646d642004-06-02 19:19:14 +000013448 if (completeWild->any == 0) {
13449 completeWild->any = 1;
13450 if (completeWild->nsSet != NULL) {
13451 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13452 completeWild->nsSet = NULL;
13453 }
13454 if (completeWild->negNsSet != NULL) {
13455 xmlFree(completeWild->negNsSet);
13456 completeWild->negNsSet = NULL;
13457 }
13458 }
Daniel Veillard50355f02004-06-08 17:52:16 +000013459 return (0);
Daniel Veillard3646d642004-06-02 19:19:14 +000013460 }
13461 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013462 * 3 If both O1 and O2 are sets of (namespace names or ·absent·),
Daniel Veillard3646d642004-06-02 19:19:14 +000013463 * then the union of those sets must be the value.
13464 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013465 if ((completeWild->nsSet != NULL) && (curWild->nsSet != NULL)) {
Daniel Veillard3646d642004-06-02 19:19:14 +000013466 int found;
13467 xmlSchemaWildcardNsPtr start;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013468
Daniel Veillard3646d642004-06-02 19:19:14 +000013469 cur = curWild->nsSet;
13470 start = completeWild->nsSet;
13471 while (cur != NULL) {
13472 found = 0;
13473 curB = start;
13474 while (curB != NULL) {
13475 if (cur->value == curB->value) {
13476 found = 1;
13477 break;
13478 }
13479 curB = curB->next;
13480 }
13481 if (!found) {
13482 tmp = xmlSchemaNewWildcardNsConstraint(ctxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013483 if (tmp == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +000013484 return (-1);
13485 tmp->value = cur->value;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013486 tmp->next = completeWild->nsSet;
Daniel Veillard3646d642004-06-02 19:19:14 +000013487 completeWild->nsSet = tmp;
13488 }
13489 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013490 }
13491
Daniel Veillard3646d642004-06-02 19:19:14 +000013492 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013493 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013494 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013495 * 4 If the two are negations of different values (namespace names
Daniel Veillard3646d642004-06-02 19:19:14 +000013496 * or ·absent·), then a pair of not and ·absent· must be the value.
13497 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013498 if ((completeWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013499 (curWild->negNsSet != NULL) &&
13500 (completeWild->negNsSet->value != curWild->negNsSet->value)) {
13501 completeWild->negNsSet->value = NULL;
Daniel Veillard50355f02004-06-08 17:52:16 +000013502
13503 return(0);
Daniel Veillard3646d642004-06-02 19:19:14 +000013504 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013505 /*
Daniel Veillard3646d642004-06-02 19:19:14 +000013506 * 5.
13507 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013508 if (((completeWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013509 (completeWild->negNsSet->value != NULL) &&
13510 (curWild->nsSet != NULL)) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013511 ((curWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013512 (curWild->negNsSet->value != NULL) &&
13513 (completeWild->nsSet != NULL))) {
13514
13515 int nsFound, absentFound = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013516
Daniel Veillard3646d642004-06-02 19:19:14 +000013517 if (completeWild->nsSet != NULL) {
13518 cur = completeWild->nsSet;
13519 curB = curWild->negNsSet;
13520 } else {
13521 cur = curWild->nsSet;
13522 curB = completeWild->negNsSet;
13523 }
13524 nsFound = 0;
13525 while (cur != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013526 if (cur->value == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +000013527 absentFound = 1;
13528 else if (cur->value == curB->value)
13529 nsFound = 1;
13530 if (nsFound && absentFound)
13531 break;
13532 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013533 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013534
13535 if (nsFound && absentFound) {
13536 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013537 * 5.1 If the set S includes both the negated namespace
Daniel Veillard3646d642004-06-02 19:19:14 +000013538 * name and ·absent·, then any must be the value.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013539 */
Daniel Veillard3646d642004-06-02 19:19:14 +000013540 completeWild->any = 1;
13541 if (completeWild->nsSet != NULL) {
13542 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13543 completeWild->nsSet = NULL;
13544 }
13545 if (completeWild->negNsSet != NULL) {
13546 xmlFree(completeWild->negNsSet);
13547 completeWild->negNsSet = NULL;
13548 }
13549 } else if (nsFound && (!absentFound)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013550 /*
13551 * 5.2 If the set S includes the negated namespace name
13552 * but not ·absent·, then a pair of not and ·absent· must
Daniel Veillard3646d642004-06-02 19:19:14 +000013553 * be the value.
13554 */
13555 if (completeWild->nsSet != NULL) {
13556 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13557 completeWild->nsSet = NULL;
13558 }
13559 if (completeWild->negNsSet == NULL) {
13560 completeWild->negNsSet = xmlSchemaNewWildcardNsConstraint(ctxt);
13561 if (completeWild->negNsSet == NULL)
13562 return (-1);
13563 }
13564 completeWild->negNsSet->value = NULL;
13565 } else if ((!nsFound) && absentFound) {
13566 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013567 * 5.3 If the set S includes ·absent· but not the negated
Daniel Veillard3646d642004-06-02 19:19:14 +000013568 * namespace name, then the union is not expressible.
13569 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013570 xmlSchemaPErr(ctxt, completeWild->node,
Daniel Veillard3646d642004-06-02 19:19:14 +000013571 XML_SCHEMAP_UNION_NOT_EXPRESSIBLE,
Daniel Veillardc0826a72004-08-10 14:17:33 +000013572 "The union of the wilcard is not expressible.\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013573 NULL, NULL);
Daniel Veillard50355f02004-06-08 17:52:16 +000013574 return(XML_SCHEMAP_UNION_NOT_EXPRESSIBLE);
Daniel Veillard3646d642004-06-02 19:19:14 +000013575 } else if ((!nsFound) && (!absentFound)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013576 /*
13577 * 5.4 If the set S does not include either the negated namespace
13578 * name or ·absent·, then whichever of O1 or O2 is a pair of not
Daniel Veillard3646d642004-06-02 19:19:14 +000013579 * and a namespace name must be the value.
13580 */
13581 if (completeWild->negNsSet == NULL) {
13582 if (completeWild->nsSet != NULL) {
13583 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13584 completeWild->nsSet = NULL;
13585 }
13586 completeWild->negNsSet = xmlSchemaNewWildcardNsConstraint(ctxt);
13587 if (completeWild->negNsSet == NULL)
13588 return (-1);
13589 completeWild->negNsSet->value = curWild->negNsSet->value;
13590 }
13591 }
13592 return (0);
13593 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013594 /*
Daniel Veillard3646d642004-06-02 19:19:14 +000013595 * 6.
13596 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013597 if (((completeWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013598 (completeWild->negNsSet->value == NULL) &&
13599 (curWild->nsSet != NULL)) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013600 ((curWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013601 (curWild->negNsSet->value == NULL) &&
13602 (completeWild->nsSet != NULL))) {
13603
13604 if (completeWild->nsSet != NULL) {
13605 cur = completeWild->nsSet;
13606 } else {
13607 cur = curWild->nsSet;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013608 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013609 while (cur != NULL) {
13610 if (cur->value == NULL) {
13611 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013612 * 6.1 If the set S includes ·absent·, then any must be the
Daniel Veillard3646d642004-06-02 19:19:14 +000013613 * value.
13614 */
13615 completeWild->any = 1;
13616 if (completeWild->nsSet != NULL) {
13617 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13618 completeWild->nsSet = NULL;
13619 }
13620 if (completeWild->negNsSet != NULL) {
13621 xmlFree(completeWild->negNsSet);
13622 completeWild->negNsSet = NULL;
13623 }
13624 return (0);
13625 }
13626 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013627 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013628 if (completeWild->negNsSet == NULL) {
13629 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013630 * 6.2 If the set S does not include ·absent·, then a pair of not
Daniel Veillard3646d642004-06-02 19:19:14 +000013631 * and ·absent· must be the value.
13632 */
13633 if (completeWild->nsSet != NULL) {
13634 xmlSchemaFreeWildcardNsSet(completeWild->nsSet);
13635 completeWild->nsSet = NULL;
13636 }
13637 completeWild->negNsSet = xmlSchemaNewWildcardNsConstraint(ctxt);
13638 if (completeWild->negNsSet == NULL)
13639 return (-1);
13640 completeWild->negNsSet->value = NULL;
13641 }
13642 return (0);
13643 }
13644 return (0);
13645
13646}
13647
Daniel Veillard50355f02004-06-08 17:52:16 +000013648/**
13649 * xmlSchemaIntersectWildcards:
13650 * @ctxt: the schema parser context
13651 * @completeWild: the first wildcard
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013652 * @curWild: the second wildcard
Daniel Veillard50355f02004-06-08 17:52:16 +000013653 *
13654 * Intersects the namespace constraints of the given wildcards.
13655 * @completeWild will hold the resulting intersection.
13656 * Returns a positive error code on failure, -1 in case of an
13657 * internal error, 0 otherwise.
13658 */
Daniel Veillard3646d642004-06-02 19:19:14 +000013659static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013660xmlSchemaIntersectWildcards(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillard3646d642004-06-02 19:19:14 +000013661 xmlSchemaWildcardPtr completeWild,
13662 xmlSchemaWildcardPtr curWild)
13663{
William M. Brack803812b2004-06-03 02:11:24 +000013664 xmlSchemaWildcardNsPtr cur, curB, prev, tmp;
Daniel Veillard3646d642004-06-02 19:19:14 +000013665
13666 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013667 * 1 If O1 and O2 are the same value, then that value must be the
Daniel Veillard3646d642004-06-02 19:19:14 +000013668 * value.
13669 */
13670 if ((completeWild->any == curWild->any) &&
13671 ((completeWild->nsSet == NULL) == (curWild->nsSet == NULL)) &&
13672 ((completeWild->negNsSet == NULL) == (curWild->negNsSet == NULL))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013673
Daniel Veillard3646d642004-06-02 19:19:14 +000013674 if ((completeWild->negNsSet == NULL) ||
13675 (completeWild->negNsSet->value == curWild->negNsSet->value)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013676
Daniel Veillard3646d642004-06-02 19:19:14 +000013677 if (completeWild->nsSet != NULL) {
William M. Brack803812b2004-06-03 02:11:24 +000013678 int found = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013679
13680 /*
13681 * Check equality of sets.
Daniel Veillard3646d642004-06-02 19:19:14 +000013682 */
13683 cur = completeWild->nsSet;
13684 while (cur != NULL) {
13685 found = 0;
13686 curB = curWild->nsSet;
13687 while (curB != NULL) {
13688 if (cur->value == curB->value) {
13689 found = 1;
13690 break;
13691 }
13692 curB = curB->next;
13693 }
13694 if (!found)
13695 break;
13696 cur = cur->next;
13697 }
13698 if (found)
13699 return(0);
13700 } else
13701 return(0);
13702 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013703 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013704 /*
13705 * 2 If either O1 or O2 is any, then the other must be the value.
13706 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013707 if ((completeWild->any != curWild->any) && (completeWild->any)) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013708 if (xmlSchemaCloneWildcardNsConstraints(ctxt, completeWild, curWild) == -1)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013709 return(-1);
Daniel Veillard3646d642004-06-02 19:19:14 +000013710 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013711 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013712 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013713 * 3 If either O1 or O2 is a pair of not and a value (a namespace
13714 * name or ·absent·) and the other is a set of (namespace names or
13715 * ·absent·), then that set, minus the negated value if it was in
Daniel Veillard3646d642004-06-02 19:19:14 +000013716 * the set, minus ·absent· if it was in the set, must be the value.
13717 */
13718 if (((completeWild->negNsSet != NULL) && (curWild->nsSet != NULL)) ||
13719 ((curWild->negNsSet != NULL) && (completeWild->nsSet != NULL))) {
13720 const xmlChar *neg;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013721
Daniel Veillard3646d642004-06-02 19:19:14 +000013722 if (completeWild->nsSet == NULL) {
13723 neg = completeWild->negNsSet->value;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013724 if (xmlSchemaCloneWildcardNsConstraints(ctxt, completeWild, curWild) == -1)
Daniel Veillard3646d642004-06-02 19:19:14 +000013725 return(-1);
13726 } else
13727 neg = curWild->negNsSet->value;
13728 /*
13729 * Remove absent and negated.
13730 */
13731 prev = NULL;
13732 cur = completeWild->nsSet;
13733 while (cur != NULL) {
13734 if (cur->value == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013735 if (prev == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +000013736 completeWild->nsSet = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013737 else
Daniel Veillard3646d642004-06-02 19:19:14 +000013738 prev->next = cur->next;
13739 xmlFree(cur);
13740 break;
13741 }
13742 prev = cur;
13743 cur = cur->next;
13744 }
13745 if (neg != NULL) {
13746 prev = NULL;
13747 cur = completeWild->nsSet;
13748 while (cur != NULL) {
13749 if (cur->value == neg) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013750 if (prev == NULL)
Daniel Veillard3646d642004-06-02 19:19:14 +000013751 completeWild->nsSet = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013752 else
Daniel Veillard3646d642004-06-02 19:19:14 +000013753 prev->next = cur->next;
13754 xmlFree(cur);
13755 break;
13756 }
13757 prev = cur;
13758 cur = cur->next;
13759 }
13760 }
13761
13762 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013763 }
Daniel Veillard3646d642004-06-02 19:19:14 +000013764 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013765 * 4 If both O1 and O2 are sets of (namespace names or ·absent·),
Daniel Veillard3646d642004-06-02 19:19:14 +000013766 * then the intersection of those sets must be the value.
13767 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013768 if ((completeWild->nsSet != NULL) && (curWild->nsSet != NULL)) {
Daniel Veillard3646d642004-06-02 19:19:14 +000013769 int found;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013770
Daniel Veillard3646d642004-06-02 19:19:14 +000013771 cur = completeWild->nsSet;
13772 prev = NULL;
13773 while (cur != NULL) {
13774 found = 0;
13775 curB = curWild->nsSet;
13776 while (curB != NULL) {
13777 if (cur->value == curB->value) {
13778 found = 1;
13779 break;
13780 }
13781 curB = curB->next;
13782 }
13783 if (!found) {
13784 if (prev == NULL)
13785 completeWild->nsSet = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013786 else
Daniel Veillard3646d642004-06-02 19:19:14 +000013787 prev->next = cur->next;
13788 tmp = cur->next;
13789 xmlFree(cur);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013790 cur = tmp;
Daniel Veillard3646d642004-06-02 19:19:14 +000013791 continue;
13792 }
13793 prev = cur;
13794 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013795 }
13796
Daniel Veillard3646d642004-06-02 19:19:14 +000013797 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013798 }
13799 /* 5 If the two are negations of different namespace names,
Daniel Veillard3646d642004-06-02 19:19:14 +000013800 * then the intersection is not expressible
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013801 */
13802 if ((completeWild->negNsSet != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013803 (curWild->negNsSet != NULL) &&
13804 (completeWild->negNsSet->value != curWild->negNsSet->value) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013805 (completeWild->negNsSet->value != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013806 (curWild->negNsSet->value != NULL)) {
13807
13808 xmlSchemaPErr(ctxt, completeWild->node, XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE,
Daniel Veillardc0826a72004-08-10 14:17:33 +000013809 "The intersection of the wilcard is not expressible.\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013810 NULL, NULL);
Daniel Veillard50355f02004-06-08 17:52:16 +000013811 return(XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013812 }
13813 /*
13814 * 6 If the one is a negation of a namespace name and the other
13815 * is a negation of ·absent·, then the one which is the negation
Daniel Veillard3646d642004-06-02 19:19:14 +000013816 * of a namespace name must be the value.
13817 */
13818 if ((completeWild->negNsSet != NULL) && (curWild->negNsSet != NULL) &&
13819 (completeWild->negNsSet->value != curWild->negNsSet->value) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013820 (completeWild->negNsSet->value == NULL)) {
13821 completeWild->negNsSet->value = curWild->negNsSet->value;
Daniel Veillard3646d642004-06-02 19:19:14 +000013822 }
13823 return(0);
13824}
13825
Daniel Veillard50355f02004-06-08 17:52:16 +000013826/**
13827 * xmlSchemaIsWildcardNsConstraintSubset:
13828 * @ctxt: the schema parser context
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013829 * @sub: the first wildcard
13830 * @super: the second wildcard
Daniel Veillard50355f02004-06-08 17:52:16 +000013831 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013832 * Schema Component Constraint: Wildcard Subset (cos-ns-subset)
13833 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013834 * Returns 0 if the namespace constraint of @sub is an intensional
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013835 * subset of @super, 1 otherwise.
Daniel Veillard50355f02004-06-08 17:52:16 +000013836 */
13837static int
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013838xmlSchemaCheckCOSNSSubset(xmlSchemaWildcardPtr sub,
13839 xmlSchemaWildcardPtr super)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013840{
Daniel Veillard50355f02004-06-08 17:52:16 +000013841 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013842 * 1 super must be any.
Daniel Veillard50355f02004-06-08 17:52:16 +000013843 */
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013844 if (super->any)
13845 return (0);
Daniel Veillard50355f02004-06-08 17:52:16 +000013846 /*
13847 * 2.1 sub must be a pair of not and a namespace name or ·absent·.
13848 * 2.2 super must be a pair of not and the same value.
13849 */
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013850 if ((sub->negNsSet != NULL) &&
13851 (super->negNsSet != NULL) &&
13852 (sub->negNsSet->value == sub->negNsSet->value))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013853 return (0);
13854 /*
13855 * 3.1 sub must be a set whose members are either namespace names or ·absent·.
Daniel Veillard50355f02004-06-08 17:52:16 +000013856 */
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013857 if (sub->nsSet != NULL) {
Daniel Veillard50355f02004-06-08 17:52:16 +000013858 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013859 * 3.2.1 super must be the same set or a superset thereof.
Daniel Veillard50355f02004-06-08 17:52:16 +000013860 */
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013861 if (super->nsSet != NULL) {
Daniel Veillard50355f02004-06-08 17:52:16 +000013862 xmlSchemaWildcardNsPtr cur, curB;
13863 int found = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013864
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013865 cur = sub->nsSet;
Daniel Veillard50355f02004-06-08 17:52:16 +000013866 while (cur != NULL) {
13867 found = 0;
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013868 curB = super->nsSet;
Daniel Veillard50355f02004-06-08 17:52:16 +000013869 while (curB != NULL) {
13870 if (cur->value == curB->value) {
13871 found = 1;
13872 break;
13873 }
13874 curB = curB->next;
13875 }
13876 if (!found)
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013877 return (1);
Daniel Veillard50355f02004-06-08 17:52:16 +000013878 cur = cur->next;
13879 }
13880 if (found)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013881 return (0);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013882 } else if (super->negNsSet != NULL) {
Daniel Veillard50355f02004-06-08 17:52:16 +000013883 xmlSchemaWildcardNsPtr cur;
13884 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013885 * 3.2.2 super must be a pair of not and a namespace name or
13886 * ·absent· and that value must not be in sub's set.
Daniel Veillard50355f02004-06-08 17:52:16 +000013887 */
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013888 cur = sub->nsSet;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013889 while (cur != NULL) {
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013890 if (cur->value == super->negNsSet->value)
13891 return (1);
Daniel Veillard50355f02004-06-08 17:52:16 +000013892 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013893 }
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013894 return (0);
Daniel Veillard50355f02004-06-08 17:52:16 +000013895 }
13896 }
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000013897 return (1);
Daniel Veillard50355f02004-06-08 17:52:16 +000013898}
13899
Daniel Veillard50355f02004-06-08 17:52:16 +000013900static int
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013901xmlSchemaGetEffectiveValueConstraint(xmlSchemaAttributeUsePtr attruse,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000013902 int *fixed,
13903 const xmlChar **value,
13904 xmlSchemaValPtr *val)
13905{
13906 *fixed = 0;
13907 *value = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013908 if (val != 0)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000013909 *val = NULL;
13910
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013911 if (attruse->defValue != NULL) {
13912 *value = attruse->defValue;
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000013913 if (val != NULL)
13914 *val = attruse->defVal;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013915 if (attruse->flags & XML_SCHEMA_ATTR_USE_FIXED)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000013916 *fixed = 1;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013917 return(1);
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000013918 } else if ((attruse->attrDecl != NULL) &&
13919 (attruse->attrDecl->defValue != NULL)) {
13920 *value = attruse->attrDecl->defValue;
13921 if (val != NULL)
13922 *val = attruse->attrDecl->defVal;
13923 if (attruse->attrDecl->flags & XML_SCHEMAS_ATTR_FIXED)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013924 *fixed = 1;
13925 return(1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000013926 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013927 return(0);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000013928}
Daniel Veillard3646d642004-06-02 19:19:14 +000013929/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013930 * xmlSchemaCheckCVCWildcardNamespace:
Daniel Veillard3646d642004-06-02 19:19:14 +000013931 * @wild: the wildcard
13932 * @ns: the namespace
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013933 *
13934 * Validation Rule: Wildcard allows Namespace Name
13935 * (cvc-wildcard-namespace)
13936 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013937 * Returns 0 if the given namespace matches the wildcard,
13938 * 1 otherwise and -1 on API errors.
Daniel Veillard3646d642004-06-02 19:19:14 +000013939 */
13940static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013941xmlSchemaCheckCVCWildcardNamespace(xmlSchemaWildcardPtr wild,
13942 const xmlChar* ns)
Daniel Veillard3646d642004-06-02 19:19:14 +000013943{
13944 if (wild == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013945 return(-1);
Daniel Veillard3646d642004-06-02 19:19:14 +000013946
13947 if (wild->any)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013948 return(0);
Daniel Veillard3646d642004-06-02 19:19:14 +000013949 else if (wild->nsSet != NULL) {
13950 xmlSchemaWildcardNsPtr cur;
13951
13952 cur = wild->nsSet;
13953 while (cur != NULL) {
13954 if (xmlStrEqual(cur->value, ns))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013955 return(0);
Daniel Veillard3646d642004-06-02 19:19:14 +000013956 cur = cur->next;
13957 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013958 } else if ((wild->negNsSet != NULL) && (ns != NULL) &&
Daniel Veillard3646d642004-06-02 19:19:14 +000013959 (!xmlStrEqual(wild->negNsSet->value, ns)))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013960 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000013961
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013962 return(1);
13963}
13964
13965#define XML_SCHEMA_ACTION_DERIVE 0
13966#define XML_SCHEMA_ACTION_REDEFINE 1
13967
13968#define WXS_ACTION_STR(a) \
13969((a) == XML_SCHEMA_ACTION_DERIVE) ? (const xmlChar *) "base" : (const xmlChar *) "redefined"
13970
13971/*
13972* Schema Component Constraint:
13973* Derivation Valid (Restriction, Complex)
13974* derivation-ok-restriction (2) - (4)
13975*
13976* ATTENTION:
13977* In XML Schema 1.1 this will be:
13978* Validation Rule:
13979* Checking complex type subsumption (practicalSubsumption) (1, 2 and 3)
13980*
13981*/
13982static int
13983xmlSchemaCheckDerivationOKRestriction2to4(xmlSchemaParserCtxtPtr pctxt,
13984 int action,
13985 xmlSchemaBasicItemPtr item,
13986 xmlSchemaBasicItemPtr baseItem,
13987 xmlSchemaItemListPtr uses,
13988 xmlSchemaItemListPtr baseUses,
13989 xmlSchemaWildcardPtr wild,
13990 xmlSchemaWildcardPtr baseWild)
13991{
13992 xmlSchemaAttributeUsePtr cur = NULL, bcur;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000013993 int i, j, found; /* err = 0; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000013994 const xmlChar *bEffValue;
13995 int effFixed;
13996
13997 if (uses != NULL) {
13998 for (i = 0; i < uses->nbItems; i++) {
13999 cur = uses->items[i];
14000 found = 0;
14001 if (baseUses == NULL)
14002 goto not_found;
14003 for (j = 0; j < baseUses->nbItems; j++) {
14004 bcur = baseUses->items[j];
14005 if ((WXS_ATTRUSE_DECL_NAME(cur) ==
14006 WXS_ATTRUSE_DECL_NAME(bcur)) &&
14007 (WXS_ATTRUSE_DECL_TNS(cur) ==
14008 WXS_ATTRUSE_DECL_TNS(bcur)))
14009 {
14010 /*
14011 * (2.1) "If there is an attribute use in the {attribute
14012 * uses} of the {base type definition} (call this B) whose
14013 * {attribute declaration} has the same {name} and {target
14014 * namespace}, then all of the following must be true:"
14015 */
14016 found = 1;
14017
14018 if ((cur->occurs == XML_SCHEMAS_ATTR_USE_OPTIONAL) &&
14019 (bcur->occurs == XML_SCHEMAS_ATTR_USE_REQUIRED))
14020 {
14021 xmlChar *str = NULL;
14022 /*
14023 * (2.1.1) "one of the following must be true:"
14024 * (2.1.1.1) "B's {required} is false."
14025 * (2.1.1.2) "R's {required} is true."
14026 */
14027 xmlSchemaPAttrUseErr4(pctxt,
14028 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1,
14029 WXS_ITEM_NODE(item), item, cur,
14030 "The 'optional' attribute use is inconsistent "
14031 "with the corresponding 'required' attribute use of "
14032 "the %s %s",
14033 WXS_ACTION_STR(action),
14034 xmlSchemaGetComponentDesignation(&str, baseItem),
14035 NULL, NULL);
14036 FREE_AND_NULL(str);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000014037 /* err = pctxt->err; */
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014038 } else if (xmlSchemaCheckCOSSTDerivedOK(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014039 WXS_ATTRUSE_TYPEDEF(cur),
14040 WXS_ATTRUSE_TYPEDEF(bcur), 0) != 0)
14041 {
14042 xmlChar *strA = NULL, *strB = NULL, *strC = NULL;
14043
14044 /*
14045 * SPEC (2.1.2) "R's {attribute declaration}'s
14046 * {type definition} must be validly derived from
14047 * B's {type definition} given the empty set as
14048 * defined in Type Derivation OK (Simple) (§3.14.6)."
14049 */
14050 xmlSchemaPAttrUseErr4(pctxt,
14051 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2,
14052 WXS_ITEM_NODE(item), item, cur,
14053 "The attribute declaration's %s "
14054 "is not validly derived from "
14055 "the corresponding %s of the "
14056 "attribute declaration in the %s %s",
14057 xmlSchemaGetComponentDesignation(&strA,
14058 WXS_ATTRUSE_TYPEDEF(cur)),
14059 xmlSchemaGetComponentDesignation(&strB,
14060 WXS_ATTRUSE_TYPEDEF(bcur)),
14061 WXS_ACTION_STR(action),
14062 xmlSchemaGetComponentDesignation(&strC, baseItem));
14063 /* xmlSchemaGetComponentDesignation(&str, baseItem), */
14064 FREE_AND_NULL(strA);
14065 FREE_AND_NULL(strB);
14066 FREE_AND_NULL(strC);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000014067 /* err = pctxt->err; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014068 } else {
14069 /*
14070 * 2.1.3 [Definition:] Let the effective value
14071 * constraint of an attribute use be its {value
14072 * constraint}, if present, otherwise its {attribute
14073 * declaration}'s {value constraint} .
14074 */
14075 xmlSchemaGetEffectiveValueConstraint(bcur,
14076 &effFixed, &bEffValue, NULL);
14077 /*
14078 * 2.1.3 ... one of the following must be true
14079 *
14080 * 2.1.3.1 B's ·effective value constraint· is
14081 * ·absent· or default.
14082 */
14083 if ((bEffValue != NULL) &&
14084 (effFixed == 1)) {
14085 const xmlChar *rEffValue = NULL;
14086
14087 xmlSchemaGetEffectiveValueConstraint(bcur,
14088 &effFixed, &rEffValue, NULL);
14089 /*
14090 * 2.1.3.2 R's ·effective value constraint· is
14091 * fixed with the same string as B's.
14092 * MAYBE TODO: Compare the computed values.
14093 * Hmm, it says "same string" so
14094 * string-equality might really be sufficient.
14095 */
14096 if ((effFixed == 0) ||
14097 (! WXS_ARE_DEFAULT_STR_EQUAL(rEffValue, bEffValue)))
14098 {
14099 xmlChar *str = NULL;
14100
14101 xmlSchemaPAttrUseErr4(pctxt,
14102 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3,
14103 WXS_ITEM_NODE(item), item, cur,
14104 "The effective value constraint of the "
14105 "attribute use is inconsistent with "
14106 "its correspondent in the %s %s",
14107 WXS_ACTION_STR(action),
14108 xmlSchemaGetComponentDesignation(&str,
14109 baseItem),
14110 NULL, NULL);
14111 FREE_AND_NULL(str);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000014112 /* err = pctxt->err; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014113 }
14114 }
14115 }
14116 break;
14117 }
14118 }
14119not_found:
14120 if (!found) {
14121 /*
14122 * (2.2) "otherwise the {base type definition} must have an
14123 * {attribute wildcard} and the {target namespace} of the
14124 * R's {attribute declaration} must be ·valid· with respect
14125 * to that wildcard, as defined in Wildcard allows Namespace
14126 * Name (§3.10.4)."
14127 */
14128 if ((baseWild == NULL) ||
14129 (xmlSchemaCheckCVCWildcardNamespace(baseWild,
14130 (WXS_ATTRUSE_DECL(cur))->targetNamespace) != 0))
14131 {
14132 xmlChar *str = NULL;
14133
14134 xmlSchemaPAttrUseErr4(pctxt,
14135 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2,
14136 WXS_ITEM_NODE(item), item, cur,
14137 "Neither a matching attribute use, "
14138 "nor a matching wildcard exists in the %s %s",
14139 WXS_ACTION_STR(action),
14140 xmlSchemaGetComponentDesignation(&str, baseItem),
14141 NULL, NULL);
14142 FREE_AND_NULL(str);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000014143 /* err = pctxt->err; */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014144 }
14145 }
14146 }
14147 }
14148 /*
14149 * SPEC derivation-ok-restriction (3):
14150 * (3) "For each attribute use in the {attribute uses} of the {base type
14151 * definition} whose {required} is true, there must be an attribute
14152 * use with an {attribute declaration} with the same {name} and
14153 * {target namespace} as its {attribute declaration} in the {attribute
14154 * uses} of the complex type definition itself whose {required} is true.
14155 */
14156 if (baseUses != NULL) {
14157 for (j = 0; j < baseUses->nbItems; j++) {
14158 bcur = baseUses->items[j];
14159 if (bcur->occurs != XML_SCHEMAS_ATTR_USE_REQUIRED)
14160 continue;
14161 found = 0;
14162 if (uses != NULL) {
14163 for (i = 0; i < uses->nbItems; i++) {
14164 cur = uses->items[i];
14165 if ((WXS_ATTRUSE_DECL_NAME(cur) ==
14166 WXS_ATTRUSE_DECL_NAME(bcur)) &&
14167 (WXS_ATTRUSE_DECL_TNS(cur) ==
14168 WXS_ATTRUSE_DECL_TNS(bcur))) {
14169 found = 1;
14170 break;
14171 }
14172 }
14173 }
14174 if (!found) {
14175 xmlChar *strA = NULL, *strB = NULL;
14176
14177 xmlSchemaCustomErr4(ACTXT_CAST pctxt,
14178 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3,
14179 NULL, item,
14180 "A matching attribute use for the "
14181 "'required' %s of the %s %s is missing",
14182 xmlSchemaGetComponentDesignation(&strA, bcur),
14183 WXS_ACTION_STR(action),
14184 xmlSchemaGetComponentDesignation(&strB, baseItem),
14185 NULL);
14186 FREE_AND_NULL(strA);
14187 FREE_AND_NULL(strB);
14188 }
14189 }
14190 }
14191 /*
14192 * derivation-ok-restriction (4)
14193 */
14194 if (wild != NULL) {
14195 /*
14196 * (4) "If there is an {attribute wildcard}, all of the
14197 * following must be true:"
14198 */
14199 if (baseWild == NULL) {
14200 xmlChar *str = NULL;
14201
14202 /*
14203 * (4.1) "The {base type definition} must also have one."
14204 */
14205 xmlSchemaCustomErr4(ACTXT_CAST pctxt,
14206 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1,
14207 NULL, item,
14208 "The %s has an attribute wildcard, "
14209 "but the %s %s '%s' does not have one",
14210 WXS_ITEM_TYPE_NAME(item),
14211 WXS_ACTION_STR(action),
14212 WXS_ITEM_TYPE_NAME(baseItem),
14213 xmlSchemaGetComponentQName(&str, baseItem));
14214 FREE_AND_NULL(str);
14215 return(pctxt->err);
14216 } else if ((baseWild->any == 0) &&
14217 xmlSchemaCheckCOSNSSubset(wild, baseWild))
14218 {
14219 xmlChar *str = NULL;
14220 /*
14221 * (4.2) "The complex type definition's {attribute wildcard}'s
14222 * {namespace constraint} must be a subset of the {base type
14223 * definition}'s {attribute wildcard}'s {namespace constraint},
14224 * as defined by Wildcard Subset (§3.10.6)."
14225 */
14226 xmlSchemaCustomErr4(ACTXT_CAST pctxt,
14227 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2,
14228 NULL, item,
14229 "The attribute wildcard is not a valid "
14230 "subset of the wildcard in the %s %s '%s'",
14231 WXS_ACTION_STR(action),
14232 WXS_ITEM_TYPE_NAME(baseItem),
14233 xmlSchemaGetComponentQName(&str, baseItem),
14234 NULL);
14235 FREE_AND_NULL(str);
14236 return(pctxt->err);
14237 }
14238 /* 4.3 Unless the {base type definition} is the ·ur-type
14239 * definition·, the complex type definition's {attribute
14240 * wildcard}'s {process contents} must be identical to or
14241 * stronger than the {base type definition}'s {attribute
14242 * wildcard}'s {process contents}, where strict is stronger
14243 * than lax is stronger than skip.
14244 */
14245 if ((! WXS_IS_ANYTYPE(baseItem)) &&
14246 (wild->processContents < baseWild->processContents)) {
14247 xmlChar *str = NULL;
14248 xmlSchemaCustomErr4(ACTXT_CAST pctxt,
14249 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3,
14250 NULL, baseItem,
14251 "The {process contents} of the attribute wildcard is "
14252 "weaker than the one in the %s %s '%s'",
14253 WXS_ACTION_STR(action),
14254 WXS_ITEM_TYPE_NAME(baseItem),
14255 xmlSchemaGetComponentQName(&str, baseItem),
14256 NULL);
14257 FREE_AND_NULL(str)
14258 return(pctxt->err);
14259 }
14260 }
Daniel Veillard3646d642004-06-02 19:19:14 +000014261 return(0);
14262}
14263
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014264
14265static int
14266xmlSchemaExpandAttributeGroupRefs(xmlSchemaParserCtxtPtr pctxt,
14267 xmlSchemaBasicItemPtr item,
14268 xmlSchemaWildcardPtr *completeWild,
14269 xmlSchemaItemListPtr list,
14270 xmlSchemaItemListPtr prohibs);
Daniel Veillard3646d642004-06-02 19:19:14 +000014271/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014272 * xmlSchemaFixupTypeAttributeUses:
Daniel Veillard3646d642004-06-02 19:19:14 +000014273 * @ctxt: the schema parser context
14274 * @type: the complex type definition
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014275 *
Daniel Veillard3646d642004-06-02 19:19:14 +000014276 *
14277 * Builds the wildcard and the attribute uses on the given complex type.
14278 * Returns -1 if an internal error occurs, 0 otherwise.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014279 *
14280 * ATTENTION TODO: Experimantally this uses pointer comparisons for
14281 * strings, so recheck this if we start to hardcode some schemata, since
14282 * they might not be in the same dict.
14283 * NOTE: It is allowed to "extend" the xs:anyType type.
Daniel Veillard3646d642004-06-02 19:19:14 +000014284 */
14285static int
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014286xmlSchemaFixupTypeAttributeUses(xmlSchemaParserCtxtPtr pctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014287 xmlSchemaTypePtr type)
Daniel Veillard3646d642004-06-02 19:19:14 +000014288{
14289 xmlSchemaTypePtr baseType = NULL;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014290 xmlSchemaAttributeUsePtr use;
14291 xmlSchemaItemListPtr uses, baseUses, prohibs = NULL;
Daniel Veillard3646d642004-06-02 19:19:14 +000014292
Daniel Veillard01fa6152004-06-29 17:04:39 +000014293 if (type->baseType == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014294 PERROR_INT("xmlSchemaFixupTypeAttributeUses",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014295 "no base type");
Daniel Veillard01fa6152004-06-29 17:04:39 +000014296 return (-1);
14297 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014298 baseType = type->baseType;
14299 if (WXS_IS_TYPE_NOT_FIXED(baseType))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014300 if (xmlSchemaTypeFixup(baseType, ACTXT_CAST pctxt) == -1)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014301 return(-1);
14302
14303 uses = type->attrUses;
14304 baseUses = baseType->attrUses;
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014305 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014306 * Expand attribute group references. And build the 'complete'
14307 * wildcard, i.e. intersect multiple wildcards.
14308 * Move attribute prohibitions into a separate list.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014309 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014310 if (uses != NULL) {
14311 if (WXS_IS_RESTRICTION(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014312 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014313 * This one will transfer all attr. prohibitions
14314 * into pctxt->attrProhibs.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014315 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014316 if (xmlSchemaExpandAttributeGroupRefs(pctxt,
14317 WXS_BASIC_CAST type, &(type->attributeWildcard), uses,
14318 pctxt->attrProhibs) == -1)
14319 {
14320 PERROR_INT("xmlSchemaFixupTypeAttributeUses",
14321 "failed to expand attributes");
14322 }
14323 if (pctxt->attrProhibs->nbItems != 0)
14324 prohibs = pctxt->attrProhibs;
14325 } else {
14326 if (xmlSchemaExpandAttributeGroupRefs(pctxt,
14327 WXS_BASIC_CAST type, &(type->attributeWildcard), uses,
14328 NULL) == -1)
14329 {
14330 PERROR_INT("xmlSchemaFixupTypeAttributeUses",
14331 "failed to expand attributes");
14332 }
14333 }
14334 }
14335 /*
14336 * Inherit the attribute uses of the base type.
14337 */
14338 if (baseUses != NULL) {
14339 int i, j;
14340 xmlSchemaAttributeUseProhibPtr pro;
14341
14342 if (WXS_IS_RESTRICTION(type)) {
14343 int usesCount;
14344 xmlSchemaAttributeUsePtr tmp;
14345
14346 if (uses != NULL)
14347 usesCount = uses->nbItems;
14348 else
14349 usesCount = 0;
14350
14351 /* Restriction. */
14352 for (i = 0; i < baseUses->nbItems; i++) {
14353 use = baseUses->items[i];
14354 if (prohibs) {
14355 /*
14356 * Filter out prohibited uses.
14357 */
14358 for (j = 0; j < prohibs->nbItems; j++) {
14359 pro = prohibs->items[j];
14360 if ((WXS_ATTRUSE_DECL_NAME(use) == pro->name) &&
14361 (WXS_ATTRUSE_DECL_TNS(use) ==
14362 pro->targetNamespace))
14363 {
14364 goto inherit_next;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014365 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014366 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014367 }
14368 if (usesCount) {
14369 /*
14370 * Filter out existing uses.
14371 */
14372 for (j = 0; j < usesCount; j++) {
14373 tmp = uses->items[j];
14374 if ((WXS_ATTRUSE_DECL_NAME(use) ==
14375 WXS_ATTRUSE_DECL_NAME(tmp)) &&
14376 (WXS_ATTRUSE_DECL_TNS(use) ==
14377 WXS_ATTRUSE_DECL_TNS(tmp)))
14378 {
14379 goto inherit_next;
14380 }
14381 }
14382 }
14383 if (uses == NULL) {
14384 type->attrUses = xmlSchemaItemListCreate();
14385 if (type->attrUses == NULL)
14386 goto exit_failure;
14387 uses = type->attrUses;
14388 }
14389 xmlSchemaItemListAddSize(uses, 2, use);
14390inherit_next: {}
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014391 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014392 } else {
14393 /* Extension. */
14394 for (i = 0; i < baseUses->nbItems; i++) {
14395 use = baseUses->items[i];
14396 if (uses == NULL) {
14397 type->attrUses = xmlSchemaItemListCreate();
14398 if (type->attrUses == NULL)
14399 goto exit_failure;
14400 uses = type->attrUses;
14401 }
14402 xmlSchemaItemListAddSize(uses, baseUses->nbItems, use);
14403 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014404 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014405 }
14406 /*
14407 * Shrink attr. uses.
14408 */
14409 if (uses) {
14410 if (uses->nbItems == 0) {
14411 xmlSchemaItemListFree(uses);
14412 type->attrUses = NULL;
14413 }
14414 /*
14415 * TODO: We could shrink the size of the array
14416 * to fit the actual number of items.
14417 */
14418 }
14419 /*
14420 * Compute the complete wildcard.
14421 */
14422 if (WXS_IS_EXTENSION(type)) {
14423 if (baseType->attributeWildcard != NULL) {
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014424 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014425 * (3.2.2.1) "If the ·base wildcard· is non-·absent·, then
14426 * the appropriate case among the following:"
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014427 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014428 if (type->attributeWildcard != NULL) {
14429 /*
14430 * Union the complete wildcard with the base wildcard.
14431 * SPEC {attribute wildcard}
14432 * (3.2.2.1.2) "otherwise a wildcard whose {process contents}
14433 * and {annotation} are those of the ·complete wildcard·,
14434 * and whose {namespace constraint} is the intensional union
14435 * of the {namespace constraint} of the ·complete wildcard·
14436 * and of the ·base wildcard·, as defined in Attribute
14437 * Wildcard Union (§3.10.6)."
14438 */
14439 if (xmlSchemaUnionWildcards(pctxt, type->attributeWildcard,
14440 baseType->attributeWildcard) == -1)
14441 goto exit_failure;
14442 } else {
14443 /*
14444 * (3.2.2.1.1) "If the ·complete wildcard· is ·absent·,
14445 * then the ·base wildcard·."
14446 */
14447 type->attributeWildcard = baseType->attributeWildcard;
14448 }
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014449 } else {
14450 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014451 * (3.2.2.2) "otherwise (the ·base wildcard· is ·absent·) the
14452 * ·complete wildcard"
14453 * NOOP
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014454 */
Daniel Veillard50355f02004-06-08 17:52:16 +000014455 }
Daniel Veillard3646d642004-06-02 19:19:14 +000014456 } else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014457 /*
14458 * SPEC {attribute wildcard}
14459 * (3.1) "If the <restriction> alternative is chosen, then the
14460 * ·complete wildcard·;"
14461 * NOOP
14462 */
Daniel Veillard50355f02004-06-08 17:52:16 +000014463 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014464
Daniel Veillard3646d642004-06-02 19:19:14 +000014465 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014466
14467exit_failure:
14468 return(-1);
Daniel Veillard3646d642004-06-02 19:19:14 +000014469}
14470
14471/**
Daniel Veillard01fa6152004-06-29 17:04:39 +000014472 * xmlSchemaTypeFinalContains:
14473 * @schema: the schema
14474 * @type: the type definition
14475 * @final: the final
14476 *
14477 * Evaluates if a type definition contains the given "final".
14478 * This does take "finalDefault" into account as well.
14479 *
14480 * Returns 1 if the type does containt the given "final",
14481 * 0 otherwise.
14482 */
14483static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014484xmlSchemaTypeFinalContains(xmlSchemaTypePtr type, int final)
Daniel Veillard01fa6152004-06-29 17:04:39 +000014485{
Daniel Veillard01fa6152004-06-29 17:04:39 +000014486 if (type == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014487 return (0);
14488 if (type->flags & final)
Daniel Veillard01fa6152004-06-29 17:04:39 +000014489 return (1);
14490 else
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014491 return (0);
Daniel Veillard01fa6152004-06-29 17:04:39 +000014492}
14493
14494/**
14495 * xmlSchemaGetUnionSimpleTypeMemberTypes:
14496 * @type: the Union Simple Type
14497 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014498 * Returns a list of member types of @type if existing,
Daniel Veillard01fa6152004-06-29 17:04:39 +000014499 * returns NULL otherwise.
14500 */
Daniel Veillardb7c6ac42004-06-29 22:01:27 +000014501static xmlSchemaTypeLinkPtr
Daniel Veillard01fa6152004-06-29 17:04:39 +000014502xmlSchemaGetUnionSimpleTypeMemberTypes(xmlSchemaTypePtr type)
14503{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014504 while ((type != NULL) && (type->type == XML_SCHEMA_TYPE_SIMPLE)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000014505 if (type->memberTypes != NULL)
14506 return (type->memberTypes);
14507 else
14508 type = type->baseType;
14509 }
14510 return (NULL);
14511}
14512
14513/**
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014514 * xmlSchemaGetParticleTotalRangeMin:
14515 * @particle: the particle
14516 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014517 * Schema Component Constraint: Effective Total Range
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014518 * (all and sequence) + (choice)
14519 *
14520 * Returns the minimun Effective Total Range.
14521 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014522static int
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014523xmlSchemaGetParticleTotalRangeMin(xmlSchemaParticlePtr particle)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014524{
14525 if ((particle->children == NULL) ||
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014526 (particle->minOccurs == 0))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014527 return (0);
14528 if (particle->children->type == XML_SCHEMA_TYPE_CHOICE) {
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014529 int min = -1, cur;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014530 xmlSchemaParticlePtr part =
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014531 (xmlSchemaParticlePtr) particle->children->children;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014532
14533 if (part == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014534 return (0);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014535 while (part != NULL) {
14536 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14537 (part->children->type == XML_SCHEMA_TYPE_ANY))
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014538 cur = part->minOccurs;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014539 else
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014540 cur = xmlSchemaGetParticleTotalRangeMin(part);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014541 if (cur == 0)
14542 return (0);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014543 if ((min > cur) || (min == -1))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014544 min = cur;
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014545 part = (xmlSchemaParticlePtr) part->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014546 }
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014547 return (particle->minOccurs * min);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014548 } else {
14549 /* <all> and <sequence> */
14550 int sum = 0;
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014551 xmlSchemaParticlePtr part =
14552 (xmlSchemaParticlePtr) particle->children->children;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014553
14554 if (part == NULL)
14555 return (0);
14556 do {
14557 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14558 (part->children->type == XML_SCHEMA_TYPE_ANY))
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014559 sum += part->minOccurs;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014560 else
14561 sum += xmlSchemaGetParticleTotalRangeMin(part);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014562 part = (xmlSchemaParticlePtr) part->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014563 } while (part != NULL);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014564 return (particle->minOccurs * sum);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014565 }
14566}
14567
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014568/**
14569 * xmlSchemaGetParticleTotalRangeMax:
14570 * @particle: the particle
14571 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014572 * Schema Component Constraint: Effective Total Range
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014573 * (all and sequence) + (choice)
14574 *
14575 * Returns the maximum Effective Total Range.
14576 */
14577static int
14578xmlSchemaGetParticleTotalRangeMax(xmlSchemaParticlePtr particle)
14579{
14580 if ((particle->children == NULL) ||
14581 (particle->children->children == NULL))
14582 return (0);
14583 if (particle->children->type == XML_SCHEMA_TYPE_CHOICE) {
14584 int max = -1, cur;
14585 xmlSchemaParticlePtr part =
14586 (xmlSchemaParticlePtr) particle->children->children;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014587
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014588 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14589 if (part->children == NULL)
14590 continue;
14591 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14592 (part->children->type == XML_SCHEMA_TYPE_ANY))
14593 cur = part->maxOccurs;
14594 else
14595 cur = xmlSchemaGetParticleTotalRangeMax(part);
14596 if (cur == UNBOUNDED)
14597 return (UNBOUNDED);
14598 if ((max < cur) || (max == -1))
14599 max = cur;
14600 }
14601 /* TODO: Handle overflows? */
14602 return (particle->maxOccurs * max);
14603 } else {
14604 /* <all> and <sequence> */
14605 int sum = 0, cur;
14606 xmlSchemaParticlePtr part =
14607 (xmlSchemaParticlePtr) particle->children->children;
14608
14609 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14610 if (part->children == NULL)
14611 continue;
14612 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14613 (part->children->type == XML_SCHEMA_TYPE_ANY))
14614 cur = part->maxOccurs;
14615 else
14616 cur = xmlSchemaGetParticleTotalRangeMax(part);
14617 if (cur == UNBOUNDED)
14618 return (UNBOUNDED);
14619 if ((cur > 0) && (particle->maxOccurs == UNBOUNDED))
14620 return (UNBOUNDED);
14621 sum += cur;
14622 }
14623 /* TODO: Handle overflows? */
14624 return (particle->maxOccurs * sum);
14625 }
14626}
14627
14628/**
14629 * xmlSchemaIsParticleEmptiable:
14630 * @particle: the particle
14631 *
14632 * Schema Component Constraint: Particle Emptiable
14633 * Checks whether the given particle is emptiable.
14634 *
14635 * Returns 1 if emptiable, 0 otherwise.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014636 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014637static int
14638xmlSchemaIsParticleEmptiable(xmlSchemaParticlePtr particle)
14639{
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014640 /*
14641 * SPEC (1) "Its {min occurs} is 0."
14642 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014643 if ((particle == NULL) || (particle->minOccurs == 0) ||
14644 (particle->children == NULL))
14645 return (1);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014646 /*
14647 * SPEC (2) "Its {term} is a group and the minimum part of the
14648 * effective total range of that group, [...] is 0."
14649 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014650 if (WXS_IS_MODEL_GROUP(particle->children)) {
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014651 if (xmlSchemaGetParticleTotalRangeMin(particle) == 0)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014652 return (1);
14653 }
14654 return (0);
Daniel Veillard01fa6152004-06-29 17:04:39 +000014655}
14656
14657/**
14658 * xmlSchemaCheckCOSSTDerivedOK:
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014659 * @actxt: a context
Daniel Veillard01fa6152004-06-29 17:04:39 +000014660 * @type: the derived simple type definition
14661 * @baseType: the base type definition
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014662 * @subset: the subset of ('restriction', ect.)
Daniel Veillard01fa6152004-06-29 17:04:39 +000014663 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014664 * Schema Component Constraint:
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000014665 * Type Derivation OK (Simple) (cos-st-derived-OK)
14666 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014667 * Checks wheter @type can be validly
Daniel Veillard01fa6152004-06-29 17:04:39 +000014668 * derived from @baseType.
14669 *
14670 * Returns 0 on success, an positive error code otherwise.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014671 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000014672static int
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014673xmlSchemaCheckCOSSTDerivedOK(xmlSchemaAbstractCtxtPtr actxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014674 xmlSchemaTypePtr type,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014675 xmlSchemaTypePtr baseType,
14676 int subset)
14677{
Daniel Veillard01fa6152004-06-29 17:04:39 +000014678 /*
Daniel Veillard01fa6152004-06-29 17:04:39 +000014679 * 1 They are the same type definition.
14680 * TODO: The identy check might have to be more complex than this.
14681 */
14682 if (type == baseType)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014683 return (0);
14684 /*
Daniel Veillard01fa6152004-06-29 17:04:39 +000014685 * 2.1 restriction is not in the subset, or in the {final}
14686 * of its own {base type definition};
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014687 *
14688 * NOTE that this will be used also via "xsi:type".
14689 *
14690 * TODO: Revise this, it looks strange. How can the "type"
14691 * not be fixed or *in* fixing?
Daniel Veillard01fa6152004-06-29 17:04:39 +000014692 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014693 if (WXS_IS_TYPE_NOT_FIXED(type))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014694 if (xmlSchemaTypeFixup(type, actxt) == -1)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014695 return(-1);
14696 if (WXS_IS_TYPE_NOT_FIXED(baseType))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014697 if (xmlSchemaTypeFixup(baseType, actxt) == -1)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014698 return(-1);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014699 if ((subset & SUBSET_RESTRICTION) ||
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014700 (xmlSchemaTypeFinalContains(type->baseType,
14701 XML_SCHEMAS_TYPE_FINAL_RESTRICTION))) {
14702 return (XML_SCHEMAP_COS_ST_DERIVED_OK_2_1);
Daniel Veillard01fa6152004-06-29 17:04:39 +000014703 }
14704 /* 2.2 */
14705 if (type->baseType == baseType) {
14706 /*
14707 * 2.2.1 D's ·base type definition· is B.
14708 */
14709 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014710 }
14711 /*
14712 * 2.2.2 D's ·base type definition· is not the ·ur-type definition·
14713 * and is validly derived from B given the subset, as defined by this
14714 * constraint.
Daniel Veillard01fa6152004-06-29 17:04:39 +000014715 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014716 if ((! WXS_IS_ANYTYPE(type->baseType)) &&
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014717 (xmlSchemaCheckCOSSTDerivedOK(actxt, type->baseType,
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000014718 baseType, subset) == 0)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014719 return (0);
14720 }
14721 /*
14722 * 2.2.3 D's {variety} is list or union and B is the ·simple ur-type
Daniel Veillard01fa6152004-06-29 17:04:39 +000014723 * definition·.
14724 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014725 if (WXS_IS_ANY_SIMPLE_TYPE(baseType) &&
14726 (WXS_IS_LIST(type) || WXS_IS_UNION(type))) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000014727 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014728 }
14729 /*
14730 * 2.2.4 B's {variety} is union and D is validly derived from a type
14731 * definition in B's {member type definitions} given the subset, as
Daniel Veillard01fa6152004-06-29 17:04:39 +000014732 * defined by this constraint.
14733 *
14734 * NOTE: This seems not to involve built-in types, since there is no
14735 * built-in Union Simple Type.
14736 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014737 if (WXS_IS_UNION(baseType)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000014738 xmlSchemaTypeLinkPtr cur;
14739
14740 cur = baseType->memberTypes;
14741 while (cur != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014742 if (WXS_IS_TYPE_NOT_FIXED(cur->type))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014743 if (xmlSchemaTypeFixup(cur->type, actxt) == -1)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014744 return(-1);
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000014745 if (xmlSchemaCheckCOSSTDerivedOK(actxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014746 type, cur->type, subset) == 0)
14747 {
14748 /*
14749 * It just has to be validly derived from at least one
14750 * member-type.
14751 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000014752 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014753 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000014754 cur = cur->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014755 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000014756 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000014757 return (XML_SCHEMAP_COS_ST_DERIVED_OK_2_2);
14758}
14759
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014760/**
14761 * xmlSchemaCheckTypeDefCircularInternal:
14762 * @pctxt: the schema parser context
14763 * @ctxtType: the type definition
14764 * @ancestor: an ancestor of @ctxtType
14765 *
14766 * Checks st-props-correct (2) + ct-props-correct (3).
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014767 * Circular type definitions are not allowed.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014768 *
14769 * Returns XML_SCHEMAP_ST_PROPS_CORRECT_2 if the given type is
14770 * circular, 0 otherwise.
14771 */
14772static int
14773xmlSchemaCheckTypeDefCircularInternal(xmlSchemaParserCtxtPtr pctxt,
14774 xmlSchemaTypePtr ctxtType,
14775 xmlSchemaTypePtr ancestor)
14776{
14777 int ret;
14778
14779 if ((ancestor == NULL) || (ancestor->type == XML_SCHEMA_TYPE_BASIC))
14780 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014781
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014782 if (ctxtType == ancestor) {
14783 xmlSchemaPCustomErr(pctxt,
14784 XML_SCHEMAP_ST_PROPS_CORRECT_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014785 WXS_BASIC_CAST ctxtType, WXS_ITEM_NODE(ctxtType),
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014786 "The definition is circular", NULL);
14787 return (XML_SCHEMAP_ST_PROPS_CORRECT_2);
14788 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014789 if (ancestor->flags & XML_SCHEMAS_TYPE_MARKED) {
14790 /*
14791 * Avoid inifinite recursion on circular types not yet checked.
14792 */
14793 return (0);
14794 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014795 ancestor->flags |= XML_SCHEMAS_TYPE_MARKED;
14796 ret = xmlSchemaCheckTypeDefCircularInternal(pctxt, ctxtType,
14797 ancestor->baseType);
14798 ancestor->flags ^= XML_SCHEMAS_TYPE_MARKED;
14799 return (ret);
14800}
14801
14802/**
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014803 * xmlSchemaCheckTypeDefCircular:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014804 * @item: the complex/simple type definition
14805 * @ctxt: the parser context
14806 * @name: the name
14807 *
14808 * Checks for circular type definitions.
14809 */
14810static void
14811xmlSchemaCheckTypeDefCircular(xmlSchemaTypePtr item,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014812 xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014813{
14814 if ((item == NULL) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014815 (item->type == XML_SCHEMA_TYPE_BASIC) ||
14816 (item->baseType == NULL))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014817 return;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014818 xmlSchemaCheckTypeDefCircularInternal(ctxt, item,
14819 item->baseType);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000014820}
Daniel Veillard01fa6152004-06-29 17:04:39 +000014821
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014822/*
14823* Simple Type Definition Representation OK (src-simple-type) 4
14824*
14825* "4 Circular union type definition is disallowed. That is, if the
14826* <union> alternative is chosen, there must not be any entries in the
14827* memberTypes [attribute] at any depth which resolve to the component
14828* corresponding to the <simpleType>."
14829*
14830* Note that this should work on the *representation* of a component,
14831* thus assumes any union types in the member types not being yet
14832* substituted. At this stage we need the variety of the types
14833* to be already computed.
14834*/
14835static int
14836xmlSchemaCheckUnionTypeDefCircularRecur(xmlSchemaParserCtxtPtr pctxt,
14837 xmlSchemaTypePtr ctxType,
14838 xmlSchemaTypeLinkPtr members)
14839{
14840 xmlSchemaTypeLinkPtr member;
14841 xmlSchemaTypePtr memberType;
14842
14843 member = members;
14844 while (member != NULL) {
14845 memberType = member->type;
14846 while ((memberType != NULL) &&
14847 (memberType->type != XML_SCHEMA_TYPE_BASIC)) {
14848 if (memberType == ctxType) {
14849 xmlSchemaPCustomErr(pctxt,
14850 XML_SCHEMAP_SRC_SIMPLE_TYPE_4,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014851 WXS_BASIC_CAST ctxType, NULL,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014852 "The union type definition is circular", NULL);
14853 return (XML_SCHEMAP_SRC_SIMPLE_TYPE_4);
14854 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014855 if ((WXS_IS_UNION(memberType)) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014856 ((memberType->flags & XML_SCHEMAS_TYPE_MARKED) == 0))
14857 {
14858 int res;
14859 memberType->flags |= XML_SCHEMAS_TYPE_MARKED;
14860 res = xmlSchemaCheckUnionTypeDefCircularRecur(pctxt,
14861 ctxType,
14862 xmlSchemaGetUnionSimpleTypeMemberTypes(memberType));
14863 memberType->flags ^= XML_SCHEMAS_TYPE_MARKED;
14864 if (res != 0)
14865 return(res);
14866 }
14867 memberType = memberType->baseType;
14868 }
14869 member = member->next;
14870 }
14871 return(0);
14872}
14873
14874static int
14875xmlSchemaCheckUnionTypeDefCircular(xmlSchemaParserCtxtPtr pctxt,
14876 xmlSchemaTypePtr type)
14877{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014878 if (! WXS_IS_UNION(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014879 return(0);
14880 return(xmlSchemaCheckUnionTypeDefCircularRecur(pctxt, type,
14881 type->memberTypes));
14882}
14883
Daniel Veillard01fa6152004-06-29 17:04:39 +000014884/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014885 * xmlSchemaResolveTypeReferences:
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014886 * @item: the complex/simple type definition
14887 * @ctxt: the parser context
14888 * @name: the name
14889 *
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014890 * Resolvese type definition references
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014891 */
14892static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000014893xmlSchemaResolveTypeReferences(xmlSchemaTypePtr typeDef,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014894 xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014895{
14896 if (typeDef == NULL)
14897 return;
14898
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014899 /*
14900 * Resolve the base type.
14901 */
14902 if (typeDef->baseType == NULL) {
14903 typeDef->baseType = xmlSchemaGetType(ctxt->schema,
14904 typeDef->base, typeDef->baseNs);
14905 if (typeDef->baseType == NULL) {
14906 xmlSchemaPResCompAttrErr(ctxt,
14907 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014908 WXS_BASIC_CAST typeDef, typeDef->node,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000014909 "base", typeDef->base, typeDef->baseNs,
14910 XML_SCHEMA_TYPE_SIMPLE, NULL);
14911 return;
14912 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014913 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014914 if (WXS_IS_SIMPLE(typeDef)) {
14915 if (WXS_IS_UNION(typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014916 /*
14917 * Resolve the memberTypes.
14918 */
14919 xmlSchemaResolveUnionMemberTypes(ctxt, typeDef);
14920 return;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014921 } else if (WXS_IS_LIST(typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014922 /*
14923 * Resolve the itemType.
14924 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014925 if ((typeDef->subtypes == NULL) && (typeDef->base != NULL)) {
14926
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014927 typeDef->subtypes = xmlSchemaGetType(ctxt->schema,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014928 typeDef->base, typeDef->baseNs);
14929
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014930 if ((typeDef->subtypes == NULL) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014931 (! WXS_IS_SIMPLE(typeDef->subtypes)))
14932 {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014933 typeDef->subtypes = NULL;
14934 xmlSchemaPResCompAttrErr(ctxt,
14935 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014936 WXS_BASIC_CAST typeDef, typeDef->node,
14937 "itemType", typeDef->base, typeDef->baseNs,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000014938 XML_SCHEMA_TYPE_SIMPLE, NULL);
14939 }
14940 }
14941 return;
14942 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000014943 }
14944 /*
14945 * The ball of letters below means, that if we have a particle
14946 * which has a QName-helper component as its {term}, we want
14947 * to resolve it...
14948 */
14949 else if ((WXS_TYPE_CONTENTTYPE(typeDef) != NULL) &&
14950 ((WXS_TYPE_CONTENTTYPE(typeDef))->type ==
14951 XML_SCHEMA_TYPE_PARTICLE) &&
14952 (WXS_TYPE_PARTICLE_TERM(typeDef) != NULL) &&
14953 ((WXS_TYPE_PARTICLE_TERM(typeDef))->type ==
14954 XML_SCHEMA_EXTRA_QNAMEREF))
14955 {
14956 xmlSchemaQNameRefPtr ref =
14957 WXS_QNAME_CAST WXS_TYPE_PARTICLE_TERM(typeDef);
14958 xmlSchemaModelGroupDefPtr groupDef;
14959
14960 /*
14961 * URGENT TODO: Test this.
14962 */
14963 WXS_TYPE_PARTICLE_TERM(typeDef) = NULL;
14964 /*
14965 * Resolve the MG definition reference.
14966 */
14967 groupDef =
14968 WXS_MODEL_GROUPDEF_CAST xmlSchemaGetNamedComponent(ctxt->schema,
14969 ref->itemType, ref->name, ref->targetNamespace);
14970 if (groupDef == NULL) {
14971 xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE,
14972 NULL, WXS_ITEM_NODE(WXS_TYPE_PARTICLE(typeDef)),
14973 "ref", ref->name, ref->targetNamespace, ref->itemType,
14974 NULL);
14975 /* Remove the particle. */
14976 WXS_TYPE_CONTENTTYPE(typeDef) = NULL;
14977 } else if (WXS_MODELGROUPDEF_MODEL(groupDef) == NULL)
14978 /* Remove the particle. */
14979 WXS_TYPE_CONTENTTYPE(typeDef) = NULL;
14980 else {
14981 /*
14982 * Assign the MG definition's {model group} to the
14983 * particle's {term}.
14984 */
14985 WXS_TYPE_PARTICLE_TERM(typeDef) = WXS_MODELGROUPDEF_MODEL(groupDef);
14986
14987 if (WXS_MODELGROUPDEF_MODEL(groupDef)->type == XML_SCHEMA_TYPE_ALL) {
14988 /*
14989 * SPEC cos-all-limited (1.2)
14990 * "1.2 the {term} property of a particle with
14991 * {max occurs}=1 which is part of a pair which constitutes
14992 * the {content type} of a complex type definition."
14993 */
14994 if ((WXS_TYPE_PARTICLE(typeDef))->maxOccurs != 1) {
14995 xmlSchemaCustomErr(ACTXT_CAST ctxt,
14996 /* TODO: error code */
14997 XML_SCHEMAP_COS_ALL_LIMITED,
14998 WXS_ITEM_NODE(WXS_TYPE_PARTICLE(typeDef)), NULL,
14999 "The particle's {max occurs} must be 1, since the "
15000 "reference resolves to an 'all' model group",
15001 NULL, NULL);
15002 }
15003 }
15004 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015005 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015006}
15007
15008
15009
15010/**
Daniel Veillard01fa6152004-06-29 17:04:39 +000015011 * xmlSchemaCheckSTPropsCorrect:
15012 * @ctxt: the schema parser context
15013 * @type: the simple type definition
15014 *
15015 * Checks st-props-correct.
15016 *
15017 * Returns 0 if the properties are correct,
15018 * if not, a positive error code and -1 on internal
15019 * errors.
15020 */
15021static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015022xmlSchemaCheckSTPropsCorrect(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015023 xmlSchemaTypePtr type)
15024{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015025 xmlSchemaTypePtr baseType = type->baseType;
Daniel Veillardc0826a72004-08-10 14:17:33 +000015026 xmlChar *str = NULL;
Daniel Veillard01fa6152004-06-29 17:04:39 +000015027
Daniel Veillardc0826a72004-08-10 14:17:33 +000015028 /* STATE: error funcs converted. */
Daniel Veillard01fa6152004-06-29 17:04:39 +000015029 /*
15030 * Schema Component Constraint: Simple Type Definition Properties Correct
15031 *
15032 * NOTE: This is somehow redundant, since we actually built a simple type
15033 * to have all the needed information; this acts as an self test.
15034 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015035 /* Base type: If the datatype has been ·derived· by ·restriction·
15036 * then the Simple Type Definition component from which it is ·derived·,
15037 * otherwise the Simple Type Definition for anySimpleType (§4.1.6).
Daniel Veillard01fa6152004-06-29 17:04:39 +000015038 */
15039 if (baseType == NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015040 /*
15041 * TODO: Think about: "modulo the impact of Missing
15042 * Sub-components (§5.3)."
15043 */
Daniel Veillardc0826a72004-08-10 14:17:33 +000015044 xmlSchemaPCustomErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015045 XML_SCHEMAP_ST_PROPS_CORRECT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015046 WXS_BASIC_CAST type, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015047 "No base type existent", NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015048 return (XML_SCHEMAP_ST_PROPS_CORRECT_1);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015049
Daniel Veillard01fa6152004-06-29 17:04:39 +000015050 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015051 if (! WXS_IS_SIMPLE(baseType)) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015052 xmlSchemaPCustomErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015053 XML_SCHEMAP_ST_PROPS_CORRECT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015054 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015055 "The base type '%s' is not a simple type",
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015056 xmlSchemaGetComponentQName(&str, baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015057 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015058 return (XML_SCHEMAP_ST_PROPS_CORRECT_1);
15059 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015060 if ( (WXS_IS_LIST(type) || WXS_IS_UNION(type)) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015061 (WXS_IS_RESTRICTION(type) == 0) &&
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015062 (! WXS_IS_ANY_SIMPLE_TYPE(baseType))) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015063 xmlSchemaPCustomErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015064 XML_SCHEMAP_ST_PROPS_CORRECT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015065 WXS_BASIC_CAST type, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015066 "A type, derived by list or union, must have"
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015067 "the simple ur-type definition as base type, not '%s'",
15068 xmlSchemaGetComponentQName(&str, baseType));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015069 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015070 return (XML_SCHEMAP_ST_PROPS_CORRECT_1);
15071 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015072 /*
15073 * Variety: One of {atomic, list, union}.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015074 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015075 if ((! WXS_IS_ATOMIC(type)) && (! WXS_IS_UNION(type)) &&
15076 (! WXS_IS_LIST(type))) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015077 xmlSchemaPCustomErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015078 XML_SCHEMAP_ST_PROPS_CORRECT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015079 WXS_BASIC_CAST type, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015080 "The variety is absent", NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015081 return (XML_SCHEMAP_ST_PROPS_CORRECT_1);
15082 }
Daniel Veillardc0826a72004-08-10 14:17:33 +000015083 /* TODO: Finish this. Hmm, is this finished? */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015084
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015085 /*
15086 * 3 The {final} of the {base type definition} must not contain restriction.
15087 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015088 if (xmlSchemaTypeFinalContains(baseType,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015089 XML_SCHEMAS_TYPE_FINAL_RESTRICTION)) {
15090 xmlSchemaPCustomErr(ctxt,
15091 XML_SCHEMAP_ST_PROPS_CORRECT_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015092 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015093 "The 'final' of its base type '%s' must not contain "
15094 "'restriction'",
15095 xmlSchemaGetComponentQName(&str, baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015096 FREE_AND_NULL(str)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015097 return (XML_SCHEMAP_ST_PROPS_CORRECT_3);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015098 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015099
15100 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015101 * 2 All simple type definitions must be derived ultimately from the ·simple
15102 * ur-type definition (so· circular definitions are disallowed). That is, it
15103 * must be possible to reach a built-in primitive datatype or the ·simple
15104 * ur-type definition· by repeatedly following the {base type definition}.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015105 *
15106 * NOTE: this is done in xmlSchemaCheckTypeDefCircular().
Daniel Veillard01fa6152004-06-29 17:04:39 +000015107 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000015108 return (0);
15109}
15110
15111/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015112 * xmlSchemaCheckCOSSTRestricts:
Daniel Veillard01fa6152004-06-29 17:04:39 +000015113 * @ctxt: the schema parser context
15114 * @type: the simple type definition
15115 *
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015116 * Schema Component Constraint:
15117 * Derivation Valid (Restriction, Simple) (cos-st-restricts)
15118
15119 * Checks if the given @type (simpleType) is derived validly by restriction.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015120 * STATUS:
Daniel Veillard01fa6152004-06-29 17:04:39 +000015121 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015122 * Returns -1 on internal errors, 0 if the type is validly derived,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015123 * a positive error code otherwise.
15124 */
15125static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015126xmlSchemaCheckCOSSTRestricts(xmlSchemaParserCtxtPtr pctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015127 xmlSchemaTypePtr type)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015128{
Daniel Veillardc0826a72004-08-10 14:17:33 +000015129 xmlChar *str = NULL;
15130
Daniel Veillard01fa6152004-06-29 17:04:39 +000015131 if (type->type != XML_SCHEMA_TYPE_SIMPLE) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015132 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15133 "given type is not a user-derived simpleType");
Daniel Veillard01fa6152004-06-29 17:04:39 +000015134 return (-1);
15135 }
15136
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015137 if (WXS_IS_ATOMIC(type)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015138 xmlSchemaTypePtr primitive;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015139 /*
15140 * 1.1 The {base type definition} must be an atomic simple
Daniel Veillard01fa6152004-06-29 17:04:39 +000015141 * type definition or a built-in primitive datatype.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015142 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015143 if (! WXS_IS_ATOMIC(type->baseType)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015144 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015145 XML_SCHEMAP_COS_ST_RESTRICTS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015146 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015147 "The base type '%s' is not an atomic simple type",
15148 xmlSchemaGetComponentQName(&str, type->baseType));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015149 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015150 return (XML_SCHEMAP_COS_ST_RESTRICTS_1_1);
15151 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015152 /* 1.2 The {final} of the {base type definition} must not contain
Daniel Veillard01fa6152004-06-29 17:04:39 +000015153 * restriction.
15154 */
Daniel Veillardc0826a72004-08-10 14:17:33 +000015155 /* OPTIMIZE TODO : This is already done in xmlSchemaCheckStPropsCorrect */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015156 if (xmlSchemaTypeFinalContains(type->baseType,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015157 XML_SCHEMAS_TYPE_FINAL_RESTRICTION)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015158 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015159 XML_SCHEMAP_COS_ST_RESTRICTS_1_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015160 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015161 "The final of its base type '%s' must not contain 'restriction'",
15162 xmlSchemaGetComponentQName(&str, type->baseType));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015163 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015164 return (XML_SCHEMAP_COS_ST_RESTRICTS_1_2);
15165 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015166
15167 /*
Daniel Veillard01fa6152004-06-29 17:04:39 +000015168 * 1.3.1 DF must be an allowed constraining facet for the {primitive
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015169 * type definition}, as specified in the appropriate subsection of 3.2
Daniel Veillard01fa6152004-06-29 17:04:39 +000015170 * Primitive datatypes.
15171 */
15172 if (type->facets != NULL) {
15173 xmlSchemaFacetPtr facet;
15174 int ok = 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015175
Daniel Veillard01fa6152004-06-29 17:04:39 +000015176 primitive = xmlSchemaGetPrimitiveType(type);
15177 if (primitive == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015178 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15179 "failed to get primitive type");
Daniel Veillard01fa6152004-06-29 17:04:39 +000015180 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015181 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015182 facet = type->facets;
15183 do {
15184 if (xmlSchemaIsBuiltInTypeFacet(primitive, facet->type) == 0) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015185 ok = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015186 xmlSchemaPIllegalFacetAtomicErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015187 XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015188 type, primitive, facet);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015189 }
15190 facet = facet->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015191 } while (facet != NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015192 if (ok == 0)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015193 return (XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015194 }
15195 /*
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015196 * SPEC (1.3.2) "If there is a facet of the same kind in the {facets}
15197 * of the {base type definition} (call this BF),then the DF's {value}
15198 * must be a valid restriction of BF's {value} as defined in
15199 * [XML Schemas: Datatypes]."
15200 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015201 * NOTE (1.3.2) Facet derivation constraints are currently handled in
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015202 * xmlSchemaDeriveAndValidateFacets()
Daniel Veillard01fa6152004-06-29 17:04:39 +000015203 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015204 } else if (WXS_IS_LIST(type)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015205 xmlSchemaTypePtr itemType = NULL;
15206
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015207 itemType = type->subtypes;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015208 if ((itemType == NULL) || (! WXS_IS_SIMPLE(itemType))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015209 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15210 "failed to evaluate the item type");
Daniel Veillard01fa6152004-06-29 17:04:39 +000015211 return (-1);
15212 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015213 if (WXS_IS_TYPE_NOT_FIXED(itemType))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015214 xmlSchemaTypeFixup(itemType, ACTXT_CAST pctxt);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015215 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015216 * 2.1 The {item type definition} must have a {variety} of atomic or
15217 * union (in which case all the {member type definitions}
Daniel Veillard01fa6152004-06-29 17:04:39 +000015218 * must be atomic).
15219 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015220 if ((! WXS_IS_ATOMIC(itemType)) &&
15221 (! WXS_IS_UNION(itemType))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015222 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015223 XML_SCHEMAP_COS_ST_RESTRICTS_2_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015224 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015225 "The item type '%s' does not have a variety of atomic or union",
15226 xmlSchemaGetComponentQName(&str, itemType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015227 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015228 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015229 } else if (WXS_IS_UNION(itemType)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015230 xmlSchemaTypeLinkPtr member;
15231
15232 member = itemType->memberTypes;
15233 while (member != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015234 if (! WXS_IS_ATOMIC(member->type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015235 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015236 XML_SCHEMAP_COS_ST_RESTRICTS_2_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015237 WXS_BASIC_CAST type, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015238 "The item type is a union type, but the "
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015239 "member type '%s' of this item type is not atomic",
15240 xmlSchemaGetComponentQName(&str, member->type));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015241 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015242 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_1);
15243 }
15244 member = member->next;
15245 }
15246 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015247
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015248 if (WXS_IS_ANY_SIMPLE_TYPE(type->baseType)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015249 xmlSchemaFacetPtr facet;
15250 /*
15251 * This is the case if we have: <simpleType><list ..
15252 */
15253 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015254 * 2.3.1
15255 * 2.3.1.1 The {final} of the {item type definition} must not
Daniel Veillard01fa6152004-06-29 17:04:39 +000015256 * contain list.
15257 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015258 if (xmlSchemaTypeFinalContains(itemType,
15259 XML_SCHEMAS_TYPE_FINAL_LIST)) {
15260 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015261 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015262 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015263 "The final of its item type '%s' must not contain 'list'",
15264 xmlSchemaGetComponentQName(&str, itemType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015265 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015266 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1);
15267 }
15268 /*
15269 * 2.3.1.2 The {facets} must only contain the whiteSpace
15270 * facet component.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015271 * OPTIMIZE TODO: the S4S already disallows any facet
15272 * to be specified.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015273 */
15274 if (type->facets != NULL) {
15275 facet = type->facets;
15276 do {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015277 if (facet->type != XML_SCHEMA_FACET_WHITESPACE) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015278 xmlSchemaPIllegalFacetListUnionErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015279 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015280 type, facet);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015281 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2);
15282 }
15283 facet = facet->next;
15284 } while (facet != NULL);
15285 }
15286 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015287 * MAYBE TODO: (Hmm, not really) Datatypes states:
15288 * A ·list· datatype can be ·derived· from an ·atomic· datatype
15289 * whose ·lexical space· allows space (such as string or anyURI)or
15290 * a ·union· datatype any of whose {member type definitions}'s
Daniel Veillard01fa6152004-06-29 17:04:39 +000015291 * ·lexical space· allows space.
15292 */
15293 } else {
15294 /*
15295 * This is the case if we have: <simpleType><restriction ...
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015296 * I.e. the variety of "list" is inherited.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015297 */
15298 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015299 * 2.3.2
Daniel Veillard01fa6152004-06-29 17:04:39 +000015300 * 2.3.2.1 The {base type definition} must have a {variety} of list.
15301 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015302 if (! WXS_IS_LIST(type->baseType)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015303 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015304 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015305 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015306 "The base type '%s' must be a list type",
15307 xmlSchemaGetComponentQName(&str, type->baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015308 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015309 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1);
15310 }
15311 /*
15312 * 2.3.2.2 The {final} of the {base type definition} must not
15313 * contain restriction.
15314 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015315 if (xmlSchemaTypeFinalContains(type->baseType,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015316 XML_SCHEMAS_TYPE_FINAL_RESTRICTION)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015317 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015318 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015319 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015320 "The 'final' of the base type '%s' must not contain 'restriction'",
15321 xmlSchemaGetComponentQName(&str, type->baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015322 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015323 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2);
15324 }
15325 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015326 * 2.3.2.3 The {item type definition} must be validly derived
Daniel Veillard01fa6152004-06-29 17:04:39 +000015327 * from the {base type definition}'s {item type definition} given
15328 * the empty set, as defined in Type Derivation OK (Simple) (§3.14.6).
15329 */
15330 {
15331 xmlSchemaTypePtr baseItemType;
15332
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015333 baseItemType = type->baseType->subtypes;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015334 if ((baseItemType == NULL) || (! WXS_IS_SIMPLE(baseItemType))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015335 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15336 "failed to eval the item type of a base type");
Daniel Veillard01fa6152004-06-29 17:04:39 +000015337 return (-1);
15338 }
15339 if ((itemType != baseItemType) &&
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015340 (xmlSchemaCheckCOSSTDerivedOK(ACTXT_CAST pctxt, itemType,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015341 baseItemType, 0) != 0)) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015342 xmlChar *strBIT = NULL, *strBT = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015343 xmlSchemaPCustomErrExt(pctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015344 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015345 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015346 "The item type '%s' is not validly derived from "
15347 "the item type '%s' of the base type '%s'",
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015348 xmlSchemaGetComponentQName(&str, itemType),
15349 xmlSchemaGetComponentQName(&strBIT, baseItemType),
15350 xmlSchemaGetComponentQName(&strBT, type->baseType));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015351
15352 FREE_AND_NULL(str)
15353 FREE_AND_NULL(strBIT)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015354 FREE_AND_NULL(strBT)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015355 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3);
15356 }
15357 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015358
Daniel Veillard01fa6152004-06-29 17:04:39 +000015359 if (type->facets != NULL) {
15360 xmlSchemaFacetPtr facet;
15361 int ok = 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015362 /*
15363 * 2.3.2.4 Only length, minLength, maxLength, whiteSpace, pattern
Daniel Veillard01fa6152004-06-29 17:04:39 +000015364 * and enumeration facet components are allowed among the {facets}.
15365 */
15366 facet = type->facets;
15367 do {
15368 switch (facet->type) {
15369 case XML_SCHEMA_FACET_LENGTH:
15370 case XML_SCHEMA_FACET_MINLENGTH:
15371 case XML_SCHEMA_FACET_MAXLENGTH:
15372 case XML_SCHEMA_FACET_WHITESPACE:
15373 /*
15374 * TODO: 2.5.1.2 List datatypes
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015375 * The value of ·whiteSpace· is fixed to the value collapse.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015376 */
15377 case XML_SCHEMA_FACET_PATTERN:
15378 case XML_SCHEMA_FACET_ENUMERATION:
15379 break;
15380 default: {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015381 xmlSchemaPIllegalFacetListUnionErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015382 XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015383 type, facet);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015384 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015385 * We could return, but it's nicer to report all
Daniel Veillard01fa6152004-06-29 17:04:39 +000015386 * invalid facets.
15387 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015388 ok = 0;
Daniel Veillard01fa6152004-06-29 17:04:39 +000015389 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015390 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015391 facet = facet->next;
15392 } while (facet != NULL);
15393 if (ok == 0)
15394 return (XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4);
15395 /*
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015396 * SPEC (2.3.2.5) (same as 1.3.2)
15397 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015398 * NOTE (2.3.2.5) This is currently done in
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015399 * xmlSchemaDeriveAndValidateFacets()
Daniel Veillard01fa6152004-06-29 17:04:39 +000015400 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015401 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015402 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015403 } else if (WXS_IS_UNION(type)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015404 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015405 * 3.1 The {member type definitions} must all have {variety} of
Daniel Veillard01fa6152004-06-29 17:04:39 +000015406 * atomic or list.
15407 */
15408 xmlSchemaTypeLinkPtr member;
15409
15410 member = type->memberTypes;
15411 while (member != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015412 if (WXS_IS_TYPE_NOT_FIXED(member->type))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015413 xmlSchemaTypeFixup(member->type, ACTXT_CAST pctxt);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015414
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015415 if ((! WXS_IS_ATOMIC(member->type)) &&
15416 (! WXS_IS_LIST(member->type))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015417 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015418 XML_SCHEMAP_COS_ST_RESTRICTS_3_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015419 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015420 "The member type '%s' is neither an atomic, nor a list type",
15421 xmlSchemaGetComponentQName(&str, member->type));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015422 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015423 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_1);
15424 }
15425 member = member->next;
15426 }
15427 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015428 * 3.3.1 If the {base type definition} is the ·simple ur-type
15429 * definition·
Daniel Veillard01fa6152004-06-29 17:04:39 +000015430 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015431 if (type->baseType->builtInType == XML_SCHEMAS_ANYSIMPLETYPE) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015432 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015433 * 3.3.1.1 All of the {member type definitions} must have a
Daniel Veillard01fa6152004-06-29 17:04:39 +000015434 * {final} which does not contain union.
15435 */
15436 member = type->memberTypes;
15437 while (member != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015438 if (xmlSchemaTypeFinalContains(member->type,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015439 XML_SCHEMAS_TYPE_FINAL_UNION)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015440 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015441 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015442 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015443 "The 'final' of member type '%s' contains 'union'",
15444 xmlSchemaGetComponentQName(&str, member->type));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015445 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015446 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1);
15447 }
15448 member = member->next;
15449 }
15450 /*
15451 * 3.3.1.2 The {facets} must be empty.
15452 */
15453 if (type->facetSet != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015454 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015455 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015456 WXS_BASIC_CAST type, NULL,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015457 "No facets allowed", NULL);
Daniel Veillard01fa6152004-06-29 17:04:39 +000015458 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2);
15459 }
15460 } else {
15461 /*
15462 * 3.3.2.1 The {base type definition} must have a {variety} of union.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015463 * I.e. the variety of "list" is inherited.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015464 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015465 if (! WXS_IS_UNION(type->baseType)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015466 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015467 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015468 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015469 "The base type '%s' is not a union type",
15470 xmlSchemaGetComponentQName(&str, type->baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015471 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015472 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1);
15473 }
15474 /*
15475 * 3.3.2.2 The {final} of the {base type definition} must not contain restriction.
15476 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015477 if (xmlSchemaTypeFinalContains(type->baseType,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015478 XML_SCHEMAS_TYPE_FINAL_RESTRICTION)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015479 xmlSchemaPCustomErr(pctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015480 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015481 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015482 "The 'final' of its base type '%s' must not contain 'restriction'",
15483 xmlSchemaGetComponentQName(&str, type->baseType));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015484 FREE_AND_NULL(str)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015485 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2);
15486 }
15487 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015488 * 3.3.2.3 The {member type definitions}, in order, must be validly
15489 * derived from the corresponding type definitions in the {base
15490 * type definition}'s {member type definitions} given the empty set,
Daniel Veillard01fa6152004-06-29 17:04:39 +000015491 * as defined in Type Derivation OK (Simple) (§3.14.6).
15492 */
15493 {
15494 xmlSchemaTypeLinkPtr baseMember;
15495
15496 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015497 * OPTIMIZE: if the type is restricting, it has no local defined
15498 * member types and inherits the member types of the base type;
Daniel Veillard01fa6152004-06-29 17:04:39 +000015499 * thus a check for equality can be skipped.
15500 */
15501 /*
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000015502 * Even worse: I cannot see a scenario where a restricting
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015503 * union simple type can have other member types as the member
Daniel Veillard01fa6152004-06-29 17:04:39 +000015504 * types of it's base type. This check seems not necessary with
15505 * respect to the derivation process in libxml2.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000015506 * But necessary if constructing types with an API.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015507 */
15508 if (type->memberTypes != NULL) {
15509 member = type->memberTypes;
15510 baseMember = xmlSchemaGetUnionSimpleTypeMemberTypes(type->baseType);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015511 if ((member == NULL) && (baseMember != NULL)) {
15512 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15513 "different number of member types in base");
15514 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015515 while (member != NULL) {
15516 if (baseMember == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015517 PERROR_INT("xmlSchemaCheckCOSSTRestricts",
15518 "different number of member types in base");
Daniel Veillard14b56432006-03-09 18:41:40 +000015519 } else if ((member->type != baseMember->type) &&
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015520 (xmlSchemaCheckCOSSTDerivedOK(ACTXT_CAST pctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015521 member->type, baseMember->type, 0) != 0)) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000015522 xmlChar *strBMT = NULL, *strBT = NULL;
15523
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015524 xmlSchemaPCustomErrExt(pctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015525 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015526 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015527 "The member type %s is not validly "
15528 "derived from its corresponding member "
15529 "type %s of the base type %s",
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015530 xmlSchemaGetComponentQName(&str, member->type),
15531 xmlSchemaGetComponentQName(&strBMT, baseMember->type),
15532 xmlSchemaGetComponentQName(&strBT, type->baseType));
Daniel Veillardc0826a72004-08-10 14:17:33 +000015533 FREE_AND_NULL(str)
15534 FREE_AND_NULL(strBMT)
15535 FREE_AND_NULL(strBT)
Daniel Veillard01fa6152004-06-29 17:04:39 +000015536 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015537 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015538 member = member->next;
15539 baseMember = baseMember->next;
15540 }
15541 }
15542 }
15543 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015544 * 3.3.2.4 Only pattern and enumeration facet components are
Daniel Veillard01fa6152004-06-29 17:04:39 +000015545 * allowed among the {facets}.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015546 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000015547 if (type->facets != NULL) {
15548 xmlSchemaFacetPtr facet;
15549 int ok = 1;
15550
15551 facet = type->facets;
15552 do {
15553 if ((facet->type != XML_SCHEMA_FACET_PATTERN) &&
15554 (facet->type != XML_SCHEMA_FACET_ENUMERATION)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015555 xmlSchemaPIllegalFacetListUnionErr(pctxt,
Daniel Veillardc0826a72004-08-10 14:17:33 +000015556 XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015557 type, facet);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015558 ok = 0;
15559 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015560 facet = facet->next;
15561 } while (facet != NULL);
15562 if (ok == 0)
15563 return (XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015564
Daniel Veillard01fa6152004-06-29 17:04:39 +000015565 }
15566 /*
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015567 * SPEC (3.3.2.5) (same as 1.3.2)
15568 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015569 * NOTE (3.3.2.5) This is currently done in
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015570 * xmlSchemaDeriveAndValidateFacets()
Daniel Veillard01fa6152004-06-29 17:04:39 +000015571 */
15572 }
15573 }
15574
15575 return (0);
15576}
15577
15578/**
15579 * xmlSchemaCheckSRCSimpleType:
15580 * @ctxt: the schema parser context
15581 * @type: the simple type definition
15582 *
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015583 * Checks crc-simple-type constraints.
Daniel Veillard01fa6152004-06-29 17:04:39 +000015584 *
15585 * Returns 0 if the constraints are satisfied,
15586 * if not a positive error code and -1 on internal
15587 * errors.
15588 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015589#if 0
Daniel Veillard01fa6152004-06-29 17:04:39 +000015590static int
15591xmlSchemaCheckSRCSimpleType(xmlSchemaParserCtxtPtr ctxt,
15592 xmlSchemaTypePtr type)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015593{
15594 /*
Daniel Veillard01fa6152004-06-29 17:04:39 +000015595 * src-simple-type.1 The corresponding simple type definition, if any,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015596 * must satisfy the conditions set out in Constraints on Simple Type
15597 * Definition Schema Components (§3.14.6).
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015598 */
15599 if (WXS_IS_RESTRICTION(type)) {
Daniel Veillard01fa6152004-06-29 17:04:39 +000015600 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015601 * src-simple-type.2 "If the <restriction> alternative is chosen,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015602 * either it must have a base [attribute] or a <simpleType> among its
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015603 * [children], but not both."
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015604 * NOTE: This is checked in the parse function of <restriction>.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015605 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015606 /*
15607 *
15608 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015609 } else if (WXS_IS_LIST(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015610 /* src-simple-type.3 "If the <list> alternative is chosen, either it must have
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015611 * an itemType [attribute] or a <simpleType> among its [children],
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015612 * but not both."
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015613 *
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015614 * NOTE: This is checked in the parse function of <list>.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015615 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015616 } else if (WXS_IS_UNION(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015617 /*
15618 * src-simple-type.4 is checked in xmlSchemaCheckUnionTypeDefCircular().
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015619 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000015620 }
Daniel Veillard01fa6152004-06-29 17:04:39 +000015621 return (0);
15622}
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015623#endif
Daniel Veillard01fa6152004-06-29 17:04:39 +000015624
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015625static int
15626xmlSchemaCreateVCtxtOnPCtxt(xmlSchemaParserCtxtPtr ctxt)
15627{
15628 if (ctxt->vctxt == NULL) {
15629 ctxt->vctxt = xmlSchemaNewValidCtxt(NULL);
15630 if (ctxt->vctxt == NULL) {
15631 xmlSchemaPErr(ctxt, NULL,
Kasimier T. Buchcikbea23542004-08-25 20:35:45 +000015632 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015633 "Internal error: xmlSchemaCreateVCtxtOnPCtxt, "
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015634 "failed to create a temp. validation context.\n",
15635 NULL, NULL);
15636 return (-1);
15637 }
15638 /* TODO: Pass user data. */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015639 xmlSchemaSetValidErrors(ctxt->vctxt,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000015640 ctxt->error, ctxt->warning, ctxt->errCtxt);
15641 xmlSchemaSetValidStructuredErrors(ctxt->vctxt,
15642 ctxt->serror, ctxt->errCtxt);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015643 }
15644 return (0);
15645}
15646
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015647static int
15648xmlSchemaVCheckCVCSimpleType(xmlSchemaAbstractCtxtPtr actxt,
15649 xmlNodePtr node,
15650 xmlSchemaTypePtr type,
15651 const xmlChar *value,
15652 xmlSchemaValPtr *retVal,
15653 int fireErrors,
15654 int normalize,
15655 int isNormalized);
15656
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015657/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015658 * xmlSchemaParseCheckCOSValidDefault:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015659 * @pctxt: the schema parser context
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015660 * @type: the simple type definition
15661 * @value: the default value
15662 * @node: an optional node (the holder of the value)
15663 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015664 * Schema Component Constraint: Element Default Valid (Immediate)
15665 * (cos-valid-default)
15666 * This will be used by the parser only. For the validator there's
15667 * an other version.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015668 *
15669 * Returns 0 if the constraints are satisfied,
15670 * if not, a positive error code and -1 on internal
15671 * errors.
15672 */
15673static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015674xmlSchemaParseCheckCOSValidDefault(xmlSchemaParserCtxtPtr pctxt,
15675 xmlNodePtr node,
15676 xmlSchemaTypePtr type,
15677 const xmlChar *value,
15678 xmlSchemaValPtr *val)
15679{
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015680 int ret = 0;
15681
15682 /*
15683 * cos-valid-default:
15684 * Schema Component Constraint: Element Default Valid (Immediate)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015685 * For a string to be a valid default with respect to a type
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015686 * definition the appropriate case among the following must be true:
15687 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015688 if WXS_IS_COMPLEX(type) {
William M. Brack2f2a6632004-08-20 23:09:47 +000015689 /*
15690 * Complex type.
15691 *
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015692 * SPEC (2.1) "its {content type} must be a simple type definition
15693 * or mixed."
15694 * SPEC (2.2.2) "If the {content type} is mixed, then the {content
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015695 * type}'s particle must be ·emptiable· as defined by
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015696 * Particle Emptiable (§3.9.6)."
William M. Brack2f2a6632004-08-20 23:09:47 +000015697 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015698 if ((! WXS_HAS_SIMPLE_CONTENT(type)) &&
15699 ((! WXS_HAS_MIXED_CONTENT(type)) || (! WXS_EMPTIABLE(type)))) {
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015700 /* NOTE that this covers (2.2.2) as well. */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015701 xmlSchemaPCustomErr(pctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015702 XML_SCHEMAP_COS_VALID_DEFAULT_2_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015703 WXS_BASIC_CAST type, type->node,
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015704 "For a string to be a valid default, the type definition "
15705 "must be a simple type or a complex type with mixed content "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015706 "and a particle emptiable", NULL);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015707 return(XML_SCHEMAP_COS_VALID_DEFAULT_2_1);
15708 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015709 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015710 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015711 * 1 If the type definition is a simple type definition, then the string
15712 * must be ·valid· with respect to that definition as defined by String
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015713 * Valid (§3.14.4).
15714 *
15715 * AND
15716 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015717 * 2.2.1 If the {content type} is a simple type definition, then the
15718 * string must be ·valid· with respect to that simple type definition
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015719 * as defined by String Valid (§3.14.4).
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015720 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015721 if (WXS_IS_SIMPLE(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015722 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST pctxt, node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015723 type, value, val, 1, 1, 0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015724 else if (WXS_HAS_SIMPLE_CONTENT(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015725 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST pctxt, node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015726 type->contentTypeDef, value, val, 1, 1, 0);
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015727 else
15728 return (ret);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015729
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015730 if (ret < 0) {
15731 PERROR_INT("xmlSchemaParseCheckCOSValidDefault",
15732 "calling xmlSchemaVCheckCVCSimpleType()");
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015733 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015734
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000015735 return (ret);
William M. Brack2f2a6632004-08-20 23:09:47 +000015736}
15737
15738/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015739 * xmlSchemaCheckCTPropsCorrect:
William M. Brack2f2a6632004-08-20 23:09:47 +000015740 * @ctxt: the schema parser context
15741 * @type: the complex type definition
15742 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015743 *.(4.6) Constraints on Complex Type Definition Schema Components
15744 * Schema Component Constraint:
15745 * Complex Type Definition Properties Correct (ct-props-correct)
15746 * STATUS: (seems) complete
William M. Brack2f2a6632004-08-20 23:09:47 +000015747 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015748 * Returns 0 if the constraints are satisfied, a positive
15749 * error code if not and -1 if an internal error occured.
William M. Brack2f2a6632004-08-20 23:09:47 +000015750 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015751static int
15752xmlSchemaCheckCTPropsCorrect(xmlSchemaParserCtxtPtr pctxt,
15753 xmlSchemaTypePtr type)
William M. Brack2f2a6632004-08-20 23:09:47 +000015754{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015755 /*
15756 * TODO: Correct the error code; XML_SCHEMAP_SRC_CT_1 is used temporarily.
15757 *
15758 * SPEC (1) "The values of the properties of a complex type definition must
15759 * be as described in the property tableau in The Complex Type Definition
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015760 * Schema Component (§3.4.1), modulo the impact of Missing
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015761 * Sub-components (§5.3)."
15762 */
15763 if ((type->baseType != NULL) &&
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015764 (WXS_IS_SIMPLE(type->baseType)) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015765 (WXS_IS_EXTENSION(type) == 0)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015766 /*
15767 * SPEC (2) "If the {base type definition} is a simple type definition,
15768 * the {derivation method} must be extension."
15769 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015770 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015771 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015772 NULL, WXS_BASIC_CAST type,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015773 "If the base type is a simple type, the derivation method must be "
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015774 "'extension'", NULL, NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015775 return (XML_SCHEMAP_SRC_CT_1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015776 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015777 /*
15778 * SPEC (3) "Circular definitions are disallowed, except for the ·ur-type
15779 * definition·. That is, it must be possible to reach the ·ur-type
15780 * definition by repeatedly following the {base type definition}."
15781 *
15782 * NOTE (3) is done in xmlSchemaCheckTypeDefCircular().
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015783 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015784 /*
15785 * NOTE that (4) and (5) need the following:
15786 * - attribute uses need to be already inherited (apply attr. prohibitions)
15787 * - attribute group references need to be expanded already
15788 * - simple types need to be typefixed already
15789 */
15790 if (type->attrUses &&
15791 (((xmlSchemaItemListPtr) type->attrUses)->nbItems > 1))
15792 {
15793 xmlSchemaItemListPtr uses = (xmlSchemaItemListPtr) type->attrUses;
15794 xmlSchemaAttributeUsePtr use, tmp;
15795 int i, j, hasId = 0;
15796
15797 for (i = uses->nbItems -1; i >= 0; i--) {
15798 use = uses->items[i];
15799
15800 /*
15801 * SPEC ct-props-correct
15802 * (4) "Two distinct attribute declarations in the
15803 * {attribute uses} must not have identical {name}s and
15804 * {target namespace}s."
15805 */
15806 if (i > 0) {
15807 for (j = i -1; j >= 0; j--) {
15808 tmp = uses->items[j];
15809 if ((WXS_ATTRUSE_DECL_NAME(use) ==
15810 WXS_ATTRUSE_DECL_NAME(tmp)) &&
15811 (WXS_ATTRUSE_DECL_TNS(use) ==
15812 WXS_ATTRUSE_DECL_TNS(tmp)))
15813 {
15814 xmlChar *str = NULL;
15815
15816 xmlSchemaCustomErr(ACTXT_CAST pctxt,
15817 XML_SCHEMAP_AG_PROPS_CORRECT,
15818 NULL, WXS_BASIC_CAST type,
15819 "Duplicate %s",
15820 xmlSchemaGetComponentDesignation(&str, use),
15821 NULL);
15822 FREE_AND_NULL(str);
15823 /*
15824 * Remove the duplicate.
15825 */
15826 if (xmlSchemaItemListRemove(uses, i) == -1)
15827 goto exit_failure;
15828 goto next_use;
15829 }
15830 }
15831 }
15832 /*
15833 * SPEC ct-props-correct
15834 * (5) "Two distinct attribute declarations in the
15835 * {attribute uses} must not have {type definition}s which
15836 * are or are derived from ID."
15837 */
15838 if (WXS_ATTRUSE_TYPEDEF(use) != NULL) {
15839 if (xmlSchemaIsDerivedFromBuiltInType(
15840 WXS_ATTRUSE_TYPEDEF(use), XML_SCHEMAS_ID))
15841 {
15842 if (hasId) {
15843 xmlChar *str = NULL;
15844
15845 xmlSchemaCustomErr(ACTXT_CAST pctxt,
15846 XML_SCHEMAP_AG_PROPS_CORRECT,
15847 NULL, WXS_BASIC_CAST type,
15848 "There must not exist more than one attribute "
15849 "declaration of type 'xs:ID' "
15850 "(or derived from 'xs:ID'). The %s violates this "
15851 "constraint",
15852 xmlSchemaGetComponentDesignation(&str, use),
15853 NULL);
15854 FREE_AND_NULL(str);
15855 if (xmlSchemaItemListRemove(uses, i) == -1)
15856 goto exit_failure;
15857 }
15858
15859 hasId = 1;
15860 }
15861 }
15862next_use: {}
15863 }
15864 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015865 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015866exit_failure:
15867 return(-1);
William M. Brack2f2a6632004-08-20 23:09:47 +000015868}
15869
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015870static int
15871xmlSchemaAreEqualTypes(xmlSchemaTypePtr typeA,
15872 xmlSchemaTypePtr typeB)
15873{
15874 /*
15875 * TODO: This should implement component-identity
15876 * in the future.
15877 */
15878 if ((typeA == NULL) || (typeB == NULL))
15879 return (0);
15880 return (typeA == typeB);
15881}
15882
15883/**
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000015884 * xmlSchemaCheckCOSCTDerivedOK:
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015885 * @ctxt: the schema parser context
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000015886 * @type: the to-be derived complex type definition
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015887 * @baseType: the base complex type definition
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000015888 * @set: the given set
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015889 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015890 * Schema Component Constraint:
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015891 * Type Derivation OK (Complex) (cos-ct-derived-ok)
15892 *
15893 * STATUS: completed
15894 *
15895 * Returns 0 if the constraints are satisfied, or 1
15896 * if not.
15897 */
15898static int
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015899xmlSchemaCheckCOSCTDerivedOK(xmlSchemaAbstractCtxtPtr actxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015900 xmlSchemaTypePtr type,
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015901 xmlSchemaTypePtr baseType,
15902 int set)
15903{
15904 int equal = xmlSchemaAreEqualTypes(type, baseType);
15905 /* TODO: Error codes. */
15906 /*
15907 * SPEC "For a complex type definition (call it D, for derived)
15908 * to be validly derived from a type definition (call this
15909 * B, for base) given a subset of {extension, restriction}
15910 * all of the following must be true:"
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015911 */
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015912 if (! equal) {
15913 /*
15914 * SPEC (1) "If B and D are not the same type definition, then the
15915 * {derivation method} of D must not be in the subset."
15916 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000015917 if (((set & SUBSET_EXTENSION) && (WXS_IS_EXTENSION(type))) ||
15918 ((set & SUBSET_RESTRICTION) && (WXS_IS_RESTRICTION(type))))
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015919 return (1);
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015920 } else {
15921 /*
15922 * SPEC (2.1) "B and D must be the same type definition."
15923 */
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015924 return (0);
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015925 }
15926 /*
15927 * SPEC (2.2) "B must be D's {base type definition}."
15928 */
15929 if (type->baseType == baseType)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015930 return (0);
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015931 /*
15932 * SPEC (2.3.1) "D's {base type definition} must not be the ·ur-type
15933 * definition·."
15934 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015935 if (WXS_IS_ANYTYPE(type->baseType))
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000015936 return (1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015937
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015938 if (WXS_IS_COMPLEX(type->baseType)) {
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015939 /*
15940 * SPEC (2.3.2.1) "If D's {base type definition} is complex, then it
15941 * must be validly derived from B given the subset as defined by this
15942 * constraint."
15943 */
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015944 return (xmlSchemaCheckCOSCTDerivedOK(actxt, type->baseType,
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015945 baseType, set));
15946 } else {
15947 /*
15948 * SPEC (2.3.2.2) "If D's {base type definition} is simple, then it
15949 * must be validly derived from B given the subset as defined in Type
15950 * Derivation OK (Simple) (§3.14.6).
15951 */
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015952 return (xmlSchemaCheckCOSSTDerivedOK(actxt, type->baseType,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015953 baseType, set));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015954 }
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015955}
15956
15957/**
15958 * xmlSchemaCheckCOSDerivedOK:
15959 * @type: the derived simple type definition
15960 * @baseType: the base type definition
15961 *
15962 * Calls:
15963 * Type Derivation OK (Simple) AND Type Derivation OK (Complex)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015964 *
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015965 * Checks wheter @type can be validly derived from @baseType.
15966 *
15967 * Returns 0 on success, an positive error code otherwise.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015968 */
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015969static int
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015970xmlSchemaCheckCOSDerivedOK(xmlSchemaAbstractCtxtPtr actxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015971 xmlSchemaTypePtr type,
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000015972 xmlSchemaTypePtr baseType,
15973 int set)
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015974{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015975 if (WXS_IS_SIMPLE(type))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015976 return (xmlSchemaCheckCOSSTDerivedOK(actxt, type, baseType, set));
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015977 else
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000015978 return (xmlSchemaCheckCOSCTDerivedOK(actxt, type, baseType, set));
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000015979}
15980
William M. Brack2f2a6632004-08-20 23:09:47 +000015981/**
15982 * xmlSchemaCheckCOSCTExtends:
15983 * @ctxt: the schema parser context
15984 * @type: the complex type definition
15985 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015986 * (3.4.6) Constraints on Complex Type Definition Schema Components
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015987 * Schema Component Constraint:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015988 * Derivation Valid (Extension) (cos-ct-extends)
15989 *
15990 * STATUS:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000015991 * missing:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000015992 * (1.5)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000015993 * (1.4.3.2.2.2) "Particle Valid (Extension)"
William M. Brack2f2a6632004-08-20 23:09:47 +000015994 *
15995 * Returns 0 if the constraints are satisfied, a positive
15996 * error code if not and -1 if an internal error occured.
15997 */
15998static int
15999xmlSchemaCheckCOSCTExtends(xmlSchemaParserCtxtPtr ctxt,
16000 xmlSchemaTypePtr type)
16001{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016002 xmlSchemaTypePtr base = type->baseType;
16003 /*
16004 * TODO: Correct the error code; XML_SCHEMAP_COS_CT_EXTENDS_1_1 is used
16005 * temporarily only.
William M. Brack2f2a6632004-08-20 23:09:47 +000016006 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016007 /*
16008 * SPEC (1) "If the {base type definition} is a complex type definition,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016009 * then all of the following must be true:"
16010 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016011 if (WXS_IS_COMPLEX(base)) {
William M. Brack2f2a6632004-08-20 23:09:47 +000016012 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016013 * SPEC (1.1) "The {final} of the {base type definition} must not
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016014 * contain extension."
William M. Brack2f2a6632004-08-20 23:09:47 +000016015 */
16016 if (base->flags & XML_SCHEMAS_TYPE_FINAL_EXTENSION) {
16017 xmlSchemaPCustomErr(ctxt,
16018 XML_SCHEMAP_COS_CT_EXTENDS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016019 WXS_BASIC_CAST type, NULL,
William M. Brack2f2a6632004-08-20 23:09:47 +000016020 "The 'final' of the base type definition "
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016021 "contains 'extension'", NULL);
William M. Brack2f2a6632004-08-20 23:09:47 +000016022 return (XML_SCHEMAP_COS_CT_EXTENDS_1_1);
16023 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016024
16025 /*
16026 * ATTENTION: The constrains (1.2) and (1.3) are not applied,
16027 * since they are automatically satisfied through the
16028 * inheriting mechanism.
16029 * Note that even if redefining components, the inheriting mechanism
16030 * is used.
16031 */
16032#if 0
William M. Brack2f2a6632004-08-20 23:09:47 +000016033 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016034 * SPEC (1.2) "Its {attribute uses} must be a subset of the {attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016035 * uses}
16036 * of the complex type definition itself, that is, for every attribute
16037 * use in the {attribute uses} of the {base type definition}, there
16038 * must be an attribute use in the {attribute uses} of the complex
16039 * type definition itself whose {attribute declaration} has the same
16040 * {name}, {target namespace} and {type definition} as its attribute
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016041 * declaration"
William M. Brack2f2a6632004-08-20 23:09:47 +000016042 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016043 if (base->attrUses != NULL) {
16044 int i, j, found;
16045 xmlSchemaAttributeUsePtr use, buse;
William M. Brack2f2a6632004-08-20 23:09:47 +000016046
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016047 for (i = 0; i < (WXS_LIST_CAST base->attrUses)->nbItems; i ++) {
16048 buse = (WXS_LIST_CAST base->attrUses)->items[i];
16049 found = 0;
16050 if (type->attrUses != NULL) {
16051 use = (WXS_LIST_CAST type->attrUses)->items[j];
16052 for (j = 0; j < (WXS_LIST_CAST type->attrUses)->nbItems; j ++)
16053 {
16054 if ((WXS_ATTRUSE_DECL_NAME(use) ==
16055 WXS_ATTRUSE_DECL_NAME(buse)) &&
16056 (WXS_ATTRUSE_DECL_TNS(use) ==
16057 WXS_ATTRUSE_DECL_TNS(buse)) &&
16058 (WXS_ATTRUSE_TYPEDEF(use) ==
16059 WXS_ATTRUSE_TYPEDEF(buse))
16060 {
16061 found = 1;
16062 break;
16063 }
16064 }
16065 }
16066 if (! found) {
16067 xmlChar *str = NULL;
16068
16069 xmlSchemaCustomErr(ACTXT_CAST ctxt,
16070 XML_SCHEMAP_COS_CT_EXTENDS_1_2,
16071 NULL, WXS_BASIC_CAST type,
16072 /*
16073 * TODO: The report does not indicate that also the
16074 * type needs to be the same.
16075 */
16076 "This type is missing a matching correspondent "
16077 "for its {base type}'s %s in its {attribute uses}",
16078 xmlSchemaGetComponentDesignation(&str,
16079 buse->children),
16080 NULL);
16081 FREE_AND_NULL(str)
16082 }
16083 }
16084 }
William M. Brack2f2a6632004-08-20 23:09:47 +000016085 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016086 * SPEC (1.3) "If it has an {attribute wildcard}, the complex type
16087 * definition must also have one, and the base type definition's
16088 * {attribute wildcard}'s {namespace constraint} must be a subset
16089 * of the complex type definition's {attribute wildcard}'s {namespace
16090 * constraint}, as defined by Wildcard Subset (§3.10.6)."
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016091 */
16092
16093 /*
16094 * MAYBE TODO: Enable if ever needed. But this will be needed only
16095 * if created the type via a schema construction API.
16096 */
16097 if (base->attributeWildcard != NULL) {
16098 if (type->attributeWilcard == NULL) {
16099 xmlChar *str = NULL;
16100
16101 xmlSchemaCustomErr(ACTXT_CAST pctxt,
16102 XML_SCHEMAP_COS_CT_EXTENDS_1_3,
16103 NULL, type,
16104 "The base %s has an attribute wildcard, "
16105 "but this type is missing an attribute wildcard",
16106 xmlSchemaGetComponentDesignation(&str, base));
16107 FREE_AND_NULL(str)
16108
16109 } else if (xmlSchemaCheckCOSNSSubset(
16110 base->attributeWildcard, type->attributeWildcard))
16111 {
16112 xmlChar *str = NULL;
16113
16114 xmlSchemaCustomErr(ACTXT_CAST pctxt,
16115 XML_SCHEMAP_COS_CT_EXTENDS_1_3,
16116 NULL, type,
16117 "The attribute wildcard is not a valid "
16118 "superset of the one in the base %s",
16119 xmlSchemaGetComponentDesignation(&str, base));
16120 FREE_AND_NULL(str)
16121 }
16122 }
16123#endif
16124 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016125 * SPEC (1.4) "One of the following must be true:"
William M. Brack2f2a6632004-08-20 23:09:47 +000016126 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016127 if ((type->contentTypeDef != NULL) &&
16128 (type->contentTypeDef == base->contentTypeDef)) {
16129 /*
16130 * SPEC (1.4.1) "The {content type} of the {base type definition}
16131 * and the {content type} of the complex type definition itself
16132 * must be the same simple type definition"
16133 * PASS
16134 */
16135 } else if ((type->contentType == XML_SCHEMA_CONTENT_EMPTY) &&
16136 (base->contentType == XML_SCHEMA_CONTENT_EMPTY) ) {
16137 /*
16138 * SPEC (1.4.2) "The {content type} of both the {base type
16139 * definition} and the complex type definition itself must
16140 * be empty."
16141 * PASS
16142 */
16143 } else {
16144 /*
16145 * SPEC (1.4.3) "All of the following must be true:"
16146 */
16147 if (type->subtypes == NULL) {
16148 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016149 * SPEC 1.4.3.1 The {content type} of the complex type
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016150 * definition itself must specify a particle.
16151 */
16152 xmlSchemaPCustomErr(ctxt,
16153 XML_SCHEMAP_COS_CT_EXTENDS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016154 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016155 "The content type must specify a particle", NULL);
16156 return (XML_SCHEMAP_COS_CT_EXTENDS_1_1);
16157 }
16158 /*
16159 * SPEC (1.4.3.2) "One of the following must be true:"
16160 */
16161 if (base->contentType == XML_SCHEMA_CONTENT_EMPTY) {
16162 /*
16163 * SPEC (1.4.3.2.1) "The {content type} of the {base type
16164 * definition} must be empty.
16165 * PASS
16166 */
16167 } else {
16168 /*
16169 * SPEC (1.4.3.2.2) "All of the following must be true:"
16170 */
16171 if ((type->contentType != base->contentType) ||
16172 ((type->contentType != XML_SCHEMA_CONTENT_MIXED) &&
16173 (type->contentType != XML_SCHEMA_CONTENT_ELEMENTS))) {
16174 /*
16175 * SPEC (1.4.3.2.2.1) "Both {content type}s must be mixed
16176 * or both must be element-only."
16177 */
16178 xmlSchemaPCustomErr(ctxt,
16179 XML_SCHEMAP_COS_CT_EXTENDS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016180 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016181 "The content type of both, the type and its base "
16182 "type, must either 'mixed' or 'element-only'", NULL);
16183 return (XML_SCHEMAP_COS_CT_EXTENDS_1_1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016184 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016185 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016186 * URGENT TODO SPEC (1.4.3.2.2.2) "The particle of the
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016187 * complex type definition must be a ·valid extension·
16188 * of the {base type definition}'s particle, as defined
16189 * in Particle Valid (Extension) (§3.9.6)."
16190 *
16191 * NOTE that we won't check "Particle Valid (Extension)",
16192 * since it is ensured by the derivation process in
16193 * xmlSchemaTypeFixup(). We need to implement this when heading
16194 * for a construction API
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016195 * TODO: !! This is needed to be checked if redefining a type !!
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016196 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016197 }
16198 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016199 * URGENT TODO (1.5)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016200 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016201 }
William M. Brack2f2a6632004-08-20 23:09:47 +000016202 } else {
16203 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016204 * SPEC (2) "If the {base type definition} is a simple type definition,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016205 * then all of the following must be true:"
William M. Brack2f2a6632004-08-20 23:09:47 +000016206 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016207 if (type->contentTypeDef != base) {
16208 /*
16209 * SPEC (2.1) "The {content type} must be the same simple type
16210 * definition."
16211 */
16212 xmlSchemaPCustomErr(ctxt,
16213 XML_SCHEMAP_COS_CT_EXTENDS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016214 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016215 "The content type must be the simple base type", NULL);
16216 return (XML_SCHEMAP_COS_CT_EXTENDS_1_1);
16217 }
16218 if (base->flags & XML_SCHEMAS_TYPE_FINAL_EXTENSION) {
16219 /*
16220 * SPEC (2.2) "The {final} of the {base type definition} must not
16221 * contain extension"
16222 * NOTE that this is the same as (1.1).
16223 */
16224 xmlSchemaPCustomErr(ctxt,
16225 XML_SCHEMAP_COS_CT_EXTENDS_1_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016226 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016227 "The 'final' of the base type definition "
16228 "contains 'extension'", NULL);
16229 return (XML_SCHEMAP_COS_CT_EXTENDS_1_1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016230 }
William M. Brack2f2a6632004-08-20 23:09:47 +000016231 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016232 return (0);
William M. Brack2f2a6632004-08-20 23:09:47 +000016233}
16234
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016235/**
16236 * xmlSchemaCheckDerivationOKRestriction:
16237 * @ctxt: the schema parser context
16238 * @type: the complex type definition
16239 *
16240 * (3.4.6) Constraints on Complex Type Definition Schema Components
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016241 * Schema Component Constraint:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016242 * Derivation Valid (Restriction, Complex) (derivation-ok-restriction)
16243 *
16244 * STATUS:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016245 * missing:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016246 * (5.4.2) ???
16247 *
16248 * ATTENTION:
16249 * In XML Schema 1.1 this will be:
16250 * Validation Rule: Checking complex type subsumption
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016251 *
16252 * Returns 0 if the constraints are satisfied, a positive
16253 * error code if not and -1 if an internal error occured.
16254 */
16255static int
16256xmlSchemaCheckDerivationOKRestriction(xmlSchemaParserCtxtPtr ctxt,
16257 xmlSchemaTypePtr type)
16258{
16259 xmlSchemaTypePtr base;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016260
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016261 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016262 * TODO: Correct the error code; XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1 is used
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016263 * temporarily only.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016264 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016265 base = type->baseType;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016266 if (! WXS_IS_COMPLEX(base)) {
16267 xmlSchemaCustomErr(ACTXT_CAST ctxt,
16268 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16269 type->node, WXS_BASIC_CAST type,
16270 "The base type must be a complex type", NULL, NULL);
16271 return(ctxt->err);
16272 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016273 if (base->flags & XML_SCHEMAS_TYPE_FINAL_RESTRICTION) {
16274 /*
16275 * SPEC (1) "The {base type definition} must be a complex type
16276 * definition whose {final} does not contain restriction."
16277 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016278 xmlSchemaCustomErr(ACTXT_CAST ctxt,
16279 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16280 type->node, WXS_BASIC_CAST type,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016281 "The 'final' of the base type definition "
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016282 "contains 'restriction'", NULL, NULL);
16283 return (ctxt->err);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016284 }
16285 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016286 * SPEC (2), (3) and (4)
16287 * Those are handled in a separate function, since the
16288 * same constraints are needed for redefinition of
16289 * attribute groups as well.
16290 */
16291 if (xmlSchemaCheckDerivationOKRestriction2to4(ctxt,
16292 XML_SCHEMA_ACTION_DERIVE,
16293 WXS_BASIC_CAST type, WXS_BASIC_CAST base,
16294 type->attrUses, base->attrUses,
16295 type->attributeWildcard,
16296 base->attributeWildcard) == -1)
16297 {
16298 return(-1);
16299 }
16300 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016301 * SPEC (5) "One of the following must be true:"
16302 */
16303 if (base->builtInType == XML_SCHEMAS_ANYTYPE) {
16304 /*
16305 * SPEC (5.1) "The {base type definition} must be the
16306 * ·ur-type definition·."
16307 * PASS
16308 */
16309 } else if ((type->contentType == XML_SCHEMA_CONTENT_SIMPLE) ||
16310 (type->contentType == XML_SCHEMA_CONTENT_BASIC)) {
16311 /*
16312 * SPEC (5.2.1) "The {content type} of the complex type definition
16313 * must be a simple type definition"
16314 *
16315 * SPEC (5.2.2) "One of the following must be true:"
16316 */
16317 if ((base->contentType == XML_SCHEMA_CONTENT_SIMPLE) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016318 (base->contentType == XML_SCHEMA_CONTENT_BASIC))
16319 {
16320 int err;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016321 /*
16322 * SPEC (5.2.2.1) "The {content type} of the {base type
16323 * definition} must be a simple type definition from which
16324 * the {content type} is validly derived given the empty
16325 * set as defined in Type Derivation OK (Simple) (§3.14.6)."
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016326 *
16327 * ATTENTION TODO: This seems not needed if the type implicitely
16328 * derived from the base type.
16329 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016330 */
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000016331 err = xmlSchemaCheckCOSSTDerivedOK(ACTXT_CAST ctxt,
16332 type->contentTypeDef, base->contentTypeDef, 0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016333 if (err != 0) {
16334 xmlChar *strA = NULL, *strB = NULL;
16335
16336 if (err == -1)
16337 return(-1);
16338 xmlSchemaCustomErr(ACTXT_CAST ctxt,
16339 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16340 NULL, WXS_BASIC_CAST type,
16341 "The {content type} %s is not validly derived from the "
16342 "base type's {content type} %s",
16343 xmlSchemaGetComponentDesignation(&strA,
16344 type->contentTypeDef),
16345 xmlSchemaGetComponentDesignation(&strB,
16346 base->contentTypeDef));
16347 FREE_AND_NULL(strA);
16348 FREE_AND_NULL(strB);
16349 return(ctxt->err);
16350 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016351 } else if ((base->contentType == XML_SCHEMA_CONTENT_MIXED) &&
16352 (xmlSchemaIsParticleEmptiable(
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016353 (xmlSchemaParticlePtr) base->subtypes))) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016354 /*
16355 * SPEC (5.2.2.2) "The {base type definition} must be mixed
16356 * and have a particle which is ·emptiable· as defined in
16357 * Particle Emptiable (§3.9.6)."
16358 * PASS
16359 */
16360 } else {
16361 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016362 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16363 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016364 "The content type of the base type must be either "
16365 "a simple type or 'mixed' and an emptiable particle", NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016366 return (ctxt->err);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016367 }
16368 } else if (type->contentType == XML_SCHEMA_CONTENT_EMPTY) {
16369 /*
16370 * SPEC (5.3.1) "The {content type} of the complex type itself must
16371 * be empty"
16372 */
16373 if (base->contentType == XML_SCHEMA_CONTENT_EMPTY) {
16374 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016375 * SPEC (5.3.2.1) "The {content type} of the {base type
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016376 * definition} must also be empty."
16377 * PASS
16378 */
16379 } else if (((base->contentType == XML_SCHEMA_CONTENT_ELEMENTS) ||
16380 (base->contentType == XML_SCHEMA_CONTENT_MIXED)) &&
16381 xmlSchemaIsParticleEmptiable(
16382 (xmlSchemaParticlePtr) base->subtypes)) {
16383 /*
16384 * SPEC (5.3.2.2) "The {content type} of the {base type
16385 * definition} must be elementOnly or mixed and have a particle
16386 * which is ·emptiable· as defined in Particle Emptiable (§3.9.6)."
16387 * PASS
16388 */
16389 } else {
16390 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016391 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16392 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016393 "The content type of the base type must be either "
16394 "empty or 'mixed' (or 'elements-only') and an emptiable "
16395 "particle", NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016396 return (ctxt->err);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016397 }
16398 } else if ((type->contentType == XML_SCHEMA_CONTENT_ELEMENTS) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016399 WXS_HAS_MIXED_CONTENT(type)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016400 /*
16401 * SPEC (5.4.1.1) "The {content type} of the complex type definition
16402 * itself must be element-only"
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016403 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016404 if (WXS_HAS_MIXED_CONTENT(type) && (! WXS_HAS_MIXED_CONTENT(base))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016405 /*
16406 * SPEC (5.4.1.2) "The {content type} of the complex type
16407 * definition itself and of the {base type definition} must be
16408 * mixed"
16409 */
16410 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016411 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16412 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016413 "If the content type is 'mixed', then the content type of the "
16414 "base type must also be 'mixed'", NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016415 return (ctxt->err);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016416 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016417 /*
16418 * SPEC (5.4.2) "The particle of the complex type definition itself
16419 * must be a ·valid restriction· of the particle of the {content
16420 * type} of the {base type definition} as defined in Particle Valid
16421 * (Restriction) (§3.9.6).
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016422 *
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000016423 * URGENT TODO: (5.4.2)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016424 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016425 } else {
16426 xmlSchemaPCustomErr(ctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016427 XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1,
16428 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016429 "The type is not a valid restriction of its base type", NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016430 return (ctxt->err);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016431 }
16432 return (0);
16433}
16434
16435/**
Kasimier T. Buchcik5e371a02005-04-05 15:08:05 +000016436 * xmlSchemaCheckCTComponent:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016437 * @ctxt: the schema parser context
16438 * @type: the complex type definition
16439 *
16440 * (3.4.6) Constraints on Complex Type Definition Schema Components
16441 *
16442 * Returns 0 if the constraints are satisfied, a positive
16443 * error code if not and -1 if an internal error occured.
16444 */
16445static int
16446xmlSchemaCheckCTComponent(xmlSchemaParserCtxtPtr ctxt,
16447 xmlSchemaTypePtr type)
16448{
16449 int ret;
16450 /*
16451 * Complex Type Definition Properties Correct
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016452 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016453 ret = xmlSchemaCheckCTPropsCorrect(ctxt, type);
16454 if (ret != 0)
16455 return (ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000016456 if (WXS_IS_EXTENSION(type))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016457 ret = xmlSchemaCheckCOSCTExtends(ctxt, type);
16458 else
16459 ret = xmlSchemaCheckDerivationOKRestriction(ctxt, type);
16460 return (ret);
16461}
16462
16463/**
16464 * xmlSchemaCheckSRCCT:
16465 * @ctxt: the schema parser context
16466 * @type: the complex type definition
16467 *
16468 * (3.4.3) Constraints on XML Representations of Complex Type Definitions:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016469 * Schema Representation Constraint:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016470 * Complex Type Definition Representation OK (src-ct)
16471 *
16472 * Returns 0 if the constraints are satisfied, a positive
16473 * error code if not and -1 if an internal error occured.
16474 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016475static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016476xmlSchemaCheckSRCCT(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016477 xmlSchemaTypePtr type)
16478{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016479 xmlSchemaTypePtr base;
16480 int ret = 0;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016481
16482 /*
16483 * TODO: Adjust the error codes here, as I used
16484 * XML_SCHEMAP_SRC_CT_1 only yet.
16485 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016486 base = type->baseType;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016487 if (! WXS_HAS_SIMPLE_CONTENT(type)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016488 /*
16489 * 1 If the <complexContent> alternative is chosen, the type definition
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016490 * ·resolved· to by the ·actual value· of the base [attribute]
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016491 * must be a complex type definition;
16492 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016493 if (! WXS_IS_COMPLEX(base)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016494 xmlChar *str = NULL;
16495 xmlSchemaPCustomErr(ctxt,
16496 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016497 WXS_BASIC_CAST type, type->node,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016498 "If using <complexContent>, the base type is expected to be "
16499 "a complex type. The base type '%s' is a simple type",
16500 xmlSchemaFormatQName(&str, base->targetNamespace,
16501 base->name));
16502 FREE_AND_NULL(str)
16503 return (XML_SCHEMAP_SRC_CT_1);
16504 }
16505 } else {
16506 /*
16507 * SPEC
16508 * 2 If the <simpleContent> alternative is chosen, all of the
16509 * following must be true:
16510 * 2.1 The type definition ·resolved· to by the ·actual value· of the
16511 * base [attribute] must be one of the following:
16512 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016513 if (WXS_IS_SIMPLE(base)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000016514 if (WXS_IS_EXTENSION(type) == 0) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016515 xmlChar *str = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016516 /*
16517 * 2.1.3 only if the <extension> alternative is also
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016518 * chosen, a simple type definition.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016519 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016520 /* TODO: Change error code to ..._SRC_CT_2_1_3. */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016521 xmlSchemaPCustomErr(ctxt,
16522 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016523 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016524 "If using <simpleContent> and <restriction>, the base "
16525 "type must be a complex type. The base type '%s' is "
16526 "a simple type",
16527 xmlSchemaFormatQName(&str, base->targetNamespace,
16528 base->name));
16529 FREE_AND_NULL(str)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016530 return (XML_SCHEMAP_SRC_CT_1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016531 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016532 } else {
16533 /* Base type is a complex type. */
16534 if ((base->contentType == XML_SCHEMA_CONTENT_SIMPLE) ||
16535 (base->contentType == XML_SCHEMA_CONTENT_BASIC)) {
16536 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016537 * 2.1.1 a complex type definition whose {content type} is a
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016538 * simple type definition;
16539 * PASS
16540 */
16541 if (base->contentTypeDef == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016542 xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016543 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016544 "Internal error: xmlSchemaCheckSRCCT, "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016545 "'%s', base type has no content type",
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016546 type->name);
16547 return (-1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016548 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016549 } else if ((base->contentType == XML_SCHEMA_CONTENT_MIXED) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000016550 (WXS_IS_RESTRICTION(type))) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016551
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016552 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016553 * 2.1.2 only if the <restriction> alternative is also
16554 * chosen, a complex type definition whose {content type}
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016555 * is mixed and a particle emptiable.
16556 */
16557 if (! xmlSchemaIsParticleEmptiable(
16558 (xmlSchemaParticlePtr) base->subtypes)) {
16559 ret = XML_SCHEMAP_SRC_CT_1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016560 } else
16561 /*
16562 * Attention: at this point the <simpleType> child is in
16563 * ->contentTypeDef (put there during parsing).
16564 */
16565 if (type->contentTypeDef == NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016566 xmlChar *str = NULL;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016567 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016568 * 2.2 If clause 2.1.2 above is satisfied, then there
16569 * must be a <simpleType> among the [children] of
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016570 * <restriction>.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016571 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016572 /* TODO: Change error code to ..._SRC_CT_2_2. */
16573 xmlSchemaPCustomErr(ctxt,
16574 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016575 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016576 "A <simpleType> is expected among the children "
16577 "of <restriction>, if <simpleContent> is used and "
16578 "the base type '%s' is a complex type",
16579 xmlSchemaFormatQName(&str, base->targetNamespace,
16580 base->name));
16581 FREE_AND_NULL(str)
16582 return (XML_SCHEMAP_SRC_CT_1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016583 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016584 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016585 ret = XML_SCHEMAP_SRC_CT_1;
16586 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016587 }
16588 if (ret > 0) {
16589 xmlChar *str = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000016590 if (WXS_IS_RESTRICTION(type)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016591 xmlSchemaPCustomErr(ctxt,
16592 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016593 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016594 "If <simpleContent> and <restriction> is used, the "
16595 "base type must be a simple type or a complex type with "
16596 "mixed content and particle emptiable. The base type "
16597 "'%s' is none of those",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016598 xmlSchemaFormatQName(&str, base->targetNamespace,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016599 base->name));
16600 } else {
16601 xmlSchemaPCustomErr(ctxt,
16602 XML_SCHEMAP_SRC_CT_1,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016603 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016604 "If <simpleContent> and <extension> is used, the "
16605 "base type must be a simple type. The base type '%s' "
16606 "is a complex type",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016607 xmlSchemaFormatQName(&str, base->targetNamespace,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016608 base->name));
16609 }
16610 FREE_AND_NULL(str)
16611 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016612 }
16613 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016614 * SPEC (3) "The corresponding complex type definition component must
16615 * satisfy the conditions set out in Constraints on Complex Type
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016616 * Definition Schema Components (§3.4.6);"
16617 * NOTE (3) will be done in xmlSchemaTypeFixup().
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016618 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016619 /*
16620 * SPEC (4) If clause 2.2.1 or clause 2.2.2 in the correspondence specification
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016621 * above for {attribute wildcard} is satisfied, the intensional
16622 * intersection must be expressible, as defined in Attribute Wildcard
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016623 * Intersection (§3.10.6).
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016624 * NOTE (4) is done in xmlSchemaFixupTypeAttributeUses().
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016625 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000016626 return (ret);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000016627}
William M. Brack2f2a6632004-08-20 23:09:47 +000016628
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016629#ifdef ENABLE_PARTICLE_RESTRICTION
16630/**
16631 * xmlSchemaCheckParticleRangeOK:
16632 * @ctxt: the schema parser context
16633 * @type: the complex type definition
16634 *
16635 * (3.9.6) Constraints on Particle Schema Components
16636 * Schema Component Constraint:
16637 * Occurrence Range OK (range-ok)
16638 *
16639 * STATUS: complete
16640 *
16641 * Returns 0 if the constraints are satisfied, a positive
16642 * error code if not and -1 if an internal error occured.
16643 */
16644static int
16645xmlSchemaCheckParticleRangeOK(int rmin, int rmax,
16646 int bmin, int bmax)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016647{
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016648 if (rmin < bmin)
16649 return (1);
16650 if ((bmax != UNBOUNDED) &&
16651 (rmax > bmax))
16652 return (1);
16653 return (0);
16654}
16655
16656/**
16657 * xmlSchemaCheckRCaseNameAndTypeOK:
16658 * @ctxt: the schema parser context
16659 * @r: the restricting element declaration particle
16660 * @b: the base element declaration particle
16661 *
16662 * (3.9.6) Constraints on Particle Schema Components
16663 * Schema Component Constraint:
16664 * Particle Restriction OK (Elt:Elt -- NameAndTypeOK)
16665 * (rcase-NameAndTypeOK)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016666 *
16667 * STATUS:
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016668 * MISSING (3.2.3)
16669 * CLARIFY: (3.2.2)
16670 *
16671 * Returns 0 if the constraints are satisfied, a positive
16672 * error code if not and -1 if an internal error occured.
16673 */
16674static int
16675xmlSchemaCheckRCaseNameAndTypeOK(xmlSchemaParserCtxtPtr ctxt,
16676 xmlSchemaParticlePtr r,
16677 xmlSchemaParticlePtr b)
16678{
16679 xmlSchemaElementPtr elemR, elemB;
16680
16681 /* TODO: Error codes (rcase-NameAndTypeOK). */
16682 elemR = (xmlSchemaElementPtr) r->children;
16683 elemB = (xmlSchemaElementPtr) b->children;
16684 /*
16685 * SPEC (1) "The declarations' {name}s and {target namespace}s are
16686 * the same."
16687 */
16688 if ((elemR != elemB) &&
16689 ((! xmlStrEqual(elemR->name, elemB->name)) ||
16690 (! xmlStrEqual(elemR->targetNamespace, elemB->targetNamespace))))
16691 return (1);
16692 /*
16693 * SPEC (2) "R's occurrence range is a valid restriction of B's
16694 * occurrence range as defined by Occurrence Range OK (§3.9.6)."
16695 */
16696 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs,
16697 b->minOccurs, b->maxOccurs) != 0)
16698 return (1);
16699 /*
16700 * SPEC (3.1) "Both B's declaration's {scope} and R's declaration's
16701 * {scope} are global."
16702 */
16703 if (elemR == elemB)
16704 return (0);
16705 /*
16706 * SPEC (3.2.1) "Either B's {nillable} is true or R's {nillable} is false."
16707 */
16708 if (((elemB->flags & XML_SCHEMAS_ELEM_NILLABLE) == 0) &&
16709 (elemR->flags & XML_SCHEMAS_ELEM_NILLABLE))
16710 return (1);
16711 /*
16712 * SPEC (3.2.2) "either B's declaration's {value constraint} is absent,
16713 * or is not fixed, or R's declaration's {value constraint} is fixed
16714 * with the same value."
16715 */
16716 if ((elemB->value != NULL) && (elemB->flags & XML_SCHEMAS_ELEM_FIXED) &&
16717 ((elemR->value == NULL) ||
16718 ((elemR->flags & XML_SCHEMAS_ELEM_FIXED) == 0) ||
16719 /* TODO: Equality of the initial value or normalized or canonical? */
16720 (! xmlStrEqual(elemR->value, elemB->value))))
16721 return (1);
16722 /*
16723 * TODO: SPEC (3.2.3) "R's declaration's {identity-constraint
16724 * definitions} is a subset of B's declaration's {identity-constraint
16725 * definitions}, if any."
16726 */
16727 if (elemB->idcs != NULL) {
16728 /* TODO */
16729 }
16730 /*
16731 * SPEC (3.2.4) "R's declaration's {disallowed substitutions} is a
16732 * superset of B's declaration's {disallowed substitutions}."
16733 */
16734 if (((elemB->flags & XML_SCHEMAS_ELEM_BLOCK_EXTENSION) &&
16735 ((elemR->flags & XML_SCHEMAS_ELEM_BLOCK_EXTENSION) == 0)) ||
16736 ((elemB->flags & XML_SCHEMAS_ELEM_BLOCK_RESTRICTION) &&
16737 ((elemR->flags & XML_SCHEMAS_ELEM_BLOCK_RESTRICTION) == 0)) ||
16738 ((elemB->flags & XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION) &&
16739 ((elemR->flags & XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION) == 0)))
16740 return (1);
16741 /*
16742 * SPEC (3.2.5) "R's {type definition} is validly derived given
16743 * {extension, list, union} from B's {type definition}"
16744 *
16745 * BADSPEC TODO: What's the point of adding "list" and "union" to the
16746 * set, if the corresponding constraints handle "restriction" and
16747 * "extension" only?
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016748 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016749 */
16750 {
16751 int set = 0;
16752
16753 set |= SUBSET_EXTENSION;
16754 set |= SUBSET_LIST;
16755 set |= SUBSET_UNION;
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000016756 if (xmlSchemaCheckCOSDerivedOK(ACTXT_CAST ctxt, elemR->subtypes,
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016757 elemB->subtypes, set) != 0)
16758 return (1);
16759 }
16760 return (0);
16761}
16762
16763/**
16764 * xmlSchemaCheckRCaseNSCompat:
16765 * @ctxt: the schema parser context
16766 * @r: the restricting element declaration particle
16767 * @b: the base wildcard particle
16768 *
16769 * (3.9.6) Constraints on Particle Schema Components
16770 * Schema Component Constraint:
16771 * Particle Derivation OK (Elt:Any -- NSCompat)
16772 * (rcase-NSCompat)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016773 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016774 * STATUS: complete
16775 *
16776 * Returns 0 if the constraints are satisfied, a positive
16777 * error code if not and -1 if an internal error occured.
16778 */
16779static int
16780xmlSchemaCheckRCaseNSCompat(xmlSchemaParserCtxtPtr ctxt,
16781 xmlSchemaParticlePtr r,
16782 xmlSchemaParticlePtr b)
16783{
16784 /* TODO:Error codes (rcase-NSCompat). */
16785 /*
16786 * SPEC "For an element declaration particle to be a ·valid restriction·
16787 * of a wildcard particle all of the following must be true:"
16788 *
16789 * SPEC (1) "The element declaration's {target namespace} is ·valid·
16790 * with respect to the wildcard's {namespace constraint} as defined by
16791 * Wildcard allows Namespace Name (§3.10.4)."
16792 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016793 if (xmlSchemaCheckCVCWildcardNamespace((xmlSchemaWildcardPtr) b->children,
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016794 ((xmlSchemaElementPtr) r->children)->targetNamespace) != 0)
16795 return (1);
16796 /*
16797 * SPEC (2) "R's occurrence range is a valid restriction of B's
16798 * occurrence range as defined by Occurrence Range OK (§3.9.6)."
16799 */
16800 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs,
16801 b->minOccurs, b->maxOccurs) != 0)
16802 return (1);
16803
16804 return (0);
16805}
16806
16807/**
16808 * xmlSchemaCheckRCaseRecurseAsIfGroup:
16809 * @ctxt: the schema parser context
16810 * @r: the restricting element declaration particle
16811 * @b: the base model group particle
16812 *
16813 * (3.9.6) Constraints on Particle Schema Components
16814 * Schema Component Constraint:
16815 * Particle Derivation OK (Elt:All/Choice/Sequence -- RecurseAsIfGroup)
16816 * (rcase-RecurseAsIfGroup)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016817 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016818 * STATUS: TODO
16819 *
16820 * Returns 0 if the constraints are satisfied, a positive
16821 * error code if not and -1 if an internal error occured.
16822 */
16823static int
16824xmlSchemaCheckRCaseRecurseAsIfGroup(xmlSchemaParserCtxtPtr ctxt,
16825 xmlSchemaParticlePtr r,
16826 xmlSchemaParticlePtr b)
16827{
16828 /* TODO: Error codes (rcase-RecurseAsIfGroup). */
16829 TODO
16830 return (0);
16831}
16832
16833/**
16834 * xmlSchemaCheckRCaseNSSubset:
16835 * @ctxt: the schema parser context
16836 * @r: the restricting wildcard particle
16837 * @b: the base wildcard particle
16838 *
16839 * (3.9.6) Constraints on Particle Schema Components
16840 * Schema Component Constraint:
16841 * Particle Derivation OK (Any:Any -- NSSubset)
16842 * (rcase-NSSubset)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016843 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016844 * STATUS: complete
16845 *
16846 * Returns 0 if the constraints are satisfied, a positive
16847 * error code if not and -1 if an internal error occured.
16848 */
16849static int
16850xmlSchemaCheckRCaseNSSubset(xmlSchemaParserCtxtPtr ctxt,
16851 xmlSchemaParticlePtr r,
16852 xmlSchemaParticlePtr b,
16853 int isAnyTypeBase)
16854{
16855 /* TODO: Error codes (rcase-NSSubset). */
16856 /*
16857 * SPEC (1) "R's occurrence range is a valid restriction of B's
16858 * occurrence range as defined by Occurrence Range OK (§3.9.6)."
16859 */
16860 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs,
16861 b->minOccurs, b->maxOccurs))
16862 return (1);
16863 /*
16864 * SPEC (2) "R's {namespace constraint} must be an intensional subset
16865 * of B's {namespace constraint} as defined by Wildcard Subset (§3.10.6)."
16866 */
16867 if (xmlSchemaCheckCOSNSSubset((xmlSchemaWildcardPtr) r->children,
16868 (xmlSchemaWildcardPtr) b->children))
16869 return (1);
16870 /*
16871 * SPEC (3) "Unless B is the content model wildcard of the ·ur-type
16872 * definition·, R's {process contents} must be identical to or stronger
16873 * than B's {process contents}, where strict is stronger than lax is
16874 * stronger than skip."
16875 */
16876 if (! isAnyTypeBase) {
16877 if ( ((xmlSchemaWildcardPtr) r->children)->processContents <
16878 ((xmlSchemaWildcardPtr) b->children)->processContents)
16879 return (1);
16880 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016881
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016882 return (0);
16883}
16884
16885/**
16886 * xmlSchemaCheckCOSParticleRestrict:
16887 * @ctxt: the schema parser context
16888 * @type: the complex type definition
16889 *
16890 * (3.9.6) Constraints on Particle Schema Components
16891 * Schema Component Constraint:
16892 * Particle Valid (Restriction) (cos-particle-restrict)
16893 *
16894 * STATUS: TODO
16895 *
16896 * Returns 0 if the constraints are satisfied, a positive
16897 * error code if not and -1 if an internal error occured.
16898 */
16899static int
16900xmlSchemaCheckCOSParticleRestrict(xmlSchemaParserCtxtPtr ctxt,
16901 xmlSchemaParticlePtr r,
16902 xmlSchemaParticlePtr b)
16903{
16904 int ret = 0;
16905
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000016906 /*part = WXS_TYPE_PARTICLE(type);
16907 basePart = WXS_TYPE_PARTICLE(base);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016908 */
16909
16910 TODO
16911
16912 /*
16913 * SPEC (1) "They are the same particle."
16914 */
16915 if (r == b)
16916 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016917
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016918
16919 return (0);
16920}
16921
16922/**
16923 * xmlSchemaCheckRCaseNSRecurseCheckCardinality:
16924 * @ctxt: the schema parser context
16925 * @r: the model group particle
16926 * @b: the base wildcard particle
16927 *
16928 * (3.9.6) Constraints on Particle Schema Components
16929 * Schema Component Constraint:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016930 * Particle Derivation OK (All/Choice/Sequence:Any --
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016931 * NSRecurseCheckCardinality)
16932 * (rcase-NSRecurseCheckCardinality)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016933 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016934 * STATUS: TODO: subst-groups
16935 *
16936 * Returns 0 if the constraints are satisfied, a positive
16937 * error code if not and -1 if an internal error occured.
16938 */
16939static int
16940xmlSchemaCheckRCaseNSRecurseCheckCardinality(xmlSchemaParserCtxtPtr ctxt,
16941 xmlSchemaParticlePtr r,
16942 xmlSchemaParticlePtr b)
16943{
16944 xmlSchemaParticlePtr part;
16945 /* TODO: Error codes (rcase-NSRecurseCheckCardinality). */
16946 if ((r->children == NULL) || (r->children->children == NULL))
16947 return (-1);
16948 /*
16949 * SPEC "For a group particle to be a ·valid restriction· of a
16950 * wildcard particle..."
16951 *
16952 * SPEC (1) "Every member of the {particles} of the group is a ·valid
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016953 * restriction· of the wildcard as defined by
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016954 * Particle Valid (Restriction) (§3.9.6)."
16955 */
16956 part = (xmlSchemaParticlePtr) r->children->children;
16957 do {
16958 if (xmlSchemaCheckCOSParticleRestrict(ctxt, part, b))
16959 return (1);
16960 part = (xmlSchemaParticlePtr) part->next;
16961 } while (part != NULL);
16962 /*
16963 * SPEC (2) "The effective total range of the group [...] is a
16964 * valid restriction of B's occurrence range as defined by
16965 * Occurrence Range OK (§3.9.6)."
16966 */
16967 if (xmlSchemaCheckParticleRangeOK(
16968 xmlSchemaGetParticleTotalRangeMin(r),
16969 xmlSchemaGetParticleTotalRangeMax(r),
16970 b->minOccurs, b->maxOccurs) != 0)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016971 return (1);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016972 return (0);
16973}
16974
16975/**
16976 * xmlSchemaCheckRCaseRecurse:
16977 * @ctxt: the schema parser context
16978 * @r: the <all> or <sequence> model group particle
16979 * @b: the base <all> or <sequence> model group particle
16980 *
16981 * (3.9.6) Constraints on Particle Schema Components
16982 * Schema Component Constraint:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016983 * Particle Derivation OK (All:All,Sequence:Sequence --
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016984 Recurse)
16985 * (rcase-Recurse)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000016986 *
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000016987 * STATUS: ?
16988 * TODO: subst-groups
16989 *
16990 * Returns 0 if the constraints are satisfied, a positive
16991 * error code if not and -1 if an internal error occured.
16992 */
16993static int
16994xmlSchemaCheckRCaseRecurse(xmlSchemaParserCtxtPtr ctxt,
16995 xmlSchemaParticlePtr r,
16996 xmlSchemaParticlePtr b)
16997{
16998 /* xmlSchemaParticlePtr part; */
16999 /* TODO: Error codes (rcase-Recurse). */
17000 if ((r->children == NULL) || (b->children == NULL) ||
17001 (r->children->type != b->children->type))
17002 return (-1);
17003 /*
17004 * SPEC "For an all or sequence group particle to be a ·valid
17005 * restriction· of another group particle with the same {compositor}..."
17006 *
17007 * SPEC (1) "R's occurrence range is a valid restriction of B's
17008 * occurrence range as defined by Occurrence Range OK (§3.9.6)."
17009 */
17010 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs,
17011 b->minOccurs, b->maxOccurs))
17012 return (1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017013
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000017014
17015 return (0);
17016}
17017
17018#endif
17019
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017020#define FACET_RESTR_MUTUAL_ERR(fac1, fac2) \
17021 xmlSchemaPCustomErrExt(pctxt, \
17022 XML_SCHEMAP_INVALID_FACET_VALUE, \
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017023 WXS_BASIC_CAST fac1, fac1->node, \
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017024 "It is an error for both '%s' and '%s' to be specified on the "\
17025 "same type definition", \
17026 BAD_CAST xmlSchemaFacetTypeToString(fac1->type), \
17027 BAD_CAST xmlSchemaFacetTypeToString(fac2->type), NULL);
17028
17029#define FACET_RESTR_ERR(fac1, msg) \
17030 xmlSchemaPCustomErr(pctxt, \
17031 XML_SCHEMAP_INVALID_FACET_VALUE, \
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017032 WXS_BASIC_CAST fac1, fac1->node, \
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017033 msg, NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017034
17035#define FACET_RESTR_FIXED_ERR(fac) \
17036 xmlSchemaPCustomErr(pctxt, \
17037 XML_SCHEMAP_INVALID_FACET_VALUE, \
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017038 WXS_BASIC_CAST fac, fac->node, \
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017039 "The base type's facet is 'fixed', thus the value must not " \
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017040 "differ", NULL);
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017041
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000017042static void
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017043xmlSchemaDeriveFacetErr(xmlSchemaParserCtxtPtr pctxt,
17044 xmlSchemaFacetPtr facet1,
17045 xmlSchemaFacetPtr facet2,
17046 int lessGreater,
17047 int orEqual,
17048 int ofBase)
17049{
17050 xmlChar *msg = NULL;
17051
17052 msg = xmlStrdup(BAD_CAST "'");
17053 msg = xmlStrcat(msg, xmlSchemaFacetTypeToString(facet1->type));
17054 msg = xmlStrcat(msg, BAD_CAST "' has to be");
17055 if (lessGreater == 0)
17056 msg = xmlStrcat(msg, BAD_CAST " equal to");
17057 if (lessGreater == 1)
17058 msg = xmlStrcat(msg, BAD_CAST " greater than");
17059 else
17060 msg = xmlStrcat(msg, BAD_CAST " less than");
17061
17062 if (orEqual)
17063 msg = xmlStrcat(msg, BAD_CAST " or equal to");
17064 msg = xmlStrcat(msg, BAD_CAST " '");
17065 msg = xmlStrcat(msg, xmlSchemaFacetTypeToString(facet2->type));
17066 if (ofBase)
17067 msg = xmlStrcat(msg, BAD_CAST "' of the base type");
17068 else
17069 msg = xmlStrcat(msg, BAD_CAST "'");
17070
17071 xmlSchemaPCustomErr(pctxt,
17072 XML_SCHEMAP_INVALID_FACET_VALUE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017073 WXS_BASIC_CAST facet1, NULL,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017074 (const char *) msg, NULL);
17075
17076 if (msg != NULL)
17077 xmlFree(msg);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000017078}
17079
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017080/*
17081* xmlSchemaDeriveAndValidateFacets:
17082*
17083* Schema Component Constraint: Simple Type Restriction (Facets)
17084* (st-restrict-facets)
17085*/
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017086static int
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017087xmlSchemaDeriveAndValidateFacets(xmlSchemaParserCtxtPtr pctxt,
17088 xmlSchemaTypePtr type)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017089{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017090 xmlSchemaTypePtr base = type->baseType;
17091 xmlSchemaFacetLinkPtr link, cur, last = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017092 xmlSchemaFacetPtr facet, bfacet,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017093 flength = NULL, ftotdig = NULL, ffracdig = NULL,
17094 fmaxlen = NULL, fminlen = NULL, /* facets of the current type */
17095 fmininc = NULL, fmaxinc = NULL,
17096 fminexc = NULL, fmaxexc = NULL,
17097 bflength = NULL, bftotdig = NULL, bffracdig = NULL,
17098 bfmaxlen = NULL, bfminlen = NULL, /* facets of the base type */
17099 bfmininc = NULL, bfmaxinc = NULL,
17100 bfminexc = NULL, bfmaxexc = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000017101 int res; /* err = 0, fixedErr; */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017102
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017103 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017104 * SPEC st-restrict-facets 1:
17105 * "The {variety} of R is the same as that of B."
17106 */
17107 /*
17108 * SPEC st-restrict-facets 2:
17109 * "If {variety} is atomic, the {primitive type definition}
17110 * of R is the same as that of B."
17111 *
17112 * NOTE: we leave 1 & 2 out for now, since this will be
17113 * satisfied by the derivation process.
17114 * CONSTRUCTION TODO: Maybe needed if using a construction API.
17115 */
17116 /*
17117 * SPEC st-restrict-facets 3:
17118 * "The {facets} of R are the union of S and the {facets}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017119 * of B, eliminating duplicates. To eliminate duplicates,
17120 * when a facet of the same kind occurs in both S and the
17121 * {facets} of B, the one in the {facets} of B is not
17122 * included, with the exception of enumeration and pattern
17123 * facets, for which multiple occurrences with distinct values
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017124 * are allowed."
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017125 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017126
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017127 if ((type->facetSet == NULL) && (base->facetSet == NULL))
17128 return (0);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017129
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017130 last = type->facetSet;
17131 if (last != NULL)
17132 while (last->next != NULL)
17133 last = last->next;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017134
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017135 for (cur = type->facetSet; cur != NULL; cur = cur->next) {
17136 facet = cur->facet;
17137 switch (facet->type) {
17138 case XML_SCHEMA_FACET_LENGTH:
17139 flength = facet; break;
17140 case XML_SCHEMA_FACET_MINLENGTH:
17141 fminlen = facet; break;
17142 case XML_SCHEMA_FACET_MININCLUSIVE:
17143 fmininc = facet; break;
17144 case XML_SCHEMA_FACET_MINEXCLUSIVE:
17145 fminexc = facet; break;
17146 case XML_SCHEMA_FACET_MAXLENGTH:
17147 fmaxlen = facet; break;
17148 case XML_SCHEMA_FACET_MAXINCLUSIVE:
17149 fmaxinc = facet; break;
17150 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
17151 fmaxexc = facet; break;
17152 case XML_SCHEMA_FACET_TOTALDIGITS:
17153 ftotdig = facet; break;
17154 case XML_SCHEMA_FACET_FRACTIONDIGITS:
17155 ffracdig = facet; break;
17156 default:
17157 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017158 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017159 }
17160 for (cur = base->facetSet; cur != NULL; cur = cur->next) {
17161 facet = cur->facet;
17162 switch (facet->type) {
17163 case XML_SCHEMA_FACET_LENGTH:
17164 bflength = facet; break;
17165 case XML_SCHEMA_FACET_MINLENGTH:
17166 bfminlen = facet; break;
17167 case XML_SCHEMA_FACET_MININCLUSIVE:
17168 bfmininc = facet; break;
17169 case XML_SCHEMA_FACET_MINEXCLUSIVE:
17170 bfminexc = facet; break;
17171 case XML_SCHEMA_FACET_MAXLENGTH:
17172 bfmaxlen = facet; break;
17173 case XML_SCHEMA_FACET_MAXINCLUSIVE:
17174 bfmaxinc = facet; break;
17175 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
17176 bfmaxexc = facet; break;
17177 case XML_SCHEMA_FACET_TOTALDIGITS:
17178 bftotdig = facet; break;
17179 case XML_SCHEMA_FACET_FRACTIONDIGITS:
17180 bffracdig = facet; break;
17181 default:
17182 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017183 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017184 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017185 /*
17186 * length and minLength or maxLength (2.2) + (3.2)
17187 */
17188 if (flength && (fminlen || fmaxlen)) {
17189 FACET_RESTR_ERR(flength, "It is an error for both 'length' and "
17190 "either of 'minLength' or 'maxLength' to be specified on "
17191 "the same type definition")
17192 }
17193 /*
17194 * Mutual exclusions in the same derivation step.
17195 */
17196 if ((fmaxinc) && (fmaxexc)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017197 /*
17198 * SCC "maxInclusive and maxExclusive"
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017199 */
17200 FACET_RESTR_MUTUAL_ERR(fmaxinc, fmaxexc)
17201 }
17202 if ((fmininc) && (fminexc)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017203 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017204 * SCC "minInclusive and minExclusive"
17205 */
17206 FACET_RESTR_MUTUAL_ERR(fmininc, fminexc)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017207 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017208
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017209 if (flength && bflength) {
17210 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017211 * SCC "length valid restriction"
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017212 * The values have to be equal.
17213 */
17214 res = xmlSchemaCompareValues(flength->val, bflength->val);
17215 if (res == -2)
17216 goto internal_error;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017217 if (res != 0)
17218 xmlSchemaDeriveFacetErr(pctxt, flength, bflength, 0, 0, 1);
17219 if ((res != 0) && (bflength->fixed)) {
17220 FACET_RESTR_FIXED_ERR(flength)
17221 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017222
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017223 }
17224 if (fminlen && bfminlen) {
17225 /*
17226 * SCC "minLength valid restriction"
17227 * minLength >= BASE minLength
17228 */
17229 res = xmlSchemaCompareValues(fminlen->val, bfminlen->val);
17230 if (res == -2)
17231 goto internal_error;
17232 if (res == -1)
17233 xmlSchemaDeriveFacetErr(pctxt, fminlen, bfminlen, 1, 1, 1);
17234 if ((res != 0) && (bfminlen->fixed)) {
17235 FACET_RESTR_FIXED_ERR(fminlen)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017236 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017237 }
17238 if (fmaxlen && bfmaxlen) {
17239 /*
17240 * SCC "maxLength valid restriction"
17241 * maxLength <= BASE minLength
17242 */
17243 res = xmlSchemaCompareValues(fmaxlen->val, bfmaxlen->val);
17244 if (res == -2)
17245 goto internal_error;
17246 if (res == 1)
17247 xmlSchemaDeriveFacetErr(pctxt, fmaxlen, bfmaxlen, -1, 1, 1);
17248 if ((res != 0) && (bfmaxlen->fixed)) {
17249 FACET_RESTR_FIXED_ERR(fmaxlen)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017250 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017251 }
17252 /*
17253 * SCC "length and minLength or maxLength"
17254 */
17255 if (! flength)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017256 flength = bflength;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017257 if (flength) {
17258 if (! fminlen)
17259 flength = bflength;
17260 if (fminlen) {
17261 /* (1.1) length >= minLength */
17262 res = xmlSchemaCompareValues(flength->val, fminlen->val);
17263 if (res == -2)
17264 goto internal_error;
17265 if (res == -1)
17266 xmlSchemaDeriveFacetErr(pctxt, flength, fminlen, 1, 1, 0);
17267 }
17268 if (! fmaxlen)
17269 fmaxlen = bfmaxlen;
17270 if (fmaxlen) {
17271 /* (2.1) length <= maxLength */
17272 res = xmlSchemaCompareValues(flength->val, fmaxlen->val);
17273 if (res == -2)
17274 goto internal_error;
17275 if (res == 1)
17276 xmlSchemaDeriveFacetErr(pctxt, flength, fmaxlen, -1, 1, 0);
17277 }
17278 }
17279 if (fmaxinc) {
17280 /*
17281 * "maxInclusive"
17282 */
17283 if (fmininc) {
17284 /* SCC "maxInclusive >= minInclusive" */
17285 res = xmlSchemaCompareValues(fmaxinc->val, fmininc->val);
17286 if (res == -2)
17287 goto internal_error;
17288 if (res == -1) {
17289 xmlSchemaDeriveFacetErr(pctxt, fmaxinc, fmininc, 1, 1, 0);
17290 }
17291 }
17292 /*
17293 * SCC "maxInclusive valid restriction"
17294 */
17295 if (bfmaxinc) {
17296 /* maxInclusive <= BASE maxInclusive */
17297 res = xmlSchemaCompareValues(fmaxinc->val, bfmaxinc->val);
17298 if (res == -2)
17299 goto internal_error;
17300 if (res == 1)
17301 xmlSchemaDeriveFacetErr(pctxt, fmaxinc, bfmaxinc, -1, 1, 1);
17302 if ((res != 0) && (bfmaxinc->fixed)) {
17303 FACET_RESTR_FIXED_ERR(fmaxinc)
17304 }
17305 }
17306 if (bfmaxexc) {
17307 /* maxInclusive < BASE maxExclusive */
17308 res = xmlSchemaCompareValues(fmaxinc->val, bfmaxexc->val);
17309 if (res == -2)
17310 goto internal_error;
17311 if (res != -1) {
17312 xmlSchemaDeriveFacetErr(pctxt, fmaxinc, bfmaxexc, -1, 0, 1);
17313 }
17314 }
17315 if (bfmininc) {
17316 /* maxInclusive >= BASE minInclusive */
17317 res = xmlSchemaCompareValues(fmaxinc->val, bfmininc->val);
17318 if (res == -2)
17319 goto internal_error;
17320 if (res == -1) {
17321 xmlSchemaDeriveFacetErr(pctxt, fmaxinc, bfmininc, 1, 1, 1);
17322 }
17323 }
17324 if (bfminexc) {
17325 /* maxInclusive > BASE minExclusive */
17326 res = xmlSchemaCompareValues(fmaxinc->val, bfminexc->val);
17327 if (res == -2)
17328 goto internal_error;
17329 if (res != 1) {
17330 xmlSchemaDeriveFacetErr(pctxt, fmaxinc, bfminexc, 1, 0, 1);
17331 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017332 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017333 }
17334 if (fmaxexc) {
17335 /*
17336 * "maxExclusive >= minExclusive"
17337 */
17338 if (fminexc) {
17339 res = xmlSchemaCompareValues(fmaxexc->val, fminexc->val);
17340 if (res == -2)
17341 goto internal_error;
17342 if (res == -1) {
17343 xmlSchemaDeriveFacetErr(pctxt, fmaxexc, fminexc, 1, 1, 0);
17344 }
17345 }
17346 /*
17347 * "maxExclusive valid restriction"
17348 */
17349 if (bfmaxexc) {
17350 /* maxExclusive <= BASE maxExclusive */
17351 res = xmlSchemaCompareValues(fmaxexc->val, bfmaxexc->val);
17352 if (res == -2)
17353 goto internal_error;
17354 if (res == 1) {
17355 xmlSchemaDeriveFacetErr(pctxt, fmaxexc, bfmaxexc, -1, 1, 1);
17356 }
17357 if ((res != 0) && (bfmaxexc->fixed)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017358 FACET_RESTR_FIXED_ERR(fmaxexc)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017359 }
17360 }
17361 if (bfmaxinc) {
17362 /* maxExclusive <= BASE maxInclusive */
17363 res = xmlSchemaCompareValues(fmaxexc->val, bfmaxinc->val);
17364 if (res == -2)
17365 goto internal_error;
17366 if (res == 1) {
17367 xmlSchemaDeriveFacetErr(pctxt, fmaxexc, bfmaxinc, -1, 1, 1);
17368 }
17369 }
17370 if (bfmininc) {
17371 /* maxExclusive > BASE minInclusive */
17372 res = xmlSchemaCompareValues(fmaxexc->val, bfmininc->val);
17373 if (res == -2)
17374 goto internal_error;
17375 if (res != 1) {
17376 xmlSchemaDeriveFacetErr(pctxt, fmaxexc, bfmininc, 1, 0, 1);
17377 }
17378 }
17379 if (bfminexc) {
17380 /* maxExclusive > BASE minExclusive */
17381 res = xmlSchemaCompareValues(fmaxexc->val, bfminexc->val);
17382 if (res == -2)
17383 goto internal_error;
17384 if (res != 1) {
17385 xmlSchemaDeriveFacetErr(pctxt, fmaxexc, bfminexc, 1, 0, 1);
17386 }
17387 }
17388 }
17389 if (fminexc) {
17390 /*
17391 * "minExclusive < maxInclusive"
17392 */
17393 if (fmaxinc) {
17394 res = xmlSchemaCompareValues(fminexc->val, fmaxinc->val);
17395 if (res == -2)
17396 goto internal_error;
17397 if (res != -1) {
17398 xmlSchemaDeriveFacetErr(pctxt, fminexc, fmaxinc, -1, 0, 0);
17399 }
17400 }
17401 /*
17402 * "minExclusive valid restriction"
17403 */
17404 if (bfminexc) {
17405 /* minExclusive >= BASE minExclusive */
17406 res = xmlSchemaCompareValues(fminexc->val, bfminexc->val);
17407 if (res == -2)
17408 goto internal_error;
17409 if (res == -1) {
17410 xmlSchemaDeriveFacetErr(pctxt, fminexc, bfminexc, 1, 1, 1);
17411 }
17412 if ((res != 0) && (bfminexc->fixed)) {
17413 FACET_RESTR_FIXED_ERR(fminexc)
17414 }
17415 }
17416 if (bfmaxinc) {
17417 /* minExclusive <= BASE maxInclusive */
17418 res = xmlSchemaCompareValues(fminexc->val, bfmaxinc->val);
17419 if (res == -2)
17420 goto internal_error;
17421 if (res == 1) {
17422 xmlSchemaDeriveFacetErr(pctxt, fminexc, bfmaxinc, -1, 1, 1);
17423 }
17424 }
17425 if (bfmininc) {
17426 /* minExclusive >= BASE minInclusive */
17427 res = xmlSchemaCompareValues(fminexc->val, bfmininc->val);
17428 if (res == -2)
17429 goto internal_error;
17430 if (res == -1) {
17431 xmlSchemaDeriveFacetErr(pctxt, fminexc, bfmininc, 1, 1, 1);
17432 }
17433 }
17434 if (bfmaxexc) {
17435 /* minExclusive < BASE maxExclusive */
17436 res = xmlSchemaCompareValues(fminexc->val, bfmaxexc->val);
17437 if (res == -2)
17438 goto internal_error;
17439 if (res != -1) {
17440 xmlSchemaDeriveFacetErr(pctxt, fminexc, bfmaxexc, -1, 0, 1);
17441 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017442 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017443 }
17444 if (fmininc) {
17445 /*
17446 * "minInclusive < maxExclusive"
17447 */
17448 if (fmaxexc) {
17449 res = xmlSchemaCompareValues(fmininc->val, fmaxexc->val);
17450 if (res == -2)
17451 goto internal_error;
17452 if (res != -1) {
17453 xmlSchemaDeriveFacetErr(pctxt, fmininc, fmaxexc, -1, 0, 0);
17454 }
17455 }
17456 /*
17457 * "minExclusive valid restriction"
17458 */
17459 if (bfmininc) {
17460 /* minInclusive >= BASE minInclusive */
17461 res = xmlSchemaCompareValues(fmininc->val, bfmininc->val);
17462 if (res == -2)
17463 goto internal_error;
17464 if (res == -1) {
17465 xmlSchemaDeriveFacetErr(pctxt, fmininc, bfmininc, 1, 1, 1);
17466 }
17467 if ((res != 0) && (bfmininc->fixed)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017468 FACET_RESTR_FIXED_ERR(fmininc)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017469 }
17470 }
17471 if (bfmaxinc) {
17472 /* minInclusive <= BASE maxInclusive */
17473 res = xmlSchemaCompareValues(fmininc->val, bfmaxinc->val);
17474 if (res == -2)
17475 goto internal_error;
Daniel Veillard0a119eb2005-07-20 13:46:00 +000017476 if (res == 1) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017477 xmlSchemaDeriveFacetErr(pctxt, fmininc, bfmaxinc, -1, 1, 1);
17478 }
17479 }
17480 if (bfminexc) {
17481 /* minInclusive > BASE minExclusive */
17482 res = xmlSchemaCompareValues(fmininc->val, bfminexc->val);
17483 if (res == -2)
17484 goto internal_error;
17485 if (res != 1)
17486 xmlSchemaDeriveFacetErr(pctxt, fmininc, bfminexc, 1, 0, 1);
17487 }
17488 if (bfmaxexc) {
17489 /* minInclusive < BASE maxExclusive */
17490 res = xmlSchemaCompareValues(fmininc->val, bfmaxexc->val);
17491 if (res == -2)
17492 goto internal_error;
17493 if (res != -1)
17494 xmlSchemaDeriveFacetErr(pctxt, fmininc, bfmaxexc, -1, 0, 1);
17495 }
17496 }
17497 if (ftotdig && bftotdig) {
17498 /*
17499 * SCC " totalDigits valid restriction"
17500 * totalDigits <= BASE totalDigits
17501 */
17502 res = xmlSchemaCompareValues(ftotdig->val, bftotdig->val);
17503 if (res == -2)
17504 goto internal_error;
17505 if (res == 1)
17506 xmlSchemaDeriveFacetErr(pctxt, ftotdig, bftotdig,
17507 -1, 1, 1);
17508 if ((res != 0) && (bftotdig->fixed)) {
17509 FACET_RESTR_FIXED_ERR(ftotdig)
17510 }
17511 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017512 if (ffracdig && bffracdig) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017513 /*
17514 * SCC "fractionDigits valid restriction"
17515 * fractionDigits <= BASE fractionDigits
17516 */
17517 res = xmlSchemaCompareValues(ffracdig->val, bffracdig->val);
17518 if (res == -2)
17519 goto internal_error;
17520 if (res == 1)
17521 xmlSchemaDeriveFacetErr(pctxt, ffracdig, bffracdig,
17522 -1, 1, 1);
17523 if ((res != 0) && (bffracdig->fixed)) {
17524 FACET_RESTR_FIXED_ERR(ffracdig)
17525 }
17526 }
17527 /*
17528 * SCC "fractionDigits less than or equal to totalDigits"
17529 */
17530 if (! ftotdig)
17531 ftotdig = bftotdig;
17532 if (! ffracdig)
17533 ffracdig = bffracdig;
17534 if (ftotdig && ffracdig) {
17535 res = xmlSchemaCompareValues(ffracdig->val, ftotdig->val);
17536 if (res == -2)
17537 goto internal_error;
17538 if (res == 1)
17539 xmlSchemaDeriveFacetErr(pctxt, ffracdig, ftotdig,
17540 -1, 1, 0);
17541 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017542 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017543 * *Enumerations* won' be added here, since only the first set
17544 * of enumerations in the ancestor-or-self axis is used
17545 * for validation, plus we need to use the base type of those
17546 * enumerations for whitespace.
17547 *
17548 * *Patterns*: won't be add here, since they are ORed at
17549 * type level and ANDed at ancestor level. This will
17550 * happed during validation by walking the base axis
17551 * of the type.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017552 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017553 for (cur = base->facetSet; cur != NULL; cur = cur->next) {
17554 bfacet = cur->facet;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017555 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017556 * Special handling of enumerations and patterns.
17557 * TODO: hmm, they should not appear in the set, so remove this.
17558 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017559 if ((bfacet->type == XML_SCHEMA_FACET_PATTERN) ||
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017560 (bfacet->type == XML_SCHEMA_FACET_ENUMERATION))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017561 continue;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017562 /*
17563 * Search for a duplicate facet in the current type.
17564 */
17565 link = type->facetSet;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000017566 /* err = 0; */
17567 /* fixedErr = 0; */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017568 while (link != NULL) {
17569 facet = link->facet;
17570 if (facet->type == bfacet->type) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017571 switch (facet->type) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017572 case XML_SCHEMA_FACET_WHITESPACE:
17573 /*
17574 * The whitespace must be stronger.
17575 */
17576 if (facet->whitespace < bfacet->whitespace) {
17577 FACET_RESTR_ERR(flength,
17578 "The 'whitespace' value has to be equal to "
17579 "or stronger than the 'whitespace' value of "
17580 "the base type")
17581 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017582 if ((bfacet->fixed) &&
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017583 (facet->whitespace != bfacet->whitespace)) {
17584 FACET_RESTR_FIXED_ERR(facet)
17585 }
17586 break;
17587 default:
17588 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017589 }
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017590 /* Duplicate found. */
17591 break;
17592 }
17593 link = link->next;
17594 }
17595 /*
17596 * If no duplicate was found: add the base types's facet
17597 * to the set.
17598 */
17599 if (link == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017600 link = (xmlSchemaFacetLinkPtr)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017601 xmlMalloc(sizeof(xmlSchemaFacetLink));
17602 if (link == NULL) {
17603 xmlSchemaPErrMemory(pctxt,
17604 "deriving facets, creating a facet link", NULL);
17605 return (-1);
17606 }
17607 link->facet = cur->facet;
17608 link->next = NULL;
17609 if (last == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017610 type->facetSet = link;
17611 else
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017612 last->next = link;
17613 last = link;
17614 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017615
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017616 }
17617
17618 return (0);
17619internal_error:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017620 PERROR_INT("xmlSchemaDeriveAndValidateFacets",
17621 "an error occured");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017622 return (-1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017623}
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000017624
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017625static int
17626xmlSchemaFinishMemberTypeDefinitionsProperty(xmlSchemaParserCtxtPtr pctxt,
17627 xmlSchemaTypePtr type)
17628{
17629 xmlSchemaTypeLinkPtr link, lastLink, prevLink, subLink, newLink;
17630 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017631 * The actual value is then formed by replacing any union type
17632 * definition in the ·explicit members· with the members of their
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017633 * {member type definitions}, in order.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017634 *
17635 * TODO: There's a bug entry at
17636 * "http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005JulSep/0287.html"
17637 * which indicates that we'll keep the union types the future.
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017638 */
17639 link = type->memberTypes;
17640 while (link != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017641
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017642 if (WXS_IS_TYPE_NOT_FIXED(link->type))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000017643 xmlSchemaTypeFixup(link->type, ACTXT_CAST pctxt);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017644
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017645 if (WXS_IS_UNION(link->type)) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017646 subLink = xmlSchemaGetUnionSimpleTypeMemberTypes(link->type);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017647 if (subLink != NULL) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017648 link->type = subLink->type;
17649 if (subLink->next != NULL) {
17650 lastLink = link->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017651 subLink = subLink->next;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017652 prevLink = link;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017653 while (subLink != NULL) {
17654 newLink = (xmlSchemaTypeLinkPtr)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017655 xmlMalloc(sizeof(xmlSchemaTypeLink));
17656 if (newLink == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017657 xmlSchemaPErrMemory(pctxt, "allocating a type link",
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017658 NULL);
17659 return (-1);
17660 }
17661 newLink->type = subLink->type;
17662 prevLink->next = newLink;
17663 prevLink = newLink;
17664 newLink->next = lastLink;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017665
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017666 subLink = subLink->next;
17667 }
17668 }
17669 }
17670 }
17671 link = link->next;
17672 }
17673 return (0);
17674}
17675
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017676static void
17677xmlSchemaTypeFixupOptimFacets(xmlSchemaTypePtr type)
17678{
17679 int has = 0, needVal = 0, normVal = 0;
17680
17681 has = (type->baseType->flags & XML_SCHEMAS_TYPE_HAS_FACETS) ? 1 : 0;
17682 if (has) {
17683 needVal = (type->baseType->flags &
17684 XML_SCHEMAS_TYPE_FACETSNEEDVALUE) ? 1 : 0;
17685 normVal = (type->baseType->flags &
17686 XML_SCHEMAS_TYPE_NORMVALUENEEDED) ? 1 : 0;
17687 }
17688 if (type->facets != NULL) {
17689 xmlSchemaFacetPtr fac;
17690
17691 for (fac = type->facets; fac != NULL; fac = fac->next) {
17692 switch (fac->type) {
17693 case XML_SCHEMA_FACET_WHITESPACE:
17694 break;
17695 case XML_SCHEMA_FACET_PATTERN:
17696 normVal = 1;
17697 has = 1;
17698 break;
17699 case XML_SCHEMA_FACET_ENUMERATION:
17700 needVal = 1;
17701 normVal = 1;
17702 has = 1;
17703 break;
17704 default:
17705 has = 1;
17706 break;
17707 }
17708 }
17709 }
17710 if (normVal)
17711 type->flags |= XML_SCHEMAS_TYPE_NORMVALUENEEDED;
17712 if (needVal)
17713 type->flags |= XML_SCHEMAS_TYPE_FACETSNEEDVALUE;
17714 if (has)
17715 type->flags |= XML_SCHEMAS_TYPE_HAS_FACETS;
17716
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017717 if (has && (! needVal) && WXS_IS_ATOMIC(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017718 xmlSchemaTypePtr prim = xmlSchemaGetPrimitiveType(type);
17719 /*
17720 * OPTIMIZE VAL TODO: Some facets need a computed value.
17721 */
17722 if ((prim->builtInType != XML_SCHEMAS_ANYSIMPLETYPE) &&
17723 (prim->builtInType != XML_SCHEMAS_STRING)) {
17724 type->flags |= XML_SCHEMAS_TYPE_FACETSNEEDVALUE;
17725 }
17726 }
17727}
17728
17729static int
17730xmlSchemaTypeFixupWhitespace(xmlSchemaTypePtr type)
17731{
17732
17733
17734 /*
17735 * Evaluate the whitespace-facet value.
17736 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017737 if (WXS_IS_LIST(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017738 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE;
17739 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017740 } else if (WXS_IS_UNION(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017741 return (0);
17742
17743 if (type->facetSet != NULL) {
17744 xmlSchemaFacetLinkPtr lin;
17745
17746 for (lin = type->facetSet; lin != NULL; lin = lin->next) {
17747 if (lin->facet->type == XML_SCHEMA_FACET_WHITESPACE) {
17748 switch (lin->facet->whitespace) {
17749 case XML_SCHEMAS_FACET_PRESERVE:
17750 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE;
17751 break;
17752 case XML_SCHEMAS_FACET_REPLACE:
17753 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_REPLACE;
17754 break;
17755 case XML_SCHEMAS_FACET_COLLAPSE:
17756 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE;
17757 break;
17758 default:
17759 return (-1);
17760 }
17761 return (0);
17762 }
17763 }
17764 }
17765 /*
17766 * For all ·atomic· datatypes other than string (and types ·derived·
17767 * by ·restriction· from it) the value of whiteSpace is fixed to
17768 * collapse
17769 */
17770 {
17771 xmlSchemaTypePtr anc;
17772
17773 for (anc = type->baseType; anc != NULL &&
17774 anc->builtInType != XML_SCHEMAS_ANYTYPE;
17775 anc = anc->baseType) {
17776
17777 if (anc->type == XML_SCHEMA_TYPE_BASIC) {
17778 if (anc->builtInType == XML_SCHEMAS_NORMSTRING) {
17779 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_REPLACE;
17780
17781 } else if ((anc->builtInType == XML_SCHEMAS_STRING) ||
17782 (anc->builtInType == XML_SCHEMAS_ANYSIMPLETYPE)) {
17783 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE;
17784
17785 } else
17786 type->flags |= XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE;
17787 break;
17788 }
17789 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017790 }
17791 return (0);
17792}
17793
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017794static int
17795xmlSchemaFixupSimpleTypeStageOne(xmlSchemaParserCtxtPtr pctxt,
17796 xmlSchemaTypePtr type)
Daniel Veillard4255d502002-04-16 15:50:10 +000017797{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017798 if (type->type != XML_SCHEMA_TYPE_SIMPLE)
17799 return(0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017800 if (! WXS_IS_TYPE_NOT_FIXED_1(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017801 return(0);
17802 type->flags |= XML_SCHEMAS_TYPE_FIXUP_1;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000017803
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017804 if (WXS_IS_LIST(type)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017805 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017806 * Corresponds to <simpleType><list>...
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017807 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017808 if (type->subtypes == NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017809 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017810 * This one is really needed, so get out.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017811 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017812 PERROR_INT("xmlSchemaFixupSimpleTypeStageOne",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017813 "list type has no item-type assigned");
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017814 return(-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017815 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017816 } else if (WXS_IS_UNION(type)) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017817 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017818 * Corresponds to <simpleType><union>...
17819 */
17820 if (type->memberTypes == NULL) {
17821 /*
17822 * This one is really needed, so get out.
17823 */
17824 PERROR_INT("xmlSchemaFixupSimpleTypeStageOne",
17825 "union type has no member-types assigned");
17826 return(-1);
17827 }
17828 } else {
17829 /*
17830 * Corresponds to <simpleType><restriction>...
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017831 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017832 if (type->baseType == NULL) {
17833 PERROR_INT("xmlSchemaFixupSimpleTypeStageOne",
17834 "type has no base-type assigned");
17835 return(-1);
17836 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017837 if (WXS_IS_TYPE_NOT_FIXED_1(type->baseType))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017838 if (xmlSchemaFixupSimpleTypeStageOne(pctxt, type->baseType) == -1)
17839 return(-1);
17840 /*
17841 * Variety
17842 * If the <restriction> alternative is chosen, then the
17843 * {variety} of the {base type definition}.
17844 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017845 if (WXS_IS_ATOMIC(type->baseType))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017846 type->flags |= XML_SCHEMAS_TYPE_VARIETY_ATOMIC;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017847 else if (WXS_IS_LIST(type->baseType)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017848 type->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017849 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017850 * Inherit the itemType.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017851 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017852 type->subtypes = type->baseType->subtypes;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017853 } else if (WXS_IS_UNION(type->baseType)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017854 type->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017855 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017856 * NOTE that we won't assign the memberTypes of the base,
17857 * since this will make trouble when freeing them; we will
17858 * use a lookup function to access them instead.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017859 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017860 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000017861 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017862 return(0);
17863}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017864
Daniel Veillard8651f532002-04-17 09:06:27 +000017865#ifdef DEBUG_TYPE
Daniel Veillard67952602006-01-05 15:29:44 +000017866static void
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017867xmlSchemaDebugFixedType(xmlSchemaParserCtxtPtr pctxt,
17868 xmlSchemaTypePtr type)
17869{
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017870 if (type->node != NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000017871 xmlGenericError(xmlGenericErrorContext,
17872 "Type of %s : %s:%d :", name,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017873 type->node->doc->URL,
17874 xmlGetLineNo(type->node));
Daniel Veillarddecd64d2002-04-18 14:41:51 +000017875 } else {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000017876 xmlGenericError(xmlGenericErrorContext, "Type of %s :", name);
Daniel Veillarddecd64d2002-04-18 14:41:51 +000017877 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017878 if ((WXS_IS_SIMPLE(type)) || (WXS_IS_COMPLEX(type))) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017879 switch (type->contentType) {
17880 case XML_SCHEMA_CONTENT_SIMPLE:
17881 xmlGenericError(xmlGenericErrorContext, "simple\n");
17882 break;
17883 case XML_SCHEMA_CONTENT_ELEMENTS:
17884 xmlGenericError(xmlGenericErrorContext, "elements\n");
17885 break;
17886 case XML_SCHEMA_CONTENT_UNKNOWN:
17887 xmlGenericError(xmlGenericErrorContext, "unknown !!!\n");
17888 break;
17889 case XML_SCHEMA_CONTENT_EMPTY:
17890 xmlGenericError(xmlGenericErrorContext, "empty\n");
17891 break;
17892 case XML_SCHEMA_CONTENT_MIXED:
17893 if (xmlSchemaIsParticleEmptiable((xmlSchemaParticlePtr)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000017894 type->subtypes))
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000017895 xmlGenericError(xmlGenericErrorContext,
17896 "mixed as emptiable particle\n");
17897 else
17898 xmlGenericError(xmlGenericErrorContext, "mixed\n");
17899 break;
17900 /* Removed, since not used. */
17901 /*
17902 case XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS:
17903 xmlGenericError(xmlGenericErrorContext, "mixed or elems\n");
17904 break;
17905 */
17906 case XML_SCHEMA_CONTENT_BASIC:
17907 xmlGenericError(xmlGenericErrorContext, "basic\n");
17908 break;
17909 default:
17910 xmlGenericError(xmlGenericErrorContext,
17911 "not registered !!!\n");
17912 break;
17913 }
Daniel Veillard8651f532002-04-17 09:06:27 +000017914 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017915}
Daniel Veillard8651f532002-04-17 09:06:27 +000017916#endif
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017917
17918/*
17919* 3.14.6 Constraints on Simple Type Definition Schema Components
17920*/
17921static int
17922xmlSchemaFixupSimpleTypeStageTwo(xmlSchemaParserCtxtPtr pctxt,
17923 xmlSchemaTypePtr type)
17924{
17925 int res, olderrs = pctxt->nberrors;
17926
17927 if (type->type != XML_SCHEMA_TYPE_SIMPLE)
17928 return(-1);
17929
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017930 if (! WXS_IS_TYPE_NOT_FIXED(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017931 return(0);
17932
17933 type->flags |= XML_SCHEMAS_TYPE_INTERNAL_RESOLVED;
17934 type->contentType = XML_SCHEMA_CONTENT_SIMPLE;
17935
17936 if (type->baseType == NULL) {
17937 PERROR_INT("xmlSchemaFixupSimpleTypeStageTwo",
17938 "missing baseType");
17939 goto exit_failure;
17940 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017941 if (WXS_IS_TYPE_NOT_FIXED(type->baseType))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000017942 xmlSchemaTypeFixup(type->baseType, ACTXT_CAST pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017943 /*
17944 * If a member type of a union is a union itself, we need to substitute
17945 * that member type for its member types.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000017946 * NOTE that this might change in WXS 1.1; i.e. we will keep the union
17947 * types in WXS 1.1.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000017948 */
17949 if ((type->memberTypes != NULL) &&
17950 (xmlSchemaFinishMemberTypeDefinitionsProperty(pctxt, type) == -1))
17951 return(-1);
17952 /*
17953 * SPEC src-simple-type 1
17954 * "The corresponding simple type definition, if any, must satisfy
17955 * the conditions set out in Constraints on Simple Type Definition
17956 * Schema Components (§3.14.6)."
17957 */
17958 /*
17959 * Schema Component Constraint: Simple Type Definition Properties Correct
17960 * (st-props-correct)
17961 */
17962 res = xmlSchemaCheckSTPropsCorrect(pctxt, type);
17963 HFAILURE HERROR
17964 /*
17965 * Schema Component Constraint: Derivation Valid (Restriction, Simple)
17966 * (cos-st-restricts)
17967 */
17968 res = xmlSchemaCheckCOSSTRestricts(pctxt, type);
17969 HFAILURE HERROR
17970 /*
17971 * TODO: Removed the error report, since it got annoying to get an
17972 * extra error report, if anything failed until now.
17973 * Enable this if needed.
17974 *
17975 * xmlSchemaPErr(ctxt, type->node,
17976 * XML_SCHEMAP_SRC_SIMPLE_TYPE_1,
17977 * "Simple type '%s' does not satisfy the constraints "
17978 * "on simple type definitions.\n",
17979 * type->name, NULL);
17980 */
17981 /*
17982 * Schema Component Constraint: Simple Type Restriction (Facets)
17983 * (st-restrict-facets)
17984 */
17985 res = xmlSchemaCheckFacetValues(type, pctxt);
17986 HFAILURE HERROR
17987 if ((type->facetSet != NULL) ||
17988 (type->baseType->facetSet != NULL)) {
17989 res = xmlSchemaDeriveAndValidateFacets(pctxt, type);
17990 HFAILURE HERROR
17991 }
17992 /*
17993 * Whitespace value.
17994 */
17995 res = xmlSchemaTypeFixupWhitespace(type);
17996 HFAILURE HERROR
17997 xmlSchemaTypeFixupOptimFacets(type);
17998
17999exit_error:
18000#ifdef DEBUG_TYPE
18001 xmlSchemaDebugFixedType(pctxt, type);
18002#endif
18003 if (olderrs != pctxt->nberrors)
18004 return(pctxt->err);
18005 return(0);
18006
18007exit_failure:
18008#ifdef DEBUG_TYPE
18009 xmlSchemaDebugFixedType(pctxt, type);
18010#endif
18011 return(-1);
18012}
18013
18014static int
18015xmlSchemaFixupComplexType(xmlSchemaParserCtxtPtr pctxt,
18016 xmlSchemaTypePtr type)
18017{
18018 int res = 0, olderrs = pctxt->nberrors;
18019 xmlSchemaTypePtr baseType = type->baseType;
18020
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018021 if (! WXS_IS_TYPE_NOT_FIXED(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018022 return(0);
18023 type->flags |= XML_SCHEMAS_TYPE_INTERNAL_RESOLVED;
18024 if (baseType == NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018025 PERROR_INT("xmlSchemaFixupComplexType",
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018026 "missing baseType");
18027 goto exit_failure;
18028 }
18029 /*
18030 * Fixup the base type.
18031 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018032 if (WXS_IS_TYPE_NOT_FIXED(baseType))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018033 xmlSchemaTypeFixup(baseType, ACTXT_CAST pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018034 if (baseType->flags & XML_SCHEMAS_TYPE_INTERNAL_INVALID) {
18035 /*
18036 * Skip fixup if the base type is invalid.
18037 * TODO: Generate a warning!
18038 */
18039 return(0);
18040 }
18041 /*
18042 * This basically checks if the base type can be derived.
18043 */
18044 res = xmlSchemaCheckSRCCT(pctxt, type);
18045 HFAILURE HERROR
18046 /*
18047 * Fixup the content type.
18048 */
18049 if (type->contentType == XML_SCHEMA_CONTENT_SIMPLE) {
18050 /*
18051 * Corresponds to <complexType><simpleContent>...
18052 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018053 if ((WXS_IS_COMPLEX(baseType)) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018054 (baseType->contentTypeDef != NULL) &&
18055 (WXS_IS_RESTRICTION(type))) {
18056 xmlSchemaTypePtr contentBase, content;
18057#ifdef ENABLE_NAMED_LOCALS
18058 char buf[30];
18059 const xmlChar *tmpname;
18060#endif
18061 /*
18062 * SPEC (1) If <restriction> + base type is <complexType>,
18063 * "whose own {content type} is a simple type..."
18064 */
18065 if (type->contentTypeDef != NULL) {
18066 /*
18067 * SPEC (1.1) "the simple type definition corresponding to the
18068 * <simpleType> among the [children] of <restriction> if there
18069 * is one;"
18070 * Note that this "<simpleType> among the [children]" was put
18071 * into ->contentTypeDef during parsing.
18072 */
18073 contentBase = type->contentTypeDef;
18074 type->contentTypeDef = NULL;
18075 } else {
18076 /*
18077 * (1.2) "...otherwise (<restriction> has no <simpleType>
18078 * among its [children]), the simple type definition which
18079 * is the {content type} of the ... base type."
18080 */
18081 contentBase = baseType->contentTypeDef;
18082 }
18083 /*
18084 * SPEC
18085 * "... a simple type definition which restricts the simple
18086 * type definition identified in clause 1.1 or clause 1.2
18087 * with a set of facet components"
18088 *
18089 * Create the anonymous simple type, which will be the content
18090 * type of the complex type.
18091 */
18092#ifdef ENABLE_NAMED_LOCALS
18093 snprintf(buf, 29, "#scST%d", ++(pctxt->counter));
18094 tmpname = xmlDictLookup(pctxt->dict, BAD_CAST buf, -1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018095 content = xmlSchemaAddType(pctxt, pctxt->schema,
18096 XML_SCHEMA_TYPE_SIMPLE, tmpname, type->targetNamespace,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018097 type->node, 0);
18098#else
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018099 content = xmlSchemaAddType(pctxt, pctxt->schema,
18100 XML_SCHEMA_TYPE_SIMPLE, NULL, type->targetNamespace,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018101 type->node, 0);
18102#endif
18103 if (content == NULL)
18104 goto exit_failure;
18105 /*
18106 * We will use the same node as for the <complexType>
18107 * to have it somehow anchored in the schema doc.
18108 */
18109 content->type = XML_SCHEMA_TYPE_SIMPLE;
18110 content->baseType = contentBase;
18111 /*
18112 * Move the facets, previously anchored on the
18113 * complexType during parsing.
18114 */
18115 content->facets = type->facets;
18116 type->facets = NULL;
18117 content->facetSet = type->facetSet;
18118 type->facetSet = NULL;
18119
18120 type->contentTypeDef = content;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018121 if (WXS_IS_TYPE_NOT_FIXED(contentBase))
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018122 xmlSchemaTypeFixup(contentBase, ACTXT_CAST pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018123 /*
18124 * Fixup the newly created type. We don't need to check
18125 * for circularity here.
18126 */
18127 res = xmlSchemaFixupSimpleTypeStageOne(pctxt, content);
18128 HFAILURE HERROR
18129 res = xmlSchemaFixupSimpleTypeStageTwo(pctxt, content);
18130 HFAILURE HERROR
18131
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018132 } else if ((WXS_IS_COMPLEX(baseType)) &&
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018133 (baseType->contentType == XML_SCHEMA_CONTENT_MIXED) &&
18134 (WXS_IS_RESTRICTION(type))) {
18135 /*
18136 * SPEC (2) If <restriction> + base is a mixed <complexType> with
18137 * an emptiable particle, then a simple type definition which
18138 * restricts the <restriction>'s <simpleType> child.
18139 */
18140 if ((type->contentTypeDef == NULL) ||
18141 (type->contentTypeDef->baseType == NULL)) {
18142 /*
18143 * TODO: Check if this ever happens.
18144 */
18145 xmlSchemaPCustomErr(pctxt,
18146 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018147 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018148 "Internal error: xmlSchemaTypeFixup, "
18149 "complex type '%s': the <simpleContent><restriction> "
18150 "is missing a <simpleType> child, but was not catched "
18151 "by xmlSchemaCheckSRCCT()", type->name);
18152 goto exit_failure;
18153 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018154 } else if ((WXS_IS_COMPLEX(baseType)) && WXS_IS_EXTENSION(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018155 /*
18156 * SPEC (3) If <extension> + base is <complexType> with
18157 * <simpleType> content, "...then the {content type} of that
18158 * complex type definition"
18159 */
18160 if (baseType->contentTypeDef == NULL) {
18161 /*
18162 * TODO: Check if this ever happens. xmlSchemaCheckSRCCT
18163 * should have catched this already.
18164 */
18165 xmlSchemaPCustomErr(pctxt,
18166 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018167 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018168 "Internal error: xmlSchemaTypeFixup, "
18169 "complex type '%s': the <extension>ed base type is "
18170 "a complex type with no simple content type",
18171 type->name);
18172 goto exit_failure;
18173 }
18174 type->contentTypeDef = baseType->contentTypeDef;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018175 } else if ((WXS_IS_SIMPLE(baseType)) && WXS_IS_EXTENSION(type)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018176 /*
18177 * SPEC (4) <extension> + base is <simpleType>
18178 * "... then that simple type definition"
18179 */
18180 type->contentTypeDef = baseType;
18181 } else {
18182 /*
18183 * TODO: Check if this ever happens.
18184 */
18185 xmlSchemaPCustomErr(pctxt,
18186 XML_SCHEMAP_INTERNAL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018187 WXS_BASIC_CAST type, NULL,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018188 "Internal error: xmlSchemaTypeFixup, "
18189 "complex type '%s' with <simpleContent>: unhandled "
18190 "derivation case", type->name);
18191 goto exit_failure;
18192 }
18193 } else {
18194 int dummySequence = 0;
18195 xmlSchemaParticlePtr particle =
18196 (xmlSchemaParticlePtr) type->subtypes;
18197 /*
18198 * Corresponds to <complexType><complexContent>...
18199 *
18200 * NOTE that the effective mixed was already set during parsing of
18201 * <complexType> and <complexContent>; its flag value is
18202 * XML_SCHEMAS_TYPE_MIXED.
18203 *
18204 * Compute the "effective content":
18205 * (2.1.1) + (2.1.2) + (2.1.3)
18206 */
18207 if ((particle == NULL) ||
18208 ((particle->type == XML_SCHEMA_TYPE_PARTICLE) &&
18209 ((particle->children->type == XML_SCHEMA_TYPE_ALL) ||
18210 (particle->children->type == XML_SCHEMA_TYPE_SEQUENCE) ||
18211 ((particle->children->type == XML_SCHEMA_TYPE_CHOICE) &&
18212 (particle->minOccurs == 0))) &&
18213 ( ((xmlSchemaTreeItemPtr) particle->children)->children == NULL))) {
18214 if (type->flags & XML_SCHEMAS_TYPE_MIXED) {
18215 /*
18216 * SPEC (2.1.4) "If the ·effective mixed· is true, then
18217 * a particle whose properties are as follows:..."
18218 *
18219 * Empty sequence model group with
18220 * minOccurs/maxOccurs = 1 (i.e. a "particle emptiable").
18221 * NOTE that we sill assign it the <complexType> node to
18222 * somehow anchor it in the doc.
18223 */
18224 if ((particle == NULL) ||
18225 (particle->children->type != XML_SCHEMA_TYPE_SEQUENCE)) {
18226 /*
18227 * Create the particle.
18228 */
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000018229 particle = xmlSchemaAddParticle(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018230 type->node, 1, 1);
18231 if (particle == NULL)
18232 goto exit_failure;
18233 /*
18234 * Create the model group.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018235 */ /* URGENT TODO: avoid adding to pending items. */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018236 particle->children = (xmlSchemaTreeItemPtr)
18237 xmlSchemaAddModelGroup(pctxt, pctxt->schema,
18238 XML_SCHEMA_TYPE_SEQUENCE, type->node);
18239 if (particle->children == NULL)
18240 goto exit_failure;
18241
18242 type->subtypes = (xmlSchemaTypePtr) particle;
18243 }
18244 dummySequence = 1;
18245 type->contentType = XML_SCHEMA_CONTENT_ELEMENTS;
18246 } else {
18247 /*
18248 * SPEC (2.1.5) "otherwise empty"
18249 */
18250 type->contentType = XML_SCHEMA_CONTENT_EMPTY;
18251 }
18252 } else {
18253 /*
18254 * SPEC (2.2) "otherwise the particle corresponding to the
18255 * <all>, <choice>, <group> or <sequence> among the
18256 * [children]."
18257 */
18258 type->contentType = XML_SCHEMA_CONTENT_ELEMENTS;
18259 }
18260 /*
18261 * Compute the "content type".
18262 */
18263 if (WXS_IS_RESTRICTION(type)) {
18264 /*
18265 * SPEC (3.1) "If <restriction>..."
18266 * (3.1.1) + (3.1.2) */
18267 if (type->contentType != XML_SCHEMA_CONTENT_EMPTY) {
18268 if (type->flags & XML_SCHEMAS_TYPE_MIXED)
18269 type->contentType = XML_SCHEMA_CONTENT_MIXED;
18270 }
18271 } else {
18272 /*
18273 * SPEC (3.2) "If <extension>..."
18274 */
18275 if (type->contentType == XML_SCHEMA_CONTENT_EMPTY) {
18276 /*
18277 * SPEC (3.2.1)
18278 */
18279 type->contentType = baseType->contentType;
18280 type->subtypes = baseType->subtypes;
18281 /*
18282 * NOTE that the effective mixed is ignored here.
18283 */
18284 } else if (baseType->contentType == XML_SCHEMA_CONTENT_EMPTY) {
18285 /*
18286 * SPEC (3.2.2)
18287 */
18288 if (type->flags & XML_SCHEMAS_TYPE_MIXED)
18289 type->contentType = XML_SCHEMA_CONTENT_MIXED;
18290 } else {
18291 /*
18292 * SPEC (3.2.3)
18293 */
18294 if (type->flags & XML_SCHEMAS_TYPE_MIXED)
18295 type->contentType = XML_SCHEMA_CONTENT_MIXED;
18296 /*
18297 * "A model group whose {compositor} is sequence and whose
18298 * {particles} are..."
18299 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018300 if ((WXS_TYPE_PARTICLE(type) != NULL) &&
18301 (WXS_TYPE_PARTICLE_TERM(type) != NULL) &&
18302 ((WXS_TYPE_PARTICLE_TERM(type))->type ==
18303 XML_SCHEMA_TYPE_ALL))
18304 {
18305 /*
18306 * SPEC cos-all-limited (1)
18307 */
18308 xmlSchemaCustomErr(ACTXT_CAST pctxt,
18309 /* TODO: error code */
18310 XML_SCHEMAP_COS_ALL_LIMITED,
18311 WXS_ITEM_NODE(type), NULL,
18312 "The type has an 'all' model group in its "
18313 "{content type} and thus cannot be derived from "
18314 "a non-empty type, since this would produce a "
18315 "'sequence' model group containing the 'all' "
18316 "model group; 'all' model groups are not "
18317 "allowed to appear inside other model groups",
18318 NULL, NULL);
18319
18320 } else if ((WXS_TYPE_PARTICLE(baseType) != NULL) &&
18321 (WXS_TYPE_PARTICLE_TERM(baseType) != NULL) &&
18322 ((WXS_TYPE_PARTICLE_TERM(baseType))->type ==
18323 XML_SCHEMA_TYPE_ALL))
18324 {
18325 /*
18326 * SPEC cos-all-limited (1)
18327 */
18328 xmlSchemaCustomErr(ACTXT_CAST pctxt,
18329 /* TODO: error code */
18330 XML_SCHEMAP_COS_ALL_LIMITED,
18331 WXS_ITEM_NODE(type), NULL,
18332 "A type cannot be derived by extension from a type "
18333 "which has an 'all' model group in its "
18334 "{content type}, since this would produce a "
18335 "'sequence' model group containing the 'all' "
18336 "model group; 'all' model groups are not "
18337 "allowed to appear inside other model groups",
18338 NULL, NULL);
18339
18340 } else if (! dummySequence) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018341 xmlSchemaTreeItemPtr effectiveContent =
18342 (xmlSchemaTreeItemPtr) type->subtypes;
18343 /*
18344 * Create the particle.
18345 */
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000018346 particle = xmlSchemaAddParticle(pctxt,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018347 type->node, 1, 1);
18348 if (particle == NULL)
18349 goto exit_failure;
18350 /*
18351 * Create the "sequence" model group.
18352 */
18353 particle->children = (xmlSchemaTreeItemPtr)
18354 xmlSchemaAddModelGroup(pctxt, pctxt->schema,
18355 XML_SCHEMA_TYPE_SEQUENCE, type->node);
18356 if (particle->children == NULL)
18357 goto exit_failure;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018358 WXS_TYPE_CONTENTTYPE(type) = (xmlSchemaTypePtr) particle;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018359 /*
18360 * SPEC "the particle of the {content type} of
18361 * the ... base ..."
18362 * Create a duplicate of the base type's particle
18363 * and assign its "term" to it.
18364 */
18365 particle->children->children =
18366 (xmlSchemaTreeItemPtr) xmlSchemaAddParticle(pctxt,
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000018367 type->node,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018368 ((xmlSchemaParticlePtr) type->subtypes)->minOccurs,
18369 ((xmlSchemaParticlePtr) type->subtypes)->maxOccurs);
18370 if (particle->children->children == NULL)
18371 goto exit_failure;
18372 particle = (xmlSchemaParticlePtr)
18373 particle->children->children;
18374 particle->children =
18375 ((xmlSchemaParticlePtr) baseType->subtypes)->children;
18376 /*
18377 * SPEC "followed by the ·effective content·."
18378 */
18379 particle->next = effectiveContent;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018380 /*
18381 * This all will result in:
18382 * new-particle
18383 * --> new-sequence(
18384 * new-particle
18385 * --> base-model,
18386 * this-particle
18387 * --> this-model
18388 * )
18389 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018390 } else {
18391 /*
18392 * This is the case when there is already an empty
18393 * <sequence> with minOccurs==maxOccurs==1.
18394 * Just add the base types's content type.
18395 * NOTE that, although we miss to add an intermediate
18396 * <sequence>, this should produce no difference to
18397 * neither the regex compilation of the content model,
18398 * nor to the complex type contraints.
18399 */
18400 particle->children->children =
18401 (xmlSchemaTreeItemPtr) baseType->subtypes;
18402 }
18403 }
18404 }
18405 }
18406 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018407 * Now fixup attribute uses:
18408 * - expand attr. group references
18409 * - intersect attribute wildcards
18410 * - inherit attribute uses of the base type
18411 * - inherit or union attr. wildcards if extending
18412 * - apply attr. use prohibitions if restricting
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018413 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018414 res = xmlSchemaFixupTypeAttributeUses(pctxt, type);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018415 HFAILURE HERROR
18416 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018417 * Apply the complex type component constraints; this will not
18418 * check attributes, since this is done in
18419 * xmlSchemaFixupTypeAttributeUses().
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018420 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018421 res = xmlSchemaCheckCTComponent(pctxt, type);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018422 HFAILURE HERROR
18423
18424#ifdef DEBUG_TYPE
18425 xmlSchemaDebugFixedType(pctxt, type);
18426#endif
18427 if (olderrs != pctxt->nberrors)
18428 return(pctxt->err);
18429 else
18430 return(0);
18431
18432exit_error:
18433 type->flags |= XML_SCHEMAS_TYPE_INTERNAL_INVALID;
18434#ifdef DEBUG_TYPE
18435 xmlSchemaDebugFixedType(pctxt, type);
18436#endif
18437 return(pctxt->err);
18438
18439exit_failure:
18440 type->flags |= XML_SCHEMAS_TYPE_INTERNAL_INVALID;
18441#ifdef DEBUG_TYPE
18442 xmlSchemaDebugFixedType(pctxt, type);
18443#endif
18444 return(-1);
18445}
18446
18447
18448/**
18449 * xmlSchemaTypeFixup:
18450 * @typeDecl: the schema type definition
18451 * @ctxt: the schema parser context
18452 *
18453 * Fixes the content model of the type.
18454 * URGENT TODO: We need an int result!
18455 */
18456static int
18457xmlSchemaTypeFixup(xmlSchemaTypePtr type,
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018458 xmlSchemaAbstractCtxtPtr actxt)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018459{
18460 if (type == NULL)
18461 return(0);
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018462 if (actxt->type != XML_SCHEMA_CTXT_PARSER) {
18463 AERROR_INT("xmlSchemaTypeFixup",
18464 "this function needs a parser context");
18465 return(-1);
18466 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018467 if (! WXS_IS_TYPE_NOT_FIXED(type))
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018468 return(0);
18469 if (type->type == XML_SCHEMA_TYPE_COMPLEX)
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018470 return(xmlSchemaFixupComplexType(PCTXT_CAST actxt, type));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018471 else if (type->type == XML_SCHEMA_TYPE_SIMPLE)
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000018472 return(xmlSchemaFixupSimpleTypeStageTwo(PCTXT_CAST actxt, type));
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018473 return(0);
Daniel Veillard4255d502002-04-16 15:50:10 +000018474}
18475
18476/**
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018477 * xmlSchemaCheckFacet:
18478 * @facet: the facet
18479 * @typeDecl: the schema type definition
Daniel Veillard81562d22005-06-15 13:27:56 +000018480 * @pctxt: the schema parser context or NULL
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018481 * @name: the optional name of the type
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018482 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018483 * Checks and computes the values of facets.
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018484 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018485 * Returns 0 if valid, a positive error code if not valid and
18486 * -1 in case of an internal or API error.
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018487 */
18488int
18489xmlSchemaCheckFacet(xmlSchemaFacetPtr facet,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018490 xmlSchemaTypePtr typeDecl,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018491 xmlSchemaParserCtxtPtr pctxt,
18492 const xmlChar * name ATTRIBUTE_UNUSED)
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018493{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018494 int ret = 0, ctxtGiven;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000018495
Daniel Veillardce682bc2004-11-05 17:22:25 +000018496 if ((facet == NULL) || (typeDecl == NULL))
18497 return(-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018498 /*
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000018499 * TODO: will the parser context be given if used from
18500 * the relaxNG module?
18501 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018502 if (pctxt == NULL)
18503 ctxtGiven = 0;
18504 else
18505 ctxtGiven = 1;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018506
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018507 switch (facet->type) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018508 case XML_SCHEMA_FACET_MININCLUSIVE:
18509 case XML_SCHEMA_FACET_MINEXCLUSIVE:
18510 case XML_SCHEMA_FACET_MAXINCLUSIVE:
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018511 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
18512 case XML_SCHEMA_FACET_ENUMERATION: {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018513 /*
18514 * Okay we need to validate the value
18515 * at that point.
18516 */
Daniel Veillard01fa6152004-06-29 17:04:39 +000018517 xmlSchemaTypePtr base;
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018518
18519 /* 4.3.5.5 Constraints on enumeration Schema Components
18520 * Schema Component Constraint: enumeration valid restriction
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018521 * It is an ·error· if any member of {value} is not in the
18522 * ·value space· of {base type definition}.
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018523 *
18524 * minInclusive, maxInclusive, minExclusive, maxExclusive:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018525 * The value ·must· be in the
18526 * ·value space· of the ·base type·.
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018527 */
18528 /*
18529 * This function is intended to deliver a compiled value
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018530 * on the facet. In this implementation of XML Schemata the
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018531 * type holding a facet, won't be a built-in type.
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018532 * Thus to ensure that other API
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018533 * calls (relaxng) do work, if the given type is a built-in
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018534 * type, we will assume that the given built-in type *is
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018535 * already* the base type.
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018536 */
18537 if (typeDecl->type != XML_SCHEMA_TYPE_BASIC) {
18538 base = typeDecl->baseType;
18539 if (base == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018540 PERROR_INT("xmlSchemaCheckFacet",
18541 "a type user derived type has no base type");
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018542 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018543 }
Daniel Veillardf4b05d02004-07-05 13:10:37 +000018544 } else
18545 base = typeDecl;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018546
18547 if (! ctxtGiven) {
18548 /*
18549 * A context is needed if called from RelaxNG.
18550 */
18551 pctxt = xmlSchemaNewParserCtxt("*");
18552 if (pctxt == NULL)
18553 return (-1);
Daniel Veillard01fa6152004-06-29 17:04:39 +000018554 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000018555 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018556 * NOTE: This call does not check the content nodes,
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000018557 * since they are not available:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018558 * facet->node is just the node holding the facet
18559 * definition, *not* the attribute holding the *value*
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000018560 * of the facet.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018561 */
18562 ret = xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018563 ACTXT_CAST pctxt, facet->node, base,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018564 facet->value, &(facet->val), 1, 1, 0);
18565 if (ret != 0) {
18566 if (ret < 0) {
18567 /* No error message for RelaxNG. */
18568 if (ctxtGiven) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018569 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018570 XML_SCHEMAP_INTERNAL, facet->node, NULL,
18571 "Internal error: xmlSchemaCheckFacet, "
18572 "failed to validate the value '%s' of the "
18573 "facet '%s' against the base type",
18574 facet->value, xmlSchemaFacetTypeToString(facet->type));
18575 }
18576 goto internal_error;
18577 }
18578 ret = XML_SCHEMAP_INVALID_FACET_VALUE;
18579 /* No error message for RelaxNG. */
18580 if (ctxtGiven) {
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018581 xmlChar *str = NULL;
18582
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018583 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018584 ret, facet->node, WXS_BASIC_CAST facet,
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018585 "The value '%s' of the facet does not validate "
18586 "against the base type '%s'",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018587 facet->value,
18588 xmlSchemaFormatQName(&str,
18589 base->targetNamespace, base->name));
18590 FREE_AND_NULL(str);
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018591 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018592 goto exit;
18593 } else if (facet->val == NULL) {
18594 if (ctxtGiven) {
18595 PERROR_INT("xmlSchemaCheckFacet",
18596 "value was not computed");
18597 }
18598 TODO
18599 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018600 break;
18601 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018602 case XML_SCHEMA_FACET_PATTERN:
18603 facet->regexp = xmlRegexpCompile(facet->value);
18604 if (facet->regexp == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018605 ret = XML_SCHEMAP_REGEXP_INVALID;
18606 /* No error message for RelaxNG. */
18607 if (ctxtGiven) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018608 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018609 ret, facet->node, WXS_BASIC_CAST typeDecl,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018610 "The value '%s' of the facet 'pattern' is not a "
18611 "valid regular expression",
18612 facet->value, NULL);
18613 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018614 }
18615 break;
18616 case XML_SCHEMA_FACET_TOTALDIGITS:
18617 case XML_SCHEMA_FACET_FRACTIONDIGITS:
18618 case XML_SCHEMA_FACET_LENGTH:
18619 case XML_SCHEMA_FACET_MAXLENGTH:
Kasimier T. Buchcik69dea3a2005-11-07 14:02:44 +000018620 case XML_SCHEMA_FACET_MINLENGTH:
18621
18622 if (facet->type == XML_SCHEMA_FACET_TOTALDIGITS) {
18623 ret = xmlSchemaValidatePredefinedType(
18624 xmlSchemaGetBuiltInType(XML_SCHEMAS_PINTEGER),
18625 facet->value, &(facet->val));
18626 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018627 ret = xmlSchemaValidatePredefinedType(
18628 xmlSchemaGetBuiltInType(XML_SCHEMAS_NNINTEGER),
18629 facet->value, &(facet->val));
Kasimier T. Buchcik69dea3a2005-11-07 14:02:44 +000018630 }
18631 if (ret != 0) {
18632 if (ret < 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018633 /* No error message for RelaxNG. */
18634 if (ctxtGiven) {
Kasimier T. Buchcik69dea3a2005-11-07 14:02:44 +000018635 PERROR_INT("xmlSchemaCheckFacet",
18636 "validating facet value");
18637 }
18638 goto internal_error;
18639 }
18640 ret = XML_SCHEMAP_INVALID_FACET_VALUE;
18641 /* No error message for RelaxNG. */
18642 if (ctxtGiven) {
18643 /* error code */
18644 xmlSchemaCustomErr4(ACTXT_CAST pctxt,
18645 ret, facet->node, WXS_BASIC_CAST typeDecl,
18646 "The value '%s' of the facet '%s' is not a valid '%s'",
18647 facet->value,
18648 xmlSchemaFacetTypeToString(facet->type),
18649 (facet->type != XML_SCHEMA_FACET_TOTALDIGITS) ?
18650 BAD_CAST "nonNegativeInteger" :
18651 BAD_CAST "positiveInteger",
18652 NULL);
18653 }
18654 }
18655 break;
18656
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018657 case XML_SCHEMA_FACET_WHITESPACE:{
18658 if (xmlStrEqual(facet->value, BAD_CAST "preserve")) {
18659 facet->whitespace = XML_SCHEMAS_FACET_PRESERVE;
18660 } else if (xmlStrEqual(facet->value, BAD_CAST "replace")) {
18661 facet->whitespace = XML_SCHEMAS_FACET_REPLACE;
18662 } else if (xmlStrEqual(facet->value, BAD_CAST "collapse")) {
18663 facet->whitespace = XML_SCHEMAS_FACET_COLLAPSE;
18664 } else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018665 ret = XML_SCHEMAP_INVALID_FACET_VALUE;
18666 /* No error message for RelaxNG. */
18667 if (ctxtGiven) {
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000018668 /* error was previously: XML_SCHEMAP_INVALID_WHITE_SPACE */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018669 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018670 ret, facet->node, WXS_BASIC_CAST typeDecl,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018671 "The value '%s' of the facet 'whitespace' is not "
18672 "valid", facet->value, NULL);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018673 }
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018674 }
18675 }
18676 default:
18677 break;
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018678 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018679exit:
18680 if ((! ctxtGiven) && (pctxt != NULL))
18681 xmlSchemaFreeParserCtxt(pctxt);
Daniel Veillardd0c9c322003-10-10 00:49:42 +000018682 return (ret);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018683internal_error:
18684 if ((! ctxtGiven) && (pctxt != NULL))
18685 xmlSchemaFreeParserCtxt(pctxt);
18686 return (-1);
Daniel Veillard8bc6cf92003-02-27 17:42:22 +000018687}
18688
18689/**
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018690 * xmlSchemaCheckFacetValues:
Daniel Veillard4255d502002-04-16 15:50:10 +000018691 * @typeDecl: the schema type definition
18692 * @ctxt: the schema parser context
18693 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018694 * Checks the default values types, especially for facets
Daniel Veillard4255d502002-04-16 15:50:10 +000018695 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018696static int
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018697xmlSchemaCheckFacetValues(xmlSchemaTypePtr typeDecl,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018698 xmlSchemaParserCtxtPtr pctxt)
Daniel Veillard4255d502002-04-16 15:50:10 +000018699{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018700 int res, olderrs = pctxt->nberrors;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018701 const xmlChar *name = typeDecl->name;
Daniel Veillard01fa6152004-06-29 17:04:39 +000018702 /*
18703 * NOTE: It is intended to use the facets list, instead
18704 * of facetSet.
18705 */
18706 if (typeDecl->facets != NULL) {
18707 xmlSchemaFacetPtr facet = typeDecl->facets;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018708
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000018709 /*
18710 * Temporarily assign the "schema" to the validation context
18711 * of the parser context. This is needed for NOTATION validation.
18712 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018713 if (pctxt->vctxt == NULL) {
18714 if (xmlSchemaCreateVCtxtOnPCtxt(pctxt) == -1)
18715 return(-1);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000018716 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018717 pctxt->vctxt->schema = pctxt->schema;
Daniel Veillard01fa6152004-06-29 17:04:39 +000018718 while (facet != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018719 res = xmlSchemaCheckFacet(facet, typeDecl, pctxt, name);
18720 HFAILURE
Daniel Veillard01fa6152004-06-29 17:04:39 +000018721 facet = facet->next;
18722 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018723 pctxt->vctxt->schema = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018724 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018725 if (olderrs != pctxt->nberrors)
18726 return(pctxt->err);
18727 return(0);
18728exit_failure:
18729 return(-1);
Daniel Veillard4255d502002-04-16 15:50:10 +000018730}
18731
18732/**
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018733 * xmlSchemaGetCircModelGrDefRef:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018734 * @ctxtMGroup: the searched model group
18735 * @selfMGroup: the second searched model group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018736 * @particle: the first particle
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018737 *
18738 * This one is intended to be used by
18739 * xmlSchemaCheckGroupDefCircular only.
18740 *
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018741 * Returns the particle with the circular model group definition reference,
18742 * otherwise NULL.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018743 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018744static xmlSchemaTreeItemPtr
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018745xmlSchemaGetCircModelGrDefRef(xmlSchemaModelGroupDefPtr groupDef,
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018746 xmlSchemaTreeItemPtr particle)
18747{
18748 xmlSchemaTreeItemPtr circ = NULL;
18749 xmlSchemaTreeItemPtr term;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018750 xmlSchemaModelGroupDefPtr gdef;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018751
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018752 for (; particle != NULL; particle = particle->next) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018753 term = particle->children;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018754 if (term == NULL)
18755 continue;
18756 switch (term->type) {
18757 case XML_SCHEMA_TYPE_GROUP:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018758 gdef = (xmlSchemaModelGroupDefPtr) term;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018759 if (gdef == groupDef)
18760 return (particle);
18761 /*
18762 * Mark this model group definition to avoid infinite
18763 * recursion on circular references not yet examined.
18764 */
18765 if (gdef->flags & XML_SCHEMA_MODEL_GROUP_DEF_MARKED)
18766 continue;
18767 if (gdef->children != NULL) {
18768 gdef->flags |= XML_SCHEMA_MODEL_GROUP_DEF_MARKED;
18769 circ = xmlSchemaGetCircModelGrDefRef(groupDef,
18770 gdef->children->children);
18771 gdef->flags ^= XML_SCHEMA_MODEL_GROUP_DEF_MARKED;
18772 if (circ != NULL)
18773 return (circ);
18774 }
18775 break;
18776 case XML_SCHEMA_TYPE_SEQUENCE:
18777 case XML_SCHEMA_TYPE_CHOICE:
18778 case XML_SCHEMA_TYPE_ALL:
18779 circ = xmlSchemaGetCircModelGrDefRef(groupDef, term->children);
18780 if (circ != NULL)
18781 return (circ);
18782 break;
18783 default:
18784 break;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018785 }
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018786 }
18787 return (NULL);
18788}
18789
18790/**
18791 * xmlSchemaCheckGroupDefCircular:
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018792 * @item: the model group definition
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018793 * @ctxt: the parser context
18794 * @name: the name
18795 *
18796 * Checks for circular references to model group definitions.
18797 */
18798static void
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018799xmlSchemaCheckGroupDefCircular(xmlSchemaModelGroupDefPtr item,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018800 xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018801{
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018802 /*
18803 * Schema Component Constraint: Model Group Correct
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018804 * 2 Circular groups are disallowed. That is, within the {particles}
18805 * of a group there must not be at any depth a particle whose {term}
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018806 * is the group itself.
18807 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018808 if ((item == NULL) ||
18809 (item->type != XML_SCHEMA_TYPE_GROUP) ||
18810 (item->children == NULL))
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018811 return;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018812 {
18813 xmlSchemaTreeItemPtr circ;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018814
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018815 circ = xmlSchemaGetCircModelGrDefRef(item, item->children->children);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018816 if (circ != NULL) {
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018817 xmlChar *str = NULL;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018818 /*
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018819 * TODO: The error report is not adequate: this constraint
18820 * is defined for model groups but not definitions, but since
18821 * there cannot be any circular model groups without a model group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018822 * definition (if not using a construction API), we check those
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018823 * defintions only.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018824 */
18825 xmlSchemaPCustomErr(ctxt,
18826 XML_SCHEMAP_MG_PROPS_CORRECT_2,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018827 NULL, WXS_ITEM_NODE(circ),
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018828 "Circular reference to the model group definition '%s' "
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018829 "defined", xmlSchemaFormatQName(&str,
18830 item->targetNamespace, item->name));
18831 FREE_AND_NULL(str)
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018832 /*
18833 * NOTE: We will cut the reference to avoid further
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018834 * confusion of the processor. This is a fatal error.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018835 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000018836 circ->children = NULL;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018837 }
18838 }
18839}
18840
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018841/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018842 * xmlSchemaModelGroupToModelGroupDefFixup:
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018843 * @ctxt: the parser context
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018844 * @mg: the model group
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018845 *
18846 * Assigns the model group of model group definitions to the "term"
18847 * of the referencing particle.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018848 * In xmlSchemaResolveModelGroupParticleReferences the model group
18849 * definitions were assigned to the "term", since needed for the
18850 * circularity check.
18851 *
18852 * Schema Component Constraint:
18853 * All Group Limited (cos-all-limited) (1.2)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018854 */
18855static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018856xmlSchemaModelGroupToModelGroupDefFixup(
18857 xmlSchemaParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
18858 xmlSchemaModelGroupPtr mg)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018859{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018860 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg);
18861
18862 while (particle != NULL) {
18863 if ((WXS_PARTICLE_TERM(particle) == NULL) ||
18864 ((WXS_PARTICLE_TERM(particle))->type !=
18865 XML_SCHEMA_TYPE_GROUP))
18866 {
18867 particle = WXS_PTC_CAST particle->next;
18868 continue;
18869 }
18870 if (WXS_MODELGROUPDEF_MODEL(WXS_PARTICLE_TERM(particle)) == NULL) {
18871 /*
18872 * TODO: Remove the particle.
18873 */
18874 WXS_PARTICLE_TERM(particle) = NULL;
18875 particle = WXS_PTC_CAST particle->next;
18876 continue;
18877 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018878 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018879 * Assign the model group to the {term} of the particle.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018880 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018881 WXS_PARTICLE_TERM(particle) =
18882 WXS_TREE_CAST WXS_MODELGROUPDEF_MODEL(WXS_PARTICLE_TERM(particle));
18883
18884 particle = WXS_PTC_CAST particle->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018885 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000018886}
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018887
18888/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018889 * xmlSchemaCheckAttrGroupCircularRecur:
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018890 * @ctxtGr: the searched attribute group
18891 * @attr: the current attribute list to be processed
18892 *
18893 * This one is intended to be used by
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018894 * xmlSchemaCheckAttrGroupCircular only.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018895 *
18896 * Returns the circular attribute grou reference, otherwise NULL.
18897 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018898static xmlSchemaQNameRefPtr
18899xmlSchemaCheckAttrGroupCircularRecur(xmlSchemaAttributeGroupPtr ctxtGr,
18900 xmlSchemaItemListPtr list)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018901{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018902 xmlSchemaAttributeGroupPtr gr;
18903 xmlSchemaQNameRefPtr ref, circ;
18904 int i;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018905 /*
18906 * We will search for an attribute group reference which
18907 * references the context attribute group.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018908 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018909 for (i = 0; i < list->nbItems; i++) {
18910 ref = list->items[i];
18911 if ((ref->type == XML_SCHEMA_EXTRA_QNAMEREF) &&
18912 (ref->itemType == XML_SCHEMA_TYPE_ATTRIBUTEGROUP) &&
18913 (ref->item != NULL))
18914 {
18915 gr = WXS_ATTR_GROUP_CAST ref->item;
18916 if (gr == ctxtGr)
18917 return(ref);
18918 if (gr->flags & XML_SCHEMAS_ATTRGROUP_MARKED)
18919 continue;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018920 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018921 * Mark as visited to avoid infinite recursion on
18922 * circular references not yet examined.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018923 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018924 if ((gr->attrUses) &&
18925 (gr->flags & XML_SCHEMAS_ATTRGROUP_HAS_REFS))
18926 {
18927 gr->flags |= XML_SCHEMAS_ATTRGROUP_MARKED;
18928 circ = xmlSchemaCheckAttrGroupCircularRecur(ctxtGr,
18929 (xmlSchemaItemListPtr) gr->attrUses);
18930 gr->flags ^= XML_SCHEMAS_ATTRGROUP_MARKED;
18931 if (circ != NULL)
18932 return (circ);
18933 }
18934
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018935 }
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018936 }
18937 return (NULL);
18938}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018939
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018940/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018941 * xmlSchemaCheckAttrGroupCircular:
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018942 * attrGr: the attribute group definition
18943 * @ctxt: the parser context
18944 * @name: the name
18945 *
18946 * Checks for circular references of attribute groups.
18947 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018948static int
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000018949xmlSchemaCheckAttrGroupCircular(xmlSchemaAttributeGroupPtr attrGr,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018950 xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018951{
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018952 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018953 * Schema Representation Constraint:
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018954 * Attribute Group Definition Representation OK
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000018955 * 3 Circular group reference is disallowed outside <redefine>.
18956 * That is, unless this element information item's parent is
18957 * <redefine>, then among the [children], if any, there must
18958 * not be an <attributeGroup> with ref [attribute] which resolves
18959 * to the component corresponding to this <attributeGroup>. Indirect
18960 * circularity is also ruled out. That is, when QName resolution
18961 * (Schema Document) (§3.15.3) is applied to a ·QName· arising from
18962 * any <attributeGroup>s with a ref [attribute] among the [children],
18963 * it must not be the case that a ·QName· is encountered at any depth
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018964 * which resolves to the component corresponding to this <attributeGroup>.
18965 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018966 if (attrGr->attrUses == NULL)
18967 return(0);
18968 else if ((attrGr->flags & XML_SCHEMAS_ATTRGROUP_HAS_REFS) == 0)
18969 return(0);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018970 else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018971 xmlSchemaQNameRefPtr circ;
18972
18973 circ = xmlSchemaCheckAttrGroupCircularRecur(attrGr,
18974 (xmlSchemaItemListPtr) attrGr->attrUses);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018975 if (circ != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018976 xmlChar *str = NULL;
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018977 /*
18978 * TODO: Report the referenced attr group as QName.
18979 */
18980 xmlSchemaPCustomErr(ctxt,
18981 XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018982 NULL, WXS_ITEM_NODE(WXS_BASIC_CAST circ),
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018983 "Circular reference to the attribute group '%s' "
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018984 "defined", xmlSchemaGetComponentQName(&str, attrGr));
18985 FREE_AND_NULL(str);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018986 /*
18987 * NOTE: We will cut the reference to avoid further
18988 * confusion of the processor.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018989 * BADSPEC TODO: The spec should define how to process in this case.
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018990 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018991 circ->item = NULL;
18992 return(ctxt->err);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000018993 }
18994 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000018995 return(0);
18996}
18997
18998static int
18999xmlSchemaAttributeGroupExpandRefs(xmlSchemaParserCtxtPtr pctxt,
19000 xmlSchemaAttributeGroupPtr attrGr);
19001
19002/**
19003 * xmlSchemaExpandAttributeGroupRefs:
19004 * @pctxt: the parser context
19005 * @node: the node of the component holding the attribute uses
19006 * @completeWild: the intersected wildcard to be returned
19007 * @list: the attribute uses
19008 *
19009 * Substitutes contained attribute group references
19010 * for their attribute uses. Wilcards are intersected.
19011 * Attribute use prohibitions are removed from the list
19012 * and returned via the @prohibs list.
19013 * Pointlessness of attr. prohibs, if a matching attr. decl
19014 * is existent a well, are checked.
19015 */
19016static int
19017xmlSchemaExpandAttributeGroupRefs(xmlSchemaParserCtxtPtr pctxt,
19018 xmlSchemaBasicItemPtr item,
19019 xmlSchemaWildcardPtr *completeWild,
19020 xmlSchemaItemListPtr list,
19021 xmlSchemaItemListPtr prohibs)
19022{
19023 xmlSchemaAttributeGroupPtr gr;
19024 xmlSchemaAttributeUsePtr use;
19025 xmlSchemaItemListPtr sublist;
19026 int i, j;
19027 int created = (*completeWild == NULL) ? 0 : 1;
19028
19029 if (prohibs)
19030 prohibs->nbItems = 0;
19031
19032 for (i = 0; i < list->nbItems; i++) {
19033 use = list->items[i];
19034
19035 if (use->type == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB) {
19036 if (prohibs == NULL) {
19037 PERROR_INT("xmlSchemaExpandAttributeGroupRefs",
19038 "unexpected attr prohibition found");
19039 return(-1);
19040 }
19041 /*
19042 * Remove from attribute uses.
19043 */
19044 if (xmlSchemaItemListRemove(list, i) == -1)
19045 return(-1);
19046 i--;
19047 /*
19048 * Note that duplicate prohibitions were already
19049 * handled at parsing time.
19050 */
19051 /*
19052 * Add to list of prohibitions.
19053 */
19054 xmlSchemaItemListAddSize(prohibs, 2, use);
19055 continue;
19056 }
19057 if ((use->type == XML_SCHEMA_EXTRA_QNAMEREF) &&
19058 ((WXS_QNAME_CAST use)->itemType == XML_SCHEMA_TYPE_ATTRIBUTEGROUP))
19059 {
19060 if ((WXS_QNAME_CAST use)->item == NULL)
19061 return(-1);
19062 gr = WXS_ATTR_GROUP_CAST (WXS_QNAME_CAST use)->item;
19063 /*
19064 * Expand the referenced attr. group.
19065 * TODO: remove this, this is done in a previous step, so
19066 * already done here.
19067 */
19068 if ((gr->flags & XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED) == 0) {
19069 if (xmlSchemaAttributeGroupExpandRefs(pctxt, gr) == -1)
19070 return(-1);
19071 }
19072 /*
19073 * Build the 'complete' wildcard; i.e. intersect multiple
19074 * wildcards.
19075 */
19076 if (gr->attributeWildcard != NULL) {
19077 if (*completeWild == NULL) {
19078 *completeWild = gr->attributeWildcard;
19079 } else {
19080 if (! created) {
19081 xmlSchemaWildcardPtr tmpWild;
19082
19083 /*
19084 * Copy the first encountered wildcard as context,
19085 * except for the annotation.
19086 *
19087 * Although the complete wildcard might not correspond
19088 * to any node in the schema, we will anchor it on
19089 * the node of the owner component.
19090 */
19091 tmpWild = xmlSchemaAddWildcard(pctxt, pctxt->schema,
19092 XML_SCHEMA_TYPE_ANY_ATTRIBUTE,
19093 WXS_ITEM_NODE(item));
19094 if (tmpWild == NULL)
19095 return(-1);
19096 if (xmlSchemaCloneWildcardNsConstraints(pctxt,
19097 tmpWild, *completeWild) == -1)
19098 return (-1);
19099 tmpWild->processContents = (*completeWild)->processContents;
19100 *completeWild = tmpWild;
19101 created = 1;
19102 }
19103
19104 if (xmlSchemaIntersectWildcards(pctxt, *completeWild,
19105 gr->attributeWildcard) == -1)
19106 return(-1);
19107 }
19108 }
19109 /*
19110 * Just remove the reference if the referenced group does not
19111 * contain any attribute uses.
19112 */
19113 if (gr->attrUses == NULL) {
19114 if (xmlSchemaItemListRemove(list, i) == -1)
19115 return(-1);
19116 i--;
19117 continue;
19118 }
19119 /*
19120 * Add the attribute uses.
19121 */
19122 sublist = ((xmlSchemaItemListPtr) gr->attrUses);
19123 if (sublist->nbItems != 0) {
19124 list->items[i] = sublist->items[0];
19125 if (sublist->nbItems != 1) {
19126 for (j = 1; j < sublist->nbItems; j++) {
19127 i++;
19128 if (xmlSchemaItemListInsert(list,
19129 sublist->items[j], i) == -1)
19130 return(-1);
19131 }
19132 }
19133 }
19134 }
19135
19136 }
19137 /*
19138 * Handle pointless prohibitions of declared attributes.
19139 */
19140 if (prohibs && (prohibs->nbItems != 0) && (list->nbItems != 0)) {
19141 xmlSchemaAttributeUseProhibPtr prohib;
19142
19143 for (i = prohibs->nbItems -1; i >= 0; i--) {
19144 prohib = prohibs->items[i];
19145 for (j = 0; j < list->nbItems; j++) {
19146 use = list->items[j];
19147
19148 if ((prohib->name == WXS_ATTRUSE_DECL_NAME(use)) &&
19149 (prohib->targetNamespace == WXS_ATTRUSE_DECL_TNS(use)))
19150 {
19151 xmlChar *str = NULL;
19152
19153 xmlSchemaCustomWarning(ACTXT_CAST pctxt,
19154 XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH,
19155 prohib->node, NULL,
19156 "Skipping pointless attribute use prohibition "
19157 "'%s', since a corresponding attribute use "
19158 "exists already in the type definition",
19159 xmlSchemaFormatQName(&str,
19160 prohib->targetNamespace, prohib->name),
19161 NULL, NULL);
19162 FREE_AND_NULL(str);
19163 /*
19164 * Remove the prohibition.
19165 */
19166 if (xmlSchemaItemListRemove(prohibs, i) == -1)
19167 return(-1);
19168 break;
19169 }
19170 }
19171 }
19172 }
19173 return(0);
19174}
19175
19176/**
19177 * xmlSchemaAttributeGroupExpandRefs:
19178 * @pctxt: the parser context
19179 * @attrGr: the attribute group definition
19180 *
19181 * Computation of:
19182 * {attribute uses} property
19183 * {attribute wildcard} property
19184 *
19185 * Substitutes contained attribute group references
19186 * for their attribute uses. Wilcards are intersected.
19187 */
19188static int
19189xmlSchemaAttributeGroupExpandRefs(xmlSchemaParserCtxtPtr pctxt,
19190 xmlSchemaAttributeGroupPtr attrGr)
19191{
19192 if ((attrGr->attrUses == NULL) ||
19193 (attrGr->flags & XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED))
19194 return(0);
19195
19196 attrGr->flags |= XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED;
19197 if (xmlSchemaExpandAttributeGroupRefs(pctxt, WXS_BASIC_CAST attrGr,
19198 &(attrGr->attributeWildcard), attrGr->attrUses, NULL) == -1)
19199 return(-1);
19200 return(0);
19201}
19202
19203/**
19204 * xmlSchemaAttributeGroupExpandRefs:
19205 * @pctxt: the parser context
19206 * @attrGr: the attribute group definition
19207 *
19208 * Substitutes contained attribute group references
19209 * for their attribute uses. Wilcards are intersected.
19210 *
19211 * Schema Component Constraint:
19212 * Attribute Group Definition Properties Correct (ag-props-correct)
19213 */
19214static int
19215xmlSchemaCheckAGPropsCorrect(xmlSchemaParserCtxtPtr pctxt,
19216 xmlSchemaAttributeGroupPtr attrGr)
19217{
19218 /*
19219 * SPEC ag-props-correct
19220 * (1) "The values of the properties of an attribute group definition
19221 * must be as described in the property tableau in The Attribute
19222 * Group Definition Schema Component (§3.6.1), modulo the impact of
19223 * Missing Sub-components (§5.3);"
19224 */
19225
19226 if ((attrGr->attrUses != NULL) &&
19227 (WXS_LIST_CAST attrGr->attrUses)->nbItems > 1)
19228 {
19229 xmlSchemaItemListPtr uses = WXS_LIST_CAST attrGr->attrUses;
19230 xmlSchemaAttributeUsePtr use, tmp;
19231 int i, j, hasId = 0;
19232
19233 for (i = uses->nbItems -1; i >= 0; i--) {
19234 use = uses->items[i];
19235 /*
19236 * SPEC ag-props-correct
19237 * (2) "Two distinct members of the {attribute uses} must not have
19238 * {attribute declaration}s both of whose {name}s match and whose
19239 * {target namespace}s are identical."
19240 */
19241 if (i > 0) {
19242 for (j = i -1; j >= 0; j--) {
19243 tmp = uses->items[j];
19244 if ((WXS_ATTRUSE_DECL_NAME(use) ==
19245 WXS_ATTRUSE_DECL_NAME(tmp)) &&
19246 (WXS_ATTRUSE_DECL_TNS(use) ==
19247 WXS_ATTRUSE_DECL_TNS(tmp)))
19248 {
19249 xmlChar *str = NULL;
19250
19251 xmlSchemaCustomErr(ACTXT_CAST pctxt,
19252 XML_SCHEMAP_AG_PROPS_CORRECT,
19253 attrGr->node, WXS_BASIC_CAST attrGr,
19254 "Duplicate %s",
19255 xmlSchemaGetComponentDesignation(&str, use),
19256 NULL);
19257 FREE_AND_NULL(str);
19258 /*
19259 * Remove the duplicate.
19260 */
19261 if (xmlSchemaItemListRemove(uses, i) == -1)
19262 return(-1);
19263 goto next_use;
19264 }
19265 }
19266 }
19267 /*
19268 * SPEC ag-props-correct
19269 * (3) "Two distinct members of the {attribute uses} must not have
19270 * {attribute declaration}s both of whose {type definition}s are or
19271 * are derived from ID."
19272 * TODO: Does 'derived' include member-types of unions?
19273 */
19274 if (WXS_ATTRUSE_TYPEDEF(use) != NULL) {
19275 if (xmlSchemaIsDerivedFromBuiltInType(
19276 WXS_ATTRUSE_TYPEDEF(use), XML_SCHEMAS_ID))
19277 {
19278 if (hasId) {
19279 xmlChar *str = NULL;
19280
19281 xmlSchemaCustomErr(ACTXT_CAST pctxt,
19282 XML_SCHEMAP_AG_PROPS_CORRECT,
19283 attrGr->node, WXS_BASIC_CAST attrGr,
19284 "There must not exist more than one attribute "
19285 "declaration of type 'xs:ID' "
19286 "(or derived from 'xs:ID'). The %s violates this "
19287 "constraint",
19288 xmlSchemaGetComponentDesignation(&str, use),
19289 NULL);
19290 FREE_AND_NULL(str);
19291 if (xmlSchemaItemListRemove(uses, i) == -1)
19292 return(-1);
19293 }
19294 hasId = 1;
19295 }
19296 }
19297next_use: {}
19298 }
19299 }
19300 return(0);
Kasimier T. Buchcik383434b2004-09-03 18:55:35 +000019301}
19302
19303/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019304 * xmlSchemaResolveAttrGroupReferences:
Daniel Veillard13e04c62002-04-23 17:51:29 +000019305 * @attrgrpDecl: the schema attribute definition
19306 * @ctxt: the schema parser context
19307 * @name: the attribute name
19308 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019309 * Resolves references to attribute group definitions.
Daniel Veillard13e04c62002-04-23 17:51:29 +000019310 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019311static int
19312xmlSchemaResolveAttrGroupReferences(xmlSchemaQNameRefPtr ref,
19313 xmlSchemaParserCtxtPtr ctxt)
Daniel Veillard13e04c62002-04-23 17:51:29 +000019314{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019315 xmlSchemaAttributeGroupPtr group;
Daniel Veillard13e04c62002-04-23 17:51:29 +000019316
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019317 if (ref->item != NULL)
19318 return(0);
19319 group = xmlSchemaGetAttributeGroup(ctxt->schema,
19320 ref->name,
19321 ref->targetNamespace);
19322 if (group == NULL) {
19323 xmlSchemaPResCompAttrErr(ctxt,
19324 XML_SCHEMAP_SRC_RESOLVE,
19325 NULL, ref->node,
19326 "ref", ref->name, ref->targetNamespace,
19327 ref->itemType, NULL);
19328 return(ctxt->err);
Daniel Veillard3646d642004-06-02 19:19:14 +000019329 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019330 ref->item = WXS_BASIC_CAST group;
19331 return(0);
Daniel Veillard13e04c62002-04-23 17:51:29 +000019332}
19333
19334/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019335 * xmlSchemaCheckAttrPropsCorrect:
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019336 * @item: an schema attribute declaration/use
19337 * @ctxt: a schema parser context
19338 * @name: the name of the attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019339 *
19340 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019341 * Schema Component Constraint:
19342 * Attribute Declaration Properties Correct (a-props-correct)
Daniel Veillard4255d502002-04-16 15:50:10 +000019343 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019344 * Validates the value constraints of an attribute declaration/use.
19345 * NOTE that this needs the simle type definitions to be already
19346 * builded and checked.
Daniel Veillard4255d502002-04-16 15:50:10 +000019347 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019348static int
19349xmlSchemaCheckAttrPropsCorrect(xmlSchemaParserCtxtPtr pctxt,
19350 xmlSchemaAttributePtr attr)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019351{
19352
19353 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019354 * SPEC a-props-correct (1)
19355 * "The values of the properties of an attribute declaration must
19356 * be as described in the property tableau in The Attribute
19357 * Declaration Schema Component (§3.2.1), modulo the impact of
19358 * Missing Sub-components (§5.3)."
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019359 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019360
19361 if (WXS_ATTR_TYPEDEF(attr) == NULL)
19362 return(0);
19363
19364 if (attr->defValue != NULL) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019365 int ret;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019366
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019367 /*
19368 * SPEC a-props-correct (3)
19369 * "If the {type definition} is or is derived from ID then there
19370 * must not be a {value constraint}."
19371 */
19372 if (xmlSchemaIsDerivedFromBuiltInType(
19373 WXS_ATTR_TYPEDEF(attr), XML_SCHEMAS_ID))
19374 {
19375 xmlSchemaCustomErr(ACTXT_CAST pctxt,
19376 XML_SCHEMAP_A_PROPS_CORRECT_3,
19377 NULL, WXS_BASIC_CAST attr,
19378 "Value constraints are not allowed if the type definition "
19379 "is or is derived from xs:ID",
19380 NULL, NULL);
19381 return(pctxt->err);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019382 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019383 /*
19384 * SPEC a-props-correct (2)
19385 * "if there is a {value constraint}, the canonical lexical
19386 * representation of its value must be ·valid· with respect
19387 * to the {type definition} as defined in String Valid (§3.14.4)."
19388 * TODO: Don't care about the *cononical* stuff here, this requirement
19389 * will be removed in WXS 1.1 anyway.
19390 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019391 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019392 attr->node, WXS_ATTR_TYPEDEF(attr),
19393 attr->defValue, &(attr->defVal),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019394 1, 1, 0);
19395 if (ret != 0) {
19396 if (ret < 0) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019397 PERROR_INT("xmlSchemaCheckAttrPropsCorrect",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019398 "calling xmlSchemaVCheckCVCSimpleType()");
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019399 return(-1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019400 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019401 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019402 XML_SCHEMAP_A_PROPS_CORRECT_2,
19403 NULL, WXS_BASIC_CAST attr,
19404 "The value of the value constraint is not valid",
19405 NULL, NULL);
19406 return(pctxt->err);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019407 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019408 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019409
19410 return(0);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019411}
19412
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019413static xmlSchemaElementPtr
19414xmlSchemaCheckSubstGroupCircular(xmlSchemaElementPtr elemDecl,
19415 xmlSchemaElementPtr ancestor)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019416{
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019417 xmlSchemaElementPtr ret;
19418
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019419 if (WXS_SUBST_HEAD(ancestor) == NULL)
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019420 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019421 if (WXS_SUBST_HEAD(ancestor) == elemDecl)
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019422 return (ancestor);
19423
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019424 if (WXS_SUBST_HEAD(ancestor)->flags & XML_SCHEMAS_ELEM_CIRCULAR)
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019425 return (NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019426 WXS_SUBST_HEAD(ancestor)->flags |= XML_SCHEMAS_ELEM_CIRCULAR;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019427 ret = xmlSchemaCheckSubstGroupCircular(elemDecl,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019428 WXS_SUBST_HEAD(ancestor));
19429 WXS_SUBST_HEAD(ancestor)->flags ^= XML_SCHEMAS_ELEM_CIRCULAR;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019430
19431 return (ret);
19432}
19433
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019434/**
19435 * xmlSchemaCheckElemPropsCorrect:
19436 * @ctxt: a schema parser context
19437 * @decl: the element declaration
19438 * @name: the name of the attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019439 *
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019440 * Schema Component Constraint:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019441 * Element Declaration Properties Correct (e-props-correct)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019442 *
19443 * STATUS:
19444 * missing: (6)
19445 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019446static int
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019447xmlSchemaCheckElemPropsCorrect(xmlSchemaParserCtxtPtr pctxt,
19448 xmlSchemaElementPtr elemDecl)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019449{
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019450 int ret = 0;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019451 xmlSchemaTypePtr typeDef = WXS_ELEM_TYPEDEF(elemDecl);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019452 /*
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019453 * SPEC (1) "The values of the properties of an element declaration
19454 * must be as described in the property tableau in The Element
19455 * Declaration Schema Component (§3.3.1), modulo the impact of Missing
19456 * Sub-components (§5.3)."
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019457 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019458 if (WXS_SUBST_HEAD(elemDecl) != NULL) {
19459 xmlSchemaElementPtr head = WXS_SUBST_HEAD(elemDecl), circ;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019460
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019461 xmlSchemaCheckElementDeclComponent(head, pctxt);
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019462 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019463 * SPEC (3) "If there is a non-·absent· {substitution group
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019464 * affiliation}, then {scope} must be global."
19465 */
19466 if ((elemDecl->flags & XML_SCHEMAS_ELEM_GLOBAL) == 0) {
19467 xmlSchemaPCustomErr(pctxt,
19468 XML_SCHEMAP_E_PROPS_CORRECT_3,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019469 WXS_BASIC_CAST elemDecl, NULL,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019470 "Only global element declarations can have a "
19471 "substitution group affiliation", NULL);
19472 ret = XML_SCHEMAP_E_PROPS_CORRECT_3;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019473 }
19474 /*
19475 * TODO: SPEC (6) "Circular substitution groups are disallowed.
19476 * That is, it must not be possible to return to an element declaration
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019477 * by repeatedly following the {substitution group affiliation}
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019478 * property."
19479 */
19480 if (head == elemDecl)
19481 circ = head;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019482 else if (WXS_SUBST_HEAD(head) != NULL)
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019483 circ = xmlSchemaCheckSubstGroupCircular(head, head);
19484 else
19485 circ = NULL;
19486 if (circ != NULL) {
19487 xmlChar *strA = NULL, *strB = NULL;
19488
19489 xmlSchemaPCustomErrExt(pctxt,
19490 XML_SCHEMAP_E_PROPS_CORRECT_6,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019491 WXS_BASIC_CAST circ, NULL,
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019492 "The element declaration '%s' defines a circular "
19493 "substitution group to element declaration '%s'",
19494 xmlSchemaGetComponentQName(&strA, circ),
19495 xmlSchemaGetComponentQName(&strB, head),
19496 NULL);
19497 FREE_AND_NULL(strA)
19498 FREE_AND_NULL(strB)
19499 ret = XML_SCHEMAP_E_PROPS_CORRECT_6;
19500 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019501 /*
19502 * SPEC (4) "If there is a {substitution group affiliation},
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019503 * the {type definition}
19504 * of the element declaration must be validly derived from the {type
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019505 * definition} of the {substitution group affiliation}, given the value
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019506 * of the {substitution group exclusions} of the {substitution group
19507 * affiliation}, as defined in Type Derivation OK (Complex) (§3.4.6)
19508 * (if the {type definition} is complex) or as defined in
19509 * Type Derivation OK (Simple) (§3.14.6) (if the {type definition} is
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019510 * simple)."
19511 *
19512 * NOTE: {substitution group exclusions} means the values of the
19513 * attribute "final".
19514 */
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019515
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019516 if (typeDef != WXS_ELEM_TYPEDEF(WXS_SUBST_HEAD(elemDecl))) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019517 int set = 0;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019518
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019519 if (head->flags & XML_SCHEMAS_ELEM_FINAL_EXTENSION)
19520 set |= SUBSET_EXTENSION;
19521 if (head->flags & XML_SCHEMAS_ELEM_FINAL_RESTRICTION)
19522 set |= SUBSET_RESTRICTION;
19523
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000019524 if (xmlSchemaCheckCOSDerivedOK(ACTXT_CAST pctxt, typeDef,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019525 WXS_ELEM_TYPEDEF(head), set) != 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019526 xmlChar *strA = NULL, *strB = NULL, *strC = NULL;
19527
19528 ret = XML_SCHEMAP_E_PROPS_CORRECT_4;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019529 xmlSchemaPCustomErrExt(pctxt,
19530 XML_SCHEMAP_E_PROPS_CORRECT_4,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019531 WXS_BASIC_CAST elemDecl, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019532 "The type definition '%s' was "
19533 "either rejected by the substitution group "
19534 "affiliation '%s', or not validly derived from its type "
19535 "definition '%s'",
19536 xmlSchemaGetComponentQName(&strA, typeDef),
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019537 xmlSchemaGetComponentQName(&strB, head),
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019538 xmlSchemaGetComponentQName(&strC, WXS_ELEM_TYPEDEF(head)));
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019539 FREE_AND_NULL(strA)
19540 FREE_AND_NULL(strB)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019541 FREE_AND_NULL(strC)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019542 }
19543 }
19544 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019545 /*
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019546 * SPEC (5) "If the {type definition} or {type definition}'s
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019547 * {content type}
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019548 * is or is derived from ID then there must not be a {value constraint}.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019549 * Note: The use of ID as a type definition for elements goes beyond
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019550 * XML 1.0, and should be avoided if backwards compatibility is desired"
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019551 */
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019552 if ((elemDecl->value != NULL) &&
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019553 ((WXS_IS_SIMPLE(typeDef) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019554 xmlSchemaIsDerivedFromBuiltInType(typeDef, XML_SCHEMAS_ID)) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019555 (WXS_IS_COMPLEX(typeDef) &&
19556 WXS_HAS_SIMPLE_CONTENT(typeDef) &&
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019557 xmlSchemaIsDerivedFromBuiltInType(typeDef->contentTypeDef,
19558 XML_SCHEMAS_ID)))) {
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019559
19560 ret = XML_SCHEMAP_E_PROPS_CORRECT_5;
19561 xmlSchemaPCustomErr(pctxt,
19562 XML_SCHEMAP_E_PROPS_CORRECT_5,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019563 WXS_BASIC_CAST elemDecl, NULL,
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019564 "The type definition (or type definition's content type) is or "
19565 "is derived from ID; value constraints are not allowed in "
19566 "conjunction with such a type definition", NULL);
19567 } else if (elemDecl->value != NULL) {
19568 int vcret;
19569 xmlNodePtr node = NULL;
19570
19571 /*
19572 * SPEC (2) "If there is a {value constraint}, the canonical lexical
19573 * representation of its value must be ·valid· with respect to the
19574 * {type definition} as defined in Element Default Valid (Immediate)
19575 * (§3.3.6)."
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019576 */
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019577 if (typeDef == NULL) {
19578 xmlSchemaPErr(pctxt, elemDecl->node,
19579 XML_SCHEMAP_INTERNAL,
19580 "Internal error: xmlSchemaCheckElemPropsCorrect, "
19581 "type is missing... skipping validation of "
19582 "the value constraint", NULL, NULL);
19583 return (-1);
19584 }
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019585 if (elemDecl->node != NULL) {
19586 if (elemDecl->flags & XML_SCHEMAS_ELEM_FIXED)
19587 node = (xmlNodePtr) xmlHasProp(elemDecl->node,
19588 BAD_CAST "fixed");
19589 else
19590 node = (xmlNodePtr) xmlHasProp(elemDecl->node,
19591 BAD_CAST "default");
19592 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019593 vcret = xmlSchemaParseCheckCOSValidDefault(pctxt, node,
19594 typeDef, elemDecl->value, &(elemDecl->defVal));
19595 if (vcret != 0) {
19596 if (vcret < 0) {
19597 PERROR_INT("xmlSchemaElemCheckValConstr",
19598 "failed to validate the value constraint of an "
19599 "element declaration");
19600 return (-1);
19601 }
19602 return (vcret);
19603 }
19604 }
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019605
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019606 return (ret);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019607}
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019608
19609/**
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019610 * xmlSchemaCheckElemSubstGroup:
19611 * @ctxt: a schema parser context
19612 * @decl: the element declaration
19613 * @name: the name of the attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019614 *
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019615 * Schema Component Constraint:
19616 * Substitution Group (cos-equiv-class)
19617 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019618 * In Libxml2 the subst. groups will be precomputed, in terms of that
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019619 * a list will be built for each subst. group head, holding all direct
19620 * referents to this head.
19621 * NOTE that this function needs:
19622 * 1. circular subst. groups to be checked beforehand
19623 * 2. the declaration's type to be derived from the head's type
19624 *
19625 * STATUS:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019626 *
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019627 */
19628static void
19629xmlSchemaCheckElemSubstGroup(xmlSchemaParserCtxtPtr ctxt,
19630 xmlSchemaElementPtr elemDecl)
19631{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019632 if ((WXS_SUBST_HEAD(elemDecl) == NULL) ||
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019633 /* SPEC (1) "Its {abstract} is false." */
19634 (elemDecl->flags & XML_SCHEMAS_ELEM_ABSTRACT))
19635 return;
19636 {
19637 xmlSchemaElementPtr head;
19638 xmlSchemaTypePtr headType, type;
19639 int set, methSet;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019640 /*
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019641 * SPEC (2) "It is validly substitutable for HEAD subject to HEAD's
19642 * {disallowed substitutions} as the blocking constraint, as defined in
19643 * Substitution Group OK (Transitive) (§3.3.6)."
19644 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019645 for (head = WXS_SUBST_HEAD(elemDecl); head != NULL;
19646 head = WXS_SUBST_HEAD(head)) {
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019647 set = 0;
19648 methSet = 0;
19649 /*
19650 * The blocking constraints.
19651 */
19652 if (head->flags & XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION)
19653 continue;
19654 headType = head->subtypes;
19655 type = elemDecl->subtypes;
19656 if (headType == type)
19657 goto add_member;
19658 if (head->flags & XML_SCHEMAS_ELEM_BLOCK_RESTRICTION)
19659 set |= XML_SCHEMAS_TYPE_BLOCK_RESTRICTION;
19660 if (head->flags & XML_SCHEMAS_ELEM_BLOCK_EXTENSION)
19661 set |= XML_SCHEMAS_TYPE_BLOCK_EXTENSION;
19662 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019663 * SPEC: Substitution Group OK (Transitive) (2.3)
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019664 * "The set of all {derivation method}s involved in the
19665 * derivation of D's {type definition} from C's {type definition}
19666 * does not intersect with the union of the blocking constraint,
19667 * C's {prohibited substitutions} (if C is complex, otherwise the
19668 * empty set) and the {prohibited substitutions} (respectively the
19669 * empty set) of any intermediate {type definition}s in the
19670 * derivation of D's {type definition} from C's {type definition}."
19671 */
19672 /*
19673 * OPTIMIZE TODO: Optimize this a bit, since, if traversing the
19674 * subst.head axis, the methSet does not need to be computed for
19675 * the full depth over and over.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019676 */
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019677 /*
19678 * The set of all {derivation method}s involved in the derivation
19679 */
19680 while ((type != NULL) && (type != headType)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019681 if ((WXS_IS_EXTENSION(type)) &&
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019682 ((methSet & XML_SCHEMAS_TYPE_BLOCK_RESTRICTION) == 0))
19683 methSet |= XML_SCHEMAS_TYPE_BLOCK_EXTENSION;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019684
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019685 if (WXS_IS_RESTRICTION(type) &&
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019686 ((methSet & XML_SCHEMAS_TYPE_BLOCK_RESTRICTION) == 0))
19687 methSet |= XML_SCHEMAS_TYPE_BLOCK_RESTRICTION;
19688
19689 type = type->baseType;
19690 }
19691 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019692 * The {prohibited substitutions} of all intermediate types +
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019693 * the head's type.
19694 */
19695 type = elemDecl->subtypes->baseType;
19696 while (type != NULL) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019697 if (WXS_IS_COMPLEX(type)) {
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019698 if ((type->flags &
19699 XML_SCHEMAS_TYPE_BLOCK_EXTENSION) &&
19700 ((set & XML_SCHEMAS_TYPE_BLOCK_EXTENSION) == 0))
19701 set |= XML_SCHEMAS_TYPE_BLOCK_EXTENSION;
19702 if ((type->flags &
19703 XML_SCHEMAS_TYPE_BLOCK_RESTRICTION) &&
19704 ((set & XML_SCHEMAS_TYPE_BLOCK_RESTRICTION) == 0))
19705 set |= XML_SCHEMAS_TYPE_BLOCK_RESTRICTION;
19706 } else
19707 break;
19708 if (type == headType)
19709 break;
19710 type = type->baseType;
19711 }
19712 if ((set != 0) &&
19713 (((set & XML_SCHEMAS_TYPE_BLOCK_EXTENSION) &&
19714 (methSet & XML_SCHEMAS_TYPE_BLOCK_EXTENSION)) ||
19715 ((set & XML_SCHEMAS_TYPE_BLOCK_RESTRICTION) &&
19716 (methSet & XML_SCHEMAS_TYPE_BLOCK_RESTRICTION)))) {
19717 continue;
19718 }
19719add_member:
19720 xmlSchemaAddElementSubstitutionMember(ctxt, head, elemDecl);
19721 if ((head->flags & XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD) == 0)
19722 head->flags |= XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD;
19723 }
19724 }
19725}
19726
19727/**
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019728 * xmlSchemaCheckElementDeclComponent
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019729 * @item: an schema element declaration/particle
19730 * @ctxt: a schema parser context
19731 * @name: the name of the attribute
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019732 *
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019733 * Validates the value constraints of an element declaration.
19734 *
19735 * Fixes finish doing the computations on the element declarations.
19736 */
19737static void
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019738xmlSchemaCheckElementDeclComponent(xmlSchemaElementPtr elemDecl,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019739 xmlSchemaParserCtxtPtr ctxt)
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000019740{
19741 if (elemDecl == NULL)
19742 return;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019743 if (elemDecl->flags & XML_SCHEMAS_ELEM_INTERNAL_CHECKED)
19744 return;
19745 elemDecl->flags |= XML_SCHEMAS_ELEM_INTERNAL_CHECKED;
Kasimier T. Buchcik016d92e2005-04-08 20:08:40 +000019746 if (xmlSchemaCheckElemPropsCorrect(ctxt, elemDecl) == 0)
19747 xmlSchemaCheckElemSubstGroup(ctxt, elemDecl);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019748}
19749
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019750/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019751 * xmlSchemaResolveModelGroupParticleReferences:
19752 * @particle: a particle component
19753 * @ctxt: a parser context
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019754 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019755 * Resolves references of a model group's {particles} to
19756 * model group definitions and to element declarations.
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019757 */
19758static void
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019759xmlSchemaResolveModelGroupParticleReferences(
19760 xmlSchemaParserCtxtPtr ctxt,
19761 xmlSchemaModelGroupPtr mg)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019762{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019763 xmlSchemaParticlePtr particle = WXS_MODELGROUP_PARTICLE(mg);
19764 xmlSchemaQNameRefPtr ref;
19765 xmlSchemaBasicItemPtr refItem;
19766
19767 /*
19768 * URGENT TODO: Test this.
19769 */
19770 while (particle != NULL) {
19771 if ((WXS_PARTICLE_TERM(particle) == NULL) ||
19772 ((WXS_PARTICLE_TERM(particle))->type !=
19773 XML_SCHEMA_EXTRA_QNAMEREF))
19774 {
19775 goto next_particle;
19776 }
19777 ref = WXS_QNAME_CAST WXS_PARTICLE_TERM(particle);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019778 /*
19779 * Resolve the reference.
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019780 * NULL the {term} by default.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019781 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019782 particle->children = NULL;
19783
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019784 refItem = xmlSchemaGetNamedComponent(ctxt->schema,
19785 ref->itemType, ref->name, ref->targetNamespace);
19786 if (refItem == NULL) {
19787 xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019788 NULL, WXS_ITEM_NODE(particle), "ref", ref->name,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019789 ref->targetNamespace, ref->itemType, NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019790 /* TODO: remove the particle. */
19791 goto next_particle;
19792 }
19793 if (refItem->type == XML_SCHEMA_TYPE_GROUP) {
19794 if (WXS_MODELGROUPDEF_MODEL(refItem) == NULL)
19795 /* TODO: remove the particle. */
19796 goto next_particle;
19797 /*
19798 * NOTE that we will assign the model group definition
19799 * itself to the "term" of the particle. This will ease
19800 * the check for circular model group definitions. After
19801 * that the "term" will be assigned the model group of the
19802 * model group definition.
19803 */
19804 if ((WXS_MODELGROUPDEF_MODEL(refItem))->type ==
19805 XML_SCHEMA_TYPE_ALL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019806 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019807 * SPEC cos-all-limited (1)
19808 * SPEC cos-all-limited (1.2)
19809 * "It appears only as the value of one or both of the
19810 * following properties:"
19811 * (1.1) "the {model group} property of a model group
19812 * definition."
19813 * (1.2) "the {term} property of a particle [... of] the "
19814 * {content type} of a complex type definition."
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000019815 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019816 xmlSchemaCustomErr(ACTXT_CAST ctxt,
19817 /* TODO: error code */
19818 XML_SCHEMAP_COS_ALL_LIMITED,
19819 WXS_ITEM_NODE(particle), NULL,
19820 "A model group definition is referenced, but "
19821 "it contains an 'all' model group, which "
19822 "cannot be contained by model groups",
19823 NULL, NULL);
19824 /* TODO: remove the particle. */
19825 goto next_particle;
19826 }
19827 particle->children = (xmlSchemaTreeItemPtr) refItem;
19828 } else {
19829 /*
19830 * TODO: Are referenced element declarations the only
19831 * other components we expect here?
19832 */
19833 particle->children = (xmlSchemaTreeItemPtr) refItem;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019834 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019835next_particle:
19836 particle = WXS_PTC_CAST particle->next;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019837 }
19838}
19839
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019840static int
19841xmlSchemaAreValuesEqual(xmlSchemaValPtr x,
19842 xmlSchemaValPtr y)
19843{
19844 xmlSchemaTypePtr tx, ty, ptx, pty;
19845 int ret;
19846
19847 while (x != NULL) {
19848 /* Same types. */
19849 tx = xmlSchemaGetBuiltInType(xmlSchemaGetValType(x));
19850 ty = xmlSchemaGetBuiltInType(xmlSchemaGetValType(y));
19851 ptx = xmlSchemaGetPrimitiveType(tx);
19852 pty = xmlSchemaGetPrimitiveType(ty);
19853 /*
19854 * (1) if a datatype T' is ·derived· by ·restriction· from an
19855 * atomic datatype T then the ·value space· of T' is a subset of
19856 * the ·value space· of T. */
19857 /*
19858 * (2) if datatypes T' and T'' are ·derived· by ·restriction·
19859 * from a common atomic ancestor T then the ·value space·s of T'
19860 * and T'' may overlap.
19861 */
19862 if (ptx != pty)
19863 return(0);
19864 /*
19865 * We assume computed values to be normalized, so do a fast
19866 * string comparison for string based types.
19867 */
19868 if ((ptx->builtInType == XML_SCHEMAS_STRING) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019869 WXS_IS_ANY_SIMPLE_TYPE(ptx)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019870 if (! xmlStrEqual(
19871 xmlSchemaValueGetAsString(x),
19872 xmlSchemaValueGetAsString(y)))
19873 return (0);
19874 } else {
19875 ret = xmlSchemaCompareValuesWhtsp(
19876 x, XML_SCHEMA_WHITESPACE_PRESERVE,
19877 y, XML_SCHEMA_WHITESPACE_PRESERVE);
19878 if (ret == -2)
19879 return(-1);
19880 if (ret != 0)
19881 return(0);
19882 }
19883 /*
19884 * Lists.
19885 */
19886 x = xmlSchemaValueGetNext(x);
19887 if (x != NULL) {
19888 y = xmlSchemaValueGetNext(y);
19889 if (y == NULL)
19890 return (0);
19891 } else if (xmlSchemaValueGetNext(y) != NULL)
19892 return (0);
19893 else
19894 return (1);
19895 }
19896 return (0);
19897}
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000019898
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019899/**
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019900 * xmlSchemaResolveAttrUseReferences:
19901 * @item: an attribute use
19902 * @ctxt: a parser context
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019903 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019904 * Resolves the referenced attribute declaration.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000019905 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019906static int
19907xmlSchemaResolveAttrUseReferences(xmlSchemaAttributeUsePtr ause,
19908 xmlSchemaParserCtxtPtr ctxt)
Daniel Veillard4255d502002-04-16 15:50:10 +000019909{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019910 if ((ctxt == NULL) || (ause == NULL))
19911 return(-1);
19912 if ((ause->attrDecl == NULL) ||
19913 (ause->attrDecl->type != XML_SCHEMA_EXTRA_QNAMEREF))
19914 return(0);
19915
19916 {
19917 xmlSchemaQNameRefPtr ref = WXS_QNAME_CAST ause->attrDecl;
19918
19919 /*
19920 * TODO: Evaluate, what errors could occur if the declaration is not
19921 * found.
19922 */
19923 ause->attrDecl = xmlSchemaGetAttributeDecl(ctxt->schema,
19924 ref->name, ref->targetNamespace);
19925 if (ause->attrDecl == NULL) {
19926 xmlSchemaPResCompAttrErr(ctxt,
19927 XML_SCHEMAP_SRC_RESOLVE,
19928 WXS_BASIC_CAST ause, ause->node,
19929 "ref", ref->name, ref->targetNamespace,
19930 XML_SCHEMA_TYPE_ATTRIBUTE, NULL);
19931 return(ctxt->err);;
19932 }
19933 }
19934 return(0);
19935}
19936
19937/**
19938 * xmlSchemaCheckAttrUsePropsCorrect:
19939 * @ctxt: a parser context
19940 * @use: an attribute use
19941 *
19942 * Schema Component Constraint:
19943 * Attribute Use Correct (au-props-correct)
19944 *
19945 */
19946static int
19947xmlSchemaCheckAttrUsePropsCorrect(xmlSchemaParserCtxtPtr ctxt,
19948 xmlSchemaAttributeUsePtr use)
19949{
19950 if ((ctxt == NULL) || (use == NULL))
19951 return(-1);
19952 if ((use->defValue == NULL) || (WXS_ATTRUSE_DECL(use) == NULL) ||
19953 ((WXS_ATTRUSE_DECL(use))->type != XML_SCHEMA_TYPE_ATTRIBUTE))
19954 return(0);
19955
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000019956 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019957 * SPEC au-props-correct (1)
19958 * "The values of the properties of an attribute use must be as
19959 * described in the property tableau in The Attribute Use Schema
19960 * Component (§3.5.1), modulo the impact of Missing
19961 * Sub-components (§5.3)."
Daniel Veillardc0826a72004-08-10 14:17:33 +000019962 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000019963
19964 if (((WXS_ATTRUSE_DECL(use))->defValue != NULL) &&
19965 ((WXS_ATTRUSE_DECL(use))->flags & XML_SCHEMAS_ATTR_FIXED) &&
19966 ((use->flags & XML_SCHEMA_ATTR_USE_FIXED) == 0))
19967 {
19968 xmlSchemaPCustomErr(ctxt,
19969 XML_SCHEMAP_AU_PROPS_CORRECT_2,
19970 WXS_BASIC_CAST use, NULL,
19971 "The attribute declaration has a 'fixed' value constraint "
19972 ", thus the attribute use must also have a 'fixed' value "
19973 "constraint",
19974 NULL);
19975 return(ctxt->err);
19976 }
19977 /*
19978 * Compute and check the value constraint's value.
19979 */
19980 if ((use->defVal != NULL) && (WXS_ATTRUSE_TYPEDEF(use) != NULL)) {
19981 int ret;
19982 /*
19983 * TODO: The spec seems to be missing a check of the
19984 * value constraint of the attribute use. We will do it here.
19985 */
19986 /*
19987 * SPEC a-props-correct (3)
19988 */
19989 if (xmlSchemaIsDerivedFromBuiltInType(
19990 WXS_ATTRUSE_TYPEDEF(use), XML_SCHEMAS_ID))
19991 {
19992 xmlSchemaCustomErr(ACTXT_CAST ctxt,
19993 XML_SCHEMAP_AU_PROPS_CORRECT,
19994 NULL, WXS_BASIC_CAST use,
19995 "Value constraints are not allowed if the type definition "
19996 "is or is derived from xs:ID",
19997 NULL, NULL);
19998 return(ctxt->err);
19999 }
20000
20001 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST ctxt,
20002 use->node, WXS_ATTRUSE_TYPEDEF(use),
20003 use->defValue, &(use->defVal),
20004 1, 1, 0);
20005 if (ret != 0) {
20006 if (ret < 0) {
20007 PERROR_INT2("xmlSchemaCheckAttrUsePropsCorrect",
20008 "calling xmlSchemaVCheckCVCSimpleType()");
20009 return(-1);
20010 }
20011 xmlSchemaCustomErr(ACTXT_CAST ctxt,
20012 XML_SCHEMAP_AU_PROPS_CORRECT,
20013 NULL, WXS_BASIC_CAST use,
20014 "The value of the value constraint is not valid",
20015 NULL, NULL);
20016 return(ctxt->err);
20017 }
20018 }
20019 /*
20020 * SPEC au-props-correct (2)
20021 * "If the {attribute declaration} has a fixed
20022 * {value constraint}, then if the attribute use itself has a
20023 * {value constraint}, it must also be fixed and its value must match
20024 * that of the {attribute declaration}'s {value constraint}."
20025 */
20026 if (((WXS_ATTRUSE_DECL(use))->defVal != NULL) &&
20027 (((WXS_ATTRUSE_DECL(use))->flags & XML_SCHEMA_ATTR_USE_FIXED) == 0))
20028 {
20029 if (! xmlSchemaAreValuesEqual(use->defVal,
20030 (WXS_ATTRUSE_DECL(use))->defVal))
20031 {
20032 xmlSchemaPCustomErr(ctxt,
20033 XML_SCHEMAP_AU_PROPS_CORRECT_2,
20034 WXS_BASIC_CAST use, NULL,
20035 "The 'fixed' value constraint of the attribute use "
20036 "must match the attribute declaration's value "
20037 "constraint '%s'",
20038 (WXS_ATTRUSE_DECL(use))->defValue);
20039 }
20040 return(ctxt->err);
20041 }
20042 return(0);
20043}
20044
20045
20046
20047
20048/**
20049 * xmlSchemaResolveAttrTypeReferences:
20050 * @item: an attribute declaration
20051 * @ctxt: a parser context
20052 *
20053 * Resolves the referenced type definition component.
20054 */
20055static int
20056xmlSchemaResolveAttrTypeReferences(xmlSchemaAttributePtr item,
20057 xmlSchemaParserCtxtPtr ctxt)
20058{
Daniel Veillard01fa6152004-06-29 17:04:39 +000020059 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020060 * The simple type definition corresponding to the <simpleType> element
20061 * information item in the [children], if present, otherwise the simple
20062 * type definition ·resolved· to by the ·actual value· of the type
Daniel Veillard01fa6152004-06-29 17:04:39 +000020063 * [attribute], if present, otherwise the ·simple ur-type definition·.
20064 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000020065 if (item->flags & XML_SCHEMAS_ATTR_INTERNAL_RESOLVED)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020066 return(0);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000020067 item->flags |= XML_SCHEMAS_ATTR_INTERNAL_RESOLVED;
20068 if (item->subtypes != NULL)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020069 return(0);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000020070 if (item->typeName != NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000020071 xmlSchemaTypePtr type;
Daniel Veillard4255d502002-04-16 15:50:10 +000020072
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000020073 type = xmlSchemaGetType(ctxt->schema, item->typeName,
20074 item->typeNs);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020075 if ((type == NULL) || (! WXS_IS_SIMPLE(type))) {
Daniel Veillardc0826a72004-08-10 14:17:33 +000020076 xmlSchemaPResCompAttrErr(ctxt,
Daniel Veillard01fa6152004-06-29 17:04:39 +000020077 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020078 WXS_BASIC_CAST item, item->node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020079 "type", item->typeName, item->typeNs,
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000020080 XML_SCHEMA_TYPE_SIMPLE, NULL);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020081 return(ctxt->err);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000020082 } else
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000020083 item->subtypes = type;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020084
Daniel Veillard3646d642004-06-02 19:19:14 +000020085 } else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020086 /*
20087 * The type defaults to the xs:anySimpleType.
20088 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020089 item->subtypes = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE);
20090 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020091 return(0);
Daniel Veillard4255d502002-04-16 15:50:10 +000020092}
20093
20094/**
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020095 * xmlSchemaResolveIDCKeyReferences:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020096 * @idc: the identity-constraint definition
20097 * @ctxt: the schema parser context
20098 * @name: the attribute name
20099 *
20100 * Resolve keyRef references to key/unique IDCs.
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020101 * Schema Component Constraint:
20102 * Identity-constraint Definition Properties Correct (c-props-correct)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020103 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020104static int
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020105xmlSchemaResolveIDCKeyReferences(xmlSchemaIDCPtr idc,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020106 xmlSchemaParserCtxtPtr pctxt)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020107{
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020108 if (idc->type != XML_SCHEMA_TYPE_IDC_KEYREF)
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020109 return(0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020110 if (idc->ref->name != NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020111 idc->ref->item = (xmlSchemaBasicItemPtr)
20112 xmlSchemaGetIDC(pctxt->schema, idc->ref->name,
20113 idc->ref->targetNamespace);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020114 if (idc->ref->item == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020115 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020116 * TODO: It is actually not an error to fail to resolve
20117 * at this stage. BUT we need to be that strict!
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020118 */
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020119 xmlSchemaPResCompAttrErr(pctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020120 XML_SCHEMAP_SRC_RESOLVE,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020121 WXS_BASIC_CAST idc, idc->node,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020122 "refer", idc->ref->name,
20123 idc->ref->targetNamespace,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020124 XML_SCHEMA_TYPE_IDC_KEY, NULL);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020125 return(pctxt->err);
20126 } else if (idc->ref->item->type == XML_SCHEMA_TYPE_IDC_KEYREF) {
20127 /*
20128 * SPEC c-props-correct (1)
20129 */
20130 xmlSchemaCustomErr(ACTXT_CAST pctxt,
20131 XML_SCHEMAP_C_PROPS_CORRECT,
20132 NULL, WXS_BASIC_CAST idc,
20133 "The keyref references a keyref",
20134 NULL, NULL);
20135 idc->ref->item = NULL;
20136 return(pctxt->err);
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020137 } else {
20138 if (idc->nbFields !=
20139 ((xmlSchemaIDCPtr) idc->ref->item)->nbFields) {
20140 xmlChar *str = NULL;
20141 xmlSchemaIDCPtr refer;
20142
20143 refer = (xmlSchemaIDCPtr) idc->ref->item;
20144 /*
20145 * SPEC c-props-correct(2)
20146 * "If the {identity-constraint category} is keyref,
20147 * the cardinality of the {fields} must equal that of
20148 * the {fields} of the {referenced key}.
20149 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020150 xmlSchemaCustomErr(ACTXT_CAST pctxt,
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020151 XML_SCHEMAP_C_PROPS_CORRECT,
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020152 NULL, WXS_BASIC_CAST idc,
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020153 "The cardinality of the keyref differs from the "
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020154 "cardinality of the referenced key/unique '%s'",
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020155 xmlSchemaFormatQName(&str, refer->targetNamespace,
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020156 refer->name),
20157 NULL);
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020158 FREE_AND_NULL(str)
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020159 return(pctxt->err);
Kasimier T. Buchcikc306d902005-07-08 21:37:44 +000020160 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000020161 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020162 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020163 return(0);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000020164}
20165
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020166static int
20167xmlSchemaResolveAttrUseProhibReferences(xmlSchemaAttributeUseProhibPtr prohib,
20168 xmlSchemaParserCtxtPtr pctxt)
20169{
20170 if (xmlSchemaGetAttributeDecl(pctxt->schema, prohib->name,
20171 prohib->targetNamespace) == NULL) {
20172
20173 xmlSchemaPResCompAttrErr(pctxt,
20174 XML_SCHEMAP_SRC_RESOLVE,
20175 NULL, prohib->node,
20176 "ref", prohib->name, prohib->targetNamespace,
20177 XML_SCHEMA_TYPE_ATTRIBUTE, NULL);
20178 return(XML_SCHEMAP_SRC_RESOLVE);
20179 }
20180 return(0);
20181}
20182
20183#define WXS_REDEFINED_TYPE(c) \
20184(((xmlSchemaTypePtr) item)->flags & XML_SCHEMAS_TYPE_REDEFINED)
20185
20186#define WXS_REDEFINED_MODEL_GROUP_DEF(c) \
20187(((xmlSchemaModelGroupDefPtr) item)->flags & XML_SCHEMA_MODEL_GROUP_DEF_REDEFINED)
20188
20189#define WXS_REDEFINED_ATTR_GROUP(c) \
20190(((xmlSchemaAttributeGroupPtr) item)->flags & XML_SCHEMAS_ATTRGROUP_REDEFINED)
20191
20192static int
20193xmlSchemaCheckSRCRedefineFirst(xmlSchemaParserCtxtPtr pctxt)
20194{
20195 int err = 0;
20196 xmlSchemaRedefPtr redef = WXS_CONSTRUCTOR(pctxt)->redefs;
20197 xmlSchemaBasicItemPtr prev, item;
20198 int wasRedefined;
20199
20200 if (redef == NULL)
20201 return(0);
20202
20203 do {
20204 item = redef->item;
20205 /*
20206 * First try to locate the redefined component in the
20207 * schema graph starting with the redefined schema.
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020208 * NOTE: According to this schema bug entry:
20209 * http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005OctDec/0019.html
20210 * it's not clear if the referenced component needs to originate
20211 * from the <redefine>d schema _document_ or the schema; the latter
20212 * would include all imported and included sub-schemas of the
20213 * <redefine>d schema. Currenlty we latter approach is used.
20214 * SUPPLEMENT: It seems that the WG moves towards the latter
20215 * approach, so we are doing it right.
20216 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020217 */
20218 prev = xmlSchemaFindRedefCompInGraph(
20219 redef->targetBucket, item->type,
20220 redef->refName, redef->refTargetNs);
20221 if (prev == NULL) {
20222 xmlChar *str = NULL;
20223 xmlNodePtr node;
20224
20225 /*
20226 * SPEC src-redefine:
20227 * (6.2.1) "The ·actual value· of its own name attribute plus
20228 * target namespace must successfully ·resolve· to a model
20229 * group definition in I."
20230 * (7.2.1) "The ·actual value· of its own name attribute plus
20231 * target namespace must successfully ·resolve· to an attribute
20232 * group definition in I."
20233
20234 *
20235 * Note that, if we are redefining with the use of references
20236 * to components, the spec assumes the src-resolve to be used;
20237 * but this won't assure that we search only *inside* the
20238 * redefined schema.
20239 */
20240 if (redef->reference)
20241 node = WXS_ITEM_NODE(redef->reference);
20242 else
20243 node = WXS_ITEM_NODE(item);
20244 xmlSchemaCustomErr(ACTXT_CAST pctxt,
20245 /*
20246 * TODO: error code.
20247 * Probably XML_SCHEMAP_SRC_RESOLVE, if this is using the
20248 * reference kind.
20249 */
20250 XML_SCHEMAP_SRC_REDEFINE, node, NULL,
Kasimier T. Buchcik5d2998b2005-11-22 17:36:01 +000020251 "The %s '%s' to be redefined could not be found in "
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020252 "the redefined schema",
20253 WXS_ITEM_TYPE_NAME(item),
20254 xmlSchemaFormatQName(&str, redef->refTargetNs,
20255 redef->refName));
20256 FREE_AND_NULL(str);
20257 err = pctxt->err;
20258 redef = redef->next;
20259 continue;
20260 }
20261 /*
20262 * TODO: Obtaining and setting the redefinition state is really
20263 * clumsy.
20264 */
20265 wasRedefined = 0;
20266 switch (item->type) {
20267 case XML_SCHEMA_TYPE_COMPLEX:
20268 case XML_SCHEMA_TYPE_SIMPLE:
20269 if ((WXS_TYPE_CAST prev)->flags &
20270 XML_SCHEMAS_TYPE_REDEFINED)
20271 {
20272 wasRedefined = 1;
20273 break;
20274 }
20275 /* Mark it as redefined. */
20276 (WXS_TYPE_CAST prev)->flags |= XML_SCHEMAS_TYPE_REDEFINED;
20277 /*
20278 * Assign the redefined type to the
20279 * base type of the redefining type.
20280 * TODO: How
20281 */
20282 ((xmlSchemaTypePtr) item)->baseType =
20283 (xmlSchemaTypePtr) prev;
20284 break;
20285 case XML_SCHEMA_TYPE_GROUP:
20286 if ((WXS_MODEL_GROUPDEF_CAST prev)->flags &
20287 XML_SCHEMA_MODEL_GROUP_DEF_REDEFINED)
20288 {
20289 wasRedefined = 1;
20290 break;
20291 }
20292 /* Mark it as redefined. */
20293 (WXS_MODEL_GROUPDEF_CAST prev)->flags |=
20294 XML_SCHEMA_MODEL_GROUP_DEF_REDEFINED;
20295 if (redef->reference != NULL) {
20296 /*
20297 * Overwrite the QName-reference with the
20298 * referenced model group def.
20299 */
20300 (WXS_PTC_CAST redef->reference)->children =
20301 WXS_TREE_CAST prev;
20302 }
20303 redef->target = prev;
20304 break;
20305 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20306 if ((WXS_ATTR_GROUP_CAST prev)->flags &
20307 XML_SCHEMAS_ATTRGROUP_REDEFINED)
20308 {
20309 wasRedefined = 1;
20310 break;
20311 }
20312 (WXS_ATTR_GROUP_CAST prev)->flags |=
20313 XML_SCHEMAS_ATTRGROUP_REDEFINED;
20314 if (redef->reference != NULL) {
20315 /*
20316 * Assign the redefined attribute group to the
20317 * QName-reference component.
20318 * This is the easy case, since we will just
20319 * expand the redefined group.
20320 */
20321 (WXS_QNAME_CAST redef->reference)->item = prev;
20322 redef->target = NULL;
20323 } else {
20324 /*
20325 * This is the complicated case: we need
20326 * to apply src-redefine (7.2.2) at a later
20327 * stage, i.e. when attribute group references
20328 * have beed expanded and simple types have
20329 * beed fixed.
20330 */
20331 redef->target = prev;
20332 }
20333 break;
20334 default:
20335 PERROR_INT("xmlSchemaResolveRedefReferences",
20336 "Unexpected redefined component type");
20337 return(-1);
20338 }
20339 if (wasRedefined) {
20340 xmlChar *str = NULL;
20341 xmlNodePtr node;
20342
20343 if (redef->reference)
20344 node = WXS_ITEM_NODE(redef->reference);
20345 else
20346 node = WXS_ITEM_NODE(redef->item);
20347
20348 xmlSchemaCustomErr(ACTXT_CAST pctxt,
20349 /* TODO: error code. */
20350 XML_SCHEMAP_SRC_REDEFINE,
20351 node, NULL,
20352 "The referenced %s was already redefined. Multiple "
20353 "redefinition of the same component is not supported",
20354 xmlSchemaGetComponentDesignation(&str, prev),
20355 NULL);
20356 FREE_AND_NULL(str)
20357 err = pctxt->err;
20358 redef = redef->next;
20359 continue;
20360 }
20361 redef = redef->next;
20362 } while (redef != NULL);
20363
20364 return(err);
20365}
20366
20367static int
20368xmlSchemaCheckSRCRedefineSecond(xmlSchemaParserCtxtPtr pctxt)
20369{
20370 int err = 0;
20371 xmlSchemaRedefPtr redef = WXS_CONSTRUCTOR(pctxt)->redefs;
20372 xmlSchemaBasicItemPtr item;
20373
20374 if (redef == NULL)
20375 return(0);
20376
20377 do {
20378 if (redef->target == NULL) {
20379 redef = redef->next;
20380 continue;
20381 }
20382 item = redef->item;
20383
20384 switch (item->type) {
20385 case XML_SCHEMA_TYPE_SIMPLE:
20386 case XML_SCHEMA_TYPE_COMPLEX:
20387 /*
20388 * Since the spec wants the {name} of the redefined
20389 * type to be 'absent', we'll NULL it.
20390 */
20391 (WXS_TYPE_CAST redef->target)->name = NULL;
20392
20393 /*
20394 * TODO: Seems like there's nothing more to do. The normal
20395 * inheritance mechanism is used. But not 100% sure.
20396 */
20397 break;
20398 case XML_SCHEMA_TYPE_GROUP:
20399 /*
20400 * URGENT TODO:
20401 * SPEC src-redefine:
20402 * (6.2.2) "The {model group} of the model group definition
20403 * which corresponds to it per XML Representation of Model
20404 * Group Definition Schema Components (§3.7.2) must be a
20405 * ·valid restriction· of the {model group} of that model
20406 * group definition in I, as defined in Particle Valid
20407 * (Restriction) (§3.9.6)."
20408 */
20409 break;
20410 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20411 /*
20412 * SPEC src-redefine:
20413 * (7.2.2) "The {attribute uses} and {attribute wildcard} of
20414 * the attribute group definition which corresponds to it
20415 * per XML Representation of Attribute Group Definition Schema
20416 * Components (§3.6.2) must be ·valid restrictions· of the
20417 * {attribute uses} and {attribute wildcard} of that attribute
20418 * group definition in I, as defined in clause 2, clause 3 and
20419 * clause 4 of Derivation Valid (Restriction, Complex)
20420 * (§3.4.6) (where references to the base type definition are
20421 * understood as references to the attribute group definition
20422 * in I)."
20423 */
20424 err = xmlSchemaCheckDerivationOKRestriction2to4(pctxt,
20425 XML_SCHEMA_ACTION_REDEFINE,
20426 item, redef->target,
20427 (WXS_ATTR_GROUP_CAST item)->attrUses,
20428 (WXS_ATTR_GROUP_CAST redef->target)->attrUses,
20429 (WXS_ATTR_GROUP_CAST item)->attributeWildcard,
20430 (WXS_ATTR_GROUP_CAST redef->target)->attributeWildcard);
20431 if (err == -1)
20432 return(-1);
20433 break;
20434 default:
20435 break;
20436 }
20437 redef = redef->next;
20438 } while (redef != NULL);
20439 return(0);
20440}
20441
20442
20443static int
20444xmlSchemaAddComponents(xmlSchemaParserCtxtPtr pctxt,
20445 xmlSchemaBucketPtr bucket)
20446{
20447 xmlSchemaBasicItemPtr item;
20448 int err;
20449 xmlHashTablePtr *table;
20450 const xmlChar *name;
20451 int i;
20452
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020453#define WXS_GET_GLOBAL_HASH(c, slot) { \
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020454 if (WXS_IS_BUCKET_IMPMAIN((c)->type)) \
20455 table = &(WXS_IMPBUCKET((c))->schema->slot); \
20456 else \
20457 table = &(WXS_INCBUCKET((c))->ownerImport->schema->slot); }
20458
20459 /*
20460 * Add global components to the schema's hash tables.
20461 * This is the place where duplicate components will be
20462 * detected.
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000020463 * TODO: I think normally we should support imports of the
20464 * same namespace from multiple locations. We don't do currently,
20465 * but if we do then according to:
20466 * http://www.w3.org/Bugs/Public/show_bug.cgi?id=2224
20467 * we would need, if imported directly, to import redefined
20468 * components as well to be able to catch clashing components.
20469 * (I hope I'll still know what this means after some months :-()
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020470 */
20471 if (bucket == NULL)
20472 return(-1);
20473 if (bucket->flags & XML_SCHEMA_BUCKET_COMPS_ADDED)
20474 return(0);
20475 bucket->flags |= XML_SCHEMA_BUCKET_COMPS_ADDED;
20476
20477 for (i = 0; i < bucket->globals->nbItems; i++) {
20478 item = bucket->globals->items[i];
20479 table = NULL;
20480 switch (item->type) {
20481 case XML_SCHEMA_TYPE_COMPLEX:
20482 case XML_SCHEMA_TYPE_SIMPLE:
20483 if (WXS_REDEFINED_TYPE(item))
20484 continue;
20485 name = (WXS_TYPE_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020486 WXS_GET_GLOBAL_HASH(bucket, typeDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020487 break;
20488 case XML_SCHEMA_TYPE_ELEMENT:
20489 name = (WXS_ELEM_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020490 WXS_GET_GLOBAL_HASH(bucket, elemDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020491 break;
20492 case XML_SCHEMA_TYPE_ATTRIBUTE:
20493 name = (WXS_ATTR_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020494 WXS_GET_GLOBAL_HASH(bucket, attrDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020495 break;
20496 case XML_SCHEMA_TYPE_GROUP:
20497 if (WXS_REDEFINED_MODEL_GROUP_DEF(item))
20498 continue;
20499 name = (WXS_MODEL_GROUPDEF_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020500 WXS_GET_GLOBAL_HASH(bucket, groupDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020501 break;
20502 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20503 if (WXS_REDEFINED_ATTR_GROUP(item))
20504 continue;
20505 name = (WXS_ATTR_GROUP_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020506 WXS_GET_GLOBAL_HASH(bucket, attrgrpDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020507 break;
20508 case XML_SCHEMA_TYPE_IDC_KEY:
20509 case XML_SCHEMA_TYPE_IDC_UNIQUE:
20510 case XML_SCHEMA_TYPE_IDC_KEYREF:
20511 name = (WXS_IDC_CAST item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020512 WXS_GET_GLOBAL_HASH(bucket, idcDef)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020513 break;
20514 case XML_SCHEMA_TYPE_NOTATION:
20515 name = ((xmlSchemaNotationPtr) item)->name;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020516 WXS_GET_GLOBAL_HASH(bucket, notaDecl)
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020517 break;
20518 default:
20519 PERROR_INT("xmlSchemaAddComponents",
20520 "Unexpected global component type");
20521 continue;
20522 }
20523 if (*table == NULL) {
20524 *table = xmlHashCreateDict(10, pctxt->dict);
20525 if (*table == NULL) {
20526 PERROR_INT("xmlSchemaAddComponents",
20527 "failed to create a component hash table");
20528 return(-1);
20529 }
20530 }
20531 err = xmlHashAddEntry(*table, name, item);
20532 if (err != 0) {
20533 xmlChar *str = NULL;
20534
20535 xmlSchemaCustomErr(ACTXT_CAST pctxt,
20536 XML_SCHEMAP_REDEFINED_TYPE,
20537 WXS_ITEM_NODE(item),
20538 WXS_BASIC_CAST item,
20539 "A global %s '%s' does already exist",
20540 WXS_ITEM_TYPE_NAME(item),
20541 xmlSchemaGetComponentQName(&str, item));
20542 FREE_AND_NULL(str);
20543 }
20544 }
20545 /*
20546 * Process imported/included schemas.
20547 */
20548 if (bucket->relations != NULL) {
20549 xmlSchemaSchemaRelationPtr rel = bucket->relations;
20550 do {
20551 if ((rel->bucket != NULL) &&
20552 ((rel->bucket->flags & XML_SCHEMA_BUCKET_COMPS_ADDED) == 0)) {
20553 if (xmlSchemaAddComponents(pctxt, rel->bucket) == -1)
20554 return(-1);
20555 }
20556 rel = rel->next;
20557 } while (rel != NULL);
20558 }
20559 return(0);
20560}
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020561
20562static int
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020563xmlSchemaFixupComponents(xmlSchemaParserCtxtPtr pctxt,
20564 xmlSchemaBucketPtr rootBucket)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020565{
20566 xmlSchemaConstructionCtxtPtr con = pctxt->constructor;
20567 xmlSchemaTreeItemPtr item, *items;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020568 int nbItems, i, ret = 0;
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000020569 xmlSchemaBucketPtr oldbucket = con->bucket;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020570
20571#define FIXHFAILURE if (pctxt->err == XML_SCHEMAP_INTERNAL) goto exit_failure;
20572
20573 if ((con->pending == NULL) ||
20574 (con->pending->nbItems == 0))
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020575 return(0);
20576
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000020577 /*
20578 * Since xmlSchemaFixupComplexType() will create new particles
20579 * (local components), and those particle components need a bucket
20580 * on the constructor, we'll assure here that the constructor has
20581 * a bucket.
20582 * TODO: Think about storing locals _only_ on the main bucket.
20583 */
20584 if (con->bucket == NULL)
20585 con->bucket = rootBucket;
20586
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020587 /* TODO:
20588 * SPEC (src-redefine):
20589 * (6.2) "If it has no such self-reference, then all of the
20590 * following must be true:"
20591
20592 * (6.2.2) The {model group} of the model group definition which
20593 * corresponds to it per XML Representation of Model Group
20594 * Definition Schema Components (§3.7.2) must be a ·valid
20595 * restriction· of the {model group} of that model group definition
20596 * in I, as defined in Particle Valid (Restriction) (§3.9.6)."
20597 */
20598 xmlSchemaCheckSRCRedefineFirst(pctxt);
20599
20600 /*
20601 * Add global components to the schemata's hash tables.
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000020602 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020603 xmlSchemaAddComponents(pctxt, rootBucket);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020604
20605 pctxt->ctxtType = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020606 items = (xmlSchemaTreeItemPtr *) con->pending->items;
20607 nbItems = con->pending->nbItems;
20608 /*
20609 * Now that we have parsed *all* the schema document(s) and converted
20610 * them to schema components, we can resolve references, apply component
20611 * constraints, create the FSA from the content model, etc.
20612 */
20613 /*
20614 * Resolve references of..
20615 *
20616 * 1. element declarations:
20617 * - the type definition
20618 * - the substitution group affiliation
20619 * 2. simple/complex types:
20620 * - the base type definition
20621 * - the memberTypes of union types
20622 * - the itemType of list types
20623 * 3. attributes declarations and attribute uses:
20624 * - the type definition
20625 * - if an attribute use, then the attribute declaration
20626 * 4. attribute group references:
20627 * - the attribute group definition
20628 * 5. particles:
20629 * - the term of the particle (e.g. a model group)
20630 * 6. IDC key-references:
20631 * - the referenced IDC 'key' or 'unique' definition
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020632 * 7. Attribute prohibitions which had a "ref" attribute.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020633 */
20634 for (i = 0; i < nbItems; i++) {
20635 item = items[i];
20636 switch (item->type) {
20637 case XML_SCHEMA_TYPE_ELEMENT:
20638 xmlSchemaResolveElementReferences(
20639 (xmlSchemaElementPtr) item, pctxt);
20640 FIXHFAILURE;
20641 break;
20642 case XML_SCHEMA_TYPE_COMPLEX:
20643 case XML_SCHEMA_TYPE_SIMPLE:
20644 xmlSchemaResolveTypeReferences(
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020645 (xmlSchemaTypePtr) item, pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020646 FIXHFAILURE;
20647 break;
20648 case XML_SCHEMA_TYPE_ATTRIBUTE:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020649 xmlSchemaResolveAttrTypeReferences(
20650 (xmlSchemaAttributePtr) item, pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020651 FIXHFAILURE;
20652 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020653 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
20654 xmlSchemaResolveAttrUseReferences(
20655 (xmlSchemaAttributeUsePtr) item, pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020656 FIXHFAILURE;
20657 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020658 case XML_SCHEMA_EXTRA_QNAMEREF:
20659 if ((WXS_QNAME_CAST item)->itemType ==
20660 XML_SCHEMA_TYPE_ATTRIBUTEGROUP)
20661 {
20662 xmlSchemaResolveAttrGroupReferences(
20663 WXS_QNAME_CAST item, pctxt);
20664 }
20665 FIXHFAILURE;
20666 break;
20667 case XML_SCHEMA_TYPE_SEQUENCE:
20668 case XML_SCHEMA_TYPE_CHOICE:
20669 case XML_SCHEMA_TYPE_ALL:
20670 xmlSchemaResolveModelGroupParticleReferences(pctxt,
20671 WXS_MODEL_GROUP_CAST item);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020672 FIXHFAILURE;
20673 break;
20674 case XML_SCHEMA_TYPE_IDC_KEY:
20675 case XML_SCHEMA_TYPE_IDC_UNIQUE:
20676 case XML_SCHEMA_TYPE_IDC_KEYREF:
20677 xmlSchemaResolveIDCKeyReferences(
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020678 (xmlSchemaIDCPtr) item, pctxt);
20679 FIXHFAILURE;
20680 break;
20681 case XML_SCHEMA_EXTRA_ATTR_USE_PROHIB:
20682 /*
20683 * Handle attribue prohibition which had a
20684 * "ref" attribute.
20685 */
20686 xmlSchemaResolveAttrUseProhibReferences(
20687 WXS_ATTR_PROHIB_CAST item, pctxt);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020688 FIXHFAILURE;
20689 break;
20690 default:
20691 break;
20692 }
20693 }
20694 if (pctxt->nberrors != 0)
20695 goto exit_error;
20696
20697 /*
20698 * Now that all references are resolved we
20699 * can check for circularity of...
20700 * 1. the base axis of type definitions
20701 * 2. nested model group definitions
20702 * 3. nested attribute group definitions
20703 * TODO: check for circual substitution groups.
20704 */
20705 for (i = 0; i < nbItems; i++) {
20706 item = items[i];
20707 /*
20708 * Let's better stop on the first error here.
20709 */
20710 switch (item->type) {
20711 case XML_SCHEMA_TYPE_COMPLEX:
20712 case XML_SCHEMA_TYPE_SIMPLE:
20713 xmlSchemaCheckTypeDefCircular(
20714 (xmlSchemaTypePtr) item, pctxt);
20715 FIXHFAILURE;
20716 if (pctxt->nberrors != 0)
20717 goto exit_error;
20718 break;
20719 case XML_SCHEMA_TYPE_GROUP:
20720 xmlSchemaCheckGroupDefCircular(
20721 (xmlSchemaModelGroupDefPtr) item, pctxt);
20722 FIXHFAILURE;
20723 if (pctxt->nberrors != 0)
20724 goto exit_error;
20725 break;
20726 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20727 xmlSchemaCheckAttrGroupCircular(
20728 (xmlSchemaAttributeGroupPtr) item, pctxt);
20729 FIXHFAILURE;
20730 if (pctxt->nberrors != 0)
20731 goto exit_error;
20732 break;
20733 default:
20734 break;
20735 }
20736 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020737 if (pctxt->nberrors != 0)
20738 goto exit_error;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020739 /*
20740 * Model group definition references:
20741 * Such a reference is reflected by a particle at the component
20742 * level. Until now the 'term' of such particles pointed
20743 * to the model group definition; this was done, in order to
20744 * ease circularity checks. Now we need to set the 'term' of
20745 * such particles to the model group of the model group definition.
20746 */
20747 for (i = 0; i < nbItems; i++) {
20748 item = items[i];
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020749 switch (item->type) {
20750 case XML_SCHEMA_TYPE_SEQUENCE:
20751 case XML_SCHEMA_TYPE_CHOICE:
20752 xmlSchemaModelGroupToModelGroupDefFixup(pctxt,
20753 WXS_MODEL_GROUP_CAST item);
20754 break;
20755 default:
20756 break;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020757 }
20758 }
20759 if (pctxt->nberrors != 0)
20760 goto exit_error;
20761 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020762 * Expand attribute group references of attribute group definitions.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020763 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020764 for (i = 0; i < nbItems; i++) {
20765 item = items[i];
20766 switch (item->type) {
20767 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20768 if ((! WXS_ATTR_GROUP_EXPANDED(item)) &&
20769 WXS_ATTR_GROUP_HAS_REFS(item))
20770 {
20771 xmlSchemaAttributeGroupExpandRefs(pctxt,
20772 WXS_ATTR_GROUP_CAST item);
20773 FIXHFAILURE;
20774 }
20775 break;
20776 default:
20777 break;
20778 }
20779 }
20780 if (pctxt->nberrors != 0)
20781 goto exit_error;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020782 /*
20783 * First compute the variety of simple types. This is needed as
20784 * a seperate step, since otherwise we won't be able to detect
20785 * circular union types in all cases.
20786 */
20787 for (i = 0; i < nbItems; i++) {
20788 item = items[i];
20789 switch (item->type) {
20790 case XML_SCHEMA_TYPE_SIMPLE:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020791 if (WXS_IS_TYPE_NOT_FIXED_1((xmlSchemaTypePtr) item)) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020792 xmlSchemaFixupSimpleTypeStageOne(pctxt,
20793 (xmlSchemaTypePtr) item);
20794 FIXHFAILURE;
20795 }
20796 break;
20797 default:
20798 break;
20799 }
20800 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020801 if (pctxt->nberrors != 0)
20802 goto exit_error;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020803 /*
20804 * Detect circular union types. Note that this needs the variety to
20805 * be already computed.
20806 */
20807 for (i = 0; i < nbItems; i++) {
20808 item = items[i];
20809 switch (item->type) {
20810 case XML_SCHEMA_TYPE_SIMPLE:
20811 if (((xmlSchemaTypePtr) item)->memberTypes != NULL) {
20812 xmlSchemaCheckUnionTypeDefCircular(pctxt,
20813 (xmlSchemaTypePtr) item);
20814 FIXHFAILURE;
20815 }
20816 break;
20817 default:
20818 break;
20819 }
20820 }
20821 if (pctxt->nberrors != 0)
20822 goto exit_error;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020823
20824 /*
20825 * Do the complete type fixup for simple types.
20826 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020827 for (i = 0; i < nbItems; i++) {
20828 item = items[i];
20829 switch (item->type) {
20830 case XML_SCHEMA_TYPE_SIMPLE:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020831 if (WXS_IS_TYPE_NOT_FIXED(WXS_TYPE_CAST item)) {
20832 xmlSchemaFixupSimpleTypeStageTwo(pctxt, WXS_TYPE_CAST item);
20833 FIXHFAILURE;
20834 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020835 break;
20836 default:
20837 break;
20838 }
20839 }
20840 if (pctxt->nberrors != 0)
20841 goto exit_error;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020842 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020843 * At this point we need all simple types to be builded and checked.
20844 */
20845 /*
20846 * Apply contraints for attribute declarations.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020847 */
20848 for (i = 0; i < nbItems; i++) {
20849 item = items[i];
20850 switch (item->type) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020851 case XML_SCHEMA_TYPE_ATTRIBUTE:
20852 xmlSchemaCheckAttrPropsCorrect(pctxt, WXS_ATTR_CAST item);
20853 FIXHFAILURE;
20854 break;
20855 default:
20856 break;
20857 }
20858 }
20859 if (pctxt->nberrors != 0)
20860 goto exit_error;
20861 /*
20862 * Apply constraints for attribute uses.
20863 */
20864 for (i = 0; i < nbItems; i++) {
20865 item = items[i];
20866 switch (item->type) {
20867 case XML_SCHEMA_TYPE_ATTRIBUTE_USE:
20868 if (((xmlSchemaAttributeUsePtr)item)->defValue != NULL) {
20869 xmlSchemaCheckAttrUsePropsCorrect(pctxt,
20870 WXS_ATTR_USE_CAST item);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020871 FIXHFAILURE;
20872 }
20873 break;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020874 default:
20875 break;
20876 }
20877 }
20878 if (pctxt->nberrors != 0)
20879 goto exit_error;
20880
20881 /*
20882 * Apply constraints for attribute group definitions.
20883 */
20884 for (i = 0; i < nbItems; i++) {
20885 item = items[i];
20886 switch (item->type) {
20887 case XML_SCHEMA_TYPE_ATTRIBUTEGROUP:
20888 if (( (WXS_ATTR_GROUP_CAST item)->attrUses != NULL) &&
20889 ( (WXS_LIST_CAST (WXS_ATTR_GROUP_CAST item)->attrUses)->nbItems > 1))
20890 {
20891 xmlSchemaCheckAGPropsCorrect(pctxt, WXS_ATTR_GROUP_CAST item);
20892 FIXHFAILURE;
20893 }
20894 break;
20895 default:
20896 break;
20897 }
20898 }
20899 if (pctxt->nberrors != 0)
20900 goto exit_error;
20901
20902 /*
20903 * Apply constraints for redefinitions.
20904 */
20905 if (WXS_CONSTRUCTOR(pctxt)->redefs != NULL)
20906 xmlSchemaCheckSRCRedefineSecond(pctxt);
20907 if (pctxt->nberrors != 0)
20908 goto exit_error;
20909
20910 /*
20911 * Fixup complex types.
20912 */
20913 for (i = 0; i < nbItems; i++) {
20914 item = con->pending->items[i];
20915 switch (item->type) {
20916 case XML_SCHEMA_TYPE_COMPLEX:
20917 if (WXS_IS_TYPE_NOT_FIXED(WXS_TYPE_CAST item)) {
20918 xmlSchemaFixupComplexType(pctxt, WXS_TYPE_CAST item);
20919 FIXHFAILURE;
20920 }
20921 break;
20922 default:
20923 break;
20924 }
20925 }
20926 if (pctxt->nberrors != 0)
20927 goto exit_error;
20928
20929 /*
20930 * The list could have changed, since xmlSchemaFixupComplexType()
20931 * will create particles and model groups in some cases.
20932 */
20933 items = (xmlSchemaTreeItemPtr *) con->pending->items;
20934 nbItems = con->pending->nbItems;
20935
20936 /*
20937 * At this point all complex types need to be builded and checked.
20938 */
20939 /*
20940 * Apply some constraints for element declarations.
20941 */
20942 for (i = 0; i < nbItems; i++) {
20943 item = items[i];
20944 switch (item->type) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020945 case XML_SCHEMA_TYPE_ELEMENT:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020946
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020947 if ((((xmlSchemaElementPtr) item)->flags &
20948 XML_SCHEMAS_ELEM_INTERNAL_CHECKED) == 0) {
20949 xmlSchemaCheckElementDeclComponent(
20950 (xmlSchemaElementPtr) item, pctxt);
20951 FIXHFAILURE;
20952 }
20953 break;
20954 default:
20955 break;
20956 }
20957 }
20958 if (pctxt->nberrors != 0)
20959 goto exit_error;
20960 /*
20961 * Finally we can build the automaton from the content model of
20962 * complex types.
20963 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020964
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020965 for (i = 0; i < nbItems; i++) {
20966 item = items[i];
20967 switch (item->type) {
20968 case XML_SCHEMA_TYPE_COMPLEX:
20969 xmlSchemaBuildContentModel((xmlSchemaTypePtr) item, pctxt);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020970 /* FIXHFAILURE; */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020971 break;
20972 default:
20973 break;
20974 }
20975 }
20976 if (pctxt->nberrors != 0)
20977 goto exit_error;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020978 /*
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000020979 * URGENT TODO: cos-element-consistent
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020980 */
20981 goto exit;
20982
20983exit_error:
20984 ret = pctxt->err;
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000020985 goto exit;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020986
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000020987exit_failure:
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020988 ret = -1;
20989
20990exit:
20991 /*
20992 * Reset the constructor. This is needed for XSI acquisition, since
20993 * those items will be processed over and over again for every XSI
20994 * if not cleared here.
20995 */
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000020996 con->bucket = oldbucket;
20997 con->pending->nbItems = 0;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000020998 if (con->substGroups != NULL) {
20999 xmlHashFree(con->substGroups,
21000 (xmlHashDeallocator) xmlSchemaSubstGroupFree);
21001 con->substGroups = NULL;
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000021002 }
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021003 if (con->redefs != NULL) {
21004 xmlSchemaRedefListFree(con->redefs);
21005 con->redefs = NULL;
21006 }
21007 return(ret);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021008}
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021009/**
Daniel Veillard4255d502002-04-16 15:50:10 +000021010 * xmlSchemaParse:
21011 * @ctxt: a schema validation context
Daniel Veillard4255d502002-04-16 15:50:10 +000021012 *
Daniel Veillard01c13b52002-12-10 15:19:08 +000021013 * parse a schema definition resource and build an internal
Daniel Veillard4255d502002-04-16 15:50:10 +000021014 * XML Shema struture which can be used to validate instances.
Daniel Veillard4255d502002-04-16 15:50:10 +000021015 *
21016 * Returns the internal XML Schema structure built from the resource or
21017 * NULL in case of error
21018 */
21019xmlSchemaPtr
21020xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt)
21021{
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021022 xmlSchemaPtr mainSchema = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021023 xmlSchemaBucketPtr bucket = NULL;
21024 int res;
Daniel Veillard4255d502002-04-16 15:50:10 +000021025
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021026 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021027 * This one is used if the schema to be parsed was specified via
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021028 * the API; i.e. not automatically by the validated instance document.
21029 */
21030
Daniel Veillard4255d502002-04-16 15:50:10 +000021031 xmlSchemaInitTypes();
21032
Daniel Veillard6045c902002-10-09 21:13:59 +000021033 if (ctxt == NULL)
Daniel Veillard4255d502002-04-16 15:50:10 +000021034 return (NULL);
21035
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021036 /* TODO: Init the context. Is this all we need?*/
Daniel Veillard75bb3bb2003-05-12 15:25:56 +000021037 ctxt->nberrors = 0;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021038 ctxt->err = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +000021039 ctxt->counter = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +000021040
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021041 /* Create the *main* schema. */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021042 mainSchema = xmlSchemaNewSchema(ctxt);
21043 if (mainSchema == NULL)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021044 goto exit_failure;
Daniel Veillard4255d502002-04-16 15:50:10 +000021045 /*
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021046 * Create the schema constructor.
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000021047 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021048 if (ctxt->constructor == NULL) {
21049 ctxt->constructor = xmlSchemaConstructionCtxtCreate(ctxt->dict);
21050 if (ctxt->constructor == NULL)
21051 return(NULL);
21052 /* Take ownership of the constructor to be able to free it. */
21053 ctxt->ownsConstructor = 1;
21054 }
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021055 ctxt->constructor->mainSchema = mainSchema;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021056 /*
21057 * Locate and add the schema document.
21058 */
21059 res = xmlSchemaAddSchemaDoc(ctxt, XML_SCHEMA_SCHEMA_MAIN,
21060 ctxt->URL, ctxt->doc, ctxt->buffer, ctxt->size, NULL,
21061 NULL, NULL, &bucket);
21062 if (res == -1)
21063 goto exit_failure;
21064 if (res != 0)
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000021065 goto exit;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021066
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021067 if (bucket == NULL) {
21068 /* TODO: Error code, actually we failed to *locate* the schema. */
21069 if (ctxt->URL)
21070 xmlSchemaCustomErr(ACTXT_CAST ctxt, XML_SCHEMAP_FAILED_LOAD,
21071 NULL, NULL,
21072 "Failed to locate the main schema resource at '%s'",
21073 ctxt->URL, NULL);
21074 else
21075 xmlSchemaCustomErr(ACTXT_CAST ctxt, XML_SCHEMAP_FAILED_LOAD,
21076 NULL, NULL,
21077 "Failed to locate the main schema resource",
21078 NULL, NULL);
21079 goto exit;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021080 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021081 /* Then do the parsing for good. */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021082 if (xmlSchemaParseNewDocWithContext(ctxt, mainSchema, bucket) == -1)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021083 goto exit_failure;
Kasimier T. Buchcik1a99a392005-04-08 11:23:56 +000021084 if (ctxt->nberrors != 0)
21085 goto exit;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021086
21087 mainSchema->doc = bucket->doc;
21088 mainSchema->preserve = ctxt->preserve;
21089
21090 ctxt->schema = mainSchema;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000021091
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021092 if (xmlSchemaFixupComponents(ctxt, WXS_CONSTRUCTOR(ctxt)->mainBucket) == -1)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021093 goto exit_failure;
21094
21095 /*
21096 * TODO: This is not nice, since we cannot distinguish from the
21097 * result if there was an internal error or not.
21098 */
21099exit:
21100 if (ctxt->nberrors != 0) {
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021101 if (mainSchema) {
21102 xmlSchemaFree(mainSchema);
21103 mainSchema = NULL;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021104 }
21105 if (ctxt->constructor) {
21106 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21107 ctxt->constructor = NULL;
21108 ctxt->ownsConstructor = 0;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000021109 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021110 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021111 ctxt->schema = NULL;
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021112 return(mainSchema);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021113exit_failure:
21114 /*
21115 * Quite verbose, but should catch internal errors, which were
21116 * not communitated.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021117 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021118 if (mainSchema) {
21119 xmlSchemaFree(mainSchema);
21120 mainSchema = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021121 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021122 if (ctxt->constructor) {
21123 xmlSchemaConstructionCtxtFree(ctxt->constructor);
21124 ctxt->constructor = NULL;
21125 ctxt->ownsConstructor = 0;
Daniel Veillard75bb3bb2003-05-12 15:25:56 +000021126 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021127 PERROR_INT2("xmlSchemaParse",
21128 "An internal error occured");
21129 ctxt->schema = NULL;
21130 return(NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +000021131}
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021132
Daniel Veillard4255d502002-04-16 15:50:10 +000021133/**
Daniel Veillard01c13b52002-12-10 15:19:08 +000021134 * xmlSchemaSetParserErrors:
Daniel Veillard4255d502002-04-16 15:50:10 +000021135 * @ctxt: a schema validation context
Daniel Veillard01c13b52002-12-10 15:19:08 +000021136 * @err: the error callback
21137 * @warn: the warning callback
21138 * @ctx: contextual data for the callbacks
Daniel Veillard4255d502002-04-16 15:50:10 +000021139 *
Daniel Veillard01c13b52002-12-10 15:19:08 +000021140 * Set the callback functions used to handle errors for a validation context
Daniel Veillard4255d502002-04-16 15:50:10 +000021141 */
21142void
21143xmlSchemaSetParserErrors(xmlSchemaParserCtxtPtr ctxt,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021144 xmlSchemaValidityErrorFunc err,
21145 xmlSchemaValidityWarningFunc warn, void *ctx)
21146{
Daniel Veillard4255d502002-04-16 15:50:10 +000021147 if (ctxt == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021148 return;
Daniel Veillard4255d502002-04-16 15:50:10 +000021149 ctxt->error = err;
21150 ctxt->warning = warn;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000021151 ctxt->errCtxt = ctx;
21152 if (ctxt->vctxt != NULL)
21153 xmlSchemaSetValidErrors(ctxt->vctxt, err, warn, ctx);
21154}
21155
21156/**
21157 * xmlSchemaSetParserStructuredErrors:
21158 * @ctxt: a schema parser context
21159 * @serror: the structured error function
21160 * @ctx: the functions context
21161 *
21162 * Set the structured error callback
21163 */
21164void
21165xmlSchemaSetParserStructuredErrors(xmlSchemaParserCtxtPtr ctxt,
21166 xmlStructuredErrorFunc serror,
21167 void *ctx)
21168{
21169 if (ctxt == NULL)
21170 return;
21171 ctxt->serror = serror;
21172 ctxt->errCtxt = ctx;
21173 if (ctxt->vctxt != NULL)
21174 xmlSchemaSetValidStructuredErrors(ctxt->vctxt, serror, ctx);
Daniel Veillard4255d502002-04-16 15:50:10 +000021175}
21176
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021177/**
Daniel Veillard259f0df2004-08-18 09:13:18 +000021178 * xmlSchemaGetParserErrors:
21179 * @ctxt: a XMl-Schema parser context
21180 * @err: the error callback result
21181 * @warn: the warning callback result
21182 * @ctx: contextual data for the callbacks result
21183 *
21184 * Get the callback information used to handle errors for a parser context
21185 *
21186 * Returns -1 in case of failure, 0 otherwise
21187 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021188int
Daniel Veillard259f0df2004-08-18 09:13:18 +000021189xmlSchemaGetParserErrors(xmlSchemaParserCtxtPtr ctxt,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000021190 xmlSchemaValidityErrorFunc * err,
21191 xmlSchemaValidityWarningFunc * warn, void **ctx)
Daniel Veillard259f0df2004-08-18 09:13:18 +000021192{
21193 if (ctxt == NULL)
21194 return(-1);
21195 if (err != NULL)
21196 *err = ctxt->error;
21197 if (warn != NULL)
21198 *warn = ctxt->warning;
21199 if (ctx != NULL)
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000021200 *ctx = ctxt->errCtxt;
Daniel Veillard259f0df2004-08-18 09:13:18 +000021201 return(0);
21202}
21203
21204/**
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021205 * xmlSchemaFacetTypeToString:
21206 * @type: the facet type
21207 *
21208 * Convert the xmlSchemaTypeType to a char string.
21209 *
21210 * Returns the char string representation of the facet type if the
21211 * type is a facet and an "Internal Error" string otherwise.
21212 */
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021213static const xmlChar *
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021214xmlSchemaFacetTypeToString(xmlSchemaTypeType type)
21215{
21216 switch (type) {
21217 case XML_SCHEMA_FACET_PATTERN:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021218 return (BAD_CAST "pattern");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021219 case XML_SCHEMA_FACET_MAXEXCLUSIVE:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021220 return (BAD_CAST "maxExclusive");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021221 case XML_SCHEMA_FACET_MAXINCLUSIVE:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021222 return (BAD_CAST "maxInclusive");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021223 case XML_SCHEMA_FACET_MINEXCLUSIVE:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021224 return (BAD_CAST "minExclusive");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021225 case XML_SCHEMA_FACET_MININCLUSIVE:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021226 return (BAD_CAST "minInclusive");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021227 case XML_SCHEMA_FACET_WHITESPACE:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021228 return (BAD_CAST "whiteSpace");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021229 case XML_SCHEMA_FACET_ENUMERATION:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021230 return (BAD_CAST "enumeration");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021231 case XML_SCHEMA_FACET_LENGTH:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021232 return (BAD_CAST "length");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021233 case XML_SCHEMA_FACET_MAXLENGTH:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021234 return (BAD_CAST "maxLength");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021235 case XML_SCHEMA_FACET_MINLENGTH:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021236 return (BAD_CAST "minLength");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021237 case XML_SCHEMA_FACET_TOTALDIGITS:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021238 return (BAD_CAST "totalDigits");
Daniel Veillardd0c9c322003-10-10 00:49:42 +000021239 case XML_SCHEMA_FACET_FRACTIONDIGITS:
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021240 return (BAD_CAST "fractionDigits");
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021241 default:
21242 break;
21243 }
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021244 return (BAD_CAST "Internal Error");
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021245}
21246
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021247static xmlSchemaWhitespaceValueType
Daniel Veillardc0826a72004-08-10 14:17:33 +000021248xmlSchemaGetWhiteSpaceFacetValue(xmlSchemaTypePtr type)
21249{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021250 /*
21251 * The normalization type can be changed only for types which are derived
Daniel Veillardc0826a72004-08-10 14:17:33 +000021252 * from xsd:string.
21253 */
21254 if (type->type == XML_SCHEMA_TYPE_BASIC) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021255 /*
21256 * Note that we assume a whitespace of preserve for anySimpleType.
21257 */
21258 if ((type->builtInType == XML_SCHEMAS_STRING) ||
21259 (type->builtInType == XML_SCHEMAS_ANYSIMPLETYPE))
21260 return(XML_SCHEMA_WHITESPACE_PRESERVE);
Kasimier T. Buchcik91feaf82004-11-12 14:04:58 +000021261 else if (type->builtInType == XML_SCHEMAS_NORMSTRING)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021262 return(XML_SCHEMA_WHITESPACE_REPLACE);
Daniel Veillardc0826a72004-08-10 14:17:33 +000021263 else {
21264 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021265 * For all ·atomic· datatypes other than string (and types ·derived·
21266 * by ·restriction· from it) the value of whiteSpace is fixed to
Daniel Veillardc0826a72004-08-10 14:17:33 +000021267 * collapse
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021268 * Note that this includes built-in list datatypes.
Daniel Veillardc0826a72004-08-10 14:17:33 +000021269 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021270 return(XML_SCHEMA_WHITESPACE_COLLAPSE);
Daniel Veillardc0826a72004-08-10 14:17:33 +000021271 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000021272 } else if (WXS_IS_LIST(type)) {
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000021273 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021274 * For list types the facet "whiteSpace" is fixed to "collapse".
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000021275 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021276 return (XML_SCHEMA_WHITESPACE_COLLAPSE);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000021277 } else if (WXS_IS_UNION(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021278 return (XML_SCHEMA_WHITESPACE_UNKNOWN);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000021279 } else if (WXS_IS_ATOMIC(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021280 if (type->flags & XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE)
21281 return (XML_SCHEMA_WHITESPACE_PRESERVE);
21282 else if (type->flags & XML_SCHEMAS_TYPE_WHITESPACE_REPLACE)
21283 return (XML_SCHEMA_WHITESPACE_REPLACE);
21284 else
21285 return (XML_SCHEMA_WHITESPACE_COLLAPSE);
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000021286 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021287 return (-1);
Daniel Veillardd3b9cd82003-04-09 11:24:17 +000021288}
21289
Daniel Veillard4255d502002-04-16 15:50:10 +000021290/************************************************************************
21291 * *
21292 * Simple type validation *
21293 * *
21294 ************************************************************************/
Daniel Veillard377e1a92004-04-16 16:30:05 +000021295
Daniel Veillard4255d502002-04-16 15:50:10 +000021296
21297/************************************************************************
21298 * *
21299 * DOM Validation code *
21300 * *
21301 ************************************************************************/
21302
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021303/**
21304 * xmlSchemaAssembleByLocation:
21305 * @pctxt: a schema parser context
21306 * @vctxt: a schema validation context
21307 * @schema: the existing schema
21308 * @node: the node that fired the assembling
21309 * @nsName: the namespace name of the new schema
21310 * @location: the location of the schema
21311 *
21312 * Expands an existing schema by an additional schema.
21313 *
21314 * Returns 0 if the new schema is correct, a positive error code
21315 * number otherwise and -1 in case of an internal or API error.
21316 */
21317static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021318xmlSchemaAssembleByLocation(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021319 xmlSchemaPtr schema,
21320 xmlNodePtr node,
21321 const xmlChar *nsName,
21322 const xmlChar *location)
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021323{
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021324 int ret = 0;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021325 xmlSchemaParserCtxtPtr pctxt;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021326 xmlSchemaBucketPtr bucket = NULL;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021327
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021328 if ((vctxt == NULL) || (schema == NULL))
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021329 return (-1);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021330
21331 if (vctxt->pctxt == NULL) {
21332 VERROR_INT("xmlSchemaAssembleByLocation",
21333 "no parser context available");
21334 return(-1);
21335 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021336 pctxt = vctxt->pctxt;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021337 if (pctxt->constructor == NULL) {
21338 PERROR_INT("xmlSchemaAssembleByLocation",
21339 "no constructor");
21340 return(-1);
21341 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021342 /*
21343 * Acquire the schema document.
21344 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021345 location = xmlSchemaBuildAbsoluteURI(pctxt->dict,
21346 location, node);
21347 /*
21348 * Note that we pass XML_SCHEMA_SCHEMA_IMPORT here;
21349 * the process will automatically change this to
21350 * XML_SCHEMA_SCHEMA_MAIN if it is the first schema document.
21351 */
21352 ret = xmlSchemaAddSchemaDoc(pctxt, XML_SCHEMA_SCHEMA_IMPORT,
21353 location, NULL, NULL, 0, node, NULL, nsName,
21354 &bucket);
21355 if (ret != 0)
21356 return(ret);
21357 if (bucket == NULL) {
21358 PERROR_INT("xmlSchemaAssembleByLocation",
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021359 "no schema bucket acquired");
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021360 return(-1);
21361 }
21362 /*
21363 * The first located schema will be handled as if all other
21364 * schemas imported by XSI were imported by this first schema.
21365 */
21366 if ((bucket != NULL) &&
21367 (WXS_CONSTRUCTOR(pctxt)->bucket == NULL))
21368 WXS_CONSTRUCTOR(pctxt)->bucket = bucket;
21369 /*
21370 * TODO: Is this handled like an import? I.e. is it not an error
21371 * if the schema cannot be located?
21372 */
21373 if ((bucket == NULL) || (! CAN_PARSE_SCHEMA(bucket)))
21374 return(0);
21375 /*
21376 * We will reuse the parser context for every schema imported
21377 * directly via XSI. So reset the context.
21378 */
21379 pctxt->nberrors = 0;
21380 pctxt->err = 0;
21381 pctxt->doc = bucket->doc;
21382
21383 ret = xmlSchemaParseNewDocWithContext(pctxt, schema, bucket);
21384 if (ret == -1) {
21385 pctxt->doc = NULL;
21386 goto exit_failure;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021387 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021388 /* Paranoid error channelling. */
21389 if ((ret == 0) && (pctxt->nberrors != 0))
21390 ret = pctxt->err;
Kasimier T. Buchcik4c0aa162006-02-20 14:47:08 +000021391 if (pctxt->nberrors == 0) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021392 /*
21393 * Only bother to fixup pending components, if there was
21394 * no error yet.
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021395 * For every XSI acquired schema (and its sub-schemata) we will
21396 * fixup the components.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021397 */
Kasimier T. Buchcik1869be52006-02-20 13:37:55 +000021398 xmlSchemaFixupComponents(pctxt, bucket);
Kasimier T. Buchcik215406f2005-12-07 12:14:09 +000021399 ret = pctxt->err;
21400 /*
21401 * Not nice, but we need somehow to channel the schema parser
21402 * error to the validation context.
21403 */
21404 if ((ret != 0) && (vctxt->err == 0))
21405 vctxt->err = ret;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021406 vctxt->nberrors += pctxt->nberrors;
21407 } else {
21408 /* Add to validation error sum. */
21409 vctxt->nberrors += pctxt->nberrors;
21410 }
21411 pctxt->doc = NULL;
21412 return(ret);
21413exit_failure:
21414 pctxt->doc = NULL;
21415 return (-1);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021416}
21417
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021418static xmlSchemaAttrInfoPtr
21419xmlSchemaGetMetaAttrInfo(xmlSchemaValidCtxtPtr vctxt,
21420 int metaType)
21421{
21422 if (vctxt->nbAttrInfos == 0)
21423 return (NULL);
21424 {
21425 int i;
21426 xmlSchemaAttrInfoPtr iattr;
21427
21428 for (i = 0; i < vctxt->nbAttrInfos; i++) {
21429 iattr = vctxt->attrInfos[i];
21430 if (iattr->metaType == metaType)
21431 return (iattr);
21432 }
21433
21434 }
21435 return (NULL);
21436}
21437
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021438/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021439 * xmlSchemaAssembleByXSI:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021440 * @vctxt: a schema validation context
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021441 *
21442 * Expands an existing schema by an additional schema using
21443 * the xsi:schemaLocation or xsi:noNamespaceSchemaLocation attribute
21444 * of an instance. If xsi:noNamespaceSchemaLocation is used, @noNamespace
21445 * must be set to 1.
21446 *
21447 * Returns 0 if the new schema is correct, a positive error code
21448 * number otherwise and -1 in case of an internal or API error.
21449 */
21450static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021451xmlSchemaAssembleByXSI(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021452{
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021453 const xmlChar *cur, *end;
21454 const xmlChar *nsname = NULL, *location;
21455 int count = 0;
21456 int ret = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021457 xmlSchemaAttrInfoPtr iattr;
21458
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021459 /*
21460 * Parse the value; we will assume an even number of values
21461 * to be given (this is how Xerces and XSV work).
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000021462 *
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021463 * URGENT TODO: !! This needs to work for both
21464 * @noNamespaceSchemaLocation AND @schemaLocation on the same
21465 * element !!
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021466 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021467 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
21468 XML_SCHEMA_ATTR_INFO_META_XSI_SCHEMA_LOC);
21469 if (iattr == NULL)
Kasimier T. Buchcik81755ea2005-11-23 16:39:27 +000021470 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021471 XML_SCHEMA_ATTR_INFO_META_XSI_NO_NS_SCHEMA_LOC);
21472 if (iattr == NULL)
21473 return (0);
21474 cur = iattr->value;
21475 do {
21476 if (iattr->metaType == XML_SCHEMA_ATTR_INFO_META_XSI_SCHEMA_LOC) {
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021477 /*
21478 * Get the namespace name.
21479 */
21480 while (IS_BLANK_CH(*cur))
21481 cur++;
21482 end = cur;
21483 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
21484 end++;
21485 if (end == cur)
21486 break;
21487 count++;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021488 nsname = xmlDictLookup(vctxt->schema->dict, cur, end - cur);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021489 cur = end;
21490 }
21491 /*
21492 * Get the URI.
21493 */
21494 while (IS_BLANK_CH(*cur))
21495 cur++;
21496 end = cur;
21497 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
21498 end++;
21499 if (end == cur)
21500 break;
21501 count++;
21502 location = xmlDictLookup(vctxt->schema->dict, cur, end - cur);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021503 cur = end;
21504 ret = xmlSchemaAssembleByLocation(vctxt, vctxt->schema,
21505 iattr->node, nsname, location);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021506 if (ret == -1) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021507 VERROR_INT("xmlSchemaAssembleByXSI",
21508 "assembling schemata");
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021509 return (-1);
21510 }
21511 } while (*cur != 0);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021512 return (ret);
21513}
21514
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021515static const xmlChar *
21516xmlSchemaLookupNamespace(xmlSchemaValidCtxtPtr vctxt,
21517 const xmlChar *prefix)
21518{
21519 if (vctxt->sax != NULL) {
21520 int i, j;
21521 xmlSchemaNodeInfoPtr inode;
21522
21523 for (i = vctxt->depth; i >= 0; i--) {
21524 if (vctxt->elemInfos[i]->nbNsBindings != 0) {
21525 inode = vctxt->elemInfos[i];
21526 for (j = 0; j < inode->nbNsBindings * 2; j += 2) {
21527 if (((prefix == NULL) &&
21528 (inode->nsBindings[j] == NULL)) ||
21529 ((prefix != NULL) && xmlStrEqual(prefix,
21530 inode->nsBindings[j]))) {
21531
21532 /*
21533 * Note that the namespace bindings are already
21534 * in a string dict.
21535 */
21536 return (inode->nsBindings[j+1]);
21537 }
21538 }
21539 }
21540 }
21541 return (NULL);
Daniel Veillard39e5c892005-07-03 22:48:50 +000021542#ifdef LIBXML_WRITER_ENABLED
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021543 } else if (vctxt->reader != NULL) {
21544 xmlChar *nsName;
21545
21546 nsName = xmlTextReaderLookupNamespace(vctxt->reader, prefix);
21547 if (nsName != NULL) {
21548 const xmlChar *ret;
21549
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021550 ret = xmlDictLookup(vctxt->dict, nsName, -1);
21551 xmlFree(nsName);
21552 return (ret);
21553 } else
21554 return (NULL);
Daniel Veillard39e5c892005-07-03 22:48:50 +000021555#endif
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021556 } else {
21557 xmlNsPtr ns;
21558
21559 if ((vctxt->inode->node == NULL) ||
21560 (vctxt->inode->node->doc == NULL)) {
21561 VERROR_INT("xmlSchemaLookupNamespace",
21562 "no node or node's doc avaliable");
21563 return (NULL);
21564 }
21565 ns = xmlSearchNs(vctxt->inode->node->doc,
21566 vctxt->inode->node, prefix);
21567 if (ns != NULL)
21568 return (ns->href);
21569 return (NULL);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021570 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000021571}
21572
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021573/*
21574* This one works on the schema of the validation context.
21575*/
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021576static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021577xmlSchemaValidateNotation(xmlSchemaValidCtxtPtr vctxt,
21578 xmlSchemaPtr schema,
21579 xmlNodePtr node,
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021580 const xmlChar *value,
21581 xmlSchemaValPtr *val,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021582 int valNeeded)
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021583{
21584 int ret;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021585
21586 if (vctxt && (vctxt->schema == NULL)) {
21587 VERROR_INT("xmlSchemaValidateNotation",
21588 "a schema is needed on the validation context");
21589 return (-1);
21590 }
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021591 ret = xmlValidateQName(value, 1);
21592 if (ret != 0)
21593 return (ret);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021594 {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021595 xmlChar *localName = NULL;
21596 xmlChar *prefix = NULL;
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021597
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021598 localName = xmlSplitQName2(value, &prefix);
21599 if (prefix != NULL) {
21600 const xmlChar *nsName = NULL;
21601
21602 if (vctxt != NULL)
21603 nsName = xmlSchemaLookupNamespace(vctxt, BAD_CAST prefix);
21604 else if (node != NULL) {
21605 xmlNsPtr ns = xmlSearchNs(node->doc, node, prefix);
21606 if (ns != NULL)
21607 nsName = ns->href;
21608 } else {
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021609 xmlFree(prefix);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021610 xmlFree(localName);
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021611 return (1);
21612 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021613 if (nsName == NULL) {
21614 xmlFree(prefix);
21615 xmlFree(localName);
21616 return (1);
21617 }
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021618 if (xmlSchemaGetNotation(schema, localName, nsName) != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021619 if (valNeeded && (val != NULL)) {
21620 (*val) = xmlSchemaNewNOTATIONValue(BAD_CAST localName,
21621 BAD_CAST xmlStrdup(nsName));
21622 if (*val == NULL)
21623 ret = -1;
21624 }
21625 } else
Kasimier T. Buchcikb06b4de2005-02-17 19:00:23 +000021626 ret = 1;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021627 xmlFree(prefix);
21628 xmlFree(localName);
21629 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000021630 if (xmlSchemaGetNotation(schema, value, NULL) != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021631 if (valNeeded && (val != NULL)) {
21632 (*val) = xmlSchemaNewNOTATIONValue(
21633 BAD_CAST xmlStrdup(value), NULL);
21634 if (*val == NULL)
21635 ret = -1;
21636 }
21637 } else
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021638 return (1);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021639 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021640 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021641 return (ret);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000021642}
21643
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000021644static int
21645xmlSchemaVAddNodeQName(xmlSchemaValidCtxtPtr vctxt,
21646 const xmlChar* lname,
21647 const xmlChar* nsname)
21648{
21649 int i;
21650
21651 lname = xmlDictLookup(vctxt->dict, lname, -1);
21652 if (lname == NULL)
21653 return(-1);
21654 if (nsname != NULL) {
21655 nsname = xmlDictLookup(vctxt->dict, nsname, -1);
21656 if (nsname == NULL)
21657 return(-1);
21658 }
21659 for (i = 0; i < vctxt->nodeQNames->nbItems; i += 2) {
21660 if ((vctxt->nodeQNames->items [i] == lname) &&
21661 (vctxt->nodeQNames->items[i +1] == nsname))
21662 /* Already there */
21663 return(i);
21664 }
21665 /* Add new entry. */
21666 i = vctxt->nodeQNames->nbItems;
21667 xmlSchemaItemListAdd(vctxt->nodeQNames, (void *) lname);
21668 xmlSchemaItemListAdd(vctxt->nodeQNames, (void *) nsname);
21669 return(i);
21670}
21671
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021672/************************************************************************
21673 * *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021674 * Validation of identity-constraints (IDC) *
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021675 * *
21676 ************************************************************************/
21677
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021678/**
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000021679 * xmlSchemaAugmentIDC:
21680 * @idcDef: the IDC definition
21681 *
21682 * Creates an augmented IDC definition item.
21683 *
21684 * Returns the item, or NULL on internal errors.
21685 */
21686static void
21687xmlSchemaAugmentIDC(xmlSchemaIDCPtr idcDef,
21688 xmlSchemaValidCtxtPtr vctxt)
21689{
21690 xmlSchemaIDCAugPtr aidc;
21691
21692 aidc = (xmlSchemaIDCAugPtr) xmlMalloc(sizeof(xmlSchemaIDCAug));
21693 if (aidc == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021694 xmlSchemaVErrMemory(vctxt,
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000021695 "xmlSchemaAugmentIDC: allocating an augmented IDC definition",
21696 NULL);
21697 return;
21698 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021699 aidc->keyrefDepth = -1;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000021700 aidc->def = idcDef;
21701 aidc->next = NULL;
21702 if (vctxt->aidcs == NULL)
21703 vctxt->aidcs = aidc;
21704 else {
21705 aidc->next = vctxt->aidcs;
21706 vctxt->aidcs = aidc;
21707 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021708 /*
21709 * Save if we have keyrefs at all.
21710 */
21711 if ((vctxt->hasKeyrefs == 0) &&
21712 (idcDef->type == XML_SCHEMA_TYPE_IDC_KEYREF))
21713 vctxt->hasKeyrefs = 1;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000021714}
21715
21716/**
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021717 * xmlSchemaIDCNewBinding:
21718 * @idcDef: the IDC definition of this binding
21719 *
21720 * Creates a new IDC binding.
21721 *
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021722 * Returns the new IDC binding, NULL on internal errors.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021723 */
21724static xmlSchemaPSVIIDCBindingPtr
21725xmlSchemaIDCNewBinding(xmlSchemaIDCPtr idcDef)
21726{
21727 xmlSchemaPSVIIDCBindingPtr ret;
21728
21729 ret = (xmlSchemaPSVIIDCBindingPtr) xmlMalloc(
21730 sizeof(xmlSchemaPSVIIDCBinding));
21731 if (ret == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021732 xmlSchemaVErrMemory(NULL,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021733 "allocating a PSVI IDC binding item", NULL);
21734 return (NULL);
21735 }
21736 memset(ret, 0, sizeof(xmlSchemaPSVIIDCBinding));
21737 ret->definition = idcDef;
21738 return (ret);
21739}
21740
21741/**
21742 * xmlSchemaIDCStoreNodeTableItem:
21743 * @vctxt: the WXS validation context
21744 * @item: the IDC node table item
21745 *
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021746 * The validation context is used to store IDC node table items.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021747 * They are stored to avoid copying them if IDC node-tables are merged
21748 * with corresponding parent IDC node-tables (bubbling).
21749 *
21750 * Returns 0 if succeeded, -1 on internal errors.
21751 */
21752static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021753xmlSchemaIDCStoreNodeTableItem(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021754 xmlSchemaPSVIIDCNodePtr item)
21755{
21756 /*
21757 * Add to gobal list.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021758 */
21759 if (vctxt->idcNodes == NULL) {
21760 vctxt->idcNodes = (xmlSchemaPSVIIDCNodePtr *)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021761 xmlMalloc(20 * sizeof(xmlSchemaPSVIIDCNodePtr));
21762 if (vctxt->idcNodes == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021763 xmlSchemaVErrMemory(vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021764 "allocating the IDC node table item list", NULL);
21765 return (-1);
21766 }
21767 vctxt->sizeIdcNodes = 20;
21768 } else if (vctxt->sizeIdcNodes <= vctxt->nbIdcNodes) {
21769 vctxt->sizeIdcNodes *= 2;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021770 vctxt->idcNodes = (xmlSchemaPSVIIDCNodePtr *)
21771 xmlRealloc(vctxt->idcNodes, vctxt->sizeIdcNodes *
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021772 sizeof(xmlSchemaPSVIIDCNodePtr));
21773 if (vctxt->idcNodes == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021774 xmlSchemaVErrMemory(vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021775 "re-allocating the IDC node table item list", NULL);
21776 return (-1);
21777 }
21778 }
21779 vctxt->idcNodes[vctxt->nbIdcNodes++] = item;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021780
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021781 return (0);
21782}
21783
21784/**
21785 * xmlSchemaIDCStoreKey:
21786 * @vctxt: the WXS validation context
21787 * @item: the IDC key
21788 *
21789 * The validation context is used to store an IDC key.
21790 *
21791 * Returns 0 if succeeded, -1 on internal errors.
21792 */
21793static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021794xmlSchemaIDCStoreKey(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021795 xmlSchemaPSVIIDCKeyPtr key)
21796{
21797 /*
21798 * Add to gobal list.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021799 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021800 if (vctxt->idcKeys == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021801 vctxt->idcKeys = (xmlSchemaPSVIIDCKeyPtr *)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021802 xmlMalloc(40 * sizeof(xmlSchemaPSVIIDCKeyPtr));
21803 if (vctxt->idcKeys == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021804 xmlSchemaVErrMemory(vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021805 "allocating the IDC key storage list", NULL);
21806 return (-1);
21807 }
21808 vctxt->sizeIdcKeys = 40;
21809 } else if (vctxt->sizeIdcKeys <= vctxt->nbIdcKeys) {
21810 vctxt->sizeIdcKeys *= 2;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021811 vctxt->idcKeys = (xmlSchemaPSVIIDCKeyPtr *)
21812 xmlRealloc(vctxt->idcKeys, vctxt->sizeIdcKeys *
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021813 sizeof(xmlSchemaPSVIIDCKeyPtr));
21814 if (vctxt->idcKeys == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021815 xmlSchemaVErrMemory(vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021816 "re-allocating the IDC key storage list", NULL);
21817 return (-1);
21818 }
21819 }
21820 vctxt->idcKeys[vctxt->nbIdcKeys++] = key;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021821
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021822 return (0);
21823}
21824
21825/**
21826 * xmlSchemaIDCAppendNodeTableItem:
21827 * @bind: the IDC binding
21828 * @ntItem: the node-table item
21829 *
21830 * Appends the IDC node-table item to the binding.
21831 *
21832 * Returns 0 on success and -1 on internal errors.
21833 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021834static int
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021835xmlSchemaIDCAppendNodeTableItem(xmlSchemaPSVIIDCBindingPtr bind,
21836 xmlSchemaPSVIIDCNodePtr ntItem)
21837{
21838 if (bind->nodeTable == NULL) {
21839 bind->sizeNodes = 10;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021840 bind->nodeTable = (xmlSchemaPSVIIDCNodePtr *)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021841 xmlMalloc(10 * sizeof(xmlSchemaPSVIIDCNodePtr));
21842 if (bind->nodeTable == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021843 xmlSchemaVErrMemory(NULL,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021844 "allocating an array of IDC node-table items", NULL);
21845 return(-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021846 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021847 } else if (bind->sizeNodes <= bind->nbNodes) {
21848 bind->sizeNodes *= 2;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021849 bind->nodeTable = (xmlSchemaPSVIIDCNodePtr *)
21850 xmlRealloc(bind->nodeTable, bind->sizeNodes *
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021851 sizeof(xmlSchemaPSVIIDCNodePtr));
21852 if (bind->nodeTable == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021853 xmlSchemaVErrMemory(NULL,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021854 "re-allocating an array of IDC node-table items", NULL);
21855 return(-1);
21856 }
21857 }
21858 bind->nodeTable[bind->nbNodes++] = ntItem;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021859 return(0);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021860}
21861
21862/**
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021863 * xmlSchemaIDCAcquireBinding:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021864 * @vctxt: the WXS validation context
21865 * @matcher: the IDC matcher
21866 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021867 * Looks up an PSVI IDC binding, for the IDC definition and
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021868 * of the given matcher. If none found, a new one is created
21869 * and added to the IDC table.
21870 *
21871 * Returns an IDC binding or NULL on internal errors.
21872 */
21873static xmlSchemaPSVIIDCBindingPtr
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021874xmlSchemaIDCAcquireBinding(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021875 xmlSchemaIDCMatcherPtr matcher)
21876{
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021877 xmlSchemaNodeInfoPtr ielem;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021878
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021879 ielem = vctxt->elemInfos[matcher->depth];
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021880
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021881 if (ielem->idcTable == NULL) {
21882 ielem->idcTable = xmlSchemaIDCNewBinding(matcher->aidc->def);
21883 if (ielem->idcTable == NULL)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021884 return (NULL);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021885 return(ielem->idcTable);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021886 } else {
21887 xmlSchemaPSVIIDCBindingPtr bind = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021888
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021889 bind = ielem->idcTable;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021890 do {
21891 if (bind->definition == matcher->aidc->def)
21892 return(bind);
21893 if (bind->next == NULL) {
21894 bind->next = xmlSchemaIDCNewBinding(matcher->aidc->def);
21895 if (bind->next == NULL)
21896 return (NULL);
21897 return(bind->next);
21898 }
21899 bind = bind->next;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021900 } while (bind != NULL);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021901 }
21902 return (NULL);
21903}
21904
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021905static xmlSchemaItemListPtr
21906xmlSchemaIDCAcquireTargetList(xmlSchemaValidCtxtPtr vctxt ATTRIBUTE_UNUSED,
21907 xmlSchemaIDCMatcherPtr matcher)
21908{
21909 if (matcher->targets == NULL)
21910 matcher->targets = xmlSchemaItemListCreate();
21911 return(matcher->targets);
21912}
21913
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021914/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021915 * xmlSchemaIDCFreeKey:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021916 * @key: the IDC key
21917 *
21918 * Frees an IDC key together with its compiled value.
21919 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021920static void
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021921xmlSchemaIDCFreeKey(xmlSchemaPSVIIDCKeyPtr key)
21922{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021923 if (key->val != NULL)
21924 xmlSchemaFreeValue(key->val);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021925 xmlFree(key);
21926}
21927
21928/**
21929 * xmlSchemaIDCFreeBinding:
21930 *
21931 * Frees an IDC binding. Note that the node table-items
21932 * are not freed.
21933 */
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000021934static void
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021935xmlSchemaIDCFreeBinding(xmlSchemaPSVIIDCBindingPtr bind)
21936{
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021937 if (bind->nodeTable != NULL)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021938 xmlFree(bind->nodeTable);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021939 if (bind->dupls != NULL)
21940 xmlSchemaItemListFree(bind->dupls);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021941 xmlFree(bind);
21942}
21943
21944/**
21945 * xmlSchemaIDCFreeIDCTable:
21946 * @bind: the first IDC binding in the list
21947 *
21948 * Frees an IDC table, i.e. all the IDC bindings in the list.
21949 */
21950static void
21951xmlSchemaIDCFreeIDCTable(xmlSchemaPSVIIDCBindingPtr bind)
21952{
21953 xmlSchemaPSVIIDCBindingPtr prev;
21954
21955 while (bind != NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000021956 prev = bind;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021957 bind = bind->next;
21958 xmlSchemaIDCFreeBinding(prev);
21959 }
21960}
21961
21962/**
21963 * xmlSchemaIDCFreeMatcherList:
21964 * @matcher: the first IDC matcher in the list
21965 *
21966 * Frees a list of IDC matchers.
21967 */
21968static void
21969xmlSchemaIDCFreeMatcherList(xmlSchemaIDCMatcherPtr matcher)
21970{
21971 xmlSchemaIDCMatcherPtr next;
21972
21973 while (matcher != NULL) {
21974 next = matcher->next;
21975 if (matcher->keySeqs != NULL) {
21976 int i;
21977 for (i = 0; i < matcher->sizeKeySeqs; i++)
21978 if (matcher->keySeqs[i] != NULL)
21979 xmlFree(matcher->keySeqs[i]);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000021980 xmlFree(matcher->keySeqs);
21981 }
21982 if (matcher->targets != NULL) {
21983 if (matcher->idcType == XML_SCHEMA_TYPE_IDC_KEYREF) {
21984 int i;
21985 xmlSchemaPSVIIDCNodePtr idcNode;
21986 /*
21987 * Node-table items for keyrefs are not stored globally
21988 * to the validation context, since they are not bubbled.
21989 * We need to free them here.
21990 */
21991 for (i = 0; i < matcher->targets->nbItems; i++) {
21992 idcNode =
21993 (xmlSchemaPSVIIDCNodePtr) matcher->targets->items[i];
21994 xmlFree(idcNode->keys);
21995 xmlFree(idcNode);
21996 }
21997 }
21998 xmlSchemaItemListFree(matcher->targets);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000021999 }
22000 xmlFree(matcher);
22001 matcher = next;
22002 }
22003}
22004
22005/**
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022006 * xmlSchemaIDCAddStateObject:
22007 * @vctxt: the WXS validation context
22008 * @matcher: the IDC matcher
22009 * @sel: the XPath information
22010 * @parent: the parent "selector" state object if any
22011 * @type: "selector" or "field"
22012 *
22013 * Creates/reuses and activates state objects for the given
22014 * XPath information; if the XPath expression consists of unions,
22015 * multiple state objects are created for every unioned expression.
22016 *
22017 * Returns 0 on success and -1 on internal errors.
22018 */
22019static int
22020xmlSchemaIDCAddStateObject(xmlSchemaValidCtxtPtr vctxt,
22021 xmlSchemaIDCMatcherPtr matcher,
22022 xmlSchemaIDCSelectPtr sel,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022023 int type)
22024{
22025 xmlSchemaIDCStateObjPtr sto;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022026
22027 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022028 * Reuse the state objects from the pool.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022029 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022030 if (vctxt->xpathStatePool != NULL) {
22031 sto = vctxt->xpathStatePool;
22032 vctxt->xpathStatePool = sto->next;
22033 sto->next = NULL;
22034 } else {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022035 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022036 * Create a new state object.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022037 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022038 sto = (xmlSchemaIDCStateObjPtr) xmlMalloc(sizeof(xmlSchemaIDCStateObj));
22039 if (sto == NULL) {
22040 xmlSchemaVErrMemory(NULL,
22041 "allocating an IDC state object", NULL);
22042 return (-1);
22043 }
22044 memset(sto, 0, sizeof(xmlSchemaIDCStateObj));
22045 }
22046 /*
22047 * Add to global list.
22048 */
22049 if (vctxt->xpathStates != NULL)
22050 sto->next = vctxt->xpathStates;
22051 vctxt->xpathStates = sto;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022052
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022053 /*
22054 * Free the old xpath validation context.
22055 */
22056 if (sto->xpathCtxt != NULL)
22057 xmlFreeStreamCtxt((xmlStreamCtxtPtr) sto->xpathCtxt);
22058
22059 /*
22060 * Create a new XPath (pattern) validation context.
22061 */
22062 sto->xpathCtxt = (void *) xmlPatternGetStreamCtxt(
22063 (xmlPatternPtr) sel->xpathComp);
22064 if (sto->xpathCtxt == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022065 VERROR_INT("xmlSchemaIDCAddStateObject",
22066 "failed to create an XPath validation context");
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022067 return (-1);
22068 }
22069 sto->type = type;
22070 sto->depth = vctxt->depth;
22071 sto->matcher = matcher;
22072 sto->sel = sel;
22073 sto->nbHistory = 0;
22074
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022075#ifdef DEBUG_IDC
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022076 xmlGenericError(xmlGenericErrorContext, "IDC: STO push '%s'\n",
22077 sto->sel->xpath);
22078#endif
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022079 return (0);
22080}
22081
22082/**
22083 * xmlSchemaXPathEvaluate:
22084 * @vctxt: the WXS validation context
22085 * @nodeType: the nodeType of the current node
22086 *
22087 * Evaluates all active XPath state objects.
22088 *
22089 * Returns the number of IC "field" state objects which resolved to
22090 * this node, 0 if none resolved and -1 on internal errors.
22091 */
22092static int
22093xmlSchemaXPathEvaluate(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022094 xmlElementType nodeType)
22095{
22096 xmlSchemaIDCStateObjPtr sto, head = NULL, first;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022097 int res, resolved = 0, depth = vctxt->depth;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022098
22099 if (vctxt->xpathStates == NULL)
22100 return (0);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022101
22102 if (nodeType == XML_ATTRIBUTE_NODE)
22103 depth++;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022104#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022105 {
22106 xmlChar *str = NULL;
22107 xmlGenericError(xmlGenericErrorContext,
22108 "IDC: EVAL on %s, depth %d, type %d\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022109 xmlSchemaFormatQName(&str, vctxt->inode->nsName,
22110 vctxt->inode->localName), depth, nodeType);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022111 FREE_AND_NULL(str)
22112 }
22113#endif
22114 /*
22115 * Process all active XPath state objects.
22116 */
22117 first = vctxt->xpathStates;
22118 sto = first;
22119 while (sto != head) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022120#ifdef DEBUG_IDC
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022121 if (sto->type == XPATH_STATE_OBJ_TYPE_IDC_SELECTOR)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022122 xmlGenericError(xmlGenericErrorContext, "IDC: ['%s'] selector '%s'\n",
22123 sto->matcher->aidc->def->name, sto->sel->xpath);
22124 else
22125 xmlGenericError(xmlGenericErrorContext, "IDC: ['%s'] field '%s'\n",
22126 sto->matcher->aidc->def->name, sto->sel->xpath);
22127#endif
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022128 if (nodeType == XML_ELEMENT_NODE)
22129 res = xmlStreamPush((xmlStreamCtxtPtr) sto->xpathCtxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022130 vctxt->inode->localName, vctxt->inode->nsName);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022131 else
22132 res = xmlStreamPushAttr((xmlStreamCtxtPtr) sto->xpathCtxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022133 vctxt->inode->localName, vctxt->inode->nsName);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022134
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022135 if (res == -1) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022136 VERROR_INT("xmlSchemaXPathEvaluate",
22137 "calling xmlStreamPush()");
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022138 return (-1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022139 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022140 if (res == 0)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022141 goto next_sto;
22142 /*
22143 * Full match.
22144 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022145#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022146 xmlGenericError(xmlGenericErrorContext, "IDC: "
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022147 "MATCH\n");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022148#endif
22149 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022150 * Register a match in the state object history.
22151 */
22152 if (sto->history == NULL) {
22153 sto->history = (int *) xmlMalloc(5 * sizeof(int));
22154 if (sto->history == NULL) {
22155 xmlSchemaVErrMemory(NULL,
22156 "allocating the state object history", NULL);
22157 return(-1);
22158 }
22159 sto->sizeHistory = 10;
22160 } else if (sto->sizeHistory <= sto->nbHistory) {
22161 sto->sizeHistory *= 2;
22162 sto->history = (int *) xmlRealloc(sto->history,
22163 sto->sizeHistory * sizeof(int));
22164 if (sto->history == NULL) {
22165 xmlSchemaVErrMemory(NULL,
22166 "re-allocating the state object history", NULL);
22167 return(-1);
22168 }
22169 }
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022170 sto->history[sto->nbHistory++] = depth;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022171
22172#ifdef DEBUG_IDC
22173 xmlGenericError(xmlGenericErrorContext, "IDC: push match '%d'\n",
22174 vctxt->depth);
22175#endif
22176
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022177 if (sto->type == XPATH_STATE_OBJ_TYPE_IDC_SELECTOR) {
22178 xmlSchemaIDCSelectPtr sel;
22179 /*
22180 * Activate state objects for the IDC fields of
22181 * the IDC selector.
22182 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022183#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022184 xmlGenericError(xmlGenericErrorContext, "IDC: "
22185 "activating field states\n");
22186#endif
22187 sel = sto->matcher->aidc->def->fields;
22188 while (sel != NULL) {
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022189 if (xmlSchemaIDCAddStateObject(vctxt, sto->matcher,
22190 sel, XPATH_STATE_OBJ_TYPE_IDC_FIELD) == -1)
22191 return (-1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022192 sel = sel->next;
22193 }
22194 } else if (sto->type == XPATH_STATE_OBJ_TYPE_IDC_FIELD) {
22195 /*
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +000022196 * An IDC key node was found by the IDC field.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022197 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022198#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022199 xmlGenericError(xmlGenericErrorContext,
22200 "IDC: key found\n");
22201#endif
22202 /*
22203 * Notify that the character value of this node is
22204 * needed.
22205 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022206 if (resolved == 0) {
22207 if ((vctxt->inode->flags &
22208 XML_SCHEMA_NODE_INFO_VALUE_NEEDED) == 0)
22209 vctxt->inode->flags |= XML_SCHEMA_NODE_INFO_VALUE_NEEDED;
22210 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022211 resolved++;
22212 }
22213next_sto:
22214 if (sto->next == NULL) {
22215 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022216 * Evaluate field state objects created on this node as well.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022217 */
22218 head = first;
22219 sto = vctxt->xpathStates;
22220 } else
22221 sto = sto->next;
22222 }
22223 return (resolved);
22224}
22225
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022226static const xmlChar *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022227xmlSchemaFormatIDCKeySequence(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022228 xmlChar **buf,
22229 xmlSchemaPSVIIDCKeyPtr *seq,
22230 int count)
22231{
22232 int i, res;
Kasimier T. Buchcik77e76822005-11-11 12:52:32 +000022233 xmlChar *value = NULL;
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022234
22235 *buf = xmlStrdup(BAD_CAST "[");
22236 for (i = 0; i < count; i++) {
22237 *buf = xmlStrcat(*buf, BAD_CAST "'");
Kasimier T. Buchcik77e76822005-11-11 12:52:32 +000022238 res = xmlSchemaGetCanonValueWhtspExt(seq[i]->val,
22239 xmlSchemaGetWhiteSpaceFacetValue(seq[i]->type),
22240 &value);
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022241 if (res == 0)
Kasimier T. Buchcik77e76822005-11-11 12:52:32 +000022242 *buf = xmlStrcat(*buf, BAD_CAST value);
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022243 else {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022244 VERROR_INT("xmlSchemaFormatIDCKeySequence",
22245 "failed to compute a canonical value");
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022246 *buf = xmlStrcat(*buf, BAD_CAST "???");
22247 }
22248 if (i < count -1)
22249 *buf = xmlStrcat(*buf, BAD_CAST "', ");
22250 else
22251 *buf = xmlStrcat(*buf, BAD_CAST "'");
22252 if (value != NULL) {
Kasimier T. Buchcik77e76822005-11-11 12:52:32 +000022253 xmlFree(value);
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022254 value = NULL;
22255 }
22256 }
22257 *buf = xmlStrcat(*buf, BAD_CAST "]");
22258
22259 return (BAD_CAST *buf);
22260}
22261
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022262/**
Kasimier T. Buchcik800cbac2005-08-09 12:31:55 +000022263 * xmlSchemaXPathPop:
22264 * @vctxt: the WXS validation context
22265 *
22266 * Pops all XPath states.
22267 *
22268 * Returns 0 on success and -1 on internal errors.
22269 */
22270static int
22271xmlSchemaXPathPop(xmlSchemaValidCtxtPtr vctxt)
22272{
22273 xmlSchemaIDCStateObjPtr sto;
22274 int res;
22275
22276 if (vctxt->xpathStates == NULL)
22277 return(0);
22278 sto = vctxt->xpathStates;
22279 do {
22280 res = xmlStreamPop((xmlStreamCtxtPtr) sto->xpathCtxt);
22281 if (res == -1)
22282 return (-1);
22283 sto = sto->next;
22284 } while (sto != NULL);
22285 return(0);
22286}
22287
22288/**
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022289 * xmlSchemaXPathProcessHistory:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022290 * @vctxt: the WXS validation context
22291 * @type: the simple/complex type of the current node if any at all
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022292 * @val: the precompiled value
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022293 *
22294 * Processes and pops the history items of the IDC state objects.
22295 * IDC key-sequences are validated/created on IDC bindings.
22296 *
22297 * Returns 0 on success and -1 on internal errors.
22298 */
22299static int
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022300xmlSchemaXPathProcessHistory(xmlSchemaValidCtxtPtr vctxt,
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022301 int depth)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022302{
22303 xmlSchemaIDCStateObjPtr sto, nextsto;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022304 int res, matchDepth;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022305 xmlSchemaPSVIIDCKeyPtr key = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022306 xmlSchemaTypePtr type = vctxt->inode->typeDef, simpleType = NULL;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022307
22308 if (vctxt->xpathStates == NULL)
22309 return (0);
22310 sto = vctxt->xpathStates;
22311
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022312#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022313 {
22314 xmlChar *str = NULL;
22315 xmlGenericError(xmlGenericErrorContext,
22316 "IDC: BACK on %s, depth %d\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022317 xmlSchemaFormatQName(&str, vctxt->inode->nsName,
22318 vctxt->inode->localName), vctxt->depth);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022319 FREE_AND_NULL(str)
22320 }
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022321#endif
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022322 /*
22323 * Evaluate the state objects.
22324 */
22325 while (sto != NULL) {
Kasimier T. Buchcikc63fbbf2005-06-15 12:54:05 +000022326 res = xmlStreamPop((xmlStreamCtxtPtr) sto->xpathCtxt);
22327 if (res == -1) {
22328 VERROR_INT("xmlSchemaXPathProcessHistory",
22329 "calling xmlStreamPop()");
22330 return (-1);
22331 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022332#ifdef DEBUG_IDC
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000022333 xmlGenericError(xmlGenericErrorContext, "IDC: stream pop '%s'\n",
22334 sto->sel->xpath);
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022335#endif
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022336 if (sto->nbHistory == 0)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022337 goto deregister_check;
22338
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022339 matchDepth = sto->history[sto->nbHistory -1];
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022340
22341 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022342 * Only matches at the current depth are of interest.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022343 */
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022344 if (matchDepth != depth) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022345 sto = sto->next;
22346 continue;
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000022347 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022348 if (sto->type == XPATH_STATE_OBJ_TYPE_IDC_FIELD) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022349 /*
22350 * NOTE: According to
22351 * http://www.w3.org/Bugs/Public/show_bug.cgi?id=2198
22352 * ... the simple-content of complex types is also allowed.
22353 */
22354
22355 if (WXS_IS_COMPLEX(type)) {
22356 if (WXS_HAS_SIMPLE_CONTENT(type)) {
22357 /*
22358 * Sanity check for complex types with simple content.
22359 */
22360 simpleType = type->contentTypeDef;
22361 if (simpleType == NULL) {
22362 VERROR_INT("xmlSchemaXPathProcessHistory",
22363 "field resolves to a CT with simple content "
22364 "but the CT is missing the ST definition");
22365 return (-1);
22366 }
22367 } else
22368 simpleType = NULL;
22369 } else
22370 simpleType = type;
22371 if (simpleType == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022372 xmlChar *str = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022373
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022374 /*
22375 * Not qualified if the field resolves to a node of non
22376 * simple type.
22377 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022378 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022379 XML_SCHEMAV_CVC_IDC, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000022380 WXS_BASIC_CAST sto->matcher->aidc->def,
22381 "The XPath '%s' of a field of %s does evaluate to a node of "
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022382 "non-simple type",
22383 sto->sel->xpath,
22384 xmlSchemaGetIDCDesignation(&str, sto->matcher->aidc->def));
22385 FREE_AND_NULL(str);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022386 sto->nbHistory--;
22387 goto deregister_check;
22388 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022389
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022390 if ((key == NULL) && (vctxt->inode->val == NULL)) {
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022391 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022392 * Failed to provide the normalized value; maybe
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022393 * the value was invalid.
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000022394 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022395 VERROR(XML_SCHEMAV_CVC_IDC,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000022396 WXS_BASIC_CAST sto->matcher->aidc->def,
Kasimier T. Buchcik6e224f12005-02-17 11:10:44 +000022397 "Warning: No precomputed value available, the value "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022398 "was either invalid or something strange happend");
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022399 sto->nbHistory--;
22400 goto deregister_check;
22401 } else {
22402 xmlSchemaIDCMatcherPtr matcher = sto->matcher;
22403 xmlSchemaPSVIIDCKeyPtr *keySeq;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022404 int pos, idx;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022405
22406 /*
22407 * The key will be anchored on the matcher's list of
22408 * key-sequences. The position in this list is determined
22409 * by the target node's depth relative to the matcher's
22410 * depth of creation (i.e. the depth of the scope element).
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022411 *
22412 * Element Depth Pos List-entries
22413 * <scope> 0 NULL
22414 * <bar> 1 NULL
22415 * <target/> 2 2 target
22416 * <bar>
22417 * </scope>
22418 *
22419 * The size of the list is only dependant on the depth of
22420 * the tree.
22421 * An entry will be NULLed in selector_leave, i.e. when
22422 * we hit the target's
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022423 */
22424 pos = sto->depth - matcher->depth;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022425 idx = sto->sel->index;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022426
22427 /*
22428 * Create/grow the array of key-sequences.
22429 */
22430 if (matcher->keySeqs == NULL) {
22431 if (pos > 9)
22432 matcher->sizeKeySeqs = pos * 2;
22433 else
22434 matcher->sizeKeySeqs = 10;
22435 matcher->keySeqs = (xmlSchemaPSVIIDCKeyPtr **)
22436 xmlMalloc(matcher->sizeKeySeqs *
22437 sizeof(xmlSchemaPSVIIDCKeyPtr *));
22438 if (matcher->keySeqs == NULL) {
22439 xmlSchemaVErrMemory(NULL,
22440 "allocating an array of key-sequences",
22441 NULL);
22442 return(-1);
22443 }
22444 memset(matcher->keySeqs, 0,
22445 matcher->sizeKeySeqs *
22446 sizeof(xmlSchemaPSVIIDCKeyPtr *));
22447 } else if (pos >= matcher->sizeKeySeqs) {
22448 int i = matcher->sizeKeySeqs;
22449
22450 matcher->sizeKeySeqs *= 2;
22451 matcher->keySeqs = (xmlSchemaPSVIIDCKeyPtr **)
22452 xmlRealloc(matcher->keySeqs,
22453 matcher->sizeKeySeqs *
22454 sizeof(xmlSchemaPSVIIDCKeyPtr *));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022455 if (matcher->keySeqs == NULL) {
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022456 xmlSchemaVErrMemory(NULL,
22457 "reallocating an array of key-sequences",
22458 NULL);
22459 return (-1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022460 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022461 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022462 * The array needs to be NULLed.
22463 * TODO: Use memset?
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022464 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022465 for (; i < matcher->sizeKeySeqs; i++)
22466 matcher->keySeqs[i] = NULL;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022467 }
22468
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022469 /*
22470 * Get/create the key-sequence.
22471 */
22472 keySeq = matcher->keySeqs[pos];
22473 if (keySeq == NULL) {
22474 goto create_sequence;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022475 } else if (keySeq[idx] != NULL) {
22476 xmlChar *str = NULL;
22477 /*
22478 * cvc-identity-constraint:
22479 * 3 For each node in the ·target node set· all
22480 * of the {fields}, with that node as the context
22481 * node, evaluate to either an empty node-set or
22482 * a node-set with exactly one member, which must
22483 * have a simple type.
22484 *
22485 * The key was already set; report an error.
22486 */
22487 xmlSchemaCustomErr(ACTXT_CAST vctxt,
22488 XML_SCHEMAV_CVC_IDC, NULL,
22489 WXS_BASIC_CAST matcher->aidc->def,
22490 "The XPath '%s' of a field of %s evaluates to a "
22491 "node-set with more than one member",
22492 sto->sel->xpath,
22493 xmlSchemaGetIDCDesignation(&str, matcher->aidc->def));
22494 FREE_AND_NULL(str);
22495 sto->nbHistory--;
22496 goto deregister_check;
22497 } else
22498 goto create_key;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022499
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022500create_sequence:
22501 /*
22502 * Create a key-sequence.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022503 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022504 keySeq = (xmlSchemaPSVIIDCKeyPtr *) xmlMalloc(
22505 matcher->aidc->def->nbFields *
22506 sizeof(xmlSchemaPSVIIDCKeyPtr));
22507 if (keySeq == NULL) {
22508 xmlSchemaVErrMemory(NULL,
22509 "allocating an IDC key-sequence", NULL);
22510 return(-1);
22511 }
22512 memset(keySeq, 0, matcher->aidc->def->nbFields *
22513 sizeof(xmlSchemaPSVIIDCKeyPtr));
22514 matcher->keySeqs[pos] = keySeq;
22515create_key:
22516 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022517 * Create a key once per node only.
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022518 */
22519 if (key == NULL) {
22520 key = (xmlSchemaPSVIIDCKeyPtr) xmlMalloc(
22521 sizeof(xmlSchemaPSVIIDCKey));
22522 if (key == NULL) {
22523 xmlSchemaVErrMemory(NULL,
22524 "allocating a IDC key", NULL);
22525 xmlFree(keySeq);
22526 matcher->keySeqs[pos] = NULL;
22527 return(-1);
22528 }
22529 /*
22530 * Consume the compiled value.
22531 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022532 key->type = simpleType;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022533 key->val = vctxt->inode->val;
22534 vctxt->inode->val = NULL;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022535 /*
22536 * Store the key in a global list.
22537 */
22538 if (xmlSchemaIDCStoreKey(vctxt, key) == -1) {
22539 xmlSchemaIDCFreeKey(key);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022540 return (-1);
22541 }
22542 }
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022543 keySeq[idx] = key;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022544 }
22545 } else if (sto->type == XPATH_STATE_OBJ_TYPE_IDC_SELECTOR) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022546
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022547 xmlSchemaPSVIIDCKeyPtr **keySeq = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022548 /* xmlSchemaPSVIIDCBindingPtr bind; */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022549 xmlSchemaPSVIIDCNodePtr ntItem;
22550 xmlSchemaIDCMatcherPtr matcher;
22551 xmlSchemaIDCPtr idc;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022552 xmlSchemaItemListPtr targets;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022553 int pos, i, j, nbKeys;
22554 /*
22555 * Here we have the following scenario:
22556 * An IDC 'selector' state object resolved to a target node,
22557 * during the time this target node was in the
22558 * ancestor-or-self axis, the 'field' state object(s) looked
22559 * out for matching nodes to create a key-sequence for this
22560 * target node. Now we are back to this target node and need
22561 * to put the key-sequence, together with the target node
22562 * itself, into the node-table of the corresponding IDC
22563 * binding.
22564 */
22565 matcher = sto->matcher;
22566 idc = matcher->aidc->def;
22567 nbKeys = idc->nbFields;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022568 pos = depth - matcher->depth;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022569 /*
22570 * Check if the matcher has any key-sequences at all, plus
22571 * if it has a key-sequence for the current target node.
22572 */
22573 if ((matcher->keySeqs == NULL) ||
22574 (matcher->sizeKeySeqs <= pos)) {
22575 if (idc->type == XML_SCHEMA_TYPE_IDC_KEY)
22576 goto selector_key_error;
22577 else
22578 goto selector_leave;
22579 }
22580
22581 keySeq = &(matcher->keySeqs[pos]);
22582 if (*keySeq == NULL) {
22583 if (idc->type == XML_SCHEMA_TYPE_IDC_KEY)
22584 goto selector_key_error;
22585 else
22586 goto selector_leave;
22587 }
22588
22589 for (i = 0; i < nbKeys; i++) {
22590 if ((*keySeq)[i] == NULL) {
22591 /*
22592 * Not qualified, if not all fields did resolve.
22593 */
22594 if (idc->type == XML_SCHEMA_TYPE_IDC_KEY) {
22595 /*
22596 * All fields of a "key" IDC must resolve.
22597 */
22598 goto selector_key_error;
22599 }
22600 goto selector_leave;
22601 }
22602 }
22603 /*
22604 * All fields did resolve.
22605 */
22606
22607 /*
22608 * 4.1 If the {identity-constraint category} is unique(/key),
22609 * then no two members of the ·qualified node set· have
22610 * ·key-sequences· whose members are pairwise equal, as
22611 * defined by Equal in [XML Schemas: Datatypes].
22612 *
22613 * Get the IDC binding from the matcher and check for
22614 * duplicate key-sequences.
22615 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022616#if 0
22617 bind = xmlSchemaIDCAcquireBinding(vctxt, matcher);
22618#endif
22619 targets = xmlSchemaIDCAcquireTargetList(vctxt, matcher);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022620 if ((idc->type != XML_SCHEMA_TYPE_IDC_KEYREF) &&
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022621 (targets->nbItems != 0)) {
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022622 xmlSchemaPSVIIDCKeyPtr ckey, bkey, *bkeySeq;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022623
22624 i = 0;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022625 res = 0;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022626 /*
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022627 * Compare the key-sequences, key by key.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022628 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022629 do {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022630 bkeySeq =
22631 ((xmlSchemaPSVIIDCNodePtr) targets->items[i])->keys;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022632 for (j = 0; j < nbKeys; j++) {
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022633 ckey = (*keySeq)[j];
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022634 bkey = bkeySeq[j];
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022635 res = xmlSchemaAreValuesEqual(ckey->val, bkey->val);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022636 if (res == -1) {
22637 return (-1);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022638 } else if (res == 0) {
22639 /*
22640 * One of the keys differs, so the key-sequence
22641 * won't be equal; get out.
22642 */
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022643 break;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022644 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022645 }
22646 if (res == 1) {
22647 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022648 * Duplicate key-sequence found.
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022649 */
22650 break;
22651 }
22652 i++;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022653 } while (i < targets->nbItems);
22654 if (i != targets->nbItems) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022655 xmlChar *str = NULL, *strB = NULL;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022656 /*
22657 * TODO: Try to report the key-sequence.
22658 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022659 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022660 XML_SCHEMAV_CVC_IDC, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000022661 WXS_BASIC_CAST idc,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022662 "Duplicate key-sequence %s in %s",
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000022663 xmlSchemaFormatIDCKeySequence(vctxt, &str,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022664 (*keySeq), nbKeys),
22665 xmlSchemaGetIDCDesignation(&strB, idc));
22666 FREE_AND_NULL(str);
22667 FREE_AND_NULL(strB);
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022668 goto selector_leave;
22669 }
22670 }
22671 /*
22672 * Add a node-table item to the IDC binding.
22673 */
22674 ntItem = (xmlSchemaPSVIIDCNodePtr) xmlMalloc(
22675 sizeof(xmlSchemaPSVIIDCNode));
22676 if (ntItem == NULL) {
22677 xmlSchemaVErrMemory(NULL,
22678 "allocating an IDC node-table item", NULL);
22679 xmlFree(*keySeq);
22680 *keySeq = NULL;
22681 return(-1);
22682 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000022683 memset(ntItem, 0, sizeof(xmlSchemaPSVIIDCNode));
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022684
22685 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022686 * Store the node-table item in a global list.
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022687 */
22688 if (idc->type != XML_SCHEMA_TYPE_IDC_KEYREF) {
22689 if (xmlSchemaIDCStoreNodeTableItem(vctxt, ntItem) == -1) {
22690 xmlFree(ntItem);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022691 xmlFree(*keySeq);
22692 *keySeq = NULL;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022693 return (-1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022694 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000022695 ntItem->nodeQNameID = -1;
22696 } else {
22697 /*
22698 * Save a cached QName for this node on the IDC node, to be
22699 * able to report it, even if the node is not saved.
22700 */
22701 ntItem->nodeQNameID = xmlSchemaVAddNodeQName(vctxt,
22702 vctxt->inode->localName, vctxt->inode->nsName);
22703 if (ntItem->nodeQNameID == -1) {
22704 xmlFree(ntItem);
22705 xmlFree(*keySeq);
22706 *keySeq = NULL;
22707 return (-1);
22708 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022709 }
22710 /*
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000022711 * Init the node-table item: Save the node, position and
22712 * consume the key-sequence.
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022713 */
22714 ntItem->node = vctxt->node;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000022715 ntItem->nodeLine = vctxt->inode->nodeLine;
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022716 ntItem->keys = *keySeq;
22717 *keySeq = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022718#if 0
22719 if (xmlSchemaIDCAppendNodeTableItem(bind, ntItem) == -1) {
22720#endif
22721 if (xmlSchemaItemListAdd(targets, ntItem) == -1) {
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022722 if (idc->type == XML_SCHEMA_TYPE_IDC_KEYREF) {
22723 /*
22724 * Free the item, since keyref items won't be
22725 * put on a global list.
22726 */
22727 xmlFree(ntItem->keys);
22728 xmlFree(ntItem);
22729 }
22730 return (-1);
22731 }
22732
22733 goto selector_leave;
22734selector_key_error:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022735 {
22736 xmlChar *str = NULL;
22737 /*
22738 * 4.2.1 (KEY) The ·target node set· and the
22739 * ·qualified node set· are equal, that is, every
22740 * member of the ·target node set· is also a member
22741 * of the ·qualified node set· and vice versa.
22742 */
22743 xmlSchemaCustomErr(ACTXT_CAST vctxt,
22744 XML_SCHEMAV_CVC_IDC, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000022745 WXS_BASIC_CAST idc,
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000022746 "Not all fields of %s evaluate to a node",
22747 xmlSchemaGetIDCDesignation(&str, idc), NULL);
22748 FREE_AND_NULL(str);
22749 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022750selector_leave:
22751 /*
22752 * Free the key-sequence if not added to the IDC table.
22753 */
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022754 if ((keySeq != NULL) && (*keySeq != NULL)) {
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022755 xmlFree(*keySeq);
22756 *keySeq = NULL;
22757 }
22758 } /* if selector */
22759
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022760 sto->nbHistory--;
22761
22762deregister_check:
22763 /*
22764 * Deregister state objects if they reach the depth of creation.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022765 */
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000022766 if ((sto->nbHistory == 0) && (sto->depth == depth)) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022767#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022768 xmlGenericError(xmlGenericErrorContext, "IDC: STO pop '%s'\n",
22769 sto->sel->xpath);
22770#endif
22771 if (vctxt->xpathStates != sto) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022772 VERROR_INT("xmlSchemaXPathProcessHistory",
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022773 "The state object to be removed is not the first "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022774 "in the list");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022775 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022776 nextsto = sto->next;
22777 /*
22778 * Unlink from the list of active XPath state objects.
22779 */
22780 vctxt->xpathStates = sto->next;
22781 sto->next = vctxt->xpathStatePool;
22782 /*
22783 * Link it to the pool of reusable state objects.
22784 */
22785 vctxt->xpathStatePool = sto;
22786 sto = nextsto;
22787 } else
22788 sto = sto->next;
22789 } /* while (sto != NULL) */
22790 return (0);
22791}
22792
22793/**
22794 * xmlSchemaIDCRegisterMatchers:
22795 * @vctxt: the WXS validation context
22796 * @elemDecl: the element declaration
22797 *
22798 * Creates helper objects to evaluate IDC selectors/fields
22799 * successively.
22800 *
22801 * Returns 0 if OK and -1 on internal errors.
22802 */
22803static int
22804xmlSchemaIDCRegisterMatchers(xmlSchemaValidCtxtPtr vctxt,
22805 xmlSchemaElementPtr elemDecl)
22806{
22807 xmlSchemaIDCMatcherPtr matcher, last = NULL;
22808 xmlSchemaIDCPtr idc, refIdc;
22809 xmlSchemaIDCAugPtr aidc;
22810
22811 idc = (xmlSchemaIDCPtr) elemDecl->idcs;
22812 if (idc == NULL)
22813 return (0);
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000022814
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022815#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022816 {
22817 xmlChar *str = NULL;
22818 xmlGenericError(xmlGenericErrorContext,
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022819 "IDC: REGISTER on %s, depth %d\n",
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022820 (char *) xmlSchemaFormatQName(&str, vctxt->inode->nsName,
22821 vctxt->inode->localName), vctxt->depth);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022822 FREE_AND_NULL(str)
22823 }
22824#endif
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022825 if (vctxt->inode->idcMatchers != NULL) {
22826 VERROR_INT("xmlSchemaIDCRegisterMatchers",
22827 "The chain of IDC matchers is expected to be empty");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022828 return (-1);
22829 }
22830 do {
22831 if (idc->type == XML_SCHEMA_TYPE_IDC_KEYREF) {
22832 /*
22833 * Since IDCs bubbles are expensive we need to know the
22834 * depth at which the bubbles should stop; this will be
22835 * the depth of the top-most keyref IDC. If no keyref
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022836 * references a key/unique IDC, the keyrefDepth will
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022837 * be -1, indicating that no bubbles are needed.
22838 */
22839 refIdc = (xmlSchemaIDCPtr) idc->ref->item;
22840 if (refIdc != NULL) {
22841 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022842 * Remember that we have keyrefs on this node.
22843 */
22844 vctxt->inode->hasKeyrefs = 1;
22845 /*
22846 * Lookup the referenced augmented IDC info.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022847 */
22848 aidc = vctxt->aidcs;
22849 while (aidc != NULL) {
22850 if (aidc->def == refIdc)
22851 break;
22852 aidc = aidc->next;
22853 }
22854 if (aidc == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022855 VERROR_INT("xmlSchemaIDCRegisterMatchers",
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022856 "Could not find an augmented IDC item for an IDC "
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022857 "definition");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022858 return (-1);
22859 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022860 if ((aidc->keyrefDepth == -1) ||
22861 (vctxt->depth < aidc->keyrefDepth))
22862 aidc->keyrefDepth = vctxt->depth;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022863 }
22864 }
22865 /*
22866 * Lookup the augmented IDC item for the IDC definition.
22867 */
22868 aidc = vctxt->aidcs;
22869 while (aidc != NULL) {
22870 if (aidc->def == idc)
22871 break;
22872 aidc = aidc->next;
22873 }
22874 if (aidc == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022875 VERROR_INT("xmlSchemaIDCRegisterMatchers",
22876 "Could not find an augmented IDC item for an IDC definition");
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022877 return (-1);
22878 }
22879 /*
22880 * Create an IDC matcher for every IDC definition.
22881 */
22882 matcher = (xmlSchemaIDCMatcherPtr)
22883 xmlMalloc(sizeof(xmlSchemaIDCMatcher));
22884 if (matcher == NULL) {
22885 xmlSchemaVErrMemory(vctxt,
22886 "allocating an IDC matcher", NULL);
22887 return (-1);
22888 }
22889 memset(matcher, 0, sizeof(xmlSchemaIDCMatcher));
22890 if (last == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000022891 vctxt->inode->idcMatchers = matcher;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022892 else
22893 last->next = matcher;
22894 last = matcher;
22895
22896 matcher->type = IDC_MATCHER;
22897 matcher->depth = vctxt->depth;
22898 matcher->aidc = aidc;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022899 matcher->idcType = aidc->def->type;
22900#ifdef DEBUG_IDC
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022901 xmlGenericError(xmlGenericErrorContext, "IDC: register matcher\n");
22902#endif
22903 /*
22904 * Init the automaton state object.
22905 */
22906 if (xmlSchemaIDCAddStateObject(vctxt, matcher,
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000022907 idc->selector, XPATH_STATE_OBJ_TYPE_IDC_SELECTOR) == -1)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000022908 return (-1);
22909
22910 idc = idc->next;
22911 } while (idc != NULL);
22912 return (0);
22913}
22914
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000022915static int
22916xmlSchemaIDCFillNodeTables(xmlSchemaValidCtxtPtr vctxt,
22917 xmlSchemaNodeInfoPtr ielem)
22918{
22919 xmlSchemaPSVIIDCBindingPtr bind;
22920 int res, i, j, k, nbTargets, nbFields, nbDupls, nbNodeTable;
22921 xmlSchemaPSVIIDCKeyPtr *keys, *ntkeys;
22922 xmlSchemaPSVIIDCNodePtr *targets, *dupls;
22923
22924 xmlSchemaIDCMatcherPtr matcher = ielem->idcMatchers;
22925 /* vctxt->createIDCNodeTables */
22926 while (matcher != NULL) {
22927 /*
22928 * Skip keyref IDCs and empty IDC target-lists.
22929 */
22930 if ((matcher->aidc->def->type == XML_SCHEMA_TYPE_IDC_KEYREF) ||
22931 WXS_ILIST_IS_EMPTY(matcher->targets))
22932 {
22933 matcher = matcher->next;
22934 continue;
22935 }
22936 /*
22937 * If we _want_ the IDC node-table to be created in any case
22938 * then do so. Otherwise create them only if keyrefs need them.
22939 */
22940 if ((! vctxt->createIDCNodeTables) &&
22941 ((matcher->aidc->keyrefDepth == -1) ||
22942 (matcher->aidc->keyrefDepth > vctxt->depth)))
22943 {
22944 matcher = matcher->next;
22945 continue;
22946 }
22947 /*
22948 * Get/create the IDC binding on this element for the IDC definition.
22949 */
22950 bind = xmlSchemaIDCAcquireBinding(vctxt, matcher);
22951
22952 if (! WXS_ILIST_IS_EMPTY(bind->dupls)) {
22953 dupls = (xmlSchemaPSVIIDCNodePtr *) bind->dupls->items;
22954 nbDupls = bind->dupls->nbItems;
22955 } else {
22956 dupls = NULL;
22957 nbDupls = 0;
22958 }
22959 if (bind->nodeTable != NULL) {
22960 nbNodeTable = bind->nbNodes;
22961 } else {
22962 nbNodeTable = 0;
22963 }
22964
22965 if ((nbNodeTable == 0) && (nbDupls == 0)) {
22966 /*
22967 * Transfer all IDC target-nodes to the IDC node-table.
22968 */
22969 bind->nodeTable =
22970 (xmlSchemaPSVIIDCNodePtr *) matcher->targets->items;
22971 bind->sizeNodes = matcher->targets->sizeItems;
22972 bind->nbNodes = matcher->targets->nbItems;
22973
22974 matcher->targets->items = NULL;
22975 matcher->targets->sizeItems = 0;
22976 matcher->targets->nbItems = 0;
22977 } else {
22978 /*
22979 * Compare the key-sequences and add to the IDC node-table.
22980 */
22981 nbTargets = matcher->targets->nbItems;
22982 targets = (xmlSchemaPSVIIDCNodePtr *) matcher->targets->items;
22983 nbFields = matcher->aidc->def->nbFields;
22984 i = 0;
22985 do {
22986 keys = targets[i]->keys;
22987 if (nbDupls) {
22988 /*
22989 * Search in already found duplicates first.
22990 */
22991 j = 0;
22992 do {
22993 if (nbFields == 1) {
22994 res = xmlSchemaAreValuesEqual(keys[0]->val,
22995 dupls[j]->keys[0]->val);
22996 if (res == -1)
22997 goto internal_error;
22998 if (res == 1) {
22999 /*
23000 * Equal key-sequence.
23001 */
23002 goto next_target;
23003 }
23004 } else {
23005 res = 0;
23006 ntkeys = dupls[j]->keys;
23007 for (k = 0; k < nbFields; k++) {
23008 res = xmlSchemaAreValuesEqual(keys[k]->val,
23009 ntkeys[k]->val);
23010 if (res == -1)
23011 goto internal_error;
23012 if (res == 0) {
23013 /*
23014 * One of the keys differs.
23015 */
23016 break;
23017 }
23018 }
23019 if (res == 1) {
23020 /*
23021 * Equal key-sequence found.
23022 */
23023 goto next_target;
23024 }
23025 }
23026 j++;
23027 } while (j < nbDupls);
23028 }
23029 if (nbNodeTable) {
23030 j = 0;
23031 do {
23032 if (nbFields == 1) {
23033 res = xmlSchemaAreValuesEqual(keys[0]->val,
23034 bind->nodeTable[j]->keys[0]->val);
23035 if (res == -1)
23036 goto internal_error;
23037 if (res == 0) {
23038 /*
23039 * The key-sequence differs.
23040 */
23041 goto next_node_table_entry;
23042 }
23043 } else {
23044 res = 0;
23045 ntkeys = bind->nodeTable[j]->keys;
23046 for (k = 0; k < nbFields; k++) {
23047 res = xmlSchemaAreValuesEqual(keys[k]->val,
23048 ntkeys[k]->val);
23049 if (res == -1)
23050 goto internal_error;
23051 if (res == 0) {
23052 /*
23053 * One of the keys differs.
23054 */
23055 goto next_node_table_entry;
23056 }
23057 }
23058 }
23059 /*
23060 * Add the duplicate to the list of duplicates.
23061 */
23062 if (bind->dupls == NULL) {
23063 bind->dupls = xmlSchemaItemListCreate();
23064 if (bind->dupls == NULL)
23065 goto internal_error;
23066 }
23067 if (xmlSchemaItemListAdd(bind->dupls, bind->nodeTable[j]) == -1)
23068 goto internal_error;
23069 /*
23070 * Remove the duplicate entry from the IDC node-table.
23071 */
23072 bind->nodeTable[j] = bind->nodeTable[bind->nbNodes -1];
23073 bind->nbNodes--;
23074
23075 goto next_target;
23076
23077next_node_table_entry:
23078 j++;
23079 } while (j < nbNodeTable);
23080 }
23081 /*
23082 * If everything is fine, then add the IDC target-node to
23083 * the IDC node-table.
23084 */
23085 if (xmlSchemaIDCAppendNodeTableItem(bind, targets[i]) == -1)
23086 goto internal_error;
23087
23088next_target:
23089 i++;
23090 } while (i < nbTargets);
23091 }
23092 matcher = matcher->next;
23093 }
23094 return(0);
23095
23096internal_error:
23097 return(-1);
23098}
23099
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023100/**
23101 * xmlSchemaBubbleIDCNodeTables:
23102 * @depth: the current tree depth
23103 *
23104 * Merges IDC bindings of an element at @depth into the corresponding IDC
23105 * bindings of its parent element. If a duplicate note-table entry is found,
23106 * both, the parent node-table entry and child entry are discarded from the
23107 * node-table of the parent.
23108 *
23109 * Returns 0 if OK and -1 on internal errors.
23110 */
23111static int
23112xmlSchemaBubbleIDCNodeTables(xmlSchemaValidCtxtPtr vctxt)
23113{
23114 xmlSchemaPSVIIDCBindingPtr bind; /* IDC bindings of the current node. */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023115 xmlSchemaPSVIIDCBindingPtr *parTable, parBind = NULL; /* parent IDC bindings. */
23116 xmlSchemaPSVIIDCNodePtr node, parNode = NULL, *dupls, *parNodes; /* node-table entries. */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023117 xmlSchemaIDCAugPtr aidc;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023118 int i, j, k, ret = 0, nbFields, oldNum, oldDupls;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023119
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023120 bind = vctxt->inode->idcTable;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023121 if (bind == NULL) {
23122 /* Fine, no table, no bubbles. */
23123 return (0);
23124 }
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000023125
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023126 parTable = &(vctxt->elemInfos[vctxt->depth -1]->idcTable);
23127 /*
23128 * Walk all bindings; create new or add to existing bindings.
23129 * Remove duplicate key-sequences.
23130 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023131 while (bind != NULL) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023132
23133 if ((bind->nbNodes == 0) && WXS_ILIST_IS_EMPTY(bind->dupls))
23134 goto next_binding;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023135 /*
23136 * Check if the key/unique IDC table needs to be bubbled.
23137 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023138 if (! vctxt->createIDCNodeTables) {
23139 aidc = vctxt->aidcs;
23140 do {
23141 if (aidc->def == bind->definition) {
23142 if ((aidc->keyrefDepth == -1) ||
23143 (aidc->keyrefDepth >= vctxt->depth)) {
23144 goto next_binding;
23145 }
23146 break;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023147 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023148 aidc = aidc->next;
23149 } while (aidc != NULL);
23150 }
Kasimier T. Buchcik0a598522005-01-31 17:02:07 +000023151
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023152 if (parTable != NULL)
23153 parBind = *parTable;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023154 /*
23155 * Search a matching parent binding for the
23156 * IDC definition.
23157 */
23158 while (parBind != NULL) {
23159 if (parBind->definition == bind->definition)
23160 break;
23161 parBind = parBind->next;
23162 }
23163
23164 if (parBind != NULL) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023165 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023166 * Compare every node-table entry of the child node,
23167 * i.e. the key-sequence within, ...
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023168 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023169 oldNum = parBind->nbNodes; /* Skip newly added items. */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023170
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023171 if (! WXS_ILIST_IS_EMPTY(parBind->dupls)) {
23172 oldDupls = parBind->dupls->nbItems;
23173 dupls = (xmlSchemaPSVIIDCNodePtr *) parBind->dupls->items;
23174 } else {
23175 dupls = NULL;
23176 oldDupls = 0;
23177 }
23178
23179 parNodes = parBind->nodeTable;
23180 nbFields = bind->definition->nbFields;
23181
23182 for (i = 0; i < bind->nbNodes; i++) {
23183 node = bind->nodeTable[i];
23184 if (node == NULL)
23185 continue;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023186 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023187 * ...with every key-sequence of the parent node, already
23188 * evaluated to be a duplicate key-sequence.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023189 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023190 if (oldDupls) {
23191 j = 0;
23192 while (j < oldDupls) {
23193 if (nbFields == 1) {
23194 ret = xmlSchemaAreValuesEqual(
23195 node->keys[0]->val,
23196 dupls[j]->keys[0]->val);
23197 if (ret == -1)
23198 goto internal_error;
23199 if (ret == 0) {
23200 j++;
23201 continue;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023202 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023203 } else {
23204 parNode = dupls[j];
23205 for (k = 0; k < nbFields; k++) {
23206 ret = xmlSchemaAreValuesEqual(
23207 node->keys[k]->val,
23208 parNode->keys[k]->val);
23209 if (ret == -1)
23210 goto internal_error;
23211 if (ret == 0)
23212 break;
23213 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023214 }
23215 if (ret == 1)
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023216 /* Duplicate found. */
23217 break;
23218 j++;
23219 }
23220 if (j != oldDupls) {
23221 /* Duplicate found. Skip this entry. */
23222 continue;
23223 }
23224 }
23225 /*
23226 * ... and with every key-sequence of the parent node.
23227 */
23228 if (oldNum) {
23229 j = 0;
23230 while (j < oldNum) {
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +000023231 parNode = parNodes[j];
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023232 if (nbFields == 1) {
23233 ret = xmlSchemaAreValuesEqual(
23234 node->keys[0]->val,
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +000023235 parNode->keys[0]->val);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023236 if (ret == -1)
23237 goto internal_error;
23238 if (ret == 0) {
23239 j++;
23240 continue;
23241 }
Kasimier T. Buchcikf39e8d12005-11-30 11:03:24 +000023242 } else {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023243 for (k = 0; k < nbFields; k++) {
23244 ret = xmlSchemaAreValuesEqual(
23245 node->keys[k]->val,
23246 parNode->keys[k]->val);
23247 if (ret == -1)
23248 goto internal_error;
23249 if (ret == 0)
23250 break;
23251 }
23252 }
23253 if (ret == 1)
23254 /* Duplicate found. */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023255 break;
23256 j++;
23257 }
23258 if (j != oldNum) {
23259 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023260 * Handle duplicates. Move the duplicate in
23261 * the parent's node-table to the list of
23262 * duplicates.
23263 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023264 oldNum--;
23265 parBind->nbNodes--;
23266 /*
23267 * Move last old item to pos of duplicate.
23268 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023269 parNodes[j] = parNodes[oldNum];
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023270
23271 if (parBind->nbNodes != oldNum) {
23272 /*
23273 * If new items exist, move last new item to
23274 * last of old items.
23275 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023276 parNodes[oldNum] =
23277 parNodes[parBind->nbNodes];
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023278 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023279 if (parBind->dupls == NULL) {
23280 parBind->dupls = xmlSchemaItemListCreate();
23281 if (parBind->dupls == NULL)
23282 goto internal_error;
23283 }
23284 xmlSchemaItemListAdd(parBind->dupls, parNode);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023285 } else {
23286 /*
23287 * Add the node-table entry (node and key-sequence) of
23288 * the child node to the node table of the parent node.
23289 */
23290 if (parBind->nodeTable == NULL) {
23291 parBind->nodeTable = (xmlSchemaPSVIIDCNodePtr *)
Kasimier T. Buchcikb34ad1b2005-03-21 20:10:31 +000023292 xmlMalloc(10 * sizeof(xmlSchemaPSVIIDCNodePtr));
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023293 if (parBind->nodeTable == NULL) {
23294 xmlSchemaVErrMemory(NULL,
23295 "allocating IDC list of node-table items", NULL);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023296 goto internal_error;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023297 }
23298 parBind->sizeNodes = 1;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023299 } else if (parBind->nbNodes >= parBind->sizeNodes) {
Kasimier T. Buchcikb34ad1b2005-03-21 20:10:31 +000023300 parBind->sizeNodes *= 2;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023301 parBind->nodeTable = (xmlSchemaPSVIIDCNodePtr *)
23302 xmlRealloc(parBind->nodeTable, parBind->sizeNodes *
23303 sizeof(xmlSchemaPSVIIDCNodePtr));
23304 if (parBind->nodeTable == NULL) {
23305 xmlSchemaVErrMemory(NULL,
23306 "re-allocating IDC list of node-table items", NULL);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023307 goto internal_error;
Kasimier T. Buchcik132ba5f2005-11-28 12:32:24 +000023308 }
23309 }
23310 parNodes = parBind->nodeTable;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023311 /*
23312 * Append the new node-table entry to the 'new node-table
23313 * entries' section.
23314 */
Kasimier T. Buchcik132ba5f2005-11-28 12:32:24 +000023315 parNodes[parBind->nbNodes++] = node;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023316 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023317
23318 }
23319
23320 }
23321 } else {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023322 /*
23323 * No binding for the IDC was found: create a new one and
23324 * copy all node-tables.
23325 */
23326 parBind = xmlSchemaIDCNewBinding(bind->definition);
23327 if (parBind == NULL)
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023328 goto internal_error;
23329
23330 /*
23331 * TODO: Hmm, how to optimize the initial number of
23332 * allocated entries?
23333 */
23334 if (bind->nbNodes != 0) {
23335 /*
23336 * Add all IDC node-table entries.
23337 */
23338 if (! vctxt->psviExposeIDCNodeTables) {
23339 /*
23340 * Just move the entries.
23341 * NOTE: this is quite save here, since
23342 * all the keyref lookups have already been
23343 * performed.
23344 */
23345 parBind->nodeTable = bind->nodeTable;
23346 bind->nodeTable = NULL;
23347 parBind->sizeNodes = bind->sizeNodes;
23348 bind->sizeNodes = 0;
23349 parBind->nbNodes = bind->nbNodes;
23350 bind->nbNodes = 0;
23351 } else {
23352 /*
23353 * Copy the entries.
23354 */
23355 parBind->nodeTable = (xmlSchemaPSVIIDCNodePtr *)
23356 xmlMalloc(bind->nbNodes *
23357 sizeof(xmlSchemaPSVIIDCNodePtr));
23358 if (parBind->nodeTable == NULL) {
23359 xmlSchemaVErrMemory(NULL,
23360 "allocating an array of IDC node-table "
23361 "items", NULL);
23362 xmlSchemaIDCFreeBinding(parBind);
23363 goto internal_error;
23364 }
23365 parBind->sizeNodes = bind->nbNodes;
23366 parBind->nbNodes = bind->nbNodes;
23367 memcpy(parBind->nodeTable, bind->nodeTable,
23368 bind->nbNodes * sizeof(xmlSchemaPSVIIDCNodePtr));
23369 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023370 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023371 if (bind->dupls) {
23372 /*
23373 * Move the duplicates.
23374 */
23375 if (parBind->dupls != NULL)
23376 xmlSchemaItemListFree(parBind->dupls);
23377 parBind->dupls = bind->dupls;
23378 bind->dupls = NULL;
23379 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023380 if (*parTable == NULL)
23381 *parTable = parBind;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023382 else {
23383 parBind->next = *parTable;
23384 *parTable = parBind;
23385 }
23386 }
23387
23388next_binding:
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023389 bind = bind->next;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023390 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023391 return (0);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023392
23393internal_error:
23394 return(-1);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023395}
23396
23397/**
23398 * xmlSchemaCheckCVCIDCKeyRef:
23399 * @vctxt: the WXS validation context
23400 * @elemDecl: the element declaration
23401 *
23402 * Check the cvc-idc-keyref constraints.
23403 */
23404static int
23405xmlSchemaCheckCVCIDCKeyRef(xmlSchemaValidCtxtPtr vctxt)
23406{
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023407 xmlSchemaIDCMatcherPtr matcher;
23408 xmlSchemaPSVIIDCBindingPtr bind;
23409
23410 matcher = vctxt->inode->idcMatchers;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023411 /*
23412 * Find a keyref.
23413 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023414 while (matcher != NULL) {
23415 if ((matcher->idcType == XML_SCHEMA_TYPE_IDC_KEYREF) &&
23416 matcher->targets &&
23417 matcher->targets->nbItems)
23418 {
23419 int i, j, k, res, nbFields, hasDupls;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023420 xmlSchemaPSVIIDCKeyPtr *refKeys, *keys;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023421 xmlSchemaPSVIIDCNodePtr refNode = NULL;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023422
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023423 nbFields = matcher->aidc->def->nbFields;
23424
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023425 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023426 * Find the IDC node-table for the referenced IDC key/unique.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023427 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023428 bind = vctxt->inode->idcTable;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023429 while (bind != NULL) {
23430 if ((xmlSchemaIDCPtr) matcher->aidc->def->ref->item ==
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023431 bind->definition)
23432 break;
23433 bind = bind->next;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023434 }
23435 hasDupls = (bind && bind->dupls && bind->dupls->nbItems) ? 1 : 0;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023436 /*
23437 * Search for a matching key-sequences.
23438 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023439 for (i = 0; i < matcher->targets->nbItems; i++) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023440 res = 0;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023441 refNode = matcher->targets->items[i];
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023442 if (bind != NULL) {
23443 refKeys = refNode->keys;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023444 for (j = 0; j < bind->nbNodes; j++) {
23445 keys = bind->nodeTable[j]->keys;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023446 for (k = 0; k < nbFields; k++) {
23447 res = xmlSchemaAreValuesEqual(keys[k]->val,
23448 refKeys[k]->val);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023449 if (res == 0)
23450 break;
23451 else if (res == -1) {
23452 return (-1);
23453 }
23454 }
23455 if (res == 1) {
23456 /*
23457 * Match found.
23458 */
23459 break;
23460 }
23461 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023462 if ((res == 0) && hasDupls) {
23463 /*
23464 * Search in duplicates
23465 */
23466 for (j = 0; j < bind->dupls->nbItems; j++) {
23467 keys = ((xmlSchemaPSVIIDCNodePtr)
23468 bind->dupls->items[j])->keys;
23469 for (k = 0; k < nbFields; k++) {
23470 res = xmlSchemaAreValuesEqual(keys[k]->val,
23471 refKeys[k]->val);
23472 if (res == 0)
23473 break;
23474 else if (res == -1) {
23475 return (-1);
23476 }
23477 }
23478 if (res == 1) {
23479 /*
23480 * Match in duplicates found.
23481 */
23482 xmlChar *str = NULL, *strB = NULL;
23483 xmlSchemaKeyrefErr(vctxt,
23484 XML_SCHEMAV_CVC_IDC, refNode,
23485 (xmlSchemaTypePtr) matcher->aidc->def,
23486 "More than one match found for "
23487 "key-sequence %s of keyref '%s'",
23488 xmlSchemaFormatIDCKeySequence(vctxt, &str,
23489 refNode->keys, nbFields),
23490 xmlSchemaGetComponentQName(&strB,
23491 matcher->aidc->def));
23492 FREE_AND_NULL(str);
23493 FREE_AND_NULL(strB);
23494 break;
23495 }
23496 }
23497 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023498 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023499
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023500 if (res == 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023501 xmlChar *str = NULL, *strB = NULL;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023502 xmlSchemaKeyrefErr(vctxt,
23503 XML_SCHEMAV_CVC_IDC, refNode,
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023504 (xmlSchemaTypePtr) matcher->aidc->def,
23505 "No match found for key-sequence %s of keyref '%s'",
Kasimier T. Buchcikc872afb2005-04-18 10:57:04 +000023506 xmlSchemaFormatIDCKeySequence(vctxt, &str,
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023507 refNode->keys, nbFields),
23508 xmlSchemaGetComponentQName(&strB, matcher->aidc->def));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023509 FREE_AND_NULL(str);
23510 FREE_AND_NULL(strB);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023511 }
23512 }
23513 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023514 matcher = matcher->next;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023515 }
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023516 /* TODO: Return an error if any error encountered. */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023517 return (0);
23518}
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023519
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023520/************************************************************************
23521 * *
23522 * XML Reader validation code *
23523 * *
23524 ************************************************************************/
23525
23526static xmlSchemaAttrInfoPtr
23527xmlSchemaGetFreshAttrInfo(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023528{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023529 xmlSchemaAttrInfoPtr iattr;
23530 /*
23531 * Grow/create list of attribute infos.
23532 */
23533 if (vctxt->attrInfos == NULL) {
23534 vctxt->attrInfos = (xmlSchemaAttrInfoPtr *)
23535 xmlMalloc(sizeof(xmlSchemaAttrInfoPtr));
23536 vctxt->sizeAttrInfos = 1;
23537 if (vctxt->attrInfos == NULL) {
23538 xmlSchemaVErrMemory(vctxt,
23539 "allocating attribute info list", NULL);
23540 return (NULL);
23541 }
23542 } else if (vctxt->sizeAttrInfos <= vctxt->nbAttrInfos) {
23543 vctxt->sizeAttrInfos++;
23544 vctxt->attrInfos = (xmlSchemaAttrInfoPtr *)
23545 xmlRealloc(vctxt->attrInfos,
23546 vctxt->sizeAttrInfos * sizeof(xmlSchemaAttrInfoPtr));
23547 if (vctxt->attrInfos == NULL) {
23548 xmlSchemaVErrMemory(vctxt,
23549 "re-allocating attribute info list", NULL);
23550 return (NULL);
23551 }
23552 } else {
23553 iattr = vctxt->attrInfos[vctxt->nbAttrInfos++];
23554 if (iattr->localName != NULL) {
23555 VERROR_INT("xmlSchemaGetFreshAttrInfo",
23556 "attr info not cleared");
23557 return (NULL);
23558 }
23559 iattr->nodeType = XML_ATTRIBUTE_NODE;
23560 return (iattr);
23561 }
23562 /*
23563 * Create an attribute info.
23564 */
23565 iattr = (xmlSchemaAttrInfoPtr)
23566 xmlMalloc(sizeof(xmlSchemaAttrInfo));
23567 if (iattr == NULL) {
23568 xmlSchemaVErrMemory(vctxt, "creating new attribute info", NULL);
23569 return (NULL);
23570 }
23571 memset(iattr, 0, sizeof(xmlSchemaAttrInfo));
23572 iattr->nodeType = XML_ATTRIBUTE_NODE;
23573 vctxt->attrInfos[vctxt->nbAttrInfos++] = iattr;
23574
23575 return (iattr);
23576}
23577
23578static int
23579xmlSchemaValidatorPushAttribute(xmlSchemaValidCtxtPtr vctxt,
23580 xmlNodePtr attrNode,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023581 int nodeLine,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023582 const xmlChar *localName,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023583 const xmlChar *nsName,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023584 int ownedNames,
23585 xmlChar *value,
23586 int ownedValue)
23587{
23588 xmlSchemaAttrInfoPtr attr;
23589
23590 attr = xmlSchemaGetFreshAttrInfo(vctxt);
23591 if (attr == NULL) {
23592 VERROR_INT("xmlSchemaPushAttribute",
23593 "calling xmlSchemaGetFreshAttrInfo()");
23594 return (-1);
23595 }
23596 attr->node = attrNode;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000023597 attr->nodeLine = nodeLine;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023598 attr->state = XML_SCHEMAS_ATTR_UNKNOWN;
23599 attr->localName = localName;
23600 attr->nsName = nsName;
23601 if (ownedNames)
23602 attr->flags |= XML_SCHEMA_NODE_INFO_FLAG_OWNED_NAMES;
23603 /*
23604 * Evaluate if it's an XSI attribute.
23605 */
23606 if (nsName != NULL) {
23607 if (xmlStrEqual(localName, BAD_CAST "nil")) {
23608 if (xmlStrEqual(attr->nsName, xmlSchemaInstanceNs)) {
23609 attr->metaType = XML_SCHEMA_ATTR_INFO_META_XSI_NIL;
23610 }
23611 } else if (xmlStrEqual(localName, BAD_CAST "type")) {
23612 if (xmlStrEqual(attr->nsName, xmlSchemaInstanceNs)) {
23613 attr->metaType = XML_SCHEMA_ATTR_INFO_META_XSI_TYPE;
23614 }
23615 } else if (xmlStrEqual(localName, BAD_CAST "schemaLocation")) {
23616 if (xmlStrEqual(attr->nsName, xmlSchemaInstanceNs)) {
23617 attr->metaType = XML_SCHEMA_ATTR_INFO_META_XSI_SCHEMA_LOC;
23618 }
23619 } else if (xmlStrEqual(localName, BAD_CAST "noNamespaceSchemaLocation")) {
23620 if (xmlStrEqual(attr->nsName, xmlSchemaInstanceNs)) {
23621 attr->metaType = XML_SCHEMA_ATTR_INFO_META_XSI_NO_NS_SCHEMA_LOC;
23622 }
23623 } else if (xmlStrEqual(attr->nsName, xmlNamespaceNs)) {
23624 attr->metaType = XML_SCHEMA_ATTR_INFO_META_XMLNS;
23625 }
23626 }
23627 attr->value = value;
23628 if (ownedValue)
23629 attr->flags |= XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES;
23630 if (attr->metaType != 0)
23631 attr->state = XML_SCHEMAS_ATTR_META;
23632 return (0);
23633}
23634
23635static void
23636xmlSchemaClearElemInfo(xmlSchemaNodeInfoPtr ielem)
23637{
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023638 ielem->hasKeyrefs = 0;
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000023639 ielem->appliedXPath = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023640 if (ielem->flags & XML_SCHEMA_NODE_INFO_FLAG_OWNED_NAMES) {
23641 FREE_AND_NULL(ielem->localName);
23642 FREE_AND_NULL(ielem->nsName);
23643 } else {
23644 ielem->localName = NULL;
23645 ielem->nsName = NULL;
23646 }
23647 if (ielem->flags & XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES) {
23648 FREE_AND_NULL(ielem->value);
23649 } else {
23650 ielem->value = NULL;
23651 }
23652 if (ielem->val != NULL) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023653 /*
23654 * PSVI TODO: Be careful not to free it when the value is
23655 * exposed via PSVI.
23656 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023657 xmlSchemaFreeValue(ielem->val);
23658 ielem->val = NULL;
23659 }
23660 if (ielem->idcMatchers != NULL) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023661 /*
23662 * URGENT OPTIMIZE TODO: Use a pool of IDC matchers.
23663 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023664 xmlSchemaIDCFreeMatcherList(ielem->idcMatchers);
23665 ielem->idcMatchers = NULL;
23666 }
23667 if (ielem->idcTable != NULL) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000023668 /*
23669 * OPTIMIZE TODO: Use a pool of IDC tables??.
23670 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023671 xmlSchemaIDCFreeIDCTable(ielem->idcTable);
23672 ielem->idcTable = NULL;
23673 }
23674 if (ielem->regexCtxt != NULL) {
23675 xmlRegFreeExecCtxt(ielem->regexCtxt);
23676 ielem->regexCtxt = NULL;
23677 }
23678 if (ielem->nsBindings != NULL) {
23679 xmlFree((xmlChar **)ielem->nsBindings);
23680 ielem->nsBindings = NULL;
23681 ielem->nbNsBindings = 0;
23682 ielem->sizeNsBindings = 0;
23683 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023684}
23685
23686/**
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023687 * xmlSchemaGetFreshElemInfo:
23688 * @vctxt: the schema validation context
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023689 *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023690 * Creates/reuses and initializes the element info item for
23691 * the currect tree depth.
23692 *
23693 * Returns the element info item or NULL on API or internal errors.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023694 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023695static xmlSchemaNodeInfoPtr
23696xmlSchemaGetFreshElemInfo(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023697{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023698 xmlSchemaNodeInfoPtr info = NULL;
23699
23700 if (vctxt->depth > vctxt->sizeElemInfos) {
23701 VERROR_INT("xmlSchemaGetFreshElemInfo",
23702 "inconsistent depth encountered");
23703 return (NULL);
23704 }
23705 if (vctxt->elemInfos == NULL) {
23706 vctxt->elemInfos = (xmlSchemaNodeInfoPtr *)
23707 xmlMalloc(10 * sizeof(xmlSchemaNodeInfoPtr));
23708 if (vctxt->elemInfos == NULL) {
23709 xmlSchemaVErrMemory(vctxt,
23710 "allocating the element info array", NULL);
23711 return (NULL);
23712 }
23713 memset(vctxt->elemInfos, 0, 10 * sizeof(xmlSchemaNodeInfoPtr));
23714 vctxt->sizeElemInfos = 10;
23715 } else if (vctxt->sizeElemInfos <= vctxt->depth) {
23716 int i = vctxt->sizeElemInfos;
23717
23718 vctxt->sizeElemInfos *= 2;
23719 vctxt->elemInfos = (xmlSchemaNodeInfoPtr *)
23720 xmlRealloc(vctxt->elemInfos, vctxt->sizeElemInfos *
23721 sizeof(xmlSchemaNodeInfoPtr));
23722 if (vctxt->elemInfos == NULL) {
23723 xmlSchemaVErrMemory(vctxt,
23724 "re-allocating the element info array", NULL);
23725 return (NULL);
23726 }
23727 /*
23728 * We need the new memory to be NULLed.
23729 * TODO: Use memset instead?
23730 */
23731 for (; i < vctxt->sizeElemInfos; i++)
23732 vctxt->elemInfos[i] = NULL;
23733 } else
23734 info = vctxt->elemInfos[vctxt->depth];
23735
23736 if (info == NULL) {
23737 info = (xmlSchemaNodeInfoPtr)
23738 xmlMalloc(sizeof(xmlSchemaNodeInfo));
23739 if (info == NULL) {
23740 xmlSchemaVErrMemory(vctxt,
23741 "allocating an element info", NULL);
23742 return (NULL);
23743 }
23744 vctxt->elemInfos[vctxt->depth] = info;
23745 } else {
23746 if (info->localName != NULL) {
23747 VERROR_INT("xmlSchemaGetFreshElemInfo",
23748 "elem info has not been cleared");
23749 return (NULL);
23750 }
23751 }
23752 memset(info, 0, sizeof(xmlSchemaNodeInfo));
23753 info->nodeType = XML_ELEMENT_NODE;
23754 info->depth = vctxt->depth;
23755
23756 return (info);
23757}
23758
23759#define ACTIVATE_ATTRIBUTE(item) vctxt->inode = (xmlSchemaNodeInfoPtr) item;
23760#define ACTIVATE_ELEM vctxt->inode = vctxt->elemInfos[vctxt->depth];
23761#define ACTIVATE_PARENT_ELEM vctxt->inode = vctxt->elemInfos[vctxt->depth -1];
23762
23763static int
23764xmlSchemaValidateFacets(xmlSchemaAbstractCtxtPtr actxt,
23765 xmlNodePtr node,
23766 xmlSchemaTypePtr type,
23767 xmlSchemaValType valType,
23768 const xmlChar * value,
23769 xmlSchemaValPtr val,
23770 unsigned long length,
23771 int fireErrors)
23772{
23773 int ret, error = 0;
23774
23775 xmlSchemaTypePtr tmpType;
23776 xmlSchemaFacetLinkPtr facetLink;
23777 xmlSchemaFacetPtr facet;
23778 unsigned long len = 0;
23779 xmlSchemaWhitespaceValueType ws;
23780
23781 /*
23782 * In Libxml2, derived built-in types have currently no explicit facets.
23783 */
23784 if (type->type == XML_SCHEMA_TYPE_BASIC)
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000023785 return (0);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023786
23787 /*
23788 * NOTE: Do not jump away, if the facetSet of the given type is
23789 * empty: until now, "pattern" and "enumeration" facets of the
23790 * *base types* need to be checked as well.
23791 */
23792 if (type->facetSet == NULL)
23793 goto pattern_and_enum;
23794
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000023795 if (! WXS_IS_ATOMIC(type)) {
23796 if (WXS_IS_LIST(type))
23797 goto WXS_IS_LIST;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023798 else
23799 goto pattern_and_enum;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023800 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023801 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023802 * Whitespace handling is only of importance for string-based
23803 * types.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023804 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023805 tmpType = xmlSchemaGetPrimitiveType(type);
23806 if ((tmpType->builtInType == XML_SCHEMAS_STRING) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000023807 WXS_IS_ANY_SIMPLE_TYPE(tmpType)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023808 ws = xmlSchemaGetWhiteSpaceFacetValue(type);
23809 } else
23810 ws = XML_SCHEMA_WHITESPACE_COLLAPSE;
23811 /*
23812 * If the value was not computed (for string or
23813 * anySimpleType based types), then use the provided
23814 * type.
23815 */
23816 if (val == NULL)
23817 valType = valType;
23818 else
23819 valType = xmlSchemaGetValType(val);
23820
23821 ret = 0;
23822 for (facetLink = type->facetSet; facetLink != NULL;
23823 facetLink = facetLink->next) {
23824 /*
23825 * Skip the pattern "whiteSpace": it is used to
23826 * format the character content beforehand.
23827 */
23828 switch (facetLink->facet->type) {
23829 case XML_SCHEMA_FACET_WHITESPACE:
23830 case XML_SCHEMA_FACET_PATTERN:
23831 case XML_SCHEMA_FACET_ENUMERATION:
23832 continue;
23833 case XML_SCHEMA_FACET_LENGTH:
23834 case XML_SCHEMA_FACET_MINLENGTH:
23835 case XML_SCHEMA_FACET_MAXLENGTH:
23836 ret = xmlSchemaValidateLengthFacetWhtsp(facetLink->facet,
23837 valType, value, val, &len, ws);
23838 break;
23839 default:
23840 ret = xmlSchemaValidateFacetWhtsp(facetLink->facet, ws,
23841 valType, value, val, ws);
23842 break;
23843 }
23844 if (ret < 0) {
23845 AERROR_INT("xmlSchemaValidateFacets",
23846 "validating against a atomic type facet");
23847 return (-1);
23848 } else if (ret > 0) {
23849 if (fireErrors)
23850 xmlSchemaFacetErr(actxt, ret, node,
23851 value, len, type, facetLink->facet, NULL, NULL, NULL);
23852 else
23853 return (ret);
23854 if (error == 0)
23855 error = ret;
23856 }
23857 ret = 0;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000023858 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023859
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000023860WXS_IS_LIST:
23861 if (! WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023862 goto pattern_and_enum;
23863 /*
23864 * "length", "minLength" and "maxLength" of list types.
23865 */
23866 ret = 0;
23867 for (facetLink = type->facetSet; facetLink != NULL;
23868 facetLink = facetLink->next) {
23869
23870 switch (facetLink->facet->type) {
23871 case XML_SCHEMA_FACET_LENGTH:
23872 case XML_SCHEMA_FACET_MINLENGTH:
23873 case XML_SCHEMA_FACET_MAXLENGTH:
23874 ret = xmlSchemaValidateListSimpleTypeFacet(facetLink->facet,
23875 value, length, NULL);
23876 break;
23877 default:
23878 continue;
23879 }
23880 if (ret < 0) {
23881 AERROR_INT("xmlSchemaValidateFacets",
23882 "validating against a list type facet");
23883 return (-1);
23884 } else if (ret > 0) {
23885 if (fireErrors)
23886 xmlSchemaFacetErr(actxt, ret, node,
23887 value, length, type, facetLink->facet, NULL, NULL, NULL);
23888 else
23889 return (ret);
23890 if (error == 0)
23891 error = ret;
23892 }
23893 ret = 0;
23894 }
23895
23896pattern_and_enum:
23897 if (error >= 0) {
23898 int found = 0;
23899 /*
23900 * Process enumerations. Facet values are in the value space
23901 * of the defining type's base type. This seems to be a bug in the
23902 * XML Schema 1.0 spec. Use the whitespace type of the base type.
23903 * Only the first set of enumerations in the ancestor-or-self axis
23904 * is used for validation.
23905 */
23906 ret = 0;
23907 tmpType = type;
23908 do {
23909 for (facet = tmpType->facets; facet != NULL; facet = facet->next) {
23910 if (facet->type != XML_SCHEMA_FACET_ENUMERATION)
23911 continue;
23912 found = 1;
23913 ret = xmlSchemaAreValuesEqual(facet->val, val);
23914 if (ret == 1)
23915 break;
23916 else if (ret < 0) {
23917 AERROR_INT("xmlSchemaValidateFacets",
23918 "validating against an enumeration facet");
23919 return (-1);
23920 }
23921 }
23922 if (ret != 0)
23923 break;
Kasimier T. Buchcikb63d2fa2006-04-19 11:20:49 +000023924 /*
23925 * Break on the first set of enumerations. Any additional
23926 * enumerations which might be existent on the ancestors
23927 * of the current type are restricted by this set; thus
23928 * *must* *not* be taken into account.
23929 */
23930 if (found)
23931 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000023932 tmpType = tmpType->baseType;
23933 } while ((tmpType != NULL) &&
23934 (tmpType->type != XML_SCHEMA_TYPE_BASIC));
23935 if (found && (ret == 0)) {
23936 ret = XML_SCHEMAV_CVC_ENUMERATION_VALID;
23937 if (fireErrors) {
23938 xmlSchemaFacetErr(actxt, ret, node,
23939 value, 0, type, NULL, NULL, NULL, NULL);
23940 } else
23941 return (ret);
23942 if (error == 0)
23943 error = ret;
23944 }
23945 }
23946
23947 if (error >= 0) {
23948 int found;
23949 /*
23950 * Process patters. Pattern facets are ORed at type level
23951 * and ANDed if derived. Walk the base type axis.
23952 */
23953 tmpType = type;
23954 facet = NULL;
23955 do {
23956 found = 0;
23957 for (facetLink = tmpType->facetSet; facetLink != NULL;
23958 facetLink = facetLink->next) {
23959 if (facetLink->facet->type != XML_SCHEMA_FACET_PATTERN)
23960 continue;
23961 found = 1;
23962 /*
23963 * NOTE that for patterns, @value needs to be the
23964 * normalized vaule.
23965 */
23966 ret = xmlRegexpExec(facetLink->facet->regexp, value);
23967 if (ret == 1)
23968 break;
23969 else if (ret < 0) {
23970 AERROR_INT("xmlSchemaValidateFacets",
23971 "validating against a pattern facet");
23972 return (-1);
23973 } else {
23974 /*
23975 * Save the last non-validating facet.
23976 */
23977 facet = facetLink->facet;
23978 }
23979 }
23980 if (found && (ret != 1)) {
23981 ret = XML_SCHEMAV_CVC_PATTERN_VALID;
23982 if (fireErrors) {
23983 xmlSchemaFacetErr(actxt, ret, node,
23984 value, 0, type, facet, NULL, NULL, NULL);
23985 } else
23986 return (ret);
23987 if (error == 0)
23988 error = ret;
23989 break;
23990 }
23991 tmpType = tmpType->baseType;
23992 } while ((tmpType != NULL) && (tmpType->type != XML_SCHEMA_TYPE_BASIC));
23993 }
23994
23995 return (error);
23996}
23997
23998static xmlChar *
23999xmlSchemaNormalizeValue(xmlSchemaTypePtr type,
24000 const xmlChar *value)
24001{
24002 switch (xmlSchemaGetWhiteSpaceFacetValue(type)) {
24003 case XML_SCHEMA_WHITESPACE_COLLAPSE:
24004 return (xmlSchemaCollapseString(value));
24005 case XML_SCHEMA_WHITESPACE_REPLACE:
24006 return (xmlSchemaWhiteSpaceReplace(value));
24007 default:
24008 return (NULL);
24009 }
24010}
24011
24012static int
24013xmlSchemaValidateQName(xmlSchemaValidCtxtPtr vctxt,
24014 const xmlChar *value,
24015 xmlSchemaValPtr *val,
24016 int valNeeded)
24017{
24018 int ret;
24019 const xmlChar *nsName;
24020 xmlChar *local, *prefix = NULL;
24021
24022 ret = xmlValidateQName(value, 1);
24023 if (ret != 0) {
24024 if (ret == -1) {
24025 VERROR_INT("xmlSchemaValidateQName",
24026 "calling xmlValidateQName()");
24027 return (-1);
24028 }
24029 return( XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1);
24030 }
24031 /*
24032 * NOTE: xmlSplitQName2 will always return a duplicated
24033 * strings.
24034 */
24035 local = xmlSplitQName2(value, &prefix);
24036 if (local == NULL)
24037 local = xmlStrdup(value);
24038 /*
24039 * OPTIMIZE TODO: Use flags for:
24040 * - is there any namespace binding?
24041 * - is there a default namespace?
24042 */
24043 nsName = xmlSchemaLookupNamespace(vctxt, prefix);
24044
24045 if (prefix != NULL) {
24046 xmlFree(prefix);
24047 /*
24048 * A namespace must be found if the prefix is
24049 * NOT NULL.
24050 */
24051 if (nsName == NULL) {
24052 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024053 xmlSchemaCustomErr(ACTXT_CAST vctxt, ret, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024054 WXS_BASIC_CAST xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024055 "The QName value '%s' has no "
24056 "corresponding namespace declaration in "
24057 "scope", value, NULL);
24058 if (local != NULL)
24059 xmlFree(local);
24060 return (ret);
24061 }
24062 }
24063 if (valNeeded && val) {
24064 if (nsName != NULL)
24065 *val = xmlSchemaNewQNameValue(
24066 BAD_CAST xmlStrdup(nsName), BAD_CAST local);
24067 else
24068 *val = xmlSchemaNewQNameValue(NULL,
24069 BAD_CAST local);
24070 } else
24071 xmlFree(local);
24072 return (0);
24073}
24074
24075/*
24076* cvc-simple-type
24077*/
24078static int
24079xmlSchemaVCheckCVCSimpleType(xmlSchemaAbstractCtxtPtr actxt,
24080 xmlNodePtr node,
24081 xmlSchemaTypePtr type,
24082 const xmlChar *value,
24083 xmlSchemaValPtr *retVal,
24084 int fireErrors,
24085 int normalize,
24086 int isNormalized)
24087{
24088 int ret = 0, valNeeded = (retVal) ? 1 : 0;
24089 xmlSchemaValPtr val = NULL;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000024090 /* xmlSchemaWhitespaceValueType ws; */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024091 xmlChar *normValue = NULL;
24092
24093#define NORMALIZE(atype) \
24094 if ((! isNormalized) && \
24095 (normalize || (type->flags & XML_SCHEMAS_TYPE_NORMVALUENEEDED))) { \
24096 normValue = xmlSchemaNormalizeValue(atype, value); \
24097 if (normValue != NULL) \
24098 value = normValue; \
24099 isNormalized = 1; \
24100 }
24101
24102 if ((retVal != NULL) && (*retVal != NULL)) {
24103 xmlSchemaFreeValue(*retVal);
24104 *retVal = NULL;
24105 }
24106 /*
24107 * 3.14.4 Simple Type Definition Validation Rules
24108 * Validation Rule: String Valid
24109 */
24110 /*
24111 * 1 It is schema-valid with respect to that definition as defined
24112 * by Datatype Valid in [XML Schemas: Datatypes].
24113 */
24114 /*
24115 * 2.1 If The definition is ENTITY or is validly derived from ENTITY given
24116 * the empty set, as defined in Type Derivation OK (Simple) (§3.14.6), then
24117 * the string must be a ·declared entity name·.
24118 */
24119 /*
24120 * 2.2 If The definition is ENTITIES or is validly derived from ENTITIES
24121 * given the empty set, as defined in Type Derivation OK (Simple) (§3.14.6),
24122 * then every whitespace-delimited substring of the string must be a ·declared
24123 * entity name·.
24124 */
24125 /*
24126 * 2.3 otherwise no further condition applies.
24127 */
24128 if ((! valNeeded) && (type->flags & XML_SCHEMAS_TYPE_FACETSNEEDVALUE))
24129 valNeeded = 1;
Kasimier T. Buchcik9c215eb2005-06-21 08:38:49 +000024130 if (value == NULL)
24131 value = BAD_CAST "";
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024132 if (WXS_IS_ANY_SIMPLE_TYPE(type) || WXS_IS_ATOMIC(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024133 xmlSchemaTypePtr biType; /* The built-in type. */
24134 /*
24135 * SPEC (1.2.1) "if {variety} is ·atomic· then the string must ·match·
24136 * a literal in the ·lexical space· of {base type definition}"
24137 */
24138 /*
24139 * Whitespace-normalize.
24140 */
24141 NORMALIZE(type);
24142 if (type->type != XML_SCHEMA_TYPE_BASIC) {
24143 /*
24144 * Get the built-in type.
24145 */
24146 biType = type->baseType;
24147 while ((biType != NULL) &&
24148 (biType->type != XML_SCHEMA_TYPE_BASIC))
24149 biType = biType->baseType;
24150
24151 if (biType == NULL) {
24152 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24153 "could not get the built-in type");
24154 goto internal_error;
24155 }
24156 } else
24157 biType = type;
24158 /*
24159 * NOTATIONs need to be processed here, since they need
24160 * to lookup in the hashtable of NOTATION declarations of the schema.
24161 */
24162 if (actxt->type == XML_SCHEMA_CTXT_VALIDATOR) {
24163 switch (biType->builtInType) {
24164 case XML_SCHEMAS_NOTATION:
24165 ret = xmlSchemaValidateNotation(
24166 (xmlSchemaValidCtxtPtr) actxt,
24167 ((xmlSchemaValidCtxtPtr) actxt)->schema,
24168 NULL, value, &val, valNeeded);
24169 break;
24170 case XML_SCHEMAS_QNAME:
24171 ret = xmlSchemaValidateQName((xmlSchemaValidCtxtPtr) actxt,
24172 value, &val, valNeeded);
24173 break;
24174 default:
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000024175 /* ws = xmlSchemaGetWhiteSpaceFacetValue(type); */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024176 if (valNeeded)
24177 ret = xmlSchemaValPredefTypeNodeNoNorm(biType,
24178 value, &val, NULL);
24179 else
24180 ret = xmlSchemaValPredefTypeNodeNoNorm(biType,
24181 value, NULL, NULL);
24182 break;
24183 }
24184 } else if (actxt->type == XML_SCHEMA_CTXT_PARSER) {
24185 switch (biType->builtInType) {
24186 case XML_SCHEMAS_NOTATION:
24187 ret = xmlSchemaValidateNotation(NULL,
24188 ((xmlSchemaParserCtxtPtr) actxt)->schema, node,
24189 value, &val, valNeeded);
24190 break;
24191 default:
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000024192 /* ws = xmlSchemaGetWhiteSpaceFacetValue(type); */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024193 if (valNeeded)
24194 ret = xmlSchemaValPredefTypeNodeNoNorm(biType,
24195 value, &val, node);
24196 else
24197 ret = xmlSchemaValPredefTypeNodeNoNorm(biType,
24198 value, NULL, node);
24199 break;
24200 }
24201 } else {
24202 /*
24203 * Validation via a public API is not implemented yet.
24204 */
24205 TODO
24206 goto internal_error;
24207 }
24208 if (ret != 0) {
24209 if (ret < 0) {
24210 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24211 "validating against a built-in type");
24212 goto internal_error;
24213 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024214 if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024215 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2;
24216 else
24217 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1;
24218 }
24219 if ((ret == 0) && (type->flags & XML_SCHEMAS_TYPE_HAS_FACETS)) {
24220 /*
24221 * Check facets.
24222 */
24223 ret = xmlSchemaValidateFacets(actxt, node, type,
24224 (xmlSchemaValType) biType->builtInType, value, val,
24225 0, fireErrors);
24226 if (ret != 0) {
24227 if (ret < 0) {
24228 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24229 "validating facets of atomic simple type");
24230 goto internal_error;
24231 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024232 if (WXS_IS_LIST(type))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024233 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2;
24234 else
24235 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1;
24236 }
24237 }
24238 if (fireErrors && (ret > 0))
24239 xmlSchemaSimpleTypeErr(actxt, ret, node, value, type, 1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024240 } else if (WXS_IS_LIST(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024241
24242 xmlSchemaTypePtr itemType;
24243 const xmlChar *cur, *end;
24244 xmlChar *tmpValue = NULL;
24245 unsigned long len = 0;
24246 xmlSchemaValPtr prevVal = NULL, curVal = NULL;
24247 /* 1.2.2 if {variety} is ·list· then the string must be a sequence
24248 * of white space separated tokens, each of which ·match·es a literal
24249 * in the ·lexical space· of {item type definition}
24250 */
24251 /*
24252 * Note that XML_SCHEMAS_TYPE_NORMVALUENEEDED will be set if
24253 * the list type has an enum or pattern facet.
24254 */
24255 NORMALIZE(type);
24256 /*
24257 * VAL TODO: Optimize validation of empty values.
24258 * VAL TODO: We do not have computed values for lists.
24259 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024260 itemType = WXS_LIST_ITEMTYPE(type);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024261 cur = value;
24262 do {
24263 while (IS_BLANK_CH(*cur))
24264 cur++;
24265 end = cur;
24266 while ((*end != 0) && (!(IS_BLANK_CH(*end))))
24267 end++;
24268 if (end == cur)
24269 break;
24270 tmpValue = xmlStrndup(cur, end - cur);
24271 len++;
24272
24273 if (valNeeded)
24274 ret = xmlSchemaVCheckCVCSimpleType(actxt, node, itemType,
24275 tmpValue, &curVal, fireErrors, 0, 1);
24276 else
24277 ret = xmlSchemaVCheckCVCSimpleType(actxt, node, itemType,
24278 tmpValue, NULL, fireErrors, 0, 1);
24279 FREE_AND_NULL(tmpValue);
24280 if (curVal != NULL) {
24281 /*
24282 * Add to list of computed values.
24283 */
24284 if (val == NULL)
24285 val = curVal;
24286 else
24287 xmlSchemaValueAppend(prevVal, curVal);
24288 prevVal = curVal;
24289 curVal = NULL;
24290 }
24291 if (ret != 0) {
24292 if (ret < 0) {
24293 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24294 "validating an item of list simple type");
24295 goto internal_error;
24296 }
24297 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2;
24298 break;
24299 }
24300 cur = end;
24301 } while (*cur != 0);
24302 FREE_AND_NULL(tmpValue);
24303 if ((ret == 0) && (type->flags & XML_SCHEMAS_TYPE_HAS_FACETS)) {
24304 /*
24305 * Apply facets (pattern, enumeration).
24306 */
24307 ret = xmlSchemaValidateFacets(actxt, node, type,
24308 XML_SCHEMAS_UNKNOWN, value, val,
24309 len, fireErrors);
24310 if (ret != 0) {
24311 if (ret < 0) {
24312 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24313 "validating facets of list simple type");
24314 goto internal_error;
24315 }
24316 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2;
24317 }
24318 }
24319 if (fireErrors && (ret > 0)) {
24320 /*
24321 * Report the normalized value.
24322 */
24323 normalize = 1;
24324 NORMALIZE(type);
24325 xmlSchemaSimpleTypeErr(actxt, ret, node, value, type, 1);
24326 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024327 } else if (WXS_IS_UNION(type)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024328 xmlSchemaTypeLinkPtr memberLink;
24329 /*
24330 * TODO: For all datatypes ·derived· by ·union· whiteSpace does
24331 * not apply directly; however, the normalization behavior of ·union·
24332 * types is controlled by the value of whiteSpace on that one of the
24333 * ·memberTypes· against which the ·union· is successfully validated.
24334 *
24335 * This means that the value is normalized by the first validating
24336 * member type, then the facets of the union type are applied. This
24337 * needs changing of the value!
24338 */
24339
24340 /*
24341 * 1.2.3 if {variety} is ·union· then the string must ·match· a
24342 * literal in the ·lexical space· of at least one member of
24343 * {member type definitions}
24344 */
24345 memberLink = xmlSchemaGetUnionSimpleTypeMemberTypes(type);
24346 if (memberLink == NULL) {
24347 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24348 "union simple type has no member types");
24349 goto internal_error;
24350 }
24351 /*
24352 * Always normalize union type values, since we currently
24353 * cannot store the whitespace information with the value
24354 * itself; otherwise a later value-comparison would be
24355 * not possible.
24356 */
24357 while (memberLink != NULL) {
24358 if (valNeeded)
24359 ret = xmlSchemaVCheckCVCSimpleType(actxt, node,
24360 memberLink->type, value, &val, 0, 1, 0);
24361 else
24362 ret = xmlSchemaVCheckCVCSimpleType(actxt, node,
24363 memberLink->type, value, NULL, 0, 1, 0);
24364 if (ret <= 0)
24365 break;
24366 memberLink = memberLink->next;
24367 }
24368 if (ret != 0) {
24369 if (ret < 0) {
24370 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24371 "validating members of union simple type");
24372 goto internal_error;
24373 }
24374 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3;
24375 }
24376 /*
24377 * Apply facets (pattern, enumeration).
24378 */
24379 if ((ret == 0) && (type->flags & XML_SCHEMAS_TYPE_HAS_FACETS)) {
24380 /*
24381 * The normalization behavior of ·union· types is controlled by
24382 * the value of whiteSpace on that one of the ·memberTypes·
24383 * against which the ·union· is successfully validated.
24384 */
24385 NORMALIZE(memberLink->type);
24386 ret = xmlSchemaValidateFacets(actxt, node, type,
24387 XML_SCHEMAS_UNKNOWN, value, val,
24388 0, fireErrors);
24389 if (ret != 0) {
24390 if (ret < 0) {
24391 AERROR_INT("xmlSchemaVCheckCVCSimpleType",
24392 "validating facets of union simple type");
24393 goto internal_error;
24394 }
24395 ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3;
24396 }
24397 }
24398 if (fireErrors && (ret > 0))
24399 xmlSchemaSimpleTypeErr(actxt, ret, node, value, type, 1);
24400 }
24401
24402 if (normValue != NULL)
24403 xmlFree(normValue);
24404 if (ret == 0) {
24405 if (retVal != NULL)
24406 *retVal = val;
24407 else if (val != NULL)
24408 xmlSchemaFreeValue(val);
24409 } else if (val != NULL)
24410 xmlSchemaFreeValue(val);
24411 return (ret);
24412internal_error:
24413 if (normValue != NULL)
24414 xmlFree(normValue);
24415 if (val != NULL)
24416 xmlSchemaFreeValue(val);
24417 return (-1);
24418}
24419
24420static int
24421xmlSchemaVExpandQName(xmlSchemaValidCtxtPtr vctxt,
24422 const xmlChar *value,
24423 const xmlChar **nsName,
24424 const xmlChar **localName)
24425{
24426 int ret = 0;
24427
24428 if ((nsName == NULL) || (localName == NULL))
24429 return (-1);
24430 *nsName = NULL;
24431 *localName = NULL;
24432
24433 ret = xmlValidateQName(value, 1);
24434 if (ret == -1)
24435 return (-1);
24436 if (ret > 0) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024437 xmlSchemaSimpleTypeErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024438 XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, NULL,
24439 value, xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), 1);
24440 return (1);
24441 }
24442 {
24443 xmlChar *local = NULL;
24444 xmlChar *prefix;
24445
24446 /*
24447 * NOTE: xmlSplitQName2 will return a duplicated
24448 * string.
24449 */
24450 local = xmlSplitQName2(value, &prefix);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024451 if (local == NULL)
24452 *localName = xmlDictLookup(vctxt->dict, value, -1);
24453 else {
24454 *localName = xmlDictLookup(vctxt->dict, local, -1);
24455 xmlFree(local);
24456 }
24457
24458 *nsName = xmlSchemaLookupNamespace(vctxt, prefix);
24459
24460 if (prefix != NULL) {
24461 xmlFree(prefix);
24462 /*
24463 * A namespace must be found if the prefix is NOT NULL.
24464 */
24465 if (*nsName == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024466 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024467 XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024468 WXS_BASIC_CAST xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024469 "The QName value '%s' has no "
24470 "corresponding namespace declaration in scope",
24471 value, NULL);
24472 return (2);
24473 }
24474 }
24475 }
24476 return (0);
24477}
24478
24479static int
24480xmlSchemaProcessXSIType(xmlSchemaValidCtxtPtr vctxt,
24481 xmlSchemaAttrInfoPtr iattr,
24482 xmlSchemaTypePtr *localType,
24483 xmlSchemaElementPtr elemDecl)
24484{
24485 int ret = 0;
24486 /*
24487 * cvc-elt (3.3.4) : (4)
24488 * AND
24489 * Schema-Validity Assessment (Element) (cvc-assess-elt)
24490 * (1.2.1.2.1) - (1.2.1.2.4)
24491 * Handle 'xsi:type'.
24492 */
24493 if (localType == NULL)
24494 return (-1);
24495 *localType = NULL;
24496 if (iattr == NULL)
24497 return (0);
24498 else {
24499 const xmlChar *nsName = NULL, *local = NULL;
24500 /*
24501 * TODO: We should report a *warning* that the type was overriden
24502 * by the instance.
24503 */
24504 ACTIVATE_ATTRIBUTE(iattr);
24505 /*
24506 * (cvc-elt) (3.3.4) : (4.1)
24507 * (cvc-assess-elt) (1.2.1.2.2)
24508 */
24509 ret = xmlSchemaVExpandQName(vctxt, iattr->value,
24510 &nsName, &local);
24511 if (ret != 0) {
24512 if (ret < 0) {
24513 VERROR_INT("xmlSchemaValidateElementByDeclaration",
24514 "calling xmlSchemaQNameExpand() to validate the "
24515 "attribute 'xsi:type'");
24516 goto internal_error;
24517 }
24518 goto exit;
24519 }
24520 /*
24521 * (cvc-elt) (3.3.4) : (4.2)
24522 * (cvc-assess-elt) (1.2.1.2.3)
24523 */
24524 *localType = xmlSchemaGetType(vctxt->schema, local, nsName);
24525 if (*localType == NULL) {
24526 xmlChar *str = NULL;
24527
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024528 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024529 XML_SCHEMAV_CVC_ELT_4_2, NULL,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024530 WXS_BASIC_CAST xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024531 "The QName value '%s' of the xsi:type attribute does not "
24532 "resolve to a type definition",
24533 xmlSchemaFormatQName(&str, nsName, local), NULL);
24534 FREE_AND_NULL(str);
24535 ret = vctxt->err;
24536 goto exit;
24537 }
24538 if (elemDecl != NULL) {
24539 int set = 0;
24540
24541 /*
24542 * SPEC cvc-elt (3.3.4) : (4.3) (Type Derivation OK)
24543 * "The ·local type definition· must be validly
24544 * derived from the {type definition} given the union of
24545 * the {disallowed substitutions} and the {type definition}'s
24546 * {prohibited substitutions}, as defined in
24547 * Type Derivation OK (Complex) (§3.4.6)
24548 * (if it is a complex type definition),
24549 * or given {disallowed substitutions} as defined in Type
24550 * Derivation OK (Simple) (§3.14.6) (if it is a simple type
24551 * definition)."
24552 *
24553 * {disallowed substitutions}: the "block" on the element decl.
24554 * {prohibited substitutions}: the "block" on the type def.
24555 */
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000024556 /*
24557 * OPTIMIZE TODO: We could map types already evaluated
24558 * to be validly derived from other types to avoid checking
24559 * this over and over for the same types.
24560 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024561 if ((elemDecl->flags & XML_SCHEMAS_ELEM_BLOCK_EXTENSION) ||
24562 (elemDecl->subtypes->flags &
24563 XML_SCHEMAS_TYPE_BLOCK_EXTENSION))
24564 set |= SUBSET_EXTENSION;
24565
24566 if ((elemDecl->flags & XML_SCHEMAS_ELEM_BLOCK_RESTRICTION) ||
24567 (elemDecl->subtypes->flags &
24568 XML_SCHEMAS_TYPE_BLOCK_RESTRICTION))
24569 set |= SUBSET_RESTRICTION;
24570
Kasimier T. Buchcikf326e772005-10-20 11:06:00 +000024571 /*
24572 * REMOVED and CHANGED since this produced a parser context
24573 * which adds to the string dict of the schema. So this would
24574 * change the schema and we don't want this. We don't need
24575 * the parser context anymore.
24576 *
24577 * if ((vctxt->pctxt == NULL) &&
24578 * (xmlSchemaCreatePCtxtOnVCtxt(vctxt) == -1))
24579 * return (-1);
24580 */
24581
24582 if (xmlSchemaCheckCOSDerivedOK(ACTXT_CAST vctxt, *localType,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024583 elemDecl->subtypes, set) != 0) {
24584 xmlChar *str = NULL;
24585
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024586 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024587 XML_SCHEMAV_CVC_ELT_4_3, NULL, NULL,
24588 "The type definition '%s', specified by xsi:type, is "
24589 "blocked or not validly derived from the type definition "
24590 "of the element declaration",
24591 xmlSchemaFormatQName(&str,
24592 (*localType)->targetNamespace,
24593 (*localType)->name),
24594 NULL);
24595 FREE_AND_NULL(str);
24596 ret = vctxt->err;
24597 *localType = NULL;
24598 }
24599 }
24600 }
24601exit:
24602 ACTIVATE_ELEM;
24603 return (ret);
24604internal_error:
24605 ACTIVATE_ELEM;
24606 return (-1);
24607}
24608
24609static int
24610xmlSchemaValidateElemDecl(xmlSchemaValidCtxtPtr vctxt)
24611{
24612 xmlSchemaElementPtr elemDecl = vctxt->inode->decl;
Daniel Veillard14b56432006-03-09 18:41:40 +000024613 xmlSchemaTypePtr actualType;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024614
24615 /*
24616 * cvc-elt (3.3.4) : 1
24617 */
24618 if (elemDecl == NULL) {
24619 VERROR(XML_SCHEMAV_CVC_ELT_1, NULL,
24620 "No matching declaration available");
24621 return (vctxt->err);
24622 }
Daniel Veillard14b56432006-03-09 18:41:40 +000024623 actualType = WXS_ELEM_TYPEDEF(elemDecl);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024624 /*
24625 * cvc-elt (3.3.4) : 2
24626 */
24627 if (elemDecl->flags & XML_SCHEMAS_ELEM_ABSTRACT) {
24628 VERROR(XML_SCHEMAV_CVC_ELT_2, NULL,
24629 "The element declaration is abstract");
24630 return (vctxt->err);
24631 }
24632 if (actualType == NULL) {
24633 VERROR(XML_SCHEMAV_CVC_TYPE_1, NULL,
24634 "The type definition is absent");
24635 return (XML_SCHEMAV_CVC_TYPE_1);
24636 }
24637 if (vctxt->nbAttrInfos != 0) {
24638 int ret;
24639 xmlSchemaAttrInfoPtr iattr;
24640 /*
24641 * cvc-elt (3.3.4) : 3
24642 * Handle 'xsi:nil'.
24643 */
24644 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
24645 XML_SCHEMA_ATTR_INFO_META_XSI_NIL);
24646 if (iattr) {
24647 ACTIVATE_ATTRIBUTE(iattr);
24648 /*
24649 * Validate the value.
24650 */
24651 ret = xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024652 ACTXT_CAST vctxt, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024653 xmlSchemaGetBuiltInType(XML_SCHEMAS_BOOLEAN),
24654 iattr->value, &(iattr->val), 1, 0, 0);
24655 ACTIVATE_ELEM;
24656 if (ret < 0) {
24657 VERROR_INT("xmlSchemaValidateElemDecl",
24658 "calling xmlSchemaVCheckCVCSimpleType() to "
24659 "validate the attribute 'xsi:nil'");
24660 return (-1);
24661 }
24662 if (ret == 0) {
24663 if ((elemDecl->flags & XML_SCHEMAS_ELEM_NILLABLE) == 0) {
24664 /*
24665 * cvc-elt (3.3.4) : 3.1
24666 */
24667 VERROR(XML_SCHEMAV_CVC_ELT_3_1, NULL,
24668 "The element is not 'nillable'");
24669 /* Does not return an error on purpose. */
24670 } else {
24671 if (xmlSchemaValueGetAsBoolean(iattr->val)) {
24672 /*
24673 * cvc-elt (3.3.4) : 3.2.2
24674 */
24675 if ((elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) &&
24676 (elemDecl->value != NULL)) {
24677 VERROR(XML_SCHEMAV_CVC_ELT_3_2_2, NULL,
24678 "The element cannot be 'nilled' because "
24679 "there is a fixed value constraint defined "
24680 "for it");
24681 /* Does not return an error on purpose. */
24682 } else
24683 vctxt->inode->flags |=
24684 XML_SCHEMA_ELEM_INFO_NILLED;
24685 }
24686 }
24687 }
24688 }
24689 /*
24690 * cvc-elt (3.3.4) : 4
24691 * Handle 'xsi:type'.
24692 */
24693 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
24694 XML_SCHEMA_ATTR_INFO_META_XSI_TYPE);
24695 if (iattr) {
24696 xmlSchemaTypePtr localType = NULL;
24697
24698 ret = xmlSchemaProcessXSIType(vctxt, iattr, &localType,
24699 elemDecl);
24700 if (ret != 0) {
24701 if (ret == -1) {
24702 VERROR_INT("xmlSchemaValidateElemDecl",
24703 "calling xmlSchemaProcessXSIType() to "
24704 "process the attribute 'xsi:type'");
24705 return (-1);
24706 }
24707 /* Does not return an error on purpose. */
24708 }
24709 if (localType != NULL) {
24710 vctxt->inode->flags |= XML_SCHEMA_ELEM_INFO_LOCAL_TYPE;
24711 actualType = localType;
24712 }
24713 }
24714 }
24715 /*
24716 * IDC: Register identity-constraint XPath matchers.
24717 */
24718 if ((elemDecl->idcs != NULL) &&
24719 (xmlSchemaIDCRegisterMatchers(vctxt, elemDecl) == -1))
24720 return (-1);
24721 /*
24722 * No actual type definition.
24723 */
24724 if (actualType == NULL) {
24725 VERROR(XML_SCHEMAV_CVC_TYPE_1, NULL,
24726 "The type definition is absent");
24727 return (XML_SCHEMAV_CVC_TYPE_1);
24728 }
24729 /*
24730 * Remember the actual type definition.
24731 */
24732 vctxt->inode->typeDef = actualType;
24733
24734 return (0);
24735}
24736
24737static int
24738xmlSchemaVAttributesSimple(xmlSchemaValidCtxtPtr vctxt)
24739{
24740 xmlSchemaAttrInfoPtr iattr;
24741 int ret = 0, i;
24742
24743 /*
24744 * SPEC cvc-type (3.1.1)
24745 * "The attributes of must be empty, excepting those whose namespace
24746 * name is identical to http://www.w3.org/2001/XMLSchema-instance and
24747 * whose local name is one of type, nil, schemaLocation or
24748 * noNamespaceSchemaLocation."
24749 */
24750 if (vctxt->nbAttrInfos == 0)
24751 return (0);
24752 for (i = 0; i < vctxt->nbAttrInfos; i++) {
24753 iattr = vctxt->attrInfos[i];
24754 if (! iattr->metaType) {
24755 ACTIVATE_ATTRIBUTE(iattr)
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000024756 xmlSchemaIllegalAttrErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024757 XML_SCHEMAV_CVC_TYPE_3_1_1, iattr, NULL);
24758 ret = XML_SCHEMAV_CVC_TYPE_3_1_1;
24759 }
24760 }
24761 ACTIVATE_ELEM
24762 return (ret);
24763}
24764
24765/*
24766* Cleanup currently used attribute infos.
24767*/
24768static void
24769xmlSchemaClearAttrInfos(xmlSchemaValidCtxtPtr vctxt)
24770{
24771 int i;
24772 xmlSchemaAttrInfoPtr attr;
24773
24774 if (vctxt->nbAttrInfos == 0)
24775 return;
24776 for (i = 0; i < vctxt->nbAttrInfos; i++) {
24777 attr = vctxt->attrInfos[i];
24778 if (attr->flags & XML_SCHEMA_NODE_INFO_FLAG_OWNED_NAMES) {
24779 if (attr->localName != NULL)
24780 xmlFree((xmlChar *) attr->localName);
24781 if (attr->nsName != NULL)
24782 xmlFree((xmlChar *) attr->nsName);
24783 }
24784 if (attr->flags & XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES) {
24785 if (attr->value != NULL)
24786 xmlFree((xmlChar *) attr->value);
24787 }
24788 if (attr->val != NULL) {
24789 xmlSchemaFreeValue(attr->val);
24790 attr->val = NULL;
24791 }
24792 memset(attr, 0, sizeof(xmlSchemaAttrInfo));
24793 }
24794 vctxt->nbAttrInfos = 0;
24795}
24796
24797/*
24798* 3.4.4 Complex Type Definition Validation Rules
24799* Element Locally Valid (Complex Type) (cvc-complex-type)
24800* 3.2.4 Attribute Declaration Validation Rules
24801* Validation Rule: Attribute Locally Valid (cvc-attribute)
24802* Attribute Locally Valid (Use) (cvc-au)
24803*
24804* Only "assessed" attribute information items will be visible to
24805* IDCs. I.e. not "lax" (without declaration) and "skip" wild attributes.
24806*/
24807static int
24808xmlSchemaVAttributesComplex(xmlSchemaValidCtxtPtr vctxt)
24809{
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024810 xmlSchemaTypePtr type = vctxt->inode->typeDef;
24811 xmlSchemaItemListPtr attrUseList;
24812 xmlSchemaAttributeUsePtr attrUse = NULL;
24813 xmlSchemaAttributePtr attrDecl = NULL;
24814 xmlSchemaAttrInfoPtr iattr, tmpiattr;
24815 int i, j, found, nbAttrs, nbUses;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024816 int xpathRes = 0, res, wildIDs = 0, fixed;
24817
24818 /*
24819 * SPEC (cvc-attribute)
24820 * (1) "The declaration must not be ·absent· (see Missing
24821 * Sub-components (§5.3) for how this can fail to be
24822 * the case)."
24823 * (2) "Its {type definition} must not be absent."
24824 *
24825 * NOTE (1) + (2): This is not handled here, since we currently do not
24826 * allow validation against schemas which have missing sub-components.
24827 *
24828 * SPEC (cvc-complex-type)
24829 * (3) "For each attribute information item in the element information
24830 * item's [attributes] excepting those whose [namespace name] is
24831 * identical to http://www.w3.org/2001/XMLSchema-instance and whose
24832 * [local name] is one of type, nil, schemaLocation or
24833 * noNamespaceSchemaLocation, the appropriate case among the following
24834 * must be true:
24835 *
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024836 */
24837 attrUseList = (xmlSchemaItemListPtr) type->attrUses;
24838 /*
24839 * @nbAttrs is the number of attributes present in the instance.
24840 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024841 nbAttrs = vctxt->nbAttrInfos;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024842 if (attrUseList != NULL)
24843 nbUses = attrUseList->nbItems;
24844 else
24845 nbUses = 0;
24846 for (i = 0; i < nbUses; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024847 found = 0;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024848 attrUse = attrUseList->items[i];
24849 attrDecl = WXS_ATTRUSE_DECL(attrUse);
24850 for (j = 0; j < nbAttrs; j++) {
24851 iattr = vctxt->attrInfos[j];
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024852 /*
24853 * SPEC (cvc-complex-type) (3)
24854 * Skip meta attributes.
24855 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024856 if (iattr->metaType)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024857 continue;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024858 if (iattr->localName[0] != attrDecl->name[0])
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024859 continue;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024860 if (!xmlStrEqual(iattr->localName, attrDecl->name))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024861 continue;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024862 if (!xmlStrEqual(iattr->nsName, attrDecl->targetNamespace))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024863 continue;
24864 found = 1;
24865 /*
24866 * SPEC (cvc-complex-type)
24867 * (3.1) "If there is among the {attribute uses} an attribute
24868 * use with an {attribute declaration} whose {name} matches
24869 * the attribute information item's [local name] and whose
24870 * {target namespace} is identical to the attribute information
24871 * item's [namespace name] (where an ·absent· {target namespace}
24872 * is taken to be identical to a [namespace name] with no value),
24873 * then the attribute information must be ·valid· with respect
24874 * to that attribute use as per Attribute Locally Valid (Use)
24875 * (§3.5.4). In this case the {attribute declaration} of that
24876 * attribute use is the ·context-determined declaration· for the
24877 * attribute information item with respect to Schema-Validity
24878 * Assessment (Attribute) (§3.2.4) and
24879 * Assessment Outcome (Attribute) (§3.2.5).
24880 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024881 iattr->state = XML_SCHEMAS_ATTR_ASSESSED;
24882 iattr->use = attrUse;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024883 /*
24884 * Context-determined declaration.
24885 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024886 iattr->decl = attrDecl;
24887 iattr->typeDef = attrDecl->subtypes;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024888 break;
24889 }
24890
24891 if (found)
24892 continue;
24893
24894 if (attrUse->occurs == XML_SCHEMAS_ATTR_USE_REQUIRED) {
24895 /*
24896 * Handle non-existent, required attributes.
24897 *
24898 * SPEC (cvc-complex-type)
24899 * (4) "The {attribute declaration} of each attribute use in
24900 * the {attribute uses} whose {required} is true matches one
24901 * of the attribute information items in the element information
24902 * item's [attributes] as per clause 3.1 above."
24903 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024904 tmpiattr = xmlSchemaGetFreshAttrInfo(vctxt);
24905 if (tmpiattr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024906 VERROR_INT(
24907 "xmlSchemaVAttributesComplex",
24908 "calling xmlSchemaGetFreshAttrInfo()");
24909 return (-1);
24910 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024911 tmpiattr->state = XML_SCHEMAS_ATTR_ERR_MISSING;
24912 tmpiattr->use = attrUse;
24913 tmpiattr->decl = attrDecl;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024914 } else if ((attrUse->occurs == XML_SCHEMAS_ATTR_USE_OPTIONAL) &&
24915 ((attrUse->defValue != NULL) ||
24916 (attrDecl->defValue != NULL))) {
24917 /*
24918 * Handle non-existent, optional, default/fixed attributes.
24919 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024920 tmpiattr = xmlSchemaGetFreshAttrInfo(vctxt);
24921 if (tmpiattr == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024922 VERROR_INT(
24923 "xmlSchemaVAttributesComplex",
24924 "calling xmlSchemaGetFreshAttrInfo()");
24925 return (-1);
24926 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024927 tmpiattr->state = XML_SCHEMAS_ATTR_DEFAULT;
24928 tmpiattr->use = attrUse;
24929 tmpiattr->decl = attrDecl;
24930 tmpiattr->typeDef = attrDecl->subtypes;
24931 tmpiattr->localName = attrDecl->name;
24932 tmpiattr->nsName = attrDecl->targetNamespace;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024933 }
24934 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024935
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024936 if (vctxt->nbAttrInfos == 0)
24937 return (0);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024938 nbUses = vctxt->nbAttrInfos;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024939 /*
24940 * Validate against the wildcard.
24941 */
24942 if (type->attributeWildcard != NULL) {
24943 /*
24944 * SPEC (cvc-complex-type)
24945 * (3.2.1) "There must be an {attribute wildcard}."
24946 */
24947 for (i = 0; i < nbAttrs; i++) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024948 iattr = vctxt->attrInfos[i];
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024949 /*
24950 * SPEC (cvc-complex-type) (3)
24951 * Skip meta attributes.
24952 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024953 if (iattr->state != XML_SCHEMAS_ATTR_UNKNOWN)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024954 continue;
24955 /*
24956 * SPEC (cvc-complex-type)
24957 * (3.2.2) "The attribute information item must be ·valid· with
24958 * respect to it as defined in Item Valid (Wildcard) (§3.10.4)."
24959 *
24960 * SPEC Item Valid (Wildcard) (cvc-wildcard)
24961 * "... its [namespace name] must be ·valid· with respect to
24962 * the wildcard constraint, as defined in Wildcard allows
24963 * Namespace Name (§3.10.4)."
24964 */
24965 if (xmlSchemaCheckCVCWildcardNamespace(type->attributeWildcard,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024966 iattr->nsName) == 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024967 /*
24968 * Handle processContents.
24969 *
24970 * SPEC (cvc-wildcard):
24971 * processContents | context-determined declaration:
24972 * "strict" "mustFind"
24973 * "lax" "none"
24974 * "skip" "skip"
24975 */
24976 if (type->attributeWildcard->processContents ==
24977 XML_SCHEMAS_ANY_SKIP) {
24978 /*
24979 * context-determined declaration = "skip"
24980 *
24981 * SPEC PSVI Assessment Outcome (Attribute)
24982 * [validity] = "notKnown"
24983 * [validation attempted] = "none"
24984 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024985 iattr->state = XML_SCHEMAS_ATTR_WILD_SKIP;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024986 continue;
24987 }
24988 /*
24989 * Find an attribute declaration.
24990 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000024991 iattr->decl = xmlSchemaGetAttributeDecl(vctxt->schema,
24992 iattr->localName, iattr->nsName);
24993 if (iattr->decl != NULL) {
24994 iattr->state = XML_SCHEMAS_ATTR_ASSESSED;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000024995 /*
24996 * SPEC (cvc-complex-type)
24997 * (5) "Let [Definition:] the wild IDs be the set of
24998 * all attribute information item to which clause 3.2
24999 * applied and whose ·validation· resulted in a
25000 * ·context-determined declaration· of mustFind or no
25001 * ·context-determined declaration· at all, and whose
25002 * [local name] and [namespace name] resolve (as
25003 * defined by QName resolution (Instance) (§3.15.4)) to
25004 * an attribute declaration whose {type definition} is
25005 * or is derived from ID. Then all of the following
25006 * must be true:"
25007 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025008 iattr->typeDef = WXS_ATTR_TYPEDEF(iattr->decl);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025009 if (xmlSchemaIsDerivedFromBuiltInType(
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025010 iattr->typeDef, XML_SCHEMAS_ID)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025011 /*
25012 * SPEC (5.1) "There must be no more than one
25013 * item in ·wild IDs·."
25014 */
25015 if (wildIDs != 0) {
25016 /* VAL TODO */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025017 iattr->state = XML_SCHEMAS_ATTR_ERR_WILD_DUPLICATE_ID;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025018 TODO
25019 continue;
25020 }
25021 wildIDs++;
25022 /*
25023 * SPEC (cvc-complex-type)
25024 * (5.2) "If ·wild IDs· is non-empty, there must not
25025 * be any attribute uses among the {attribute uses}
25026 * whose {attribute declaration}'s {type definition}
25027 * is or is derived from ID."
25028 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025029 for (j = 0; j < attrUseList->nbItems; j++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025030 if (xmlSchemaIsDerivedFromBuiltInType(
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025031 WXS_ATTRUSE_TYPEDEF(attrUseList->items[j]),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025032 XML_SCHEMAS_ID)) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025033 /* URGENT VAL TODO: implement */
25034 iattr->state = XML_SCHEMAS_ATTR_ERR_WILD_AND_USE_ID;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025035 TODO
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025036 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025037 }
25038 }
25039 }
25040 } else if (type->attributeWildcard->processContents ==
25041 XML_SCHEMAS_ANY_LAX) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025042 iattr->state = XML_SCHEMAS_ATTR_WILD_LAX_NO_DECL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025043 /*
25044 * SPEC PSVI Assessment Outcome (Attribute)
25045 * [validity] = "notKnown"
25046 * [validation attempted] = "none"
25047 */
25048 } else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025049 iattr->state = XML_SCHEMAS_ATTR_ERR_WILD_STRICT_NO_DECL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025050 }
25051 }
25052 }
25053 }
25054
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025055 if (vctxt->nbAttrInfos == 0)
25056 return (0);
25057
25058 /*
25059 * Validate values, create default attributes, evaluate IDCs.
25060 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025061 for (i = 0; i < vctxt->nbAttrInfos; i++) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025062 iattr = vctxt->attrInfos[i];
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025063 /*
25064 * VAL TODO: Note that we won't try to resolve IDCs to
25065 * "lax" and "skip" validated attributes. Check what to
25066 * do in this case.
25067 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025068 if ((iattr->state != XML_SCHEMAS_ATTR_ASSESSED) &&
25069 (iattr->state != XML_SCHEMAS_ATTR_DEFAULT))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025070 continue;
25071 /*
25072 * VAL TODO: What to do if the type definition is missing?
25073 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025074 if (iattr->typeDef == NULL) {
25075 iattr->state = XML_SCHEMAS_ATTR_ERR_NO_TYPE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025076 continue;
25077 }
25078
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025079 ACTIVATE_ATTRIBUTE(iattr);
Kasimier T. Buchcik828f6542005-06-09 11:23:39 +000025080 fixed = 0;
25081 xpathRes = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025082
25083 if (vctxt->xpathStates != NULL) {
25084 /*
25085 * Evaluate IDCs.
25086 */
25087 xpathRes = xmlSchemaXPathEvaluate(vctxt,
25088 XML_ATTRIBUTE_NODE);
25089 if (xpathRes == -1) {
25090 VERROR_INT("xmlSchemaVAttributesComplex",
25091 "calling xmlSchemaXPathEvaluate()");
25092 goto internal_error;
25093 }
25094 }
25095
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025096 if (iattr->state == XML_SCHEMAS_ATTR_DEFAULT) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025097 /*
25098 * Default/fixed attributes.
25099 */
25100 if (xpathRes) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025101 if (iattr->use->defValue != NULL) {
25102 iattr->value = (xmlChar *) iattr->use->defValue;
25103 iattr->val = iattr->use->defVal;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025104 } else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025105 iattr->value = (xmlChar *) iattr->decl->defValue;
25106 iattr->val = iattr->decl->defVal;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025107 }
25108 /*
25109 * IDCs will consume the precomputed default value,
25110 * so we need to clone it.
25111 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025112 if (iattr->val == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025113 VERROR_INT("xmlSchemaVAttributesComplex",
25114 "default/fixed value on an attribute use was "
25115 "not precomputed");
25116 goto internal_error;
25117 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025118 iattr->val = xmlSchemaCopyValue(iattr->val);
25119 if (iattr->val == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025120 VERROR_INT("xmlSchemaVAttributesComplex",
25121 "calling xmlSchemaCopyValue()");
25122 goto internal_error;
25123 }
25124 }
25125 /*
25126 * PSVI: Add the default attribute to the current element.
25127 * VAL TODO: Should we use the *normalized* value? This currently
25128 * uses the *initial* value.
25129 */
25130 if ((vctxt->options & XML_SCHEMA_VAL_VC_I_CREATE) &&
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025131 (iattr->node != NULL) && (iattr->node->doc != NULL)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025132 xmlChar *normValue;
25133 const xmlChar *value;
25134
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025135 value = iattr->value;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025136 /*
25137 * Normalize the value.
25138 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025139 normValue = xmlSchemaNormalizeValue(iattr->typeDef,
25140 iattr->value);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025141 if (normValue != NULL)
25142 value = BAD_CAST normValue;
25143
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025144 if (iattr->nsName == NULL) {
25145 if (xmlNewProp(iattr->node->parent,
25146 iattr->localName, value) == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025147 VERROR_INT("xmlSchemaVAttributesComplex",
25148 "callling xmlNewProp()");
25149 if (normValue != NULL)
25150 xmlFree(normValue);
25151 goto internal_error;
25152 }
25153 } else {
25154 xmlNsPtr ns;
25155
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025156 ns = xmlSearchNsByHref(iattr->node->doc,
25157 iattr->node->parent, iattr->nsName);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025158 if (ns == NULL) {
25159 xmlChar prefix[12];
25160 int counter = 0;
25161
25162 /*
25163 * Create a namespace declaration on the validation
25164 * root node if no namespace declaration is in scope.
25165 */
25166 do {
25167 snprintf((char *) prefix, 12, "p%d", counter++);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025168 ns = xmlSearchNs(iattr->node->doc,
25169 iattr->node->parent, BAD_CAST prefix);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025170 if (counter > 1000) {
25171 VERROR_INT(
25172 "xmlSchemaVAttributesComplex",
25173 "could not compute a ns prefix for a "
25174 "default/fixed attribute");
25175 if (normValue != NULL)
25176 xmlFree(normValue);
25177 goto internal_error;
25178 }
25179 } while (ns != NULL);
25180 ns = xmlNewNs(vctxt->validationRoot,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025181 iattr->nsName, BAD_CAST prefix);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025182 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025183 /*
25184 * TODO:
25185 * http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005JulSep/0406.html
25186 * If we have QNames: do we need to ensure there's a
25187 * prefix defined for the QName?
25188 */
25189 xmlNewNsProp(iattr->node->parent, ns,
25190 iattr->localName, value);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025191 }
25192 if (normValue != NULL)
25193 xmlFree(normValue);
25194 }
25195 /*
25196 * Go directly to IDC evaluation.
25197 */
25198 goto eval_idcs;
25199 }
25200 /*
25201 * Validate the value.
25202 */
25203 if (vctxt->value != NULL) {
25204 /*
25205 * Free last computed value; just for safety reasons.
25206 */
25207 xmlSchemaFreeValue(vctxt->value);
25208 vctxt->value = NULL;
25209 }
25210 /*
25211 * Note that the attribute *use* can be unavailable, if
25212 * the attribute was a wild attribute.
25213 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025214 if ((iattr->decl->flags & XML_SCHEMAS_ATTR_FIXED) ||
25215 ((iattr->use != NULL) &&
25216 (iattr->use->flags & XML_SCHEMAS_ATTR_FIXED)))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025217 fixed = 1;
25218 else
25219 fixed = 0;
25220 /*
25221 * SPEC (cvc-attribute)
25222 * (3) "The item's ·normalized value· must be locally ·valid·
25223 * with respect to that {type definition} as per
25224 * String Valid (§3.14.4)."
25225 *
25226 * VAL TODO: Do we already have the
25227 * "normalized attribute value" here?
25228 */
25229 if (xpathRes || fixed) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025230 iattr->flags |= XML_SCHEMA_NODE_INFO_VALUE_NEEDED;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025231 /*
25232 * Request a computed value.
25233 */
25234 res = xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025235 ACTXT_CAST vctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025236 iattr->node, iattr->typeDef, iattr->value, &(iattr->val),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025237 1, 1, 0);
25238 } else {
25239 res = xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025240 ACTXT_CAST vctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025241 iattr->node, iattr->typeDef, iattr->value, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025242 1, 0, 0);
25243 }
25244
25245 if (res != 0) {
25246 if (res == -1) {
25247 VERROR_INT("xmlSchemaVAttributesComplex",
25248 "calling xmlSchemaStreamValidateSimpleTypeValue()");
25249 goto internal_error;
25250 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025251 iattr->state = XML_SCHEMAS_ATTR_INVALID_VALUE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025252 /*
25253 * SPEC PSVI Assessment Outcome (Attribute)
25254 * [validity] = "invalid"
25255 */
25256 goto eval_idcs;
25257 }
25258
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025259 if (fixed) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025260 /*
25261 * SPEC Attribute Locally Valid (Use) (cvc-au)
25262 * "For an attribute information item to be·valid·
25263 * with respect to an attribute use its *normalized*
25264 * value· must match the *canonical* lexical
25265 * representation of the attribute use's {value
25266 * constraint}value, if it is present and fixed."
25267 *
25268 * VAL TODO: The requirement for the *canonical* value
25269 * will be removed in XML Schema 1.1.
25270 */
25271 /*
25272 * SPEC Attribute Locally Valid (cvc-attribute)
25273 * (4) "The item's *actual* value· must match the *value* of
25274 * the {value constraint}, if it is present and fixed."
25275 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025276 if (iattr->val == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025277 /* VAL TODO: A value was not precomputed. */
25278 TODO
25279 goto eval_idcs;
25280 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025281 if ((iattr->use != NULL) &&
25282 (iattr->use->defValue != NULL)) {
25283 if (iattr->use->defVal == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025284 /* VAL TODO: A default value was not precomputed. */
25285 TODO
25286 goto eval_idcs;
25287 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025288 iattr->vcValue = iattr->use->defValue;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025289 /*
25290 if (xmlSchemaCompareValuesWhtsp(attr->val,
25291 (xmlSchemaWhitespaceValueType) ws,
25292 attr->use->defVal,
25293 (xmlSchemaWhitespaceValueType) ws) != 0) {
25294 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025295 if (! xmlSchemaAreValuesEqual(iattr->val, iattr->use->defVal))
25296 iattr->state = XML_SCHEMAS_ATTR_ERR_FIXED_VALUE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025297 } else {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025298 if (iattr->decl->defVal == NULL) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025299 /* VAL TODO: A default value was not precomputed. */
25300 TODO
25301 goto eval_idcs;
25302 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025303 iattr->vcValue = iattr->decl->defValue;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025304 /*
25305 if (xmlSchemaCompareValuesWhtsp(attr->val,
25306 (xmlSchemaWhitespaceValueType) ws,
25307 attrDecl->defVal,
25308 (xmlSchemaWhitespaceValueType) ws) != 0) {
25309 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025310 if (! xmlSchemaAreValuesEqual(iattr->val, iattr->decl->defVal))
25311 iattr->state = XML_SCHEMAS_ATTR_ERR_FIXED_VALUE;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025312 }
25313 /*
25314 * [validity] = "valid"
25315 */
25316 }
25317eval_idcs:
25318 /*
25319 * Evaluate IDCs.
25320 */
25321 if (xpathRes) {
25322 if (xmlSchemaXPathProcessHistory(vctxt,
25323 vctxt->depth +1) == -1) {
25324 VERROR_INT("xmlSchemaVAttributesComplex",
25325 "calling xmlSchemaXPathEvaluate()");
25326 goto internal_error;
25327 }
Kasimier T. Buchcik800cbac2005-08-09 12:31:55 +000025328 } else if (vctxt->xpathStates != NULL)
25329 xmlSchemaXPathPop(vctxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025330 }
25331
25332 /*
25333 * Report errors.
25334 */
25335 for (i = 0; i < vctxt->nbAttrInfos; i++) {
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025336 iattr = vctxt->attrInfos[i];
25337 if ((iattr->state == XML_SCHEMAS_ATTR_META) ||
25338 (iattr->state == XML_SCHEMAS_ATTR_ASSESSED) ||
25339 (iattr->state == XML_SCHEMAS_ATTR_WILD_SKIP) ||
25340 (iattr->state == XML_SCHEMAS_ATTR_WILD_LAX_NO_DECL))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025341 continue;
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025342 ACTIVATE_ATTRIBUTE(iattr);
25343 switch (iattr->state) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025344 case XML_SCHEMAS_ATTR_ERR_MISSING: {
25345 xmlChar *str = NULL;
25346 ACTIVATE_ELEM;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025347 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025348 XML_SCHEMAV_CVC_COMPLEX_TYPE_4, NULL, NULL,
25349 "The attribute '%s' is required but missing",
25350 xmlSchemaFormatQName(&str,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025351 iattr->decl->targetNamespace,
25352 iattr->decl->name),
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025353 NULL);
25354 FREE_AND_NULL(str)
25355 break;
25356 }
25357 case XML_SCHEMAS_ATTR_ERR_NO_TYPE:
25358 VERROR(XML_SCHEMAV_CVC_ATTRIBUTE_2, NULL,
25359 "The type definition is absent");
25360 break;
25361 case XML_SCHEMAS_ATTR_ERR_FIXED_VALUE:
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025362 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025363 XML_SCHEMAV_CVC_AU, NULL, NULL,
25364 "The value '%s' does not match the fixed "
25365 "value constraint '%s'",
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025366 iattr->value, iattr->vcValue);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025367 break;
25368 case XML_SCHEMAS_ATTR_ERR_WILD_STRICT_NO_DECL:
25369 VERROR(XML_SCHEMAV_CVC_WILDCARD, NULL,
25370 "No matching global attribute declaration available, but "
25371 "demanded by the strict wildcard");
25372 break;
25373 case XML_SCHEMAS_ATTR_UNKNOWN:
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025374 if (iattr->metaType)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025375 break;
25376 /*
25377 * MAYBE VAL TODO: One might report different error messages
25378 * for the following errors.
25379 */
25380 if (type->attributeWildcard == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025381 xmlSchemaIllegalAttrErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025382 XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, iattr, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025383 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025384 xmlSchemaIllegalAttrErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025385 XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, iattr, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025386 }
25387 break;
25388 default:
25389 break;
25390 }
25391 }
25392
25393 ACTIVATE_ELEM;
25394 return (0);
25395internal_error:
25396 ACTIVATE_ELEM;
25397 return (-1);
25398}
25399
25400static int
25401xmlSchemaValidateElemWildcard(xmlSchemaValidCtxtPtr vctxt,
25402 int *skip)
25403{
25404 xmlSchemaWildcardPtr wild = (xmlSchemaWildcardPtr) vctxt->inode->decl;
25405 /*
25406 * The namespace of the element was already identified to be
25407 * matching the wildcard.
25408 */
25409 if ((skip == NULL) || (wild == NULL) ||
25410 (wild->type != XML_SCHEMA_TYPE_ANY)) {
25411 VERROR_INT("xmlSchemaValidateElemWildcard",
25412 "bad arguments");
25413 return (-1);
25414 }
25415 *skip = 0;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025416 if (wild->processContents == XML_SCHEMAS_ANY_SKIP) {
25417 /*
25418 * URGENT VAL TODO: Either we need to position the stream to the
25419 * next sibling, or walk the whole subtree.
25420 */
25421 *skip = 1;
25422 return (0);
25423 }
25424 {
25425 xmlSchemaElementPtr decl = NULL;
25426
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025427 decl = xmlSchemaGetElem(vctxt->schema,
25428 vctxt->inode->localName, vctxt->inode->nsName);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025429 if (decl != NULL) {
25430 vctxt->inode->decl = decl;
25431 return (0);
25432 }
25433 }
25434 if (wild->processContents == XML_SCHEMAS_ANY_STRICT) {
25435 /* VAL TODO: Change to proper error code. */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025436 VERROR(XML_SCHEMAV_CVC_ELT_1, NULL, /* WXS_BASIC_CAST wild */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025437 "No matching global element declaration available, but "
25438 "demanded by the strict wildcard");
25439 return (vctxt->err);
25440 }
25441 if (vctxt->nbAttrInfos != 0) {
25442 xmlSchemaAttrInfoPtr iattr;
25443 /*
25444 * SPEC Validation Rule: Schema-Validity Assessment (Element)
25445 * (1.2.1.2.1) - (1.2.1.2.3 )
25446 *
25447 * Use the xsi:type attribute for the type definition.
25448 */
25449 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
25450 XML_SCHEMA_ATTR_INFO_META_XSI_TYPE);
25451 if (iattr != NULL) {
25452 if (xmlSchemaProcessXSIType(vctxt, iattr,
25453 &(vctxt->inode->typeDef), NULL) == -1) {
25454 VERROR_INT("xmlSchemaValidateElemWildcard",
25455 "calling xmlSchemaProcessXSIType() to "
25456 "process the attribute 'xsi:nil'");
25457 return (-1);
25458 }
25459 /*
25460 * Don't return an error on purpose.
25461 */
25462 return (0);
25463 }
25464 }
25465 /*
25466 * SPEC Validation Rule: Schema-Validity Assessment (Element)
25467 *
25468 * Fallback to "anyType".
25469 */
25470 vctxt->inode->typeDef =
25471 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE);
25472 return (0);
25473}
25474
25475/*
25476* xmlSchemaCheckCOSValidDefault:
25477*
25478* This will be called if: not nilled, no content and a default/fixed
25479* value is provided.
25480*/
25481
25482static int
25483xmlSchemaCheckCOSValidDefault(xmlSchemaValidCtxtPtr vctxt,
25484 const xmlChar *value,
25485 xmlSchemaValPtr *val)
25486{
25487 int ret = 0;
25488 xmlSchemaNodeInfoPtr inode = vctxt->inode;
25489
25490 /*
25491 * cos-valid-default:
25492 * Schema Component Constraint: Element Default Valid (Immediate)
25493 * For a string to be a valid default with respect to a type
25494 * definition the appropriate case among the following must be true:
25495 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025496 if WXS_IS_COMPLEX(inode->typeDef) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025497 /*
25498 * Complex type.
25499 *
25500 * SPEC (2.1) "its {content type} must be a simple type definition
25501 * or mixed."
25502 * SPEC (2.2.2) "If the {content type} is mixed, then the {content
25503 * type}'s particle must be ·emptiable· as defined by
25504 * Particle Emptiable (§3.9.6)."
25505 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025506 if ((! WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) &&
25507 ((! WXS_HAS_MIXED_CONTENT(inode->typeDef)) ||
25508 (! WXS_EMPTIABLE(inode->typeDef)))) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025509 ret = XML_SCHEMAP_COS_VALID_DEFAULT_2_1;
25510 /* NOTE that this covers (2.2.2) as well. */
25511 VERROR(ret, NULL,
25512 "For a string to be a valid default, the type definition "
25513 "must be a simple type or a complex type with simple content "
25514 "or mixed content and a particle emptiable");
25515 return(ret);
25516 }
25517 }
25518 /*
25519 * 1 If the type definition is a simple type definition, then the string
25520 * must be ·valid· with respect to that definition as defined by String
25521 * Valid (§3.14.4).
25522 *
25523 * AND
25524 *
25525 * 2.2.1 If the {content type} is a simple type definition, then the
25526 * string must be ·valid· with respect to that simple type definition
25527 * as defined by String Valid (§3.14.4).
25528 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025529 if (WXS_IS_SIMPLE(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025530
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025531 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025532 NULL, inode->typeDef, value, val, 1, 1, 0);
25533
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025534 } else if (WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025535
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025536 ret = xmlSchemaVCheckCVCSimpleType(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025537 NULL, inode->typeDef->contentTypeDef, value, val, 1, 1, 0);
25538 }
25539 if (ret < 0) {
25540 VERROR_INT("xmlSchemaCheckCOSValidDefault",
25541 "calling xmlSchemaVCheckCVCSimpleType()");
25542 }
25543 return (ret);
25544}
25545
25546static void
25547xmlSchemaVContentModelCallback(xmlSchemaValidCtxtPtr vctxt ATTRIBUTE_UNUSED,
25548 const xmlChar * name ATTRIBUTE_UNUSED,
25549 xmlSchemaElementPtr item,
25550 xmlSchemaNodeInfoPtr inode)
25551{
25552 inode->decl = item;
25553#ifdef DEBUG_CONTENT
25554 {
25555 xmlChar *str = NULL;
25556
25557 if (item->type == XML_SCHEMA_TYPE_ELEMENT) {
25558 xmlGenericError(xmlGenericErrorContext,
25559 "AUTOMATON callback for '%s' [declaration]\n",
25560 xmlSchemaFormatQName(&str,
25561 inode->localName, inode->nsName));
25562 } else {
25563 xmlGenericError(xmlGenericErrorContext,
25564 "AUTOMATON callback for '%s' [wildcard]\n",
25565 xmlSchemaFormatQName(&str,
25566 inode->localName, inode->nsName));
25567
25568 }
25569 FREE_AND_NULL(str)
25570 }
25571#endif
25572}
25573
25574static int
25575xmlSchemaValidatorPushElem(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000025576{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025577 vctxt->inode = xmlSchemaGetFreshElemInfo(vctxt);
25578 if (vctxt->inode == NULL) {
25579 VERROR_INT("xmlSchemaValidatorPushElem",
25580 "calling xmlSchemaGetFreshElemInfo()");
25581 return (-1);
25582 }
25583 vctxt->nbAttrInfos = 0;
25584 return (0);
25585}
25586
25587static int
25588xmlSchemaVCheckINodeDataType(xmlSchemaValidCtxtPtr vctxt,
25589 xmlSchemaNodeInfoPtr inode,
25590 xmlSchemaTypePtr type,
25591 const xmlChar *value)
25592{
25593 if (inode->flags & XML_SCHEMA_NODE_INFO_VALUE_NEEDED)
25594 return (xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025595 ACTXT_CAST vctxt, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025596 type, value, &(inode->val), 1, 1, 0));
25597 else
25598 return (xmlSchemaVCheckCVCSimpleType(
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025599 ACTXT_CAST vctxt, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025600 type, value, NULL, 1, 0, 0));
25601}
25602
25603
25604
25605/*
25606* Process END of element.
25607*/
25608static int
25609xmlSchemaValidatorPopElem(xmlSchemaValidCtxtPtr vctxt)
25610{
25611 int ret = 0;
25612 xmlSchemaNodeInfoPtr inode = vctxt->inode;
25613
25614 if (vctxt->nbAttrInfos != 0)
25615 xmlSchemaClearAttrInfos(vctxt);
25616 if (inode->flags & XML_SCHEMA_NODE_INFO_ERR_NOT_EXPECTED) {
25617 /*
25618 * This element was not expected;
25619 * we will not validate child elements of broken parents.
25620 * Skip validation of all content of the parent.
25621 */
25622 vctxt->skipDepth = vctxt->depth -1;
25623 goto end_elem;
25624 }
25625 if ((inode->typeDef == NULL) ||
25626 (inode->flags & XML_SCHEMA_NODE_INFO_ERR_BAD_TYPE)) {
25627 /*
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000025628 * 1. the type definition might be missing if the element was
25629 * error prone
25630 * 2. it might be abstract.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025631 */
25632 goto end_elem;
25633 }
25634 /*
25635 * Check the content model.
25636 */
25637 if ((inode->typeDef->contentType == XML_SCHEMA_CONTENT_MIXED) ||
25638 (inode->typeDef->contentType == XML_SCHEMA_CONTENT_ELEMENTS)) {
25639
25640 /*
25641 * Workaround for "anyType".
25642 */
25643 if (inode->typeDef->builtInType == XML_SCHEMAS_ANYTYPE)
25644 goto character_content;
25645
25646 if ((inode->flags & XML_SCHEMA_ELEM_INFO_ERR_BAD_CONTENT) == 0) {
25647 xmlChar *values[10];
25648 int terminal, nbval = 10, nbneg;
25649
25650 if (inode->regexCtxt == NULL) {
25651 /*
25652 * Create the regex context.
25653 */
25654 inode->regexCtxt =
25655 xmlRegNewExecCtxt(inode->typeDef->contModel,
25656 (xmlRegExecCallbacks) xmlSchemaVContentModelCallback,
25657 vctxt);
25658 if (inode->regexCtxt == NULL) {
25659 VERROR_INT("xmlSchemaValidatorPopElem",
25660 "failed to create a regex context");
25661 goto internal_error;
25662 }
25663#ifdef DEBUG_AUTOMATA
25664 xmlGenericError(xmlGenericErrorContext,
25665 "AUTOMATON create on '%s'\n", inode->localName);
25666#endif
25667 }
25668 /*
25669 * Get hold of the still expected content, since a further
25670 * call to xmlRegExecPushString() will loose this information.
25671 */
25672 xmlRegExecNextValues(inode->regexCtxt,
25673 &nbval, &nbneg, &values[0], &terminal);
25674 ret = xmlRegExecPushString(inode->regexCtxt, NULL, NULL);
25675 if (ret <= 0) {
25676 /*
25677 * Still missing something.
25678 */
25679 ret = 1;
25680 inode->flags |=
25681 XML_SCHEMA_ELEM_INFO_ERR_BAD_CONTENT;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025682 xmlSchemaComplexTypeErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025683 XML_SCHEMAV_ELEMENT_CONTENT, NULL, NULL,
25684 "Missing child element(s)",
25685 nbval, nbneg, values);
25686#ifdef DEBUG_AUTOMATA
25687 xmlGenericError(xmlGenericErrorContext,
25688 "AUTOMATON missing ERROR on '%s'\n",
25689 inode->localName);
25690#endif
25691 } else {
25692 /*
25693 * Content model is satisfied.
25694 */
25695 ret = 0;
25696#ifdef DEBUG_AUTOMATA
25697 xmlGenericError(xmlGenericErrorContext,
25698 "AUTOMATON succeeded on '%s'\n",
25699 inode->localName);
25700#endif
25701 }
25702
25703 }
25704 }
25705 if (inode->typeDef->contentType == XML_SCHEMA_CONTENT_ELEMENTS)
25706 goto end_elem;
25707
25708character_content:
25709
25710 if (vctxt->value != NULL) {
25711 xmlSchemaFreeValue(vctxt->value);
25712 vctxt->value = NULL;
25713 }
25714 /*
25715 * Check character content.
25716 */
25717 if (inode->decl == NULL) {
25718 /*
25719 * Speedup if no declaration exists.
25720 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025721 if (WXS_IS_SIMPLE(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025722 ret = xmlSchemaVCheckINodeDataType(vctxt,
25723 inode, inode->typeDef, inode->value);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025724 } else if (WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025725 ret = xmlSchemaVCheckINodeDataType(vctxt,
25726 inode, inode->typeDef->contentTypeDef,
25727 inode->value);
25728 }
25729 if (ret < 0) {
25730 VERROR_INT("xmlSchemaValidatorPopElem",
25731 "calling xmlSchemaVCheckCVCSimpleType()");
25732 goto internal_error;
25733 }
25734 goto end_elem;
25735 }
25736 /*
25737 * cvc-elt (3.3.4) : 5
25738 * The appropriate case among the following must be true:
25739 */
25740 /*
25741 * cvc-elt (3.3.4) : 5.1
25742 * If the declaration has a {value constraint},
25743 * the item has neither element nor character [children] and
25744 * clause 3.2 has not applied, then all of the following must be true:
25745 */
25746 if ((inode->decl->value != NULL) &&
25747 (inode->flags & XML_SCHEMA_ELEM_INFO_EMPTY) &&
25748 (! INODE_NILLED(inode))) {
25749 /*
25750 * cvc-elt (3.3.4) : 5.1.1
25751 * If the ·actual type definition· is a ·local type definition·
25752 * then the canonical lexical representation of the {value constraint}
25753 * value must be a valid default for the ·actual type definition· as
25754 * defined in Element Default Valid (Immediate) (§3.3.6).
25755 */
25756 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025757 * NOTE: 'local' above means types acquired by xsi:type.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025758 * NOTE: Although the *canonical* value is stated, it is not
25759 * relevant if canonical or not. Additionally XML Schema 1.1
25760 * will removed this requirement as well.
25761 */
25762 if (inode->flags & XML_SCHEMA_ELEM_INFO_LOCAL_TYPE) {
25763
25764 ret = xmlSchemaCheckCOSValidDefault(vctxt,
25765 inode->decl->value, &(inode->val));
25766 if (ret != 0) {
25767 if (ret < 0) {
25768 VERROR_INT("xmlSchemaValidatorPopElem",
25769 "calling xmlSchemaCheckCOSValidDefault()");
25770 goto internal_error;
25771 }
25772 goto end_elem;
25773 }
25774 /*
25775 * Stop here, to avoid redundant validation of the value
25776 * (see following).
25777 */
25778 goto default_psvi;
25779 }
25780 /*
25781 * cvc-elt (3.3.4) : 5.1.2
25782 * The element information item with the canonical lexical
25783 * representation of the {value constraint} value used as its
25784 * ·normalized value· must be ·valid· with respect to the
25785 * ·actual type definition· as defined by Element Locally Valid (Type)
25786 * (§3.3.4).
25787 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025788 if (WXS_IS_SIMPLE(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025789 ret = xmlSchemaVCheckINodeDataType(vctxt,
25790 inode, inode->typeDef, inode->decl->value);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025791 } else if (WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025792 ret = xmlSchemaVCheckINodeDataType(vctxt,
25793 inode, inode->typeDef->contentTypeDef,
25794 inode->decl->value);
25795 }
25796 if (ret != 0) {
25797 if (ret < 0) {
25798 VERROR_INT("xmlSchemaValidatorPopElem",
25799 "calling xmlSchemaVCheckCVCSimpleType()");
25800 goto internal_error;
25801 }
25802 goto end_elem;
25803 }
25804
25805default_psvi:
25806 /*
25807 * PSVI: Create a text node on the instance element.
25808 */
25809 if ((vctxt->options & XML_SCHEMA_VAL_VC_I_CREATE) &&
25810 (inode->node != NULL)) {
25811 xmlNodePtr textChild;
25812 xmlChar *normValue;
25813 /*
25814 * VAL TODO: Normalize the value.
25815 */
25816 normValue = xmlSchemaNormalizeValue(inode->typeDef,
25817 inode->decl->value);
25818 if (normValue != NULL) {
25819 textChild = xmlNewText(BAD_CAST normValue);
25820 xmlFree(normValue);
25821 } else
25822 textChild = xmlNewText(inode->decl->value);
25823 if (textChild == NULL) {
25824 VERROR_INT("xmlSchemaValidatorPopElem",
25825 "calling xmlNewText()");
25826 goto internal_error;
25827 } else
25828 xmlAddChild(inode->node, textChild);
25829 }
25830
25831 } else if (! INODE_NILLED(inode)) {
25832 /*
25833 * 5.2.1 The element information item must be ·valid· with respect
25834 * to the ·actual type definition· as defined by Element Locally
25835 * Valid (Type) (§3.3.4).
25836 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025837 if (WXS_IS_SIMPLE(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025838 /*
25839 * SPEC (cvc-type) (3.1)
25840 * "If the type definition is a simple type definition, ..."
25841 * (3.1.3) "If clause 3.2 of Element Locally Valid
25842 * (Element) (§3.3.4) did not apply, then the ·normalized value·
25843 * must be ·valid· with respect to the type definition as defined
25844 * by String Valid (§3.14.4).
25845 */
25846 ret = xmlSchemaVCheckINodeDataType(vctxt,
25847 inode, inode->typeDef, inode->value);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025848 } else if (WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025849 /*
25850 * SPEC (cvc-type) (3.2) "If the type definition is a complex type
25851 * definition, then the element information item must be
25852 * ·valid· with respect to the type definition as per
25853 * Element Locally Valid (Complex Type) (§3.4.4);"
25854 *
25855 * SPEC (cvc-complex-type) (2.2)
25856 * "If the {content type} is a simple type definition, ...
25857 * the ·normalized value· of the element information item is
25858 * ·valid· with respect to that simple type definition as
25859 * defined by String Valid (§3.14.4)."
25860 */
25861 ret = xmlSchemaVCheckINodeDataType(vctxt,
25862 inode, inode->typeDef->contentTypeDef, inode->value);
25863 }
25864 if (ret != 0) {
25865 if (ret < 0) {
25866 VERROR_INT("xmlSchemaValidatorPopElem",
25867 "calling xmlSchemaVCheckCVCSimpleType()");
25868 goto internal_error;
25869 }
25870 goto end_elem;
25871 }
25872 /*
25873 * 5.2.2 If there is a fixed {value constraint} and clause 3.2 has
25874 * not applied, all of the following must be true:
25875 */
25876 if ((inode->decl->value != NULL) &&
25877 (inode->decl->flags & XML_SCHEMAS_ELEM_FIXED)) {
25878
25879 /*
25880 * TODO: We will need a computed value, when comparison is
25881 * done on computed values.
25882 */
25883 /*
25884 * 5.2.2.1 The element information item must have no element
25885 * information item [children].
25886 */
25887 if (inode->flags &
25888 XML_SCHEMA_ELEM_INFO_HAS_ELEM_CONTENT) {
25889 ret = XML_SCHEMAV_CVC_ELT_5_2_2_1;
25890 VERROR(ret, NULL,
25891 "The content must not containt element nodes since "
25892 "there is a fixed value constraint");
25893 goto end_elem;
25894 } else {
25895 /*
25896 * 5.2.2.2 The appropriate case among the following must
25897 * be true:
25898 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025899 if (WXS_HAS_MIXED_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025900 /*
25901 * 5.2.2.2.1 If the {content type} of the ·actual type
25902 * definition· is mixed, then the *initial value* of the
25903 * item must match the canonical lexical representation
25904 * of the {value constraint} value.
25905 *
25906 * ... the *initial value* of an element information
25907 * item is the string composed of, in order, the
25908 * [character code] of each character information item in
25909 * the [children] of that element information item.
25910 */
25911 if (! xmlStrEqual(inode->value, inode->decl->value)){
25912 /*
25913 * VAL TODO: Report invalid & expected values as well.
25914 * VAL TODO: Implement the canonical stuff.
25915 */
25916 ret = XML_SCHEMAV_CVC_ELT_5_2_2_2_1;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025917 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025918 ret, NULL, NULL,
25919 "The initial value '%s' does not match the fixed "
25920 "value constraint '%s'",
25921 inode->value, inode->decl->value);
25922 goto end_elem;
25923 }
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000025924 } else if (WXS_HAS_SIMPLE_CONTENT(inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025925 /*
25926 * 5.2.2.2.2 If the {content type} of the ·actual type
25927 * definition· is a simple type definition, then the
25928 * *actual value* of the item must match the canonical
25929 * lexical representation of the {value constraint} value.
25930 */
25931 /*
25932 * VAL TODO: *actual value* is the normalized value, impl.
25933 * this.
25934 * VAL TODO: Report invalid & expected values as well.
25935 * VAL TODO: Implement a comparison with the computed values.
25936 */
25937 if (! xmlStrEqual(inode->value,
25938 inode->decl->value)) {
25939 ret = XML_SCHEMAV_CVC_ELT_5_2_2_2_2;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000025940 xmlSchemaCustomErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025941 ret, NULL, NULL,
25942 "The actual value '%s' does not match the fixed "
25943 "value constraint '%s'",
25944 inode->value,
25945 inode->decl->value);
25946 goto end_elem;
25947 }
25948 }
25949 }
25950 }
25951 }
25952
25953end_elem:
25954 if (vctxt->depth < 0) {
25955 /* TODO: raise error? */
25956 return (0);
25957 }
25958 if (vctxt->depth == vctxt->skipDepth)
25959 vctxt->skipDepth = -1;
25960 /*
25961 * Evaluate the history of XPath state objects.
25962 */
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000025963 if (inode->appliedXPath &&
25964 (xmlSchemaXPathProcessHistory(vctxt, vctxt->depth) == -1))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025965 goto internal_error;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000025966 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025967 * MAYBE TODO:
25968 * SPEC (6) "The element information item must be ·valid· with
25969 * respect to each of the {identity-constraint definitions} as per
25970 * Identity-constraint Satisfied (§3.11.4)."
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000025971 */
25972 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025973 * PSVI TODO: If we expose IDC node-tables via PSVI then the tables
25974 * need to be built in any case.
25975 * We will currently build IDC node-tables and bubble them only if
25976 * keyrefs do exist.
25977 */
25978
25979 /*
25980 * Add the current IDC target-nodes to the IDC node-tables.
25981 */
25982 if ((inode->idcMatchers != NULL) &&
25983 (vctxt->hasKeyrefs || vctxt->createIDCNodeTables))
25984 {
25985 if (xmlSchemaIDCFillNodeTables(vctxt, inode) == -1)
25986 goto internal_error;
25987 }
25988 /*
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000025989 * Validate IDC keyrefs.
25990 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025991 if (vctxt->inode->hasKeyrefs)
25992 if (xmlSchemaCheckCVCIDCKeyRef(vctxt) == -1)
25993 goto internal_error;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000025994 /*
25995 * Merge/free the IDC table.
25996 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000025997 if (inode->idcTable != NULL) {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000025998#ifdef DEBUG_IDC_NODE_TABLE
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000025999 xmlSchemaDebugDumpIDCTable(stdout,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026000 inode->nsName,
26001 inode->localName,
26002 inode->idcTable);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026003#endif
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026004 if ((vctxt->depth > 0) &&
26005 (vctxt->hasKeyrefs || vctxt->createIDCNodeTables))
26006 {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026007 /*
26008 * Merge the IDC node table with the table of the parent node.
26009 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026010 if (xmlSchemaBubbleIDCNodeTables(vctxt) == -1)
26011 goto internal_error;
26012 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026013 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026014 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026015 * Clear the current ielem.
26016 * VAL TODO: Don't free the PSVI IDC tables if they are
26017 * requested for the PSVI.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026018 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026019 xmlSchemaClearElemInfo(inode);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026020 /*
26021 * Skip further processing if we are on the validation root.
26022 */
26023 if (vctxt->depth == 0) {
26024 vctxt->depth--;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026025 vctxt->inode = NULL;
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000026026 return (0);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026027 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026028 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026029 * Reset the keyrefDepth if needed.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026030 */
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026031 if (vctxt->aidcs != NULL) {
26032 xmlSchemaIDCAugPtr aidc = vctxt->aidcs;
26033 do {
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026034 if (aidc->keyrefDepth == vctxt->depth) {
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026035 /*
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026036 * A 'keyrefDepth' of a key/unique IDC matches the current
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026037 * depth, this means that we are leaving the scope of the
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026038 * top-most keyref IDC which refers to this IDC.
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026039 */
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000026040 aidc->keyrefDepth = -1;
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000026041 }
26042 aidc = aidc->next;
26043 } while (aidc != NULL);
26044 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026045 vctxt->depth--;
26046 vctxt->inode = vctxt->elemInfos[vctxt->depth];
Kasimier T. Buchcik25799ce2005-02-15 14:39:48 +000026047 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026048 * VAL TODO: 7 If the element information item is the ·validation root·, it must be
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026049 * ·valid· per Validation Root Valid (ID/IDREF) (§3.3.4).
26050 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026051 return (ret);
26052
26053internal_error:
26054 vctxt->err = -1;
26055 return (-1);
Daniel Veillard4255d502002-04-16 15:50:10 +000026056}
26057
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026058/*
26059* 3.4.4 Complex Type Definition Validation Rules
26060* Validation Rule: Element Locally Valid (Complex Type) (cvc-complex-type)
26061*/
Daniel Veillardc0826a72004-08-10 14:17:33 +000026062static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026063xmlSchemaValidateChildElem(xmlSchemaValidCtxtPtr vctxt)
William M. Brack2f2a6632004-08-20 23:09:47 +000026064{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026065 xmlSchemaNodeInfoPtr pielem;
26066 xmlSchemaTypePtr ptype;
Daniel Veillard01fa6152004-06-29 17:04:39 +000026067 int ret = 0;
Daniel Veillard3646d642004-06-02 19:19:14 +000026068
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026069 if (vctxt->depth <= 0) {
26070 VERROR_INT("xmlSchemaValidateChildElem",
26071 "not intended for the validation root");
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026072 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026073 }
26074 pielem = vctxt->elemInfos[vctxt->depth -1];
26075 if (pielem->flags & XML_SCHEMA_ELEM_INFO_EMPTY)
26076 pielem->flags ^= XML_SCHEMA_ELEM_INFO_EMPTY;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026077 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026078 * Handle 'nilled' elements.
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026079 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026080 if (INODE_NILLED(pielem)) {
26081 /*
26082 * SPEC (cvc-elt) (3.3.4) : (3.2.1)
26083 */
26084 ACTIVATE_PARENT_ELEM;
26085 ret = XML_SCHEMAV_CVC_ELT_3_2_1;
26086 VERROR(ret, NULL,
26087 "Neither character nor element content is allowed, "
26088 "because the element was 'nilled'");
26089 ACTIVATE_ELEM;
26090 goto unexpected_elem;
26091 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026092
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026093 ptype = pielem->typeDef;
26094
26095 if (ptype->builtInType == XML_SCHEMAS_ANYTYPE) {
26096 /*
26097 * Workaround for "anyType": we have currently no content model
26098 * assigned for "anyType", so handle it explicitely.
26099 * "anyType" has an unbounded, lax "any" wildcard.
26100 */
26101 vctxt->inode->decl = xmlSchemaGetElem(vctxt->schema,
26102 vctxt->inode->localName,
26103 vctxt->inode->nsName);
26104
26105 if (vctxt->inode->decl == NULL) {
26106 xmlSchemaAttrInfoPtr iattr;
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000026107 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026108 * Process "xsi:type".
26109 * SPEC (cvc-assess-elt) (1.2.1.2.1) - (1.2.1.2.3)
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000026110 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026111 iattr = xmlSchemaGetMetaAttrInfo(vctxt,
26112 XML_SCHEMA_ATTR_INFO_META_XSI_TYPE);
26113 if (iattr != NULL) {
26114 ret = xmlSchemaProcessXSIType(vctxt, iattr,
26115 &(vctxt->inode->typeDef), NULL);
26116 if (ret != 0) {
26117 if (ret == -1) {
26118 VERROR_INT("xmlSchemaValidateChildElem",
26119 "calling xmlSchemaProcessXSIType() to "
26120 "process the attribute 'xsi:nil'");
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000026121 return (-1);
Kasimier T. Buchcik187ea5f2005-04-19 11:25:43 +000026122 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026123 return (ret);
Daniel Veillard01fa6152004-06-29 17:04:39 +000026124 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026125 } else {
26126 /*
26127 * Fallback to "anyType".
26128 *
26129 * SPEC (cvc-assess-elt)
26130 * "If the item cannot be ·strictly assessed·, [...]
26131 * an element information item's schema validity may be laxly
26132 * assessed if its ·context-determined declaration· is not
26133 * skip by ·validating· with respect to the ·ur-type
26134 * definition· as per Element Locally Valid (Type) (§3.3.4)."
26135 */
26136 vctxt->inode->typeDef =
26137 xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026138 }
26139 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026140 return (0);
26141 }
26142
26143 switch (ptype->contentType) {
26144 case XML_SCHEMA_CONTENT_EMPTY:
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026145 /*
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026146 * SPEC (2.1) "If the {content type} is empty, then the
26147 * element information item has no character or element
26148 * information item [children]."
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026149 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026150 ACTIVATE_PARENT_ELEM
26151 ret = XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1;
26152 VERROR(ret, NULL,
26153 "Element content is not allowed, "
26154 "because the content type is empty");
26155 ACTIVATE_ELEM
26156 goto unexpected_elem;
26157 break;
26158
26159 case XML_SCHEMA_CONTENT_MIXED:
26160 case XML_SCHEMA_CONTENT_ELEMENTS: {
26161 xmlRegExecCtxtPtr regexCtxt;
26162 xmlChar *values[10];
26163 int terminal, nbval = 10, nbneg;
26164
26165 /* VAL TODO: Optimized "anyType" validation.*/
26166
26167 if (ptype->contModel == NULL) {
26168 VERROR_INT("xmlSchemaValidateChildElem",
26169 "type has elem content but no content model");
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000026170 return (-1);
Kasimier T. Buchcik478d6932005-03-16 16:29:18 +000026171 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026172 /*
26173 * Safety belf for evaluation if the cont. model was already
26174 * examined to be invalid.
26175 */
26176 if (pielem->flags & XML_SCHEMA_ELEM_INFO_ERR_BAD_CONTENT) {
26177 VERROR_INT("xmlSchemaValidateChildElem",
26178 "validating elem, but elem content is already invalid");
26179 return (-1);
26180 }
Kasimier T. Buchcikc3af19d2005-01-13 12:10:11 +000026181
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026182 regexCtxt = pielem->regexCtxt;
26183 if (regexCtxt == NULL) {
26184 /*
26185 * Create the regex context.
26186 */
26187 regexCtxt = xmlRegNewExecCtxt(ptype->contModel,
26188 (xmlRegExecCallbacks) xmlSchemaVContentModelCallback,
26189 vctxt);
26190 if (regexCtxt == NULL) {
26191 VERROR_INT("xmlSchemaValidateChildElem",
26192 "failed to create a regex context");
26193 return (-1);
26194 }
26195 pielem->regexCtxt = regexCtxt;
26196#ifdef DEBUG_AUTOMATA
26197 xmlGenericError(xmlGenericErrorContext, "AUTOMATA create on '%s'\n",
26198 pielem->localName);
26199#endif
26200 }
26201
26202 /*
26203 * SPEC (2.4) "If the {content type} is element-only or mixed,
26204 * then the sequence of the element information item's
26205 * element information item [children], if any, taken in
26206 * order, is ·valid· with respect to the {content type}'s
26207 * particle, as defined in Element Sequence Locally Valid
26208 * (Particle) (§3.9.4)."
26209 */
26210 ret = xmlRegExecPushString2(regexCtxt,
26211 vctxt->inode->localName,
26212 vctxt->inode->nsName,
26213 vctxt->inode);
26214#ifdef DEBUG_AUTOMATA
26215 if (ret < 0)
26216 xmlGenericError(xmlGenericErrorContext,
26217 "AUTOMATON push ERROR for '%s' on '%s'\n",
26218 vctxt->inode->localName, pielem->localName);
26219 else
26220 xmlGenericError(xmlGenericErrorContext,
26221 "AUTOMATON push OK for '%s' on '%s'\n",
26222 vctxt->inode->localName, pielem->localName);
26223#endif
26224 if (vctxt->err == XML_SCHEMAV_INTERNAL) {
26225 VERROR_INT("xmlSchemaValidateChildElem",
26226 "calling xmlRegExecPushString2()");
26227 return (-1);
26228 }
26229 if (ret < 0) {
26230 xmlRegExecErrInfo(regexCtxt, NULL, &nbval, &nbneg,
26231 &values[0], &terminal);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000026232 xmlSchemaComplexTypeErr(ACTXT_CAST vctxt,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026233 XML_SCHEMAV_ELEMENT_CONTENT, NULL,NULL,
26234 "This element is not expected",
26235 nbval, nbneg, values);
26236 ret = vctxt->err;
26237 goto unexpected_elem;
26238 } else
26239 ret = 0;
Daniel Veillard01fa6152004-06-29 17:04:39 +000026240 }
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026241 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026242 case XML_SCHEMA_CONTENT_SIMPLE:
26243 case XML_SCHEMA_CONTENT_BASIC:
26244 ACTIVATE_PARENT_ELEM
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000026245 if (WXS_IS_COMPLEX(ptype)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026246 /*
26247 * SPEC (cvc-complex-type) (2.2)
26248 * "If the {content type} is a simple type definition, then
26249 * the element information item has no element information
26250 * item [children], ..."
26251 */
26252 ret = XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2;
26253 VERROR(ret, NULL, "Element content is not allowed, "
26254 "because the content type is a simple type definition");
26255 } else {
26256 /*
26257 * SPEC (cvc-type) (3.1.2) "The element information item must
26258 * have no element information item [children]."
26259 */
26260 ret = XML_SCHEMAV_CVC_TYPE_3_1_2;
26261 VERROR(ret, NULL, "Element content is not allowed, "
26262 "because the type definition is simple");
26263 }
26264 ACTIVATE_ELEM
26265 ret = vctxt->err;
26266 goto unexpected_elem;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026267 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026268
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026269 default:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026270 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026271 }
26272 return (ret);
26273unexpected_elem:
26274 /*
26275 * Pop this element and set the skipDepth to skip
26276 * all further content of the parent element.
26277 */
26278 vctxt->skipDepth = vctxt->depth;
26279 vctxt->inode->flags |= XML_SCHEMA_NODE_INFO_ERR_NOT_EXPECTED;
26280 pielem->flags |= XML_SCHEMA_ELEM_INFO_ERR_BAD_CONTENT;
26281 return (ret);
26282}
26283
26284#define XML_SCHEMA_PUSH_TEXT_PERSIST 1
26285#define XML_SCHEMA_PUSH_TEXT_CREATED 2
26286#define XML_SCHEMA_PUSH_TEXT_VOLATILE 3
26287
26288static int
26289xmlSchemaVPushText(xmlSchemaValidCtxtPtr vctxt,
26290 int nodeType, const xmlChar *value, int len,
26291 int mode, int *consumed)
26292{
26293 /*
26294 * Unfortunately we have to duplicate the text sometimes.
26295 * OPTIMIZE: Maybe we could skip it, if:
26296 * 1. content type is simple
26297 * 2. whitespace is "collapse"
26298 * 3. it consists of whitespace only
26299 *
26300 * Process character content.
26301 */
26302 if (consumed != NULL)
26303 *consumed = 0;
26304 if (INODE_NILLED(vctxt->inode)) {
26305 /*
26306 * SPEC cvc-elt (3.3.4 - 3.2.1)
26307 * "The element information item must have no character or
26308 * element information item [children]."
26309 */
26310 VERROR(XML_SCHEMAV_CVC_ELT_3_2_1, NULL,
26311 "Neither character nor element content is allowed "
26312 "because the element is 'nilled'");
26313 return (vctxt->err);
26314 }
26315 /*
26316 * SPEC (2.1) "If the {content type} is empty, then the
26317 * element information item has no character or element
26318 * information item [children]."
26319 */
26320 if (vctxt->inode->typeDef->contentType ==
26321 XML_SCHEMA_CONTENT_EMPTY) {
26322 VERROR(XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, NULL,
26323 "Character content is not allowed, "
26324 "because the content type is empty");
26325 return (vctxt->err);
26326 }
26327
26328 if (vctxt->inode->typeDef->contentType ==
26329 XML_SCHEMA_CONTENT_ELEMENTS) {
26330 if ((nodeType != XML_TEXT_NODE) ||
26331 (! xmlSchemaIsBlank((xmlChar *) value, len))) {
26332 /*
26333 * SPEC cvc-complex-type (2.3)
26334 * "If the {content type} is element-only, then the
26335 * element information item has no character information
26336 * item [children] other than those whose [character
26337 * code] is defined as a white space in [XML 1.0 (Second
26338 * Edition)]."
26339 */
26340 VERROR(XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, NULL,
26341 "Character content other than whitespace is not allowed "
26342 "because the content type is 'element-only'");
26343 return (vctxt->err);
26344 }
26345 return (0);
26346 }
26347
26348 if ((value == NULL) || (value[0] == 0))
26349 return (0);
26350 /*
26351 * Save the value.
26352 * NOTE that even if the content type is *mixed*, we need the
26353 * *initial value* for default/fixed value constraints.
26354 */
26355 if ((vctxt->inode->typeDef->contentType == XML_SCHEMA_CONTENT_MIXED) &&
26356 ((vctxt->inode->decl == NULL) ||
26357 (vctxt->inode->decl->value == NULL)))
26358 return (0);
26359
26360 if (vctxt->inode->value == NULL) {
26361 /*
26362 * Set the value.
26363 */
26364 switch (mode) {
26365 case XML_SCHEMA_PUSH_TEXT_PERSIST:
26366 /*
26367 * When working on a tree.
26368 */
26369 vctxt->inode->value = value;
26370 break;
26371 case XML_SCHEMA_PUSH_TEXT_CREATED:
26372 /*
26373 * When working with the reader.
26374 * The value will be freed by the element info.
26375 */
26376 vctxt->inode->value = value;
26377 if (consumed != NULL)
26378 *consumed = 1;
26379 vctxt->inode->flags |=
26380 XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES;
26381 break;
26382 case XML_SCHEMA_PUSH_TEXT_VOLATILE:
26383 /*
26384 * When working with SAX.
26385 * The value will be freed by the element info.
26386 */
26387 if (len != -1)
26388 vctxt->inode->value = BAD_CAST xmlStrndup(value, len);
26389 else
26390 vctxt->inode->value = BAD_CAST xmlStrdup(value);
26391 vctxt->inode->flags |=
26392 XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES;
26393 break;
26394 default:
26395 break;
26396 }
Kasimier T. Buchcik5bb0c082005-12-20 10:48:33 +000026397 } else {
26398 if (len < 0)
26399 len = xmlStrlen(value);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026400 /*
26401 * Concat the value.
26402 */
26403 if (vctxt->inode->flags & XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES) {
Kasimier T. Buchcik9c215eb2005-06-21 08:38:49 +000026404 vctxt->inode->value = BAD_CAST xmlStrncat(
26405 (xmlChar *) vctxt->inode->value, value, len);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026406 } else {
26407 vctxt->inode->value =
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026408 BAD_CAST xmlStrncatNew(vctxt->inode->value, value, len);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026409 vctxt->inode->flags |= XML_SCHEMA_NODE_INFO_FLAG_OWNED_VALUES;
26410 }
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026411 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026412
26413 return (0);
Daniel Veillard4255d502002-04-16 15:50:10 +000026414}
26415
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026416static int
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026417xmlSchemaValidateElem(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcik9b77aa02005-03-04 22:04:16 +000026418{
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026419 int ret = 0;
Daniel Veillard4255d502002-04-16 15:50:10 +000026420
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026421 if ((vctxt->skipDepth != -1) &&
26422 (vctxt->depth >= vctxt->skipDepth)) {
26423 VERROR_INT("xmlSchemaValidateElem",
26424 "in skip-state");
26425 goto internal_error;
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000026426 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026427 if (vctxt->xsiAssemble) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000026428 /*
Kasimier T. Buchcik215406f2005-12-07 12:14:09 +000026429 * We will stop validation if there was an error during
26430 * dynamic schema construction.
26431 * Note that we simply set @skipDepth to 0, this could
26432 * mean that a streaming document via SAX would be
26433 * still read to the end but it won't be validated any more.
26434 * TODO: If we are sure how to stop the validation at once
26435 * for all input scenarios, then this should be changed to
26436 * instantly stop the validation.
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000026437 */
Kasimier T. Buchcik215406f2005-12-07 12:14:09 +000026438 ret = xmlSchemaAssembleByXSI(vctxt);
26439 if (ret != 0) {
26440 if (ret == -1)
26441 goto internal_error;
26442 vctxt->skipDepth = 0;
26443 return(ret);
26444 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026445 }
26446 if (vctxt->depth > 0) {
26447 /*
26448 * Validate this element against the content model
26449 * of the parent.
26450 */
26451 ret = xmlSchemaValidateChildElem(vctxt);
26452 if (ret != 0) {
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026453 if (ret < 0) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026454 VERROR_INT("xmlSchemaValidateElem",
26455 "calling xmlSchemaStreamValidateChildElement()");
26456 goto internal_error;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026457 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026458 goto exit;
26459 }
26460 if (vctxt->depth == vctxt->skipDepth)
26461 goto exit;
26462 if ((vctxt->inode->decl == NULL) &&
26463 (vctxt->inode->typeDef == NULL)) {
26464 VERROR_INT("xmlSchemaValidateElem",
26465 "the child element was valid but neither the "
26466 "declaration nor the type was set");
26467 goto internal_error;
26468 }
26469 } else {
26470 /*
26471 * Get the declaration of the validation root.
26472 */
26473 vctxt->inode->decl = xmlSchemaGetElem(vctxt->schema,
26474 vctxt->inode->localName,
26475 vctxt->inode->nsName);
26476 if (vctxt->inode->decl == NULL) {
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +000026477 ret = XML_SCHEMAV_CVC_ELT_1;
26478 VERROR(ret, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026479 "No matching global declaration available "
26480 "for the validation root");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026481 goto exit;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026482 }
26483 }
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000026484
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026485 if (vctxt->inode->decl == NULL)
26486 goto type_validation;
26487
26488 if (vctxt->inode->decl->type == XML_SCHEMA_TYPE_ANY) {
26489 int skip;
26490 /*
26491 * Wildcards.
26492 */
26493 ret = xmlSchemaValidateElemWildcard(vctxt, &skip);
26494 if (ret != 0) {
26495 if (ret < 0) {
26496 VERROR_INT("xmlSchemaValidateElem",
26497 "calling xmlSchemaValidateElemWildcard()");
26498 goto internal_error;
26499 }
26500 goto exit;
26501 }
26502 if (skip) {
26503 vctxt->skipDepth = vctxt->depth;
26504 goto exit;
26505 }
26506 /*
26507 * The declaration might be set by the wildcard validation,
26508 * when the processContents is "lax" or "strict".
26509 */
26510 if (vctxt->inode->decl->type != XML_SCHEMA_TYPE_ELEMENT) {
26511 /*
26512 * Clear the "decl" field to not confuse further processing.
26513 */
26514 vctxt->inode->decl = NULL;
26515 goto type_validation;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026516 }
Daniel Veillard4255d502002-04-16 15:50:10 +000026517 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026518 /*
26519 * Validate against the declaration.
26520 */
26521 ret = xmlSchemaValidateElemDecl(vctxt);
26522 if (ret != 0) {
26523 if (ret < 0) {
26524 VERROR_INT("xmlSchemaValidateElem",
26525 "calling xmlSchemaValidateElemDecl()");
26526 goto internal_error;
26527 }
26528 goto exit;
26529 }
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +000026530 /*
26531 * Validate against the type definition.
26532 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026533type_validation:
26534
26535 if (vctxt->inode->typeDef == NULL) {
26536 vctxt->inode->flags |= XML_SCHEMA_NODE_INFO_ERR_BAD_TYPE;
26537 ret = XML_SCHEMAV_CVC_TYPE_1;
26538 VERROR(ret, NULL,
26539 "The type definition is absent");
26540 goto exit;
26541 }
26542 if (vctxt->inode->typeDef->flags & XML_SCHEMAS_TYPE_ABSTRACT) {
26543 vctxt->inode->flags |= XML_SCHEMA_NODE_INFO_ERR_BAD_TYPE;
26544 ret = XML_SCHEMAV_CVC_TYPE_2;
26545 VERROR(ret, NULL,
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026546 "The type definition is abstract");
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026547 goto exit;
26548 }
26549 /*
Kasimier T. Buchcik9ca11bf2005-06-14 19:24:47 +000026550 * Evaluate IDCs. Do it here, since new IDC matchers are registered
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026551 * during validation against the declaration. This must be done
26552 * _before_ attribute validation.
26553 */
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000026554 if (vctxt->xpathStates != NULL) {
26555 ret = xmlSchemaXPathEvaluate(vctxt, XML_ELEMENT_NODE);
Kasimier T. Buchcik65c2f1d2005-10-17 12:39:58 +000026556 vctxt->inode->appliedXPath = 1;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000026557 if (ret == -1) {
26558 VERROR_INT("xmlSchemaValidateElem",
26559 "calling xmlSchemaXPathEvaluate()");
26560 goto internal_error;
26561 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026562 }
26563 /*
26564 * Validate attributes.
26565 */
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000026566 if (WXS_IS_COMPLEX(vctxt->inode->typeDef)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026567 if ((vctxt->nbAttrInfos != 0) ||
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000026568 (vctxt->inode->typeDef->attrUses != NULL)) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026569
26570 ret = xmlSchemaVAttributesComplex(vctxt);
26571 }
26572 } else if (vctxt->nbAttrInfos != 0) {
26573
26574 ret = xmlSchemaVAttributesSimple(vctxt);
26575 }
26576 /*
26577 * Clear registered attributes.
26578 */
26579 if (vctxt->nbAttrInfos != 0)
26580 xmlSchemaClearAttrInfos(vctxt);
26581 if (ret == -1) {
26582 VERROR_INT("xmlSchemaValidateElem",
26583 "calling attributes validation");
26584 goto internal_error;
26585 }
26586 /*
26587 * Don't return an error if attributes are invalid on purpose.
26588 */
26589 ret = 0;
26590
26591exit:
26592 if (ret != 0)
26593 vctxt->skipDepth = vctxt->depth;
26594 return (ret);
26595internal_error:
26596 return (-1);
Daniel Veillard4255d502002-04-16 15:50:10 +000026597}
26598
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026599#ifdef XML_SCHEMA_READER_ENABLED
26600static int
26601xmlSchemaVReaderWalk(xmlSchemaValidCtxtPtr vctxt)
Kasimier T. Buchcik5eba91f2004-09-08 09:17:27 +000026602{
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026603 const int WHTSP = 13, SIGN_WHTSP = 14, END_ELEM = 15;
26604 int depth, nodeType, ret = 0, consumed;
26605 xmlSchemaNodeInfoPtr ielem;
Kasimier T. Buchcik5eba91f2004-09-08 09:17:27 +000026606
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026607 vctxt->depth = -1;
26608 ret = xmlTextReaderRead(vctxt->reader);
26609 /*
26610 * Move to the document element.
26611 */
26612 while (ret == 1) {
26613 nodeType = xmlTextReaderNodeType(vctxt->reader);
26614 if (nodeType == XML_ELEMENT_NODE)
26615 goto root_found;
26616 ret = xmlTextReaderRead(vctxt->reader);
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026617 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026618 goto exit;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000026619
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026620root_found:
26621
26622 do {
26623 depth = xmlTextReaderDepth(vctxt->reader);
26624 nodeType = xmlTextReaderNodeType(vctxt->reader);
26625
26626 if (nodeType == XML_ELEMENT_NODE) {
26627
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026628 vctxt->depth++;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026629 if (xmlSchemaValidatorPushElem(vctxt) == -1) {
26630 VERROR_INT("xmlSchemaVReaderWalk",
26631 "calling xmlSchemaValidatorPushElem()");
26632 goto internal_error;
26633 }
26634 ielem = vctxt->inode;
26635 ielem->localName = xmlTextReaderLocalName(vctxt->reader);
26636 ielem->nsName = xmlTextReaderNamespaceUri(vctxt->reader);
26637 ielem->flags |= XML_SCHEMA_NODE_INFO_FLAG_OWNED_NAMES;
26638 /*
26639 * Is the element empty?
26640 */
26641 ret = xmlTextReaderIsEmptyElement(vctxt->reader);
26642 if (ret == -1) {
26643 VERROR_INT("xmlSchemaVReaderWalk",
26644 "calling xmlTextReaderIsEmptyElement()");
26645 goto internal_error;
26646 }
26647 if (ret) {
26648 ielem->flags |= XML_SCHEMA_ELEM_INFO_EMPTY;
26649 }
26650 /*
26651 * Register attributes.
26652 */
26653 vctxt->nbAttrInfos = 0;
26654 ret = xmlTextReaderMoveToFirstAttribute(vctxt->reader);
26655 if (ret == -1) {
26656 VERROR_INT("xmlSchemaVReaderWalk",
26657 "calling xmlTextReaderMoveToFirstAttribute()");
26658 goto internal_error;
26659 }
26660 if (ret == 1) {
26661 do {
26662 /*
26663 * VAL TODO: How do we know that the reader works on a
26664 * node tree, to be able to pass a node here?
26665 */
26666 if (xmlSchemaValidatorPushAttribute(vctxt, NULL,
26667 (const xmlChar *) xmlTextReaderLocalName(vctxt->reader),
26668 xmlTextReaderNamespaceUri(vctxt->reader), 1,
26669 xmlTextReaderValue(vctxt->reader), 1) == -1) {
26670
26671 VERROR_INT("xmlSchemaVReaderWalk",
26672 "calling xmlSchemaValidatorPushAttribute()");
26673 goto internal_error;
26674 }
26675 ret = xmlTextReaderMoveToNextAttribute(vctxt->reader);
26676 if (ret == -1) {
26677 VERROR_INT("xmlSchemaVReaderWalk",
26678 "calling xmlTextReaderMoveToFirstAttribute()");
26679 goto internal_error;
26680 }
26681 } while (ret == 1);
26682 /*
26683 * Back to element position.
26684 */
26685 ret = xmlTextReaderMoveToElement(vctxt->reader);
26686 if (ret == -1) {
26687 VERROR_INT("xmlSchemaVReaderWalk",
26688 "calling xmlTextReaderMoveToElement()");
26689 goto internal_error;
26690 }
26691 }
26692 /*
26693 * Validate the element.
26694 */
26695 ret= xmlSchemaValidateElem(vctxt);
26696 if (ret != 0) {
26697 if (ret == -1) {
26698 VERROR_INT("xmlSchemaVReaderWalk",
26699 "calling xmlSchemaValidateElem()");
26700 goto internal_error;
26701 }
26702 goto exit;
26703 }
26704 if (vctxt->depth == vctxt->skipDepth) {
26705 int curDepth;
26706 /*
26707 * Skip all content.
26708 */
26709 if ((ielem->flags & XML_SCHEMA_ELEM_INFO_EMPTY) == 0) {
26710 ret = xmlTextReaderRead(vctxt->reader);
26711 curDepth = xmlTextReaderDepth(vctxt->reader);
26712 while ((ret == 1) && (curDepth != depth)) {
26713 ret = xmlTextReaderRead(vctxt->reader);
26714 curDepth = xmlTextReaderDepth(vctxt->reader);
26715 }
26716 if (ret < 0) {
26717 /*
26718 * VAL TODO: A reader error occured; what to do here?
26719 */
26720 ret = 1;
26721 goto exit;
26722 }
26723 }
26724 goto leave_elem;
26725 }
26726 /*
26727 * READER VAL TODO: Is an END_ELEM really never called
26728 * if the elem is empty?
26729 */
26730 if (ielem->flags & XML_SCHEMA_ELEM_INFO_EMPTY)
26731 goto leave_elem;
26732 } else if (nodeType == END_ELEM) {
26733 /*
26734 * Process END of element.
26735 */
26736leave_elem:
26737 ret = xmlSchemaValidatorPopElem(vctxt);
26738 if (ret != 0) {
26739 if (ret < 0) {
26740 VERROR_INT("xmlSchemaVReaderWalk",
26741 "calling xmlSchemaValidatorPopElem()");
26742 goto internal_error;
26743 }
26744 goto exit;
26745 }
26746 if (vctxt->depth >= 0)
26747 ielem = vctxt->inode;
26748 else
26749 ielem = NULL;
26750 } else if ((nodeType == XML_TEXT_NODE) ||
26751 (nodeType == XML_CDATA_SECTION_NODE) ||
26752 (nodeType == WHTSP) ||
26753 (nodeType == SIGN_WHTSP)) {
26754 /*
26755 * Process character content.
26756 */
26757 xmlChar *value;
26758
26759 if ((nodeType == WHTSP) || (nodeType == SIGN_WHTSP))
26760 nodeType = XML_TEXT_NODE;
26761
26762 value = xmlTextReaderValue(vctxt->reader);
26763 ret = xmlSchemaVPushText(vctxt, nodeType, BAD_CAST value,
26764 -1, XML_SCHEMA_PUSH_TEXT_CREATED, &consumed);
26765 if (! consumed)
26766 xmlFree(value);
26767 if (ret == -1) {
26768 VERROR_INT("xmlSchemaVReaderWalk",
26769 "calling xmlSchemaVPushText()");
26770 goto internal_error;
26771 }
26772 } else if ((nodeType == XML_ENTITY_NODE) ||
26773 (nodeType == XML_ENTITY_REF_NODE)) {
26774 /*
26775 * VAL TODO: What to do with entities?
26776 */
26777 TODO
26778 }
26779 /*
26780 * Read next node.
26781 */
26782 ret = xmlTextReaderRead(vctxt->reader);
26783 } while (ret == 1);
26784
26785exit:
26786 return (ret);
26787internal_error:
26788 return (-1);
Daniel Veillard4255d502002-04-16 15:50:10 +000026789}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026790#endif
Daniel Veillard4255d502002-04-16 15:50:10 +000026791
26792/************************************************************************
26793 * *
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026794 * SAX validation handlers *
Daniel Veillard4255d502002-04-16 15:50:10 +000026795 * *
26796 ************************************************************************/
26797
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026798/*
26799* Process text content.
26800*/
26801static void
26802xmlSchemaSAXHandleText(void *ctx,
26803 const xmlChar * ch,
26804 int len)
26805{
26806 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctx;
26807
26808 if (vctxt->depth < 0)
26809 return;
26810 if ((vctxt->skipDepth != -1) && (vctxt->depth >= vctxt->skipDepth))
26811 return;
26812 if (vctxt->inode->flags & XML_SCHEMA_ELEM_INFO_EMPTY)
26813 vctxt->inode->flags ^= XML_SCHEMA_ELEM_INFO_EMPTY;
26814 if (xmlSchemaVPushText(vctxt, XML_TEXT_NODE, ch, len,
26815 XML_SCHEMA_PUSH_TEXT_VOLATILE, NULL) == -1) {
26816 VERROR_INT("xmlSchemaSAXHandleCDataSection",
26817 "calling xmlSchemaVPushText()");
26818 vctxt->err = -1;
26819 xmlStopParser(vctxt->parserCtxt);
26820 }
26821}
26822
26823/*
26824* Process CDATA content.
26825*/
26826static void
26827xmlSchemaSAXHandleCDataSection(void *ctx,
26828 const xmlChar * ch,
26829 int len)
26830{
26831 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctx;
26832
26833 if (vctxt->depth < 0)
26834 return;
26835 if ((vctxt->skipDepth != -1) && (vctxt->depth >= vctxt->skipDepth))
26836 return;
26837 if (vctxt->inode->flags & XML_SCHEMA_ELEM_INFO_EMPTY)
26838 vctxt->inode->flags ^= XML_SCHEMA_ELEM_INFO_EMPTY;
26839 if (xmlSchemaVPushText(vctxt, XML_CDATA_SECTION_NODE, ch, len,
26840 XML_SCHEMA_PUSH_TEXT_VOLATILE, NULL) == -1) {
26841 VERROR_INT("xmlSchemaSAXHandleCDataSection",
26842 "calling xmlSchemaVPushText()");
26843 vctxt->err = -1;
26844 xmlStopParser(vctxt->parserCtxt);
26845 }
26846}
26847
26848static void
26849xmlSchemaSAXHandleReference(void *ctx ATTRIBUTE_UNUSED,
26850 const xmlChar * name ATTRIBUTE_UNUSED)
26851{
26852 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctx;
26853
26854 if (vctxt->depth < 0)
26855 return;
26856 if ((vctxt->skipDepth != -1) && (vctxt->depth >= vctxt->skipDepth))
26857 return;
26858 /* SAX VAL TODO: What to do here? */
26859 TODO
26860}
26861
26862static void
26863xmlSchemaSAXHandleStartElementNs(void *ctx,
26864 const xmlChar * localname,
26865 const xmlChar * prefix ATTRIBUTE_UNUSED,
26866 const xmlChar * URI,
26867 int nb_namespaces,
26868 const xmlChar ** namespaces,
26869 int nb_attributes,
26870 int nb_defaulted ATTRIBUTE_UNUSED,
26871 const xmlChar ** attributes)
26872{
26873 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctx;
26874 int ret;
26875 xmlSchemaNodeInfoPtr ielem;
26876 int i, j;
26877
26878 /*
26879 * SAX VAL TODO: What to do with nb_defaulted?
26880 */
26881 /*
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026882 * Skip elements if inside a "skip" wildcard or invalid.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026883 */
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026884 vctxt->depth++;
26885 if ((vctxt->skipDepth != -1) && (vctxt->depth >= vctxt->skipDepth))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026886 return;
26887 /*
26888 * Push the element.
26889 */
26890 if (xmlSchemaValidatorPushElem(vctxt) == -1) {
26891 VERROR_INT("xmlSchemaSAXHandleStartElementNs",
26892 "calling xmlSchemaValidatorPushElem()");
26893 goto internal_error;
26894 }
26895 ielem = vctxt->inode;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000026896 /*
26897 * TODO: Is this OK?
26898 */
26899 ielem->nodeLine = xmlSAX2GetLineNumber(vctxt->parserCtxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026900 ielem->localName = localname;
26901 ielem->nsName = URI;
26902 ielem->flags |= XML_SCHEMA_ELEM_INFO_EMPTY;
26903 /*
26904 * Register namespaces on the elem info.
26905 */
26906 if (nb_namespaces != 0) {
26907 /*
26908 * Although the parser builds its own namespace list,
26909 * we have no access to it, so we'll use an own one.
26910 */
26911 for (i = 0, j = 0; i < nb_namespaces; i++, j += 2) {
26912 /*
26913 * Store prefix and namespace name.
26914 */
26915 if (ielem->nsBindings == NULL) {
26916 ielem->nsBindings =
26917 (const xmlChar **) xmlMalloc(10 *
26918 sizeof(const xmlChar *));
26919 if (ielem->nsBindings == NULL) {
26920 xmlSchemaVErrMemory(vctxt,
26921 "allocating namespace bindings for SAX validation",
26922 NULL);
26923 goto internal_error;
26924 }
26925 ielem->nbNsBindings = 0;
26926 ielem->sizeNsBindings = 5;
26927 } else if (ielem->sizeNsBindings <= ielem->nbNsBindings) {
26928 ielem->sizeNsBindings *= 2;
26929 ielem->nsBindings =
26930 (const xmlChar **) xmlRealloc(
26931 (void *) ielem->nsBindings,
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000026932 ielem->sizeNsBindings * 2 * sizeof(const xmlChar *));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026933 if (ielem->nsBindings == NULL) {
26934 xmlSchemaVErrMemory(vctxt,
26935 "re-allocating namespace bindings for SAX validation",
26936 NULL);
26937 goto internal_error;
26938 }
26939 }
26940
26941 ielem->nsBindings[ielem->nbNsBindings * 2] = namespaces[j];
26942 if (namespaces[j+1][0] == 0) {
26943 /*
26944 * Handle xmlns="".
26945 */
26946 ielem->nsBindings[ielem->nbNsBindings * 2 + 1] = NULL;
26947 } else
26948 ielem->nsBindings[ielem->nbNsBindings * 2 + 1] =
26949 namespaces[j+1];
26950 ielem->nbNsBindings++;
26951 }
26952 }
26953 /*
26954 * Register attributes.
26955 * SAX VAL TODO: We are not adding namespace declaration
26956 * attributes yet.
26957 */
26958 if (nb_attributes != 0) {
26959 xmlChar *value;
26960
26961 for (j = 0, i = 0; i < nb_attributes; i++, j += 5) {
26962 /*
26963 * Duplicate the value.
26964 */
26965 value = xmlStrndup(attributes[j+3],
26966 attributes[j+4] - attributes[j+3]);
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000026967 /*
26968 * TODO: Set the node line.
26969 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026970 ret = xmlSchemaValidatorPushAttribute(vctxt,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000026971 NULL, ielem->nodeLine, attributes[j], attributes[j+2], 0,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000026972 value, 1);
26973 if (ret == -1) {
26974 VERROR_INT("xmlSchemaSAXHandleStartElementNs",
26975 "calling xmlSchemaValidatorPushAttribute()");
26976 goto internal_error;
26977 }
26978 }
26979 }
26980 /*
26981 * Validate the element.
26982 */
26983 ret = xmlSchemaValidateElem(vctxt);
26984 if (ret != 0) {
26985 if (ret == -1) {
26986 VERROR_INT("xmlSchemaSAXHandleStartElementNs",
26987 "calling xmlSchemaValidateElem()");
26988 goto internal_error;
26989 }
26990 goto exit;
26991 }
26992
26993exit:
26994 return;
26995internal_error:
26996 vctxt->err = -1;
26997 xmlStopParser(vctxt->parserCtxt);
26998 return;
26999}
27000
27001static void
27002xmlSchemaSAXHandleEndElementNs(void *ctx,
27003 const xmlChar * localname ATTRIBUTE_UNUSED,
27004 const xmlChar * prefix ATTRIBUTE_UNUSED,
27005 const xmlChar * URI ATTRIBUTE_UNUSED)
27006{
27007 xmlSchemaValidCtxtPtr vctxt = (xmlSchemaValidCtxtPtr) ctx;
27008 int res;
27009
27010 /*
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000027011 * Skip elements if inside a "skip" wildcard or if invalid.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027012 */
27013 if (vctxt->skipDepth != -1) {
27014 if (vctxt->depth > vctxt->skipDepth) {
27015 vctxt->depth--;
27016 return;
27017 } else
27018 vctxt->skipDepth = -1;
27019 }
27020 /*
27021 * SAX VAL TODO: Just a temporary check.
27022 */
27023 if ((!xmlStrEqual(vctxt->inode->localName, localname)) ||
27024 (!xmlStrEqual(vctxt->inode->nsName, URI))) {
27025 VERROR_INT("xmlSchemaSAXHandleEndElementNs",
27026 "elem pop mismatch");
27027 }
27028 res = xmlSchemaValidatorPopElem(vctxt);
27029 if (res != 0) {
27030 if (res < 0) {
27031 VERROR_INT("xmlSchemaSAXHandleEndElementNs",
27032 "calling xmlSchemaValidatorPopElem()");
27033 goto internal_error;
27034 }
27035 goto exit;
27036 }
27037exit:
27038 return;
27039internal_error:
27040 vctxt->err = -1;
27041 xmlStopParser(vctxt->parserCtxt);
27042 return;
27043}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027044
Daniel Veillard4255d502002-04-16 15:50:10 +000027045/************************************************************************
27046 * *
27047 * Validation interfaces *
27048 * *
27049 ************************************************************************/
27050
27051/**
27052 * xmlSchemaNewValidCtxt:
27053 * @schema: a precompiled XML Schemas
27054 *
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027055 * Create an XML Schemas validation context based on the given schema.
Daniel Veillard4255d502002-04-16 15:50:10 +000027056 *
27057 * Returns the validation context or NULL in case of error
27058 */
27059xmlSchemaValidCtxtPtr
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027060xmlSchemaNewValidCtxt(xmlSchemaPtr schema)
27061{
Daniel Veillard4255d502002-04-16 15:50:10 +000027062 xmlSchemaValidCtxtPtr ret;
27063
27064 ret = (xmlSchemaValidCtxtPtr) xmlMalloc(sizeof(xmlSchemaValidCtxt));
27065 if (ret == NULL) {
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027066 xmlSchemaVErrMemory(NULL, "allocating validation context", NULL);
Daniel Veillard4255d502002-04-16 15:50:10 +000027067 return (NULL);
27068 }
27069 memset(ret, 0, sizeof(xmlSchemaValidCtxt));
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027070 ret->type = XML_SCHEMA_CTXT_VALIDATOR;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027071 ret->dict = xmlDictCreate();
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000027072 ret->nodeQNames = xmlSchemaItemListCreate();
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027073 ret->schema = schema;
Daniel Veillard4255d502002-04-16 15:50:10 +000027074 return (ret);
27075}
27076
27077/**
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027078 * xmlSchemaClearValidCtxt:
27079 * @ctxt: the schema validation context
27080 *
27081 * Free the resources associated to the schema validation context;
27082 * leaves some fields alive intended for reuse of the context.
27083 */
27084static void
27085xmlSchemaClearValidCtxt(xmlSchemaValidCtxtPtr vctxt)
27086{
27087 if (vctxt == NULL)
27088 return;
27089
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027090 /*
27091 * TODO: Should we clear the flags?
27092 * Might be problematic if one reuses the context
27093 * and assumes that the options remain the same.
27094 */
Kasimier T. Buchcikaba15f72005-04-01 15:17:27 +000027095 vctxt->flags = 0;
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027096 vctxt->validationRoot = NULL;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027097 vctxt->doc = NULL;
Daniel Veillard39e5c892005-07-03 22:48:50 +000027098#ifdef LIBXML_READER_ENABLED
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027099 vctxt->reader = NULL;
Daniel Veillard39e5c892005-07-03 22:48:50 +000027100#endif
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027101 vctxt->hasKeyrefs = 0;
27102
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027103 if (vctxt->value != NULL) {
27104 xmlSchemaFreeValue(vctxt->value);
27105 vctxt->value = NULL;
27106 }
27107 /*
27108 * Augmented IDC information.
27109 */
27110 if (vctxt->aidcs != NULL) {
27111 xmlSchemaIDCAugPtr cur = vctxt->aidcs, next;
27112 do {
27113 next = cur->next;
27114 xmlFree(cur);
27115 cur = next;
27116 } while (cur != NULL);
27117 vctxt->aidcs = NULL;
27118 }
27119 if (vctxt->idcNodes != NULL) {
27120 int i;
27121 xmlSchemaPSVIIDCNodePtr item;
27122
27123 for (i = 0; i < vctxt->nbIdcNodes; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027124 item = vctxt->idcNodes[i];
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027125 xmlFree(item->keys);
27126 xmlFree(item);
27127 }
27128 xmlFree(vctxt->idcNodes);
27129 vctxt->idcNodes = NULL;
27130 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027131 /*
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027132 * Note that we won't delete the XPath state pool here.
27133 */
27134 if (vctxt->xpathStates != NULL) {
27135 xmlSchemaFreeIDCStateObjList(vctxt->xpathStates);
27136 vctxt->xpathStates = NULL;
27137 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027138 /*
27139 * Attribute info.
27140 */
27141 if (vctxt->nbAttrInfos != 0) {
27142 xmlSchemaClearAttrInfos(vctxt);
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027143 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027144 /*
27145 * Element info.
27146 */
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027147 if (vctxt->elemInfos != NULL) {
27148 int i;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027149 xmlSchemaNodeInfoPtr ei;
27150
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027151 for (i = 0; i < vctxt->sizeElemInfos; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027152 ei = vctxt->elemInfos[i];
27153 if (ei == NULL)
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027154 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027155 xmlSchemaClearElemInfo(ei);
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027156 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027157 }
27158 xmlSchemaItemListClear(vctxt->nodeQNames);
27159 /* Recreate the dict. */
27160 xmlDictFree(vctxt->dict);
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027161 /*
27162 * TODO: Is is save to recreate it? Do we have a scenario
27163 * where the user provides the dict?
27164 */
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027165 vctxt->dict = xmlDictCreate();
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027166}
27167
27168/**
Daniel Veillard4255d502002-04-16 15:50:10 +000027169 * xmlSchemaFreeValidCtxt:
27170 * @ctxt: the schema validation context
27171 *
27172 * Free the resources associated to the schema validation context
27173 */
27174void
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027175xmlSchemaFreeValidCtxt(xmlSchemaValidCtxtPtr ctxt)
27176{
Daniel Veillard4255d502002-04-16 15:50:10 +000027177 if (ctxt == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027178 return;
Daniel Veillard88c58912002-04-23 07:12:20 +000027179 if (ctxt->value != NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027180 xmlSchemaFreeValue(ctxt->value);
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027181 if (ctxt->pctxt != NULL)
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027182 xmlSchemaFreeParserCtxt(ctxt->pctxt);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027183 if (ctxt->idcNodes != NULL) {
27184 int i;
27185 xmlSchemaPSVIIDCNodePtr item;
27186
27187 for (i = 0; i < ctxt->nbIdcNodes; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027188 item = ctxt->idcNodes[i];
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027189 xmlFree(item->keys);
27190 xmlFree(item);
27191 }
27192 xmlFree(ctxt->idcNodes);
27193 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027194 if (ctxt->idcKeys != NULL) {
27195 int i;
27196 for (i = 0; i < ctxt->nbIdcKeys; i++)
27197 xmlSchemaIDCFreeKey(ctxt->idcKeys[i]);
27198 xmlFree(ctxt->idcKeys);
27199 }
27200
27201 if (ctxt->xpathStates != NULL)
27202 xmlSchemaFreeIDCStateObjList(ctxt->xpathStates);
27203 if (ctxt->xpathStatePool != NULL)
27204 xmlSchemaFreeIDCStateObjList(ctxt->xpathStatePool);
27205
27206 /*
27207 * Augmented IDC information.
27208 */
27209 if (ctxt->aidcs != NULL) {
27210 xmlSchemaIDCAugPtr cur = ctxt->aidcs, next;
27211 do {
27212 next = cur->next;
27213 xmlFree(cur);
27214 cur = next;
27215 } while (cur != NULL);
27216 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027217 if (ctxt->attrInfos != NULL) {
27218 int i;
27219 xmlSchemaAttrInfoPtr attr;
27220
27221 /* Just a paranoid call to the cleanup. */
27222 if (ctxt->nbAttrInfos != 0)
27223 xmlSchemaClearAttrInfos(ctxt);
27224 for (i = 0; i < ctxt->sizeAttrInfos; i++) {
27225 attr = ctxt->attrInfos[i];
27226 xmlFree(attr);
27227 }
27228 xmlFree(ctxt->attrInfos);
Kasimier T. Buchcikbd2a7d12005-02-16 12:27:25 +000027229 }
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027230 if (ctxt->elemInfos != NULL) {
27231 int i;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027232 xmlSchemaNodeInfoPtr ei;
27233
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027234 for (i = 0; i < ctxt->sizeElemInfos; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027235 ei = ctxt->elemInfos[i];
27236 if (ei == NULL)
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027237 break;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027238 xmlSchemaClearElemInfo(ei);
27239 xmlFree(ei);
Kasimier T. Buchcike8a550b2005-01-27 12:49:31 +000027240 }
27241 xmlFree(ctxt->elemInfos);
27242 }
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027243 if (ctxt->nodeQNames != NULL)
Kasimier T. Buchcik630215b2005-08-22 10:15:39 +000027244 xmlSchemaItemListFree(ctxt->nodeQNames);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027245 if (ctxt->dict != NULL)
27246 xmlDictFree(ctxt->dict);
Daniel Veillard4255d502002-04-16 15:50:10 +000027247 xmlFree(ctxt);
27248}
27249
27250/**
Daniel Veillardf10ae122005-07-10 19:03:16 +000027251 * xmlSchemaIsValid:
27252 * @ctxt: the schema validation context
27253 *
27254 * Check if any error was detected during validation.
27255 *
27256 * Returns 1 if valid so far, 0 if errors were detected, and -1 in case
27257 * of internal error.
27258 */
27259int
27260xmlSchemaIsValid(xmlSchemaValidCtxtPtr ctxt)
27261{
27262 if (ctxt == NULL)
27263 return(-1);
27264 return(ctxt->err == 0);
27265}
27266
27267/**
Daniel Veillard4255d502002-04-16 15:50:10 +000027268 * xmlSchemaSetValidErrors:
27269 * @ctxt: a schema validation context
27270 * @err: the error function
27271 * @warn: the warning function
Daniel Veillarda9b66d02002-12-11 14:23:49 +000027272 * @ctx: the functions context
Daniel Veillard4255d502002-04-16 15:50:10 +000027273 *
William M. Brack2f2a6632004-08-20 23:09:47 +000027274 * Set the error and warning callback informations
Daniel Veillard4255d502002-04-16 15:50:10 +000027275 */
27276void
27277xmlSchemaSetValidErrors(xmlSchemaValidCtxtPtr ctxt,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027278 xmlSchemaValidityErrorFunc err,
27279 xmlSchemaValidityWarningFunc warn, void *ctx)
27280{
Daniel Veillard4255d502002-04-16 15:50:10 +000027281 if (ctxt == NULL)
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027282 return;
Daniel Veillard4255d502002-04-16 15:50:10 +000027283 ctxt->error = err;
27284 ctxt->warning = warn;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000027285 ctxt->errCtxt = ctx;
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027286 if (ctxt->pctxt != NULL)
27287 xmlSchemaSetParserErrors(ctxt->pctxt, err, warn, ctx);
Daniel Veillard4255d502002-04-16 15:50:10 +000027288}
27289
27290/**
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000027291 * xmlSchemaSetValidStructuredErrors:
27292 * @ctxt: a schema validation context
27293 * @serror: the structured error function
27294 * @ctx: the functions context
27295 *
27296 * Set the structured error callback
27297 */
27298void
27299xmlSchemaSetValidStructuredErrors(xmlSchemaValidCtxtPtr ctxt,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000027300 xmlStructuredErrorFunc serror, void *ctx)
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000027301{
27302 if (ctxt == NULL)
27303 return;
27304 ctxt->serror = serror;
27305 ctxt->error = NULL;
27306 ctxt->warning = NULL;
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000027307 ctxt->errCtxt = ctx;
27308 if (ctxt->pctxt != NULL)
27309 xmlSchemaSetParserStructuredErrors(ctxt->pctxt, serror, ctx);
Daniel Veillardda0aa4c2005-07-13 23:07:49 +000027310}
27311
27312/**
Daniel Veillard259f0df2004-08-18 09:13:18 +000027313 * xmlSchemaGetValidErrors:
27314 * @ctxt: a XML-Schema validation context
27315 * @err: the error function result
27316 * @warn: the warning function result
27317 * @ctx: the functions context result
27318 *
27319 * Get the error and warning callback informations
27320 *
27321 * Returns -1 in case of error and 0 otherwise
27322 */
27323int
27324xmlSchemaGetValidErrors(xmlSchemaValidCtxtPtr ctxt,
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000027325 xmlSchemaValidityErrorFunc * err,
27326 xmlSchemaValidityWarningFunc * warn, void **ctx)
Daniel Veillard259f0df2004-08-18 09:13:18 +000027327{
27328 if (ctxt == NULL)
27329 return (-1);
27330 if (err != NULL)
27331 *err = ctxt->error;
27332 if (warn != NULL)
27333 *warn = ctxt->warning;
27334 if (ctx != NULL)
Kasimier T. Buchcik90b5ebc2005-11-18 17:18:27 +000027335 *ctx = ctxt->errCtxt;
Daniel Veillard259f0df2004-08-18 09:13:18 +000027336 return (0);
27337}
27338
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027339
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027340/**
Daniel Veillard6927b102004-10-27 17:29:04 +000027341 * xmlSchemaSetValidOptions:
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027342 * @ctxt: a schema validation context
27343 * @options: a combination of xmlSchemaValidOption
27344 *
27345 * Sets the options to be used during the validation.
27346 *
27347 * Returns 0 in case of success, -1 in case of an
27348 * API error.
27349 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027350int
27351xmlSchemaSetValidOptions(xmlSchemaValidCtxtPtr ctxt,
27352 int options)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027353
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027354{
27355 int i;
27356
27357 if (ctxt == NULL)
27358 return (-1);
27359 /*
27360 * WARNING: Change the start value if adding to the
27361 * xmlSchemaValidOption.
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027362 * TODO: Is there an other, more easy to maintain,
27363 * way?
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027364 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027365 for (i = 1; i < (int) sizeof(int) * 8; i++) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027366 if (options & 1<<i)
27367 return (-1);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027368 }
27369 ctxt->options = options;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027370 return (0);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027371}
27372
27373/**
Daniel Veillard6927b102004-10-27 17:29:04 +000027374 * xmlSchemaValidCtxtGetOptions:
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027375 * @ctxt: a schema validation context
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027376 *
William M. Brack21e4ef22005-01-02 09:53:13 +000027377 * Get the validation context options.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027378 *
William M. Brack21e4ef22005-01-02 09:53:13 +000027379 * Returns the option combination or -1 on error.
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027380 */
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027381int
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027382xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027383
27384{
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027385 if (ctxt == NULL)
27386 return (-1);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027387 else
27388 return (ctxt->options);
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027389}
Kasimier T. Buchcik87876402004-09-29 13:29:03 +000027390
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027391static int
27392xmlSchemaVDocWalk(xmlSchemaValidCtxtPtr vctxt)
27393{
27394 xmlAttrPtr attr;
27395 int ret = 0;
27396 xmlSchemaNodeInfoPtr ielem = NULL;
27397 xmlNodePtr node, valRoot;
27398 const xmlChar *nsName;
27399
27400 /* DOC VAL TODO: Move this to the start function. */
27401 valRoot = xmlDocGetRootElement(vctxt->doc);
27402 if (valRoot == NULL) {
27403 /* VAL TODO: Error code? */
27404 VERROR(1, NULL, "The document has no document element");
27405 return (1);
27406 }
27407 vctxt->depth = -1;
27408 vctxt->validationRoot = valRoot;
27409 node = valRoot;
27410 while (node != NULL) {
27411 if ((vctxt->skipDepth != -1) && (vctxt->depth >= vctxt->skipDepth))
27412 goto next_sibling;
27413 if (node->type == XML_ELEMENT_NODE) {
27414
27415 /*
27416 * Init the node-info.
27417 */
Kasimier T. Buchcik84a56e32005-06-16 12:44:35 +000027418 vctxt->depth++;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027419 if (xmlSchemaValidatorPushElem(vctxt) == -1)
27420 goto internal_error;
27421 ielem = vctxt->inode;
27422 ielem->node = node;
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027423 ielem->nodeLine = node->line;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027424 ielem->localName = node->name;
27425 if (node->ns != NULL)
27426 ielem->nsName = node->ns->href;
27427 ielem->flags |= XML_SCHEMA_ELEM_INFO_EMPTY;
27428 /*
27429 * Register attributes.
27430 * DOC VAL TODO: We do not register namespace declaration
27431 * attributes yet.
27432 */
27433 vctxt->nbAttrInfos = 0;
27434 if (node->properties != NULL) {
27435 attr = node->properties;
27436 do {
27437 if (attr->ns != NULL)
27438 nsName = attr->ns->href;
27439 else
27440 nsName = NULL;
27441 ret = xmlSchemaValidatorPushAttribute(vctxt,
27442 (xmlNodePtr) attr,
Kasimier T. Buchcik764b3d62005-08-12 12:25:23 +000027443 /*
27444 * Note that we give it the line number of the
27445 * parent element.
27446 */
27447 ielem->nodeLine,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027448 attr->name, nsName, 0,
27449 xmlNodeListGetString(attr->doc, attr->children, 1), 1);
27450 if (ret == -1) {
27451 VERROR_INT("xmlSchemaDocWalk",
27452 "calling xmlSchemaValidatorPushAttribute()");
27453 goto internal_error;
27454 }
27455 attr = attr->next;
27456 } while (attr);
27457 }
27458 /*
27459 * Validate the element.
27460 */
27461 ret = xmlSchemaValidateElem(vctxt);
27462 if (ret != 0) {
27463 if (ret == -1) {
27464 VERROR_INT("xmlSchemaDocWalk",
27465 "calling xmlSchemaValidateElem()");
27466 goto internal_error;
27467 }
27468 /*
27469 * Don't stop validation; just skip the content
27470 * of this element.
27471 */
27472 goto leave_node;
27473 }
27474 if ((vctxt->skipDepth != -1) &&
27475 (vctxt->depth >= vctxt->skipDepth))
27476 goto leave_node;
27477 } else if ((node->type == XML_TEXT_NODE) ||
27478 (node->type == XML_CDATA_SECTION_NODE)) {
27479 /*
27480 * Process character content.
27481 */
Daniel Veillard14b56432006-03-09 18:41:40 +000027482 if ((ielem != NULL) && (ielem->flags & XML_SCHEMA_ELEM_INFO_EMPTY))
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027483 ielem->flags ^= XML_SCHEMA_ELEM_INFO_EMPTY;
27484 ret = xmlSchemaVPushText(vctxt, node->type, node->content,
27485 -1, XML_SCHEMA_PUSH_TEXT_PERSIST, NULL);
27486 if (ret < 0) {
27487 VERROR_INT("xmlSchemaVDocWalk",
27488 "calling xmlSchemaVPushText()");
27489 goto internal_error;
27490 }
27491 /*
27492 * DOC VAL TODO: Should we skip further validation of the
27493 * element content here?
27494 */
27495 } else if ((node->type == XML_ENTITY_NODE) ||
27496 (node->type == XML_ENTITY_REF_NODE)) {
27497 /*
27498 * DOC VAL TODO: What to do with entities?
27499 */
27500 TODO
27501 } else {
27502 goto leave_node;
27503 /*
27504 * DOC VAL TODO: XInclude nodes, etc.
27505 */
27506 }
27507 /*
27508 * Walk the doc.
27509 */
27510 if (node->children != NULL) {
27511 node = node->children;
27512 continue;
27513 }
27514leave_node:
27515 if (node->type == XML_ELEMENT_NODE) {
27516 /*
27517 * Leaving the scope of an element.
27518 */
27519 if (node != vctxt->inode->node) {
27520 VERROR_INT("xmlSchemaVDocWalk",
27521 "element position mismatch");
27522 goto internal_error;
27523 }
27524 ret = xmlSchemaValidatorPopElem(vctxt);
27525 if (ret != 0) {
27526 if (ret < 0) {
27527 VERROR_INT("xmlSchemaVDocWalk",
27528 "calling xmlSchemaValidatorPopElem()");
27529 goto internal_error;
27530 }
27531 }
27532 if (node == valRoot)
27533 goto exit;
27534 }
27535next_sibling:
27536 if (node->next != NULL)
27537 node = node->next;
27538 else {
27539 node = node->parent;
27540 goto leave_node;
27541 }
27542 }
27543
27544exit:
27545 return (ret);
27546internal_error:
27547 return (-1);
27548}
27549
27550static int
Daniel Veillardf10ae122005-07-10 19:03:16 +000027551xmlSchemaPreRun(xmlSchemaValidCtxtPtr vctxt) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027552 /*
27553 * Some initialization.
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027554 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027555 vctxt->err = 0;
27556 vctxt->nberrors = 0;
27557 vctxt->depth = -1;
27558 vctxt->skipDepth = -1;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027559 vctxt->xsiAssemble = 0;
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027560 vctxt->hasKeyrefs = 0;
Kasimier T. Buchcik132ba5f2005-11-28 12:32:24 +000027561#ifdef ENABLE_IDC_NODE_TABLES_TEST
Kasimier T. Buchcik27820272005-10-14 14:33:48 +000027562 vctxt->createIDCNodeTables = 1;
27563#else
27564 vctxt->createIDCNodeTables = 0;
27565#endif
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027566 /*
27567 * Create a schema + parser if necessary.
27568 */
27569 if (vctxt->schema == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027570 xmlSchemaParserCtxtPtr pctxt;
27571
27572 vctxt->xsiAssemble = 1;
27573 /*
27574 * If not schema was given then we will create a schema
27575 * dynamically using XSI schema locations.
27576 *
27577 * Create the schema parser context.
27578 */
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027579 if ((vctxt->pctxt == NULL) &&
27580 (xmlSchemaCreatePCtxtOnVCtxt(vctxt) == -1))
27581 return (-1);
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027582 pctxt = vctxt->pctxt;
27583 pctxt->xsiAssemble = 1;
27584 /*
27585 * Create the schema.
27586 */
27587 vctxt->schema = xmlSchemaNewSchema(pctxt);
27588 if (vctxt->schema == NULL)
27589 return (-1);
27590 /*
27591 * Create the schema construction context.
27592 */
27593 pctxt->constructor = xmlSchemaConstructionCtxtCreate(pctxt->dict);
27594 if (pctxt->constructor == NULL)
27595 return(-1);
Kasimier T. Buchcik570faa52005-10-10 13:18:40 +000027596 pctxt->constructor->mainSchema = vctxt->schema;
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027597 /*
27598 * Take ownership of the constructor to be able to free it.
27599 */
27600 pctxt->ownsConstructor = 1;
27601 }
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027602 /*
27603 * Augment the IDC definitions.
27604 */
27605 if (vctxt->schema->idcDef != NULL) {
27606 xmlHashScan(vctxt->schema->idcDef,
27607 (xmlHashScanner) xmlSchemaAugmentIDC, vctxt);
27608 }
Daniel Veillardf10ae122005-07-10 19:03:16 +000027609 return(0);
27610}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027611
Daniel Veillardf10ae122005-07-10 19:03:16 +000027612static void
27613xmlSchemaPostRun(xmlSchemaValidCtxtPtr vctxt) {
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027614 if (vctxt->xsiAssemble) {
27615 if (vctxt->schema != NULL) {
27616 xmlSchemaFree(vctxt->schema);
27617 vctxt->schema = NULL;
27618 }
27619 }
27620 xmlSchemaClearValidCtxt(vctxt);
Daniel Veillardf10ae122005-07-10 19:03:16 +000027621}
27622
27623static int
27624xmlSchemaVStart(xmlSchemaValidCtxtPtr vctxt)
27625{
27626 int ret = 0;
27627
27628 if (xmlSchemaPreRun(vctxt) < 0)
27629 return(-1);
27630
27631 if (vctxt->doc != NULL) {
27632 /*
27633 * Tree validation.
27634 */
27635 ret = xmlSchemaVDocWalk(vctxt);
27636#ifdef LIBXML_READER_ENABLED
27637 } else if (vctxt->reader != NULL) {
27638 /*
27639 * XML Reader validation.
27640 */
27641#ifdef XML_SCHEMA_READER_ENABLED
27642 ret = xmlSchemaVReaderWalk(vctxt);
27643#endif
27644#endif
27645 } else if ((vctxt->sax != NULL) && (vctxt->parserCtxt != NULL)) {
27646 /*
27647 * SAX validation.
27648 */
27649 ret = xmlParseDocument(vctxt->parserCtxt);
27650 } else {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027651 VERROR_INT("xmlSchemaVStart",
Daniel Veillardf10ae122005-07-10 19:03:16 +000027652 "no instance to validate");
27653 ret = -1;
27654 }
27655
27656 xmlSchemaPostRun(vctxt);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027657 if (ret == 0)
27658 ret = vctxt->err;
27659 return (ret);
27660}
27661
27662/**
27663 * xmlSchemaValidateOneElement:
27664 * @ctxt: a schema validation context
27665 * @elem: an element node
27666 *
27667 * Validate a branch of a tree, starting with the given @elem.
27668 *
27669 * Returns 0 if the element and its subtree is valid, a positive error
27670 * code number otherwise and -1 in case of an internal or API error.
27671 */
27672int
27673xmlSchemaValidateOneElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem)
27674{
27675 if ((ctxt == NULL) || (elem == NULL) || (elem->type != XML_ELEMENT_NODE))
27676 return (-1);
27677
27678 if (ctxt->schema == NULL)
27679 return (-1);
27680
27681 ctxt->doc = elem->doc;
27682 ctxt->node = elem;
27683 ctxt->validationRoot = elem;
27684 return(xmlSchemaVStart(ctxt));
27685}
Kasimier T. Buchcik876a6db2004-09-16 11:31:52 +000027686
Daniel Veillard259f0df2004-08-18 09:13:18 +000027687/**
Daniel Veillard4255d502002-04-16 15:50:10 +000027688 * xmlSchemaValidateDoc:
27689 * @ctxt: a schema validation context
27690 * @doc: a parsed document tree
27691 *
27692 * Validate a document tree in memory.
27693 *
27694 * Returns 0 if the document is schemas valid, a positive error code
27695 * number otherwise and -1 in case of internal or API error.
27696 */
27697int
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027698xmlSchemaValidateDoc(xmlSchemaValidCtxtPtr ctxt, xmlDocPtr doc)
27699{
Daniel Veillard4255d502002-04-16 15:50:10 +000027700 if ((ctxt == NULL) || (doc == NULL))
Daniel Veillardd0c9c322003-10-10 00:49:42 +000027701 return (-1);
Daniel Veillard4255d502002-04-16 15:50:10 +000027702
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027703 ctxt->doc = doc;
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027704 ctxt->node = xmlDocGetRootElement(doc);
27705 if (ctxt->node == NULL) {
Kasimier T. Buchcik22c0c462005-09-12 19:09:46 +000027706 xmlSchemaCustomErr(ACTXT_CAST ctxt,
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027707 XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING,
27708 (xmlNodePtr) doc, NULL,
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027709 "The document has no document element", NULL, NULL);
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027710 return (ctxt->err);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027711 }
Kasimier T. Buchcik7f3efa92005-03-07 17:41:58 +000027712 ctxt->validationRoot = ctxt->node;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000027713 return (xmlSchemaVStart(ctxt));
Daniel Veillard4255d502002-04-16 15:50:10 +000027714}
27715
Daniel Veillardcdc82732005-07-08 15:04:06 +000027716
27717/************************************************************************
27718 * *
27719 * Function and data for SAX streaming API *
27720 * *
27721 ************************************************************************/
27722typedef struct _xmlSchemaSplitSAXData xmlSchemaSplitSAXData;
27723typedef xmlSchemaSplitSAXData *xmlSchemaSplitSAXDataPtr;
27724
27725struct _xmlSchemaSplitSAXData {
27726 xmlSAXHandlerPtr user_sax;
27727 void *user_data;
27728 xmlSchemaValidCtxtPtr ctxt;
27729 xmlSAXHandlerPtr schemas_sax;
27730};
27731
Daniel Veillard971771e2005-07-09 17:32:57 +000027732#define XML_SAX_PLUG_MAGIC 0xdc43ba21
27733
27734struct _xmlSchemaSAXPlug {
27735 unsigned int magic;
27736
27737 /* the original callbacks informations */
27738 xmlSAXHandlerPtr *user_sax_ptr;
27739 xmlSAXHandlerPtr user_sax;
27740 void **user_data_ptr;
27741 void *user_data;
27742
27743 /* the block plugged back and validation informations */
27744 xmlSAXHandler schemas_sax;
27745 xmlSchemaValidCtxtPtr ctxt;
27746};
27747
Daniel Veillardcdc82732005-07-08 15:04:06 +000027748/* All those functions just bounces to the user provided SAX handlers */
27749static void
27750internalSubsetSplit(void *ctx, const xmlChar *name,
27751 const xmlChar *ExternalID, const xmlChar *SystemID)
27752{
Daniel Veillard971771e2005-07-09 17:32:57 +000027753 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027754 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27755 (ctxt->user_sax->internalSubset != NULL))
27756 ctxt->user_sax->internalSubset(ctxt->user_data, name, ExternalID,
27757 SystemID);
27758}
27759
27760static int
27761isStandaloneSplit(void *ctx)
27762{
Daniel Veillard971771e2005-07-09 17:32:57 +000027763 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027764 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27765 (ctxt->user_sax->isStandalone != NULL))
27766 return(ctxt->user_sax->isStandalone(ctxt->user_data));
27767 return(0);
27768}
27769
27770static int
27771hasInternalSubsetSplit(void *ctx)
27772{
Daniel Veillard971771e2005-07-09 17:32:57 +000027773 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027774 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27775 (ctxt->user_sax->hasInternalSubset != NULL))
27776 return(ctxt->user_sax->hasInternalSubset(ctxt->user_data));
27777 return(0);
27778}
27779
27780static int
27781hasExternalSubsetSplit(void *ctx)
27782{
Daniel Veillard971771e2005-07-09 17:32:57 +000027783 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027784 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27785 (ctxt->user_sax->hasExternalSubset != NULL))
27786 return(ctxt->user_sax->hasExternalSubset(ctxt->user_data));
27787 return(0);
27788}
27789
27790static void
27791externalSubsetSplit(void *ctx, const xmlChar *name,
27792 const xmlChar *ExternalID, const xmlChar *SystemID)
27793{
Daniel Veillard971771e2005-07-09 17:32:57 +000027794 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027795 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27796 (ctxt->user_sax->internalSubset != NULL))
27797 ctxt->user_sax->internalSubset(ctxt->user_data, name, ExternalID,
27798 SystemID);
27799}
27800
27801static xmlParserInputPtr
27802resolveEntitySplit(void *ctx, const xmlChar *publicId, const xmlChar *systemId)
27803{
Daniel Veillard971771e2005-07-09 17:32:57 +000027804 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027805 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27806 (ctxt->user_sax->resolveEntity != NULL))
27807 return(ctxt->user_sax->resolveEntity(ctxt->user_data, publicId,
27808 systemId));
27809 return(NULL);
27810}
27811
27812static xmlEntityPtr
27813getEntitySplit(void *ctx, const xmlChar *name)
27814{
Daniel Veillard971771e2005-07-09 17:32:57 +000027815 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027816 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27817 (ctxt->user_sax->getEntity != NULL))
27818 return(ctxt->user_sax->getEntity(ctxt->user_data, name));
27819 return(NULL);
27820}
27821
27822static xmlEntityPtr
27823getParameterEntitySplit(void *ctx, const xmlChar *name)
27824{
Daniel Veillard971771e2005-07-09 17:32:57 +000027825 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027826 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27827 (ctxt->user_sax->getParameterEntity != NULL))
27828 return(ctxt->user_sax->getParameterEntity(ctxt->user_data, name));
27829 return(NULL);
27830}
27831
27832
27833static void
27834entityDeclSplit(void *ctx, const xmlChar *name, int type,
27835 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
27836{
Daniel Veillard971771e2005-07-09 17:32:57 +000027837 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027838 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27839 (ctxt->user_sax->entityDecl != NULL))
27840 ctxt->user_sax->entityDecl(ctxt->user_data, name, type, publicId,
27841 systemId, content);
27842}
27843
27844static void
27845attributeDeclSplit(void *ctx, const xmlChar * elem,
27846 const xmlChar * name, int type, int def,
27847 const xmlChar * defaultValue, xmlEnumerationPtr tree)
27848{
Daniel Veillard971771e2005-07-09 17:32:57 +000027849 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027850 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27851 (ctxt->user_sax->attributeDecl != NULL)) {
27852 ctxt->user_sax->attributeDecl(ctxt->user_data, elem, name, type,
27853 def, defaultValue, tree);
27854 } else {
27855 xmlFreeEnumeration(tree);
27856 }
27857}
27858
27859static void
27860elementDeclSplit(void *ctx, const xmlChar *name, int type,
27861 xmlElementContentPtr content)
27862{
Daniel Veillard971771e2005-07-09 17:32:57 +000027863 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027864 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27865 (ctxt->user_sax->elementDecl != NULL))
27866 ctxt->user_sax->elementDecl(ctxt->user_data, name, type, content);
27867}
27868
27869static void
27870notationDeclSplit(void *ctx, const xmlChar *name,
27871 const xmlChar *publicId, const xmlChar *systemId)
27872{
Daniel Veillard971771e2005-07-09 17:32:57 +000027873 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027874 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27875 (ctxt->user_sax->notationDecl != NULL))
27876 ctxt->user_sax->notationDecl(ctxt->user_data, name, publicId,
27877 systemId);
27878}
27879
27880static void
27881unparsedEntityDeclSplit(void *ctx, const xmlChar *name,
27882 const xmlChar *publicId, const xmlChar *systemId,
27883 const xmlChar *notationName)
27884{
Daniel Veillard971771e2005-07-09 17:32:57 +000027885 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027886 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27887 (ctxt->user_sax->unparsedEntityDecl != NULL))
27888 ctxt->user_sax->unparsedEntityDecl(ctxt->user_data, name, publicId,
27889 systemId, notationName);
27890}
27891
27892static void
27893setDocumentLocatorSplit(void *ctx, xmlSAXLocatorPtr loc)
27894{
Daniel Veillard971771e2005-07-09 17:32:57 +000027895 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027896 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27897 (ctxt->user_sax->setDocumentLocator != NULL))
27898 ctxt->user_sax->setDocumentLocator(ctxt->user_data, loc);
27899}
27900
27901static void
27902startDocumentSplit(void *ctx)
27903{
Daniel Veillard971771e2005-07-09 17:32:57 +000027904 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027905 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27906 (ctxt->user_sax->startDocument != NULL))
27907 ctxt->user_sax->startDocument(ctxt->user_data);
27908}
27909
27910static void
27911endDocumentSplit(void *ctx)
27912{
Daniel Veillard971771e2005-07-09 17:32:57 +000027913 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027914 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27915 (ctxt->user_sax->endDocument != NULL))
27916 ctxt->user_sax->endDocument(ctxt->user_data);
27917}
27918
27919static void
27920processingInstructionSplit(void *ctx, const xmlChar *target,
27921 const xmlChar *data)
27922{
Daniel Veillard971771e2005-07-09 17:32:57 +000027923 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027924 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27925 (ctxt->user_sax->processingInstruction != NULL))
27926 ctxt->user_sax->processingInstruction(ctxt->user_data, target, data);
27927}
27928
27929static void
27930commentSplit(void *ctx, const xmlChar *value)
27931{
Daniel Veillard971771e2005-07-09 17:32:57 +000027932 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027933 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27934 (ctxt->user_sax->comment != NULL))
27935 ctxt->user_sax->comment(ctxt->user_data, value);
27936}
27937
27938/*
27939 * Varargs error callbacks to the user application, harder ...
27940 */
27941
Daniel Veillardffa3c742005-07-21 13:24:09 +000027942static void XMLCDECL
Daniel Veillardafc05b62005-07-17 06:11:19 +000027943warningSplit(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) {
Daniel Veillard971771e2005-07-09 17:32:57 +000027944 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027945 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27946 (ctxt->user_sax->warning != NULL)) {
27947 TODO
27948 }
27949}
Daniel Veillardffa3c742005-07-21 13:24:09 +000027950static void XMLCDECL
Daniel Veillardafc05b62005-07-17 06:11:19 +000027951errorSplit(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) {
Daniel Veillard971771e2005-07-09 17:32:57 +000027952 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027953 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27954 (ctxt->user_sax->error != NULL)) {
27955 TODO
27956 }
27957}
Daniel Veillardffa3c742005-07-21 13:24:09 +000027958static void XMLCDECL
Daniel Veillardafc05b62005-07-17 06:11:19 +000027959fatalErrorSplit(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) {
Daniel Veillard971771e2005-07-09 17:32:57 +000027960 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027961 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
27962 (ctxt->user_sax->fatalError != NULL)) {
27963 TODO
27964 }
27965}
27966
27967/*
27968 * Those are function where both the user handler and the schemas handler
27969 * need to be called.
27970 */
27971static void
27972charactersSplit(void *ctx, const xmlChar *ch, int len)
27973{
Daniel Veillard971771e2005-07-09 17:32:57 +000027974 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027975 if (ctxt == NULL)
27976 return;
27977 if ((ctxt->user_sax != NULL) && (ctxt->user_sax->characters != NULL))
27978 ctxt->user_sax->characters(ctxt->user_data, ch, len);
27979 if (ctxt->ctxt != NULL)
27980 xmlSchemaSAXHandleText(ctxt->ctxt, ch, len);
27981}
27982
27983static void
27984ignorableWhitespaceSplit(void *ctx, const xmlChar *ch, int len)
27985{
Daniel Veillard971771e2005-07-09 17:32:57 +000027986 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000027987 if (ctxt == NULL)
27988 return;
27989 if ((ctxt->user_sax != NULL) &&
27990 (ctxt->user_sax->ignorableWhitespace != NULL))
27991 ctxt->user_sax->ignorableWhitespace(ctxt->user_data, ch, len);
27992 if (ctxt->ctxt != NULL)
27993 xmlSchemaSAXHandleText(ctxt->ctxt, ch, len);
27994}
27995
27996static void
27997cdataBlockSplit(void *ctx, const xmlChar *value, int len)
27998{
Daniel Veillard971771e2005-07-09 17:32:57 +000027999 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028000 if (ctxt == NULL)
28001 return;
28002 if ((ctxt->user_sax != NULL) &&
28003 (ctxt->user_sax->ignorableWhitespace != NULL))
28004 ctxt->user_sax->ignorableWhitespace(ctxt->user_data, value, len);
28005 if (ctxt->ctxt != NULL)
28006 xmlSchemaSAXHandleCDataSection(ctxt->ctxt, value, len);
28007}
28008
28009static void
28010referenceSplit(void *ctx, const xmlChar *name)
28011{
Daniel Veillard971771e2005-07-09 17:32:57 +000028012 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillard14b56432006-03-09 18:41:40 +000028013 if (ctxt == NULL)
28014 return;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028015 if ((ctxt != NULL) && (ctxt->user_sax != NULL) &&
28016 (ctxt->user_sax->reference != NULL))
28017 ctxt->user_sax->reference(ctxt->user_data, name);
28018 if (ctxt->ctxt != NULL)
28019 xmlSchemaSAXHandleReference(ctxt->user_data, name);
28020}
28021
28022static void
28023startElementNsSplit(void *ctx, const xmlChar * localname,
28024 const xmlChar * prefix, const xmlChar * URI,
28025 int nb_namespaces, const xmlChar ** namespaces,
28026 int nb_attributes, int nb_defaulted,
28027 const xmlChar ** attributes) {
Daniel Veillard971771e2005-07-09 17:32:57 +000028028 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028029 if (ctxt == NULL)
28030 return;
28031 if ((ctxt->user_sax != NULL) &&
28032 (ctxt->user_sax->startElementNs != NULL))
28033 ctxt->user_sax->startElementNs(ctxt->user_data, localname, prefix,
28034 URI, nb_namespaces, namespaces,
28035 nb_attributes, nb_defaulted,
28036 attributes);
28037 if (ctxt->ctxt != NULL)
28038 xmlSchemaSAXHandleStartElementNs(ctxt->ctxt, localname, prefix,
28039 URI, nb_namespaces, namespaces,
28040 nb_attributes, nb_defaulted,
28041 attributes);
28042}
28043
28044static void
28045endElementNsSplit(void *ctx, const xmlChar * localname,
28046 const xmlChar * prefix, const xmlChar * URI) {
Daniel Veillard971771e2005-07-09 17:32:57 +000028047 xmlSchemaSAXPlugPtr ctxt = (xmlSchemaSAXPlugPtr) ctx;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028048 if (ctxt == NULL)
28049 return;
28050 if ((ctxt->user_sax != NULL) &&
28051 (ctxt->user_sax->endElementNs != NULL))
28052 ctxt->user_sax->endElementNs(ctxt->user_data, localname, prefix, URI);
28053 if (ctxt->ctxt != NULL)
28054 xmlSchemaSAXHandleEndElementNs(ctxt->ctxt, localname, prefix, URI);
28055}
28056
Daniel Veillard4255d502002-04-16 15:50:10 +000028057/**
Daniel Veillard971771e2005-07-09 17:32:57 +000028058 * xmlSchemaSAXPlug:
28059 * @ctxt: a schema validation context
Daniel Veillard1f33c4d2005-07-10 21:38:31 +000028060 * @sax: a pointer to the original xmlSAXHandlerPtr
28061 * @user_data: a pointer to the original SAX user data pointer
Daniel Veillard971771e2005-07-09 17:32:57 +000028062 *
28063 * Plug a SAX based validation layer in a SAX parsing event flow.
28064 * The original @saxptr and @dataptr data are replaced by new pointers
28065 * but the calls to the original will be maintained.
28066 *
28067 * Returns a pointer to a data structure needed to unplug the validation layer
28068 * or NULL in case of errors.
28069 */
28070xmlSchemaSAXPlugPtr
28071xmlSchemaSAXPlug(xmlSchemaValidCtxtPtr ctxt,
28072 xmlSAXHandlerPtr *sax, void **user_data)
28073{
28074 xmlSchemaSAXPlugPtr ret;
28075 xmlSAXHandlerPtr old_sax;
28076
28077 if ((ctxt == NULL) || (sax == NULL) || (user_data == NULL))
28078 return(NULL);
28079
28080 /*
28081 * We only allow to plug into SAX2 event streams
28082 */
28083 old_sax = *sax;
28084 if ((old_sax != NULL) && (old_sax->initialized != XML_SAX2_MAGIC))
28085 return(NULL);
28086 if ((old_sax != NULL) &&
28087 (old_sax->startElementNs == NULL) && (old_sax->endElementNs == NULL) &&
28088 ((old_sax->startElement != NULL) || (old_sax->endElement != NULL)))
28089 return(NULL);
28090
28091 /*
28092 * everything seems right allocate the local data needed for that layer
28093 */
28094 ret = (xmlSchemaSAXPlugPtr) xmlMalloc(sizeof(xmlSchemaSAXPlugStruct));
28095 if (ret == NULL) {
28096 return(NULL);
28097 }
28098 memset(ret, 0, sizeof(xmlSchemaSAXPlugStruct));
28099 ret->magic = XML_SAX_PLUG_MAGIC;
28100 ret->schemas_sax.initialized = XML_SAX2_MAGIC;
28101 ret->ctxt = ctxt;
28102 ret->user_sax_ptr = sax;
28103 ret->user_sax = old_sax;
28104 if (old_sax == NULL) {
28105 /*
28106 * go direct, no need for the split block and functions.
28107 */
28108 ret->schemas_sax.startElementNs = xmlSchemaSAXHandleStartElementNs;
28109 ret->schemas_sax.endElementNs = xmlSchemaSAXHandleEndElementNs;
28110 /*
28111 * Note that we use the same text-function for both, to prevent
28112 * the parser from testing for ignorable whitespace.
28113 */
28114 ret->schemas_sax.ignorableWhitespace = xmlSchemaSAXHandleText;
28115 ret->schemas_sax.characters = xmlSchemaSAXHandleText;
28116
28117 ret->schemas_sax.cdataBlock = xmlSchemaSAXHandleCDataSection;
28118 ret->schemas_sax.reference = xmlSchemaSAXHandleReference;
28119
28120 ret->user_data = ctxt;
28121 *user_data = ctxt;
28122 } else {
28123 /*
28124 * for each callback unused by Schemas initialize it to the Split
28125 * routine only if non NULL in the user block, this can speed up
28126 * things at the SAX level.
28127 */
28128 if (old_sax->internalSubset != NULL)
28129 ret->schemas_sax.internalSubset = internalSubsetSplit;
28130 if (old_sax->isStandalone != NULL)
28131 ret->schemas_sax.isStandalone = isStandaloneSplit;
28132 if (old_sax->hasInternalSubset != NULL)
28133 ret->schemas_sax.hasInternalSubset = hasInternalSubsetSplit;
28134 if (old_sax->hasExternalSubset != NULL)
28135 ret->schemas_sax.hasExternalSubset = hasExternalSubsetSplit;
28136 if (old_sax->resolveEntity != NULL)
28137 ret->schemas_sax.resolveEntity = resolveEntitySplit;
28138 if (old_sax->getEntity != NULL)
28139 ret->schemas_sax.getEntity = getEntitySplit;
28140 if (old_sax->entityDecl != NULL)
28141 ret->schemas_sax.entityDecl = entityDeclSplit;
28142 if (old_sax->notationDecl != NULL)
28143 ret->schemas_sax.notationDecl = notationDeclSplit;
28144 if (old_sax->attributeDecl != NULL)
28145 ret->schemas_sax.attributeDecl = attributeDeclSplit;
28146 if (old_sax->elementDecl != NULL)
28147 ret->schemas_sax.elementDecl = elementDeclSplit;
28148 if (old_sax->unparsedEntityDecl != NULL)
28149 ret->schemas_sax.unparsedEntityDecl = unparsedEntityDeclSplit;
28150 if (old_sax->setDocumentLocator != NULL)
28151 ret->schemas_sax.setDocumentLocator = setDocumentLocatorSplit;
28152 if (old_sax->startDocument != NULL)
28153 ret->schemas_sax.startDocument = startDocumentSplit;
28154 if (old_sax->endDocument != NULL)
28155 ret->schemas_sax.endDocument = endDocumentSplit;
28156 if (old_sax->processingInstruction != NULL)
28157 ret->schemas_sax.processingInstruction = processingInstructionSplit;
28158 if (old_sax->comment != NULL)
28159 ret->schemas_sax.comment = commentSplit;
28160 if (old_sax->warning != NULL)
28161 ret->schemas_sax.warning = warningSplit;
28162 if (old_sax->error != NULL)
28163 ret->schemas_sax.error = errorSplit;
28164 if (old_sax->fatalError != NULL)
28165 ret->schemas_sax.fatalError = fatalErrorSplit;
28166 if (old_sax->getParameterEntity != NULL)
28167 ret->schemas_sax.getParameterEntity = getParameterEntitySplit;
28168 if (old_sax->externalSubset != NULL)
28169 ret->schemas_sax.externalSubset = externalSubsetSplit;
28170
28171 /*
28172 * the 6 schemas callback have to go to the splitter functions
28173 * Note that we use the same text-function for ignorableWhitespace
28174 * if possible, to prevent the parser from testing for ignorable
28175 * whitespace.
28176 */
28177 ret->schemas_sax.characters = charactersSplit;
28178 if ((old_sax->ignorableWhitespace != NULL) &&
28179 (old_sax->ignorableWhitespace != old_sax->characters))
28180 ret->schemas_sax.ignorableWhitespace = ignorableWhitespaceSplit;
28181 else
28182 ret->schemas_sax.ignorableWhitespace = charactersSplit;
28183 ret->schemas_sax.cdataBlock = cdataBlockSplit;
28184 ret->schemas_sax.reference = referenceSplit;
28185 ret->schemas_sax.startElementNs = startElementNsSplit;
28186 ret->schemas_sax.endElementNs = endElementNsSplit;
28187
28188 ret->user_data_ptr = user_data;
28189 ret->user_data = *user_data;
28190 *user_data = ret;
28191 }
28192
28193 /*
28194 * plug the pointers back.
28195 */
28196 *sax = &(ret->schemas_sax);
Daniel Veillardf10ae122005-07-10 19:03:16 +000028197 ctxt->sax = *sax;
28198 ctxt->flags |= XML_SCHEMA_VALID_CTXT_FLAG_STREAM;
28199 xmlSchemaPreRun(ctxt);
Daniel Veillard971771e2005-07-09 17:32:57 +000028200 return(ret);
28201}
28202
28203/**
28204 * xmlSchemaSAXUnplug:
28205 * @plug: a data structure returned by xmlSchemaSAXPlug
28206 *
28207 * Unplug a SAX based validation layer in a SAX parsing event flow.
28208 * The original pointers used in the call are restored.
28209 *
28210 * Returns 0 in case of success and -1 in case of failure.
28211 */
28212int
28213xmlSchemaSAXUnplug(xmlSchemaSAXPlugPtr plug)
28214{
28215 xmlSAXHandlerPtr *sax;
28216 void **user_data;
28217
28218 if ((plug == NULL) || (plug->magic != XML_SAX_PLUG_MAGIC))
28219 return(-1);
28220 plug->magic = 0;
28221
Daniel Veillardf10ae122005-07-10 19:03:16 +000028222 xmlSchemaPostRun(plug->ctxt);
Daniel Veillard971771e2005-07-09 17:32:57 +000028223 /* restore the data */
28224 sax = plug->user_sax_ptr;
28225 *sax = plug->user_sax;
28226 if (plug->user_sax != NULL) {
28227 user_data = plug->user_data_ptr;
28228 *user_data = plug->user_data;
28229 }
28230
28231 /* free and return */
28232 xmlFree(plug);
28233 return(0);
28234}
28235
28236/**
Daniel Veillard4255d502002-04-16 15:50:10 +000028237 * xmlSchemaValidateStream:
28238 * @ctxt: a schema validation context
28239 * @input: the input to use for reading the data
28240 * @enc: an optional encoding information
28241 * @sax: a SAX handler for the resulting events
28242 * @user_data: the context to provide to the SAX handler.
28243 *
Daniel Veillardcdc82732005-07-08 15:04:06 +000028244 * Validate an input based on a flow of SAX event from the parser
28245 * and forward the events to the @sax handler with the provided @user_data
28246 * the user provided @sax handler must be a SAX2 one.
Daniel Veillard4255d502002-04-16 15:50:10 +000028247 *
28248 * Returns 0 if the document is schemas valid, a positive error code
28249 * number otherwise and -1 in case of internal or API error.
28250 */
Daniel Veillardd0c9c322003-10-10 00:49:42 +000028251int
Daniel Veillard4255d502002-04-16 15:50:10 +000028252xmlSchemaValidateStream(xmlSchemaValidCtxtPtr ctxt,
Daniel Veillardd0c9c322003-10-10 00:49:42 +000028253 xmlParserInputBufferPtr input, xmlCharEncoding enc,
28254 xmlSAXHandlerPtr sax, void *user_data)
28255{
Daniel Veillard971771e2005-07-09 17:32:57 +000028256 xmlSchemaSAXPlugPtr plug = NULL;
28257 xmlSAXHandlerPtr old_sax = NULL;
28258 xmlParserCtxtPtr pctxt = NULL;
28259 xmlParserInputPtr inputStream = NULL;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028260 int ret;
28261
Daniel Veillard4255d502002-04-16 15:50:10 +000028262 if ((ctxt == NULL) || (input == NULL))
Daniel Veillardd0c9c322003-10-10 00:49:42 +000028263 return (-1);
Daniel Veillardcdc82732005-07-08 15:04:06 +000028264
Daniel Veillardcdc82732005-07-08 15:04:06 +000028265 /*
28266 * prepare the parser
28267 */
28268 pctxt = xmlNewParserCtxt();
28269 if (pctxt == NULL)
28270 return (-1);
28271 old_sax = pctxt->sax;
Daniel Veillard971771e2005-07-09 17:32:57 +000028272 pctxt->sax = sax;
28273 pctxt->userData = user_data;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028274#if 0
28275 if (options)
28276 xmlCtxtUseOptions(pctxt, options);
28277#endif
Kasimier T. Buchcik85aed6d2005-07-08 18:06:18 +000028278 pctxt->linenumbers = 1;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028279
Daniel Veillardf0af8ec2005-07-08 17:27:33 +000028280 inputStream = xmlNewIOInputStream(pctxt, input, enc);;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028281 if (inputStream == NULL) {
28282 ret = -1;
28283 goto done;
28284 }
28285 inputPush(pctxt, inputStream);
28286 ctxt->parserCtxt = pctxt;
28287 ctxt->input = input;
28288
28289 /*
Daniel Veillard971771e2005-07-09 17:32:57 +000028290 * Plug the validation and launch the parsing
Daniel Veillardcdc82732005-07-08 15:04:06 +000028291 */
Daniel Veillard971771e2005-07-09 17:32:57 +000028292 plug = xmlSchemaSAXPlug(ctxt, &(pctxt->sax), &(pctxt->userData));
28293 if (plug == NULL) {
28294 ret = -1;
28295 goto done;
28296 }
28297 ctxt->input = input;
28298 ctxt->enc = enc;
28299 ctxt->sax = pctxt->sax;
Daniel Veillardcdc82732005-07-08 15:04:06 +000028300 ctxt->flags |= XML_SCHEMA_VALID_CTXT_FLAG_STREAM;
28301 ret = xmlSchemaVStart(ctxt);
28302
28303 if ((ret == 0) && (! ctxt->parserCtxt->wellFormed)) {
28304 ret = ctxt->parserCtxt->errNo;
28305 if (ret == 0)
28306 ret = 1;
28307 }
Daniel Veillardcdc82732005-07-08 15:04:06 +000028308
28309done:
Daniel Veillard971771e2005-07-09 17:32:57 +000028310 ctxt->parserCtxt = NULL;
28311 ctxt->sax = NULL;
28312 ctxt->input = NULL;
28313 if (plug != NULL) {
28314 xmlSchemaSAXUnplug(plug);
28315 }
Daniel Veillardcdc82732005-07-08 15:04:06 +000028316 /* cleanup */
Daniel Veillard971771e2005-07-09 17:32:57 +000028317 if (pctxt != NULL) {
28318 pctxt->sax = old_sax;
28319 xmlFreeParserCtxt(pctxt);
28320 }
Daniel Veillardcdc82732005-07-08 15:04:06 +000028321 return (ret);
Daniel Veillard4255d502002-04-16 15:50:10 +000028322}
28323
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028324/**
28325 * xmlSchemaValidateFile:
28326 * @ctxt: a schema validation context
Daniel Veillard81562d22005-06-15 13:27:56 +000028327 * @filename: the URI of the instance
28328 * @options: a future set of options, currently unused
28329 *
28330 * Do a schemas validation of the given resource, it will use the
28331 * SAX streamable validation internally.
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028332 *
28333 * Returns 0 if the document is valid, a positive error code
28334 * number otherwise and -1 in case of an internal or API error.
28335 */
28336int
28337xmlSchemaValidateFile(xmlSchemaValidCtxtPtr ctxt,
Kasimier T. Buchcikc63fbbf2005-06-15 12:54:05 +000028338 const char * filename,
28339 int options ATTRIBUTE_UNUSED)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028340{
28341 int ret;
Kasimier T. Buchcik72d3adc2005-07-08 16:43:37 +000028342 xmlParserInputBufferPtr input;
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028343
28344 if ((ctxt == NULL) || (filename == NULL))
28345 return (-1);
28346
Kasimier T. Buchcik72d3adc2005-07-08 16:43:37 +000028347 input = xmlParserInputBufferCreateFilename(filename,
28348 XML_CHAR_ENCODING_NONE);
28349 if (input == NULL)
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028350 return (-1);
Kasimier T. Buchcik72d3adc2005-07-08 16:43:37 +000028351 ret = xmlSchemaValidateStream(ctxt, input, XML_CHAR_ENCODING_NONE,
28352 NULL, NULL);
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028353 return (ret);
Daniel Veillard81562d22005-06-15 13:27:56 +000028354}
Kasimier T. Buchcik4efd90d2005-06-09 10:32:53 +000028355
Daniel Veillard5d4644e2005-04-01 13:11:58 +000028356#define bottom_xmlschemas
28357#include "elfgcchack.h"
Daniel Veillard4255d502002-04-16 15:50:10 +000028358#endif /* LIBXML_SCHEMAS_ENABLED */