Newer
Older
* Copyright 2003,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* Revision 1.24 2005/01/06 21:39:43 amassari
* Removed warnings
*
* Revision 1.23 2004/09/08 13:56:14 peiyongz
* Apache License Version 2.0
*
David Abram Cargill
committed
* Revision 1.22 2004/07/06 14:58:15 cargilld
* Rename VALUE_CONSTRAINT enumeration names to avoid naming conflict with AIX system header which already uses VC_DEFAULT as a macro. Will need to document that this fix breaks source code compatibility.
*
Khaled Noaman
committed
* Revision 1.21 2004/03/05 16:28:21 knoaman
* PSVI: prohibited attributes should not be part of attribute use. Patch by Mike Boos.
*
David Abram Cargill
committed
* Revision 1.20 2004/02/05 18:09:53 cargilld
* Fix a seg fault with PSVI and set basetype of anysimpletype to be anytype.
*
* Revision 1.19 2004/01/07 02:33:56 knoaman
* PSVI: inherit facets from base type
*
* Revision 1.18 2004/01/06 15:24:42 neilg
* make sure locally-declared attributes have declarations in the PSVI
*
* Revision 1.17 2004/01/06 03:55:26 knoaman
* Various PSVI fixes.
*
* Revision 1.16 2003/12/30 19:46:15 neilg
* use a null-terminated string when tokenizing pattern facets
*
* Revision 1.15 2003/12/29 16:45:06 knoaman
* PSVI: add whitespace facet if missing
*
* Revision 1.14 2003/12/29 16:15:41 knoaman
* More PSVI updates
*
* Revision 1.13 2003/12/24 17:42:02 knoaman
* Misc. PSVI updates
*
* Revision 1.12 2003/12/17 20:50:35 knoaman
* PSVI: fix for annotation of attributes in attributeGroup/derived types
*
* Revision 1.11 2003/12/17 19:58:25 knoaman
* Check for NULL when building XSParticle
*
David Abram Cargill
committed
* Revision 1.10 2003/12/17 00:18:34 cargilld
* Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
*
* Revision 1.9 2003/12/10 05:14:00 neilg
* fix seg fault caused when a complex type had simple content; we were not processing the complex type itself, only its base
*
* Revision 1.8 2003/12/01 20:41:25 neilg
* fix for infinite loop between XSComplexTypeDefinitions and XSElementDeclarations; from David Cargill
*
* Revision 1.7 2003/11/27 16:42:00 neilg
* fixes for segfaults and infinite loops in schema component model implementation; thanks to David Cargill
*
* Revision 1.6 2003/11/25 17:50:15 knoaman
* Fix AIX linking error
*
* Revision 1.5 2003/11/24 15:45:36 knoaman
* PSVI: finish construction of XSSimpleTypeDefinition
*
* Revision 1.4 2003/11/23 16:49:26 knoaman
* PSVI: create local elements of groups
*
* Revision 1.3 2003/11/23 16:21:40 knoaman
* PSVI: create local elements of complex types
*
* Revision 1.2 2003/11/21 22:34:46 neilg
* More schema component model implementation, thanks to David Cargill.
* In particular, this cleans up and completes the XSModel, XSNamespaceItem,
* XSAttributeDeclaration and XSAttributeGroup implementations.
*
* Revision 1.1 2003/11/21 17:11:24 knoaman
* Initial revision
*
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include <xercesc/internal/XSObjectFactory.hpp>
#include <xercesc/framework/psvi/XSModel.hpp>
#include <xercesc/framework/psvi/XSParticle.hpp>
#include <xercesc/framework/psvi/XSModelGroup.hpp>
#include <xercesc/framework/psvi/XSElementDeclaration.hpp>
#include <xercesc/framework/psvi/XSComplexTypeDefinition.hpp>
#include <xercesc/framework/psvi/XSSimpleTypeDefinition.hpp>
#include <xercesc/framework/psvi/XSModelGroupDefinition.hpp>
#include <xercesc/framework/psvi/XSAttributeGroupDefinition.hpp>
#include <xercesc/framework/psvi/XSWildcard.hpp>
#include <xercesc/framework/psvi/XSNamespaceItem.hpp>
#include <xercesc/framework/psvi/XSIDCDefinition.hpp>
#include <xercesc/framework/psvi/XSAttributeUse.hpp>
#include <xercesc/framework/psvi/XSAttributeDeclaration.hpp>
#include <xercesc/framework/psvi/XSNotationDeclaration.hpp>
#include <xercesc/framework/psvi/XSFacet.hpp>
#include <xercesc/framework/psvi/XSMultiValueFacet.hpp>
#include <xercesc/validators/common/ContentSpecNode.hpp>
#include <xercesc/validators/datatype/DatatypeValidator.hpp>
#include <xercesc/validators/schema/SchemaAttDefList.hpp>
#include <xercesc/validators/schema/SchemaGrammar.hpp>
#include <xercesc/validators/schema/XercesGroupInfo.hpp>
#include <xercesc/validators/schema/XercesAttGroupInfo.hpp>
#include <xercesc/validators/schema/identity/IdentityConstraint.hpp>
#include <xercesc/validators/schema/identity/IC_KeyRef.hpp>
#include <xercesc/validators/schema/identity/XercesXPath.hpp>
#include <xercesc/util/HashPtr.hpp>
#include <xercesc/util/XMLStringTokenizer.hpp>
static XMLCh regexSeparator[] = {chPipe, chNull};
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// ---------------------------------------------------------------------------
// XSObjectFactory: Constructors and Destructor
// ---------------------------------------------------------------------------
XSObjectFactory::XSObjectFactory(MemoryManager* const manager)
: fMemoryManager(manager)
, fXercesToXSMap(0)
, fDeleteVector(0)
{
fDeleteVector = new (manager) RefVectorOf<XSObject>(20, true, manager);
fXercesToXSMap = new (manager) RefHashTableOf<XSObject> (
109, false, new (manager) HashPtr(), manager);
}
XSObjectFactory::~XSObjectFactory()
{
delete fXercesToXSMap;
delete fDeleteVector;
}
// ---------------------------------------------------------------------------
// XSObjectFactory: factory methods
// ---------------------------------------------------------------------------
XSParticle*
XSObjectFactory::createModelGroupParticle(const ContentSpecNode* const rootNode,
XSModel* const xsModel)
{
if (rootNode == 0)
return 0;
ContentSpecNode::NodeTypes nodeType = rootNode->getType();
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
if (nodeType == ContentSpecNode::All
|| nodeType == ContentSpecNode::ModelGroupChoice
|| nodeType == ContentSpecNode::ModelGroupSequence)
{
XSParticleList* particleList = new (fMemoryManager) RefVectorOf<XSParticle> (4, true, fMemoryManager);
XSAnnotation* annot = getAnnotationFromModel(xsModel, rootNode);
XSModelGroup* modelGroup = 0;
if (nodeType == ContentSpecNode::All)
{
modelGroup = new (fMemoryManager) XSModelGroup(XSModelGroup::COMPOSITOR_ALL, particleList, annot, xsModel, fMemoryManager);
buildAllParticles(rootNode, particleList, xsModel);
}
else
{
if (nodeType == ContentSpecNode::ModelGroupChoice)
modelGroup = new (fMemoryManager) XSModelGroup(XSModelGroup::COMPOSITOR_CHOICE, particleList, annot, xsModel, fMemoryManager);
else
modelGroup = new (fMemoryManager) XSModelGroup(XSModelGroup::COMPOSITOR_SEQUENCE, particleList, annot, xsModel, fMemoryManager);
buildChoiceSequenceParticles(rootNode->getFirst(), particleList, xsModel);
buildChoiceSequenceParticles(rootNode->getSecond(), particleList, xsModel);
}
XSParticle* groupParticle = new (fMemoryManager) XSParticle
(
XSParticle::TERM_MODELGROUP
, xsModel
, modelGroup
, rootNode->getMinOccurs()
, rootNode->getMaxOccurs()
, fMemoryManager
);
return groupParticle;
}
else
return 0;
}
void XSObjectFactory::buildAllParticles(const ContentSpecNode* const rootNode,
XSParticleList* const particleList,
XSModel* const xsModel)
{
// Get the type of spec node our current node is
const ContentSpecNode::NodeTypes nodeType = rootNode->getType();
if (nodeType == ContentSpecNode::All)
{
const ContentSpecNode* rightNode = rootNode->getSecond();
buildAllParticles(rootNode->getFirst(), particleList, xsModel);
if (rightNode)
buildAllParticles(rightNode, particleList, xsModel);
}
else if (nodeType == ContentSpecNode::Leaf)
{
XSParticle* elemParticle = createElementParticle(rootNode, xsModel);
if (elemParticle)
particleList->addElement(elemParticle);
}
}
void XSObjectFactory::buildChoiceSequenceParticles(const ContentSpecNode* const rootNode,
XSParticleList* const particleList,
XSModel* const xsModel)
{
if (rootNode)
{
const ContentSpecNode::NodeTypes nodeType = rootNode->getType();
if (nodeType == ContentSpecNode::Sequence)
{
buildChoiceSequenceParticles(rootNode->getFirst(), particleList, xsModel);
buildChoiceSequenceParticles(rootNode->getSecond(), particleList, xsModel);
}
else if (nodeType == ContentSpecNode::Choice)
{
buildChoiceSequenceParticles(rootNode->getFirst(), particleList, xsModel);
buildChoiceSequenceParticles(rootNode->getSecond(), particleList, xsModel);
}
else if ((nodeType & 0x0f) == ContentSpecNode::Any
|| (nodeType & 0x0f) == ContentSpecNode::Any_Other
|| (nodeType & 0x0f) == ContentSpecNode::Any_NS
|| nodeType == ContentSpecNode::Any_NS_Choice)
{
XSParticle* wildcardParticle = createWildcardParticle(rootNode, xsModel);
if (wildcardParticle)
particleList->addElement(wildcardParticle);
}
else if (nodeType == ContentSpecNode::Leaf)
{
XSParticle* elemParticle = createElementParticle(rootNode, xsModel);
if (elemParticle)
particleList->addElement(elemParticle);
}
// must be a model group
else
{
XSParticle* xsParticle = createModelGroupParticle(rootNode, xsModel);
if (xsParticle)
particleList->addElement(xsParticle);
}
}
}
XSParticle*
XSObjectFactory::createElementParticle(const ContentSpecNode* const rootNode,
XSModel* const xsModel)
{
if (rootNode->getElementDecl())
{
XSElementDeclaration* xsElemDecl = addOrFind(
(SchemaElementDecl*) rootNode->getElementDecl(), xsModel);
if (xsElemDecl)
{
XSParticle* particle = new (fMemoryManager) XSParticle
(
XSParticle::TERM_ELEMENT
, xsModel
, xsElemDecl
, rootNode->getMinOccurs()
, rootNode->getMaxOccurs()
, fMemoryManager
);
return particle;
}
}
return 0;
}
XSParticle*
XSObjectFactory::createWildcardParticle(const ContentSpecNode* const rootNode,
XSModel* const xsModel)
{
XSWildcard* xsWildcard = createXSWildcard(rootNode, xsModel);
if (xsWildcard)
{
XSParticle* particle = new (fMemoryManager) XSParticle
(
XSParticle::TERM_WILDCARD
, xsModel
, xsWildcard
, rootNode->getMinOccurs()
, rootNode->getMaxOccurs()
, fMemoryManager
);
return particle;
}
return 0;
}
XSAttributeDeclaration*
XSObjectFactory::addOrFind(SchemaAttDef* const attDef,
XSModel* const xsModel,
XSComplexTypeDefinition* const enclosingTypeDef)
XSAttributeDeclaration* xsObj = (XSAttributeDeclaration*) xsModel->getXSObject(attDef);
if (xsObj)
{
if (xsObj->getScope() == XSConstants::SCOPE_LOCAL
&& xsObj->getEnclosingCTDefinition() == 0
&& enclosingTypeDef)
xsObj->setEnclosingCTDefinition(enclosingTypeDef);
}
else
{
XSSimpleTypeDefinition* xsType = 0;
if (attDef->getDatatypeValidator())
xsType = addOrFind(attDef->getDatatypeValidator(), xsModel);
XSConstants::SCOPE scope = XSConstants::SCOPE_ABSENT;
XSComplexTypeDefinition* enclosingCTDefinition = 0;
if (attDef->getPSVIScope() == PSVIDefs::SCP_GLOBAL)
scope = XSConstants::SCOPE_GLOBAL;
else if (attDef->getPSVIScope() == PSVIDefs::SCP_LOCAL)
scope = XSConstants::SCOPE_LOCAL;
enclosingCTDefinition = enclosingTypeDef;
}
xsObj = new (fMemoryManager) XSAttributeDeclaration
(
attDef
, xsType
, getAnnotationFromModel(xsModel, attDef)
, xsModel
, scope
, enclosingCTDefinition
}
return xsObj;
}
XSSimpleTypeDefinition*
XSObjectFactory::addOrFind(DatatypeValidator* const validator,
XSSimpleTypeDefinition* xsObj = (XSSimpleTypeDefinition*) xsModel->getXSObject(validator);
David Abram Cargill
committed
XSTypeDefinition* baseType = 0;
XSSimpleTypeDefinitionList* memberTypes = 0;
XSSimpleTypeDefinition* primitiveOrItemType = 0;
XSSimpleTypeDefinition::VARIETY typeVariety = XSSimpleTypeDefinition::VARIETY_ATOMIC;
//REVISIT: the getFixed method is protected so added friend XSObjectFactory
// to DatatypeValidator class...
DatatypeValidator::ValidatorType dvType = validator->getType();
DatatypeValidator* baseDV = validator->getBaseValidator();
if (dvType == DatatypeValidator::Union)
{
typeVariety = XSSimpleTypeDefinition::VARIETY_UNION;
RefVectorOf<DatatypeValidator>* membersDV = ((UnionDatatypeValidator*)validator)->getMemberTypeValidators();
unsigned int size = membersDV->size();
if (size)
{
memberTypes = new (fMemoryManager) RefVectorOf<XSSimpleTypeDefinition>(size, false, fMemoryManager);
for (unsigned int i=0; i<size; i++)
memberTypes->addElement(addOrFind(membersDV->elementAt(i), xsModel));
}
if (baseDV)
{
baseType = addOrFind(baseDV, xsModel);
}
else
{
baseType = (XSSimpleTypeDefinition*) xsModel->getTypeDefinition
(
SchemaSymbols::fgDT_ANYSIMPLETYPE
, SchemaSymbols::fgURI_SCHEMAFORSCHEMA
);
}
}
else if (dvType == DatatypeValidator::List)
{
typeVariety = XSSimpleTypeDefinition::VARIETY_LIST;
David Abram Cargill
committed
primitiveOrItemType = ((XSSimpleTypeDefinition*) baseType)->getItemType();
else
{
baseType = (XSSimpleTypeDefinition*) xsModel->getTypeDefinition
(
SchemaSymbols::fgDT_ANYSIMPLETYPE
, SchemaSymbols::fgURI_SCHEMAFORSCHEMA
);
David Abram Cargill
committed
primitiveOrItemType = addOrFind(baseDV, xsModel);
David Abram Cargill
committed
primitiveOrItemType = ((XSSimpleTypeDefinition*) baseType)->getPrimitiveType();
}
else // built-in
{
baseType = (XSSimpleTypeDefinition*) xsModel->getTypeDefinition
(
SchemaSymbols::fgDT_ANYSIMPLETYPE
, SchemaSymbols::fgURI_SCHEMAFORSCHEMA
);
primitiveTypeSelf = true;
David Abram Cargill
committed
else
{
baseType = xsModel->getTypeDefinition(SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA);
}
xsObj = new (fMemoryManager) XSSimpleTypeDefinition
(
validator
, typeVariety
, baseType
, primitiveOrItemType
, memberTypes
, getAnnotationFromModel(xsModel, validator)
, xsModel
, fMemoryManager
);
if (primitiveTypeSelf)
xsObj->setPrimitiveType(xsObj);
processFacets(validator, xsModel, xsObj);
}
return xsObj;
}
XSElementDeclaration*
XSObjectFactory::addOrFind(SchemaElementDecl* const elemDecl,
XSElementDeclaration* xsObj = (XSElementDeclaration*) xsModel->getXSObject(elemDecl);
if (xsObj)
{
if (!xsObj->getEnclosingCTDefinition() && enclosingTypeDef)
xsObj->setEnclosingCTDefinition(enclosingTypeDef);
}
else
{
XSElementDeclaration* xsSubElem = 0;
XSTypeDefinition* xsType = 0;
XSNamedMap<XSIDCDefinition>* icMap = 0;
if (elemDecl->getSubstitutionGroupElem())
xsSubElem = addOrFind(elemDecl->getSubstitutionGroupElem(), xsModel);
// defer checking for complexTypeInfo until later as it could
// eventually need this elemement
// but don't check simple type unless no complexTypeInfo present
if (!elemDecl->getComplexTypeInfo() && elemDecl->getDatatypeValidator())
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
xsType = addOrFind(elemDecl->getDatatypeValidator(), xsModel);
unsigned int count = elemDecl->getIdentityConstraintCount();
if (count)
{
//REVISIT: size of hash table....
icMap = new (fMemoryManager) XSNamedMap<XSIDCDefinition>
(
count
, 29
, xsModel->getURIStringPool()
, false
, fMemoryManager
);
for (unsigned int i = 0; i < count; i++)
{
XSIDCDefinition* icDef = addOrFind
(
elemDecl->getIdentityConstraintAt(i)
, xsModel
);
if (icDef)
{
icMap->addElement
(
icDef
, icDef->getName()
, icDef->getNamespace()
);
}
}
}
XSConstants::SCOPE elemScope = XSConstants::SCOPE_ABSENT;
elemScope = XSConstants::SCOPE_LOCAL;
else if (elemDecl->getPSVIScope() == PSVIDefs::SCP_GLOBAL)
elemScope = XSConstants::SCOPE_GLOBAL;
xsObj = new (fMemoryManager) XSElementDeclaration
(
elemDecl
, xsType
, xsSubElem
, getAnnotationFromModel(xsModel, elemDecl)
, icMap
, xsModel
, elemScope
, enclosingTypeDef
if (elemDecl->getComplexTypeInfo())
{
xsType = addOrFind(elemDecl->getComplexTypeInfo(), xsModel);
xsObj->setTypeDefinition(xsType);
}
else if (!xsType)
{
xsType = xsModel->getTypeDefinition
(
SchemaSymbols::fgATTVAL_ANYTYPE
, SchemaSymbols::fgURI_SCHEMAFORSCHEMA
);
xsObj->setTypeDefinition(xsType);
}
}
return xsObj;
}
XSComplexTypeDefinition*
XSObjectFactory::addOrFind(ComplexTypeInfo* const typeInfo,
XSModel* const xsModel)
{
XSComplexTypeDefinition* xsObj = (XSComplexTypeDefinition*) xsModel->getXSObject(typeInfo);
if (!xsObj)
{
XSWildcard* xsWildcard = 0;
XSSimpleTypeDefinition* xsSimpleType = 0;
XSAttributeUseList* xsAttList = 0;
XSTypeDefinition* xsBaseType = 0;
XSParticle* xsParticle = 0;
if (typeInfo->getAttWildCard())
xsWildcard = createXSWildcard(typeInfo->getAttWildCard(), xsModel);
if ((typeInfo->getContentType() == SchemaElementDecl::Simple) &&
(typeInfo->getDatatypeValidator()))
xsSimpleType = addOrFind(typeInfo->getDatatypeValidator(), xsModel);
if (typeInfo->hasAttDefs())
{
SchemaAttDefList& attDefList = (SchemaAttDefList&) typeInfo->getAttDefList();
attCount = attDefList.getAttDefCount();
xsAttList = new (fMemoryManager) RefVectorOf<XSAttributeUse>(attCount, false, fMemoryManager);
// create list now put fill it in after we put complextype into map
// otherwise we may encounter an infinite loop: complextype needs to
// addorfind attdef, which does an addorfind on the enclosingCTdefintion.
bool isAnyType = false;
if (typeInfo->getBaseComplexTypeInfo() == typeInfo) // case of anyType
isAnyType = true;
else if (typeInfo->getBaseComplexTypeInfo())
xsBaseType = addOrFind(typeInfo->getBaseComplexTypeInfo(), xsModel);
else if (typeInfo->getBaseDatatypeValidator())
xsBaseType = addOrFind(typeInfo->getBaseDatatypeValidator(), xsModel);
else // base is anyType
xsBaseType = xsModel->getTypeDefinition(SchemaSymbols::fgATTVAL_ANYTYPE, SchemaSymbols::fgURI_SCHEMAFORSCHEMA);
// compute particle
ContentSpecNode* contentSpec = typeInfo->getContentSpec();
if (contentSpec)
xsParticle = createModelGroupParticle(contentSpec, xsModel);
xsObj = new (fMemoryManager) XSComplexTypeDefinition
(
typeInfo
, xsWildcard
, xsSimpleType
, xsAttList
, xsBaseType
, xsParticle
, getAnnotationFromModel(xsModel, typeInfo)
, xsModel
, fMemoryManager
);
if (typeInfo->hasAttDefs())
{
// now create the xsattributedeclarations...
SchemaAttDefList& attDefList = (SchemaAttDefList&) typeInfo->getAttDefList();
for(unsigned int i=0; i<attCount; i++)
{
XSAttributeDeclaration* xsAttDecl = 0;
SchemaAttDef& attDef = (SchemaAttDef&) attDefList.getAttDef(i);
if (attDef.getBaseAttDecl())
xsAttDecl = addOrFind(attDef.getBaseAttDecl(), xsModel);
fXercesToXSMap->put(&attDef, xsAttDecl);
}
else
Khaled Noaman
committed
if (attDef.getDefaultType() != XMLAttDef::Prohibited) {
XSAttributeUse* attUse = createXSAttributeUse(xsAttDecl, xsModel);
xsAttList->addElement(attUse);
processAttUse(&attDef, attUse);
}
}
}
// process local elements
unsigned int elemCount = typeInfo->elementCount();
for (unsigned int j=0; j<elemCount; j++)
{
SchemaElementDecl* elemDecl = typeInfo->elementAt(j);
if (elemDecl->getEnclosingScope() == typeInfo->getScopeDefined()
&& elemDecl->getPSVIScope() == PSVIDefs::SCP_LOCAL)
addOrFind(elemDecl, xsModel, xsObj);
}
}
return xsObj;
}
XSIDCDefinition* XSObjectFactory::addOrFind(IdentityConstraint* const ic,
XSModel* const xsModel)
{
XSIDCDefinition* xsObj = (XSIDCDefinition*) xsModel->getXSObject(ic);
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
if (!xsObj)
{
XSIDCDefinition* keyIC = 0;
StringList* stringList = 0;
unsigned int fieldCount = ic->getFieldCount();
if (fieldCount)
{
stringList = new (fMemoryManager) RefArrayVectorOf<XMLCh>(
fieldCount, true, fMemoryManager);
for(unsigned int i=0; i<fieldCount; i++)
{
XMLCh* expr = XMLString::replicate
(
ic->getFieldAt(i)->getXPath()->getExpression()
, fMemoryManager
);
stringList->addElement(expr);
}
}
if (ic->getType() == IdentityConstraint::KEYREF)
keyIC = addOrFind(((IC_KeyRef*) ic)->getKey(), xsModel);
xsObj= new (fMemoryManager) XSIDCDefinition
(
ic
, keyIC
, getAnnotationFromModel(xsModel, ic)
, stringList
, xsModel
, fMemoryManager
);
}
return xsObj;
}
XSNotationDeclaration* XSObjectFactory::addOrFind(XMLNotationDecl* const notDecl,
XSModel* const xsModel)
{
XSNotationDeclaration* xsObj = (XSNotationDeclaration*) xsModel->getXSObject(notDecl);
if (!xsObj)
{
xsObj = new (fMemoryManager) XSNotationDeclaration
(
notDecl
, getAnnotationFromModel(xsModel, notDecl)
, xsModel
, fMemoryManager
);
}
return xsObj;
}
XSAttributeUse*
XSObjectFactory::createXSAttributeUse(XSAttributeDeclaration* const xsAttDecl,
XSModel* const xsModel)
{
XSAttributeUse* attrUse = new (fMemoryManager) XSAttributeUse(xsAttDecl, xsModel, fMemoryManager);
fDeleteVector->addElement(attrUse);
return attrUse;
}
XSWildcard*
XSObjectFactory::createXSWildcard(SchemaAttDef* const attDef,
XSModel* const xsModel)
{
XSAnnotation* annot = (attDef->getBaseAttDecl())
? getAnnotationFromModel(xsModel, attDef->getBaseAttDecl())
: getAnnotationFromModel(xsModel, attDef);
XSWildcard* xsWildcard = new (fMemoryManager) XSWildcard
(
attDef
, annot
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
, xsModel
, fMemoryManager
);
fDeleteVector->addElement(xsWildcard);
return xsWildcard;
}
XSWildcard*
XSObjectFactory::createXSWildcard(const ContentSpecNode* const rootNode,
XSModel* const xsModel)
{
XSWildcard* xsWildcard = new (fMemoryManager) XSWildcard
(
rootNode
, getAnnotationFromModel(xsModel, rootNode)
, xsModel
, fMemoryManager
);
fDeleteVector->addElement(xsWildcard);
return xsWildcard;
}
XSModelGroupDefinition*
XSObjectFactory::createXSModelGroupDefinition(XercesGroupInfo* const groupInfo,
XSModel* const xsModel)
{
XSParticle* particle = createModelGroupParticle(
groupInfo->getContentSpec(), xsModel);
XSModelGroupDefinition* xsObj = new (fMemoryManager) XSModelGroupDefinition
(
groupInfo
, particle
, getAnnotationFromModel(xsModel, groupInfo)
, xsModel
, fMemoryManager
);
fDeleteVector->addElement(xsObj);
// process local elements
unsigned int elemCount = groupInfo->elementCount();
for (unsigned int j=0; j<elemCount; j++)
{
SchemaElementDecl* elemDecl = groupInfo->elementAt(j);
if (elemDecl->getEnclosingScope() == groupInfo->getScope())
addOrFind(elemDecl, xsModel);
}
return xsObj;
}
XSAttributeGroupDefinition*
XSObjectFactory::createXSAttGroupDefinition(XercesAttGroupInfo* const attGroupInfo,
XSModel* const xsModel)
{
XSAttributeUseList* xsAttList = 0;
XSWildcard* xsWildcard = 0;
unsigned int attCount = attGroupInfo->attributeCount();
if (attCount)
{
xsAttList = new (fMemoryManager) RefVectorOf<XSAttributeUse>(attCount, false, fMemoryManager);
for (unsigned int i=0; i < attCount; i++)
{
SchemaAttDef* attDef = attGroupInfo->attributeAt(i);
XSAttributeDeclaration* xsAttDecl = 0;
if (attDef->getBaseAttDecl())
xsAttDecl = addOrFind(attDef->getBaseAttDecl(), xsModel);
else
xsAttDecl = addOrFind(attDef, xsModel);
Khaled Noaman
committed
if (xsAttDecl && (attDef->getDefaultType() != XMLAttDef::Prohibited)) // just for sanity
XSAttributeUse* attUse = createXSAttributeUse(xsAttDecl, xsModel);
processAttUse(attDef, attUse);
}
}
}
if (attGroupInfo->getCompleteWildCard())
xsWildcard = createXSWildcard(attGroupInfo->getCompleteWildCard(), xsModel);
XSAttributeGroupDefinition* xsObj = new (fMemoryManager) XSAttributeGroupDefinition
(
attGroupInfo
, xsAttList
, xsWildcard
, getAnnotationFromModel(xsModel, attGroupInfo)
, xsModel
, fMemoryManager
);
return xsObj;
}
XSAnnotation* XSObjectFactory::getAnnotationFromModel(XSModel* const xsModel,
const void* const key)
{
XSNamespaceItemList* namespaceItemList = xsModel->getNamespaceItems();
XSAnnotation* annot = 0;
for (unsigned int i=0; i<namespaceItemList->size(); i++)
{
XSNamespaceItem* nsItem = namespaceItemList->elementAt(i);
if (nsItem->fGrammar)
{
annot = nsItem->fGrammar->getAnnotation(key);
if (annot)
return annot;
}
if (xsModel->fParent)
return getAnnotationFromModel(xsModel->fParent, key);
return 0;
void XSObjectFactory::putObjectInMap(void* key, XSObject* const object)
{
fXercesToXSMap->put(key, object);
fDeleteVector->addElement(object);
}
void XSObjectFactory::processFacets(DatatypeValidator* const dv,
XSModel* const xsModel,
XSSimpleTypeDefinition* const xsST)
{
// NOTE: XSMultiValueFacetList is not owned by XSModel!
// NOTE: XSFacetList is not owned by XSModel!
bool isFixed = false;
int dvFacetsDefined = dv->getFacetsDefined();
int dvFixedFacets = dv->getFixed();
int definedFacets = 0;
int fixedFacets = 0;
XSMultiValueFacetList* xsMultiFacetList = 0;
StringList* patternList = 0;
XSFacetList* xsFacetList = new (fMemoryManager) RefVectorOf<XSFacet>(4, false, fMemoryManager);
if (isMultiValueFacetDefined(dv))
xsMultiFacetList = new (fMemoryManager) RefVectorOf<XSMultiValueFacet>(2, false, fMemoryManager);
if (dvFacetsDefined & DatatypeValidator::FACET_ENUMERATION)
{
RefArrayVectorOf<XMLCh>* enumList = (RefArrayVectorOf<XMLCh>*) dv->getEnumString();
if (dvFixedFacets & DatatypeValidator::FACET_ENUMERATION)
{
isFixed = true;
fixedFacets |= XSSimpleTypeDefinition::FACET_ENUMERATION;
}
XSMultiValueFacet* mvFacet = new (fMemoryManager) XSMultiValueFacet(
XSSimpleTypeDefinition::FACET_ENUMERATION , enumList, isFixed
, getAnnotationFromModel(xsModel, enumList), xsModel, fMemoryManager
fDeleteVector->addElement(mvFacet);
xsMultiFacetList->addElement(mvFacet);
definedFacets |= XSSimpleTypeDefinition::FACET_ENUMERATION;
}
RefHashTableOfEnumerator<KVStringPair> e(dv->getFacets(), false, fMemoryManager);
while (e.hasMoreElements())
{
KVStringPair& pair = e.nextElement();
XMLCh* key = pair.getKey();
XSSimpleTypeDefinition::FACET facetType;
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
XSAnnotation* annot = getAnnotationFromModel(xsModel, &pair);
if (XMLString::equals(key, SchemaSymbols::fgELT_MAXINCLUSIVE))
{
facetType = XSSimpleTypeDefinition::FACET_MAXINCLUSIVE;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MAXINCLUSIVE) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_MAXEXCLUSIVE))
{
facetType = XSSimpleTypeDefinition::FACET_MAXEXCLUSIVE;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MAXEXCLUSIVE) !=0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_MININCLUSIVE))
{
facetType = XSSimpleTypeDefinition::FACET_MININCLUSIVE;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MININCLUSIVE) !=0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_MINEXCLUSIVE))
{
facetType = XSSimpleTypeDefinition::FACET_MINEXCLUSIVE;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MINEXCLUSIVE) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_LENGTH))
{
facetType = XSSimpleTypeDefinition::FACET_LENGTH;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_LENGTH) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_MINLENGTH))
{
facetType = XSSimpleTypeDefinition::FACET_MINLENGTH;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MINLENGTH) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_MAXLENGTH))
{
facetType = XSSimpleTypeDefinition::FACET_MAXLENGTH;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_MAXLENGTH) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_TOTALDIGITS))
{
facetType = XSSimpleTypeDefinition::FACET_TOTALDIGITS;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_TOTALDIGITS) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_FRACTIONDIGITS))
{
facetType = XSSimpleTypeDefinition::FACET_FRACTIONDIGITS;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_FRACTIONDIGITS) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_WHITESPACE))
{
facetType = XSSimpleTypeDefinition::FACET_WHITESPACE;
isFixed = ((dvFixedFacets & DatatypeValidator::FACET_WHITESPACE) != 0);
}
else if (XMLString::equals(key, SchemaSymbols::fgELT_PATTERN))
{
XMLStringTokenizer tokenizer(dv->getPattern(), regexSeparator, fMemoryManager);
patternList = new (fMemoryManager) RefArrayVectorOf<XMLCh>(
tokenizer.countTokens(), true, fMemoryManager
);
while (tokenizer.hasMoreTokens())
patternList->addElement(XMLString::replicate(tokenizer.nextToken(), fMemoryManager));
if (dvFixedFacets & DatatypeValidator::FACET_PATTERN)
{