00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 #if !defined(XSMODEL_HPP)
00063 #define XSMODEL_HPP
00064
00065 #include <xercesc/util/PlatformUtils.hpp>
00066 #include <xercesc/framework/psvi/XSObject.hpp>
00067 #include <xercesc/framework/psvi/XSNamedMap.hpp>
00068
00069 #include <xercesc/util/ValueVectorOf.hpp>
00070 #include <xercesc/validators/schema/SchemaElementDecl.hpp>
00071
00072 XERCES_CPP_NAMESPACE_BEGIN
00073
00086
00087 class Grammar;
00088 class XMLGrammarPool;
00089 class XSAnnotation;
00090 class XSAttributeDeclaration;
00091 class XSAttributeGroupDefinition;
00092 class XSElementDeclaration;
00093 class XSModelGroupDefinition;
00094 class XSNamespaceItem;
00095 class XSNotationDeclaration;
00096 class XSTypeDefinition;
00097 class XSObjectFactory;
00098
00099 class XSModel : public XMemory
00100 {
00101 public:
00102
00103
00104
00107
00113 XSModel( XMLGrammarPool *grammarPool
00114 , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00115
00125 XSModel( XSModel *baseModel
00126 , GrammarResolver *grammarResolver
00127 , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00128
00130
00133 ~XSModel();
00135
00136
00140
00147 StringList *getNamespaces();
00148
00157 XSNamespaceItemList *getNamespaceItems();
00158
00169 XSNamedMap<XSObject> *getComponents(XSConstants::COMPONENT_TYPE objectType);
00170
00183 XSNamedMap<XSObject> *getComponentsByNamespace(XSConstants::COMPONENT_TYPE objectType,
00184 const XMLCh *compNamespace);
00185
00189 XSAnnotationList *getAnnotations();
00190
00198 XSElementDeclaration *getElementDeclaration(const XMLCh *name
00199 , const XMLCh *compNamespace);
00200
00208 XSAttributeDeclaration *getAttributeDeclaration(const XMLCh *name
00209 , const XMLCh *compNamespace);
00210
00219 XSTypeDefinition *getTypeDefinition(const XMLCh *name
00220 , const XMLCh *compNamespace);
00221
00229 XSAttributeGroupDefinition *getAttributeGroup(const XMLCh *name
00230 , const XMLCh *compNamespace);
00231
00239 XSModelGroupDefinition *getModelGroupDefinition(const XMLCh *name
00240 , const XMLCh *compNamespace);
00241
00249 XSNotationDeclaration *getNotationDeclaration(const XMLCh *name
00250 , const XMLCh *compNamespace);
00251
00261 XSObject *getXSObjectById(unsigned int compId
00262 , XSConstants::COMPONENT_TYPE compType);
00263
00265
00266
00270 XMLStringPool* getURIStringPool();
00271
00272 XSNamespaceItem* getNamespaceItem(const XMLCh* const key);
00273
00281 XSObject* getXSObject(void* key);
00282
00284 private:
00285
00286
00287
00288
00289 void addGrammarToXSModel
00290 (
00291 XSNamespaceItem* namespaceItem
00292 );
00293 void addS4SToXSModel
00294 (
00295 XSNamespaceItem* const namespaceItem
00296 , RefHashTableOf<DatatypeValidator>* const builtInDV
00297 );
00298 void addComponentToNamespace
00299 (
00300 XSNamespaceItem* const namespaceItem
00301 , XSObject* const component
00302 , int componentIndex
00303 , bool addToXSModel = true
00304 );
00305
00306 void addComponentToIdVector
00307 (
00308 XSObject* const component
00309 , int componentIndex
00310 );
00311
00312
00313
00314
00315 XSModel(const XSModel&);
00316 XSModel & operator=(const XSModel &);
00317
00318 protected:
00319 friend class XSObjectFactory;
00320 friend class XSObject;
00321
00322
00323
00324
00325
00326
00327 MemoryManager* const fMemoryManager;
00328
00329 StringList* fNamespaceStringList;
00330 XSNamespaceItemList* fXSNamespaceItemList;
00331
00332 RefVectorOf<XSObject>* fIdVector[XSConstants::MULTIVALUE_FACET];
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350 XSNamedMap<XSObject>* fComponentMap[XSConstants::MULTIVALUE_FACET];
00351 XMLStringPool* fURIStringPool;
00352 XSAnnotationList* fXSAnnotationList;
00353 RefHashTableOf<XSNamespaceItem>* fHashNamespace;
00354 XSObjectFactory* fObjFactory;
00355 RefVectorOf<XSNamespaceItem>* fDeleteNamespace;
00356 XSModel* fParent;
00357 bool fDeleteParent;
00358 bool fAddedS4SGrammar;
00359 };
00360
00361 inline XMLStringPool* XSModel::getURIStringPool()
00362 {
00363 return fURIStringPool;
00364 }
00365
00366 inline StringList *XSModel::getNamespaces()
00367 {
00368 return fNamespaceStringList;
00369 }
00370
00371 inline XSNamespaceItemList *XSModel::getNamespaceItems()
00372 {
00373 return fXSNamespaceItemList;
00374 }
00375
00376 XERCES_CPP_NAMESPACE_END
00377
00378 #endif