ComplexTypeInfo.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:19k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Id: ComplexTypeInfo.hpp,v 1.14 2003/05/18 14:02:07 knoaman Exp $
  58.  */
  59. #if !defined(COMPLEXTYPEINFO_HPP)
  60. #define COMPLEXTYPEINFO_HPP
  61. /**
  62.   * The class act as a place holder to store complex type information.
  63.   *
  64.   * The class is intended for internal use.
  65.   */
  66. // ---------------------------------------------------------------------------
  67. //  Includes
  68. // ---------------------------------------------------------------------------
  69. #include <xercesc/util/XMLString.hpp>
  70. #include <xercesc/util/RefHash2KeysTableOf.hpp>
  71. #include <xercesc/util/RefVectorOf.hpp>
  72. #include <xercesc/framework/XMLElementDecl.hpp>
  73. #include <xercesc/framework/XMLContentModel.hpp>
  74. #include <xercesc/validators/schema/SchemaAttDef.hpp>
  75. XERCES_CPP_NAMESPACE_BEGIN
  76. // ---------------------------------------------------------------------------
  77. //  Forward Declarations
  78. // ---------------------------------------------------------------------------
  79. class DatatypeValidator;
  80. class ContentSpecNode;
  81. class SchemaAttDefList;
  82. class SchemaElementDecl;
  83. class XSDLocator;
  84. class VALIDATORS_EXPORT ComplexTypeInfo : public XMemory
  85. {
  86. public:
  87.     // -----------------------------------------------------------------------
  88.     //  Public Constructors/Destructor
  89.     // -----------------------------------------------------------------------
  90.     ComplexTypeInfo(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  91.     ~ComplexTypeInfo();
  92.     // -----------------------------------------------------------------------
  93.     //  Getter methods
  94.     // -----------------------------------------------------------------------
  95.     bool                     getAbstract() const;
  96.     bool                     getAdoptContentSpec() const;
  97.     bool                     containsAttWithTypeId() const;
  98.     bool                     getPreprocessed() const;
  99.     int                      getDerivedBy() const;
  100.     int                      getBlockSet() const;
  101.     int                      getFinalSet() const;
  102.     int                      getScopeDefined() const;
  103.     unsigned int             getElementId() const;
  104.     int                      getContentType() const;
  105.     unsigned int             elementCount() const;
  106.     XMLCh*                   getTypeName() const;
  107.     DatatypeValidator*       getBaseDatatypeValidator() const;
  108.     DatatypeValidator*       getDatatypeValidator() const;
  109.     ComplexTypeInfo*         getBaseComplexTypeInfo() const;
  110.     ContentSpecNode*         getContentSpec() const;
  111.     const SchemaAttDef*      getAttWildCard() const;
  112.     SchemaAttDef*            getAttWildCard();
  113.     const SchemaAttDef*      getAttDef(const XMLCh* const baseName,
  114.                                        const int uriId) const;
  115.     SchemaAttDef*            getAttDef(const XMLCh* const baseName,
  116.                                        const int uriId);
  117.     XMLAttDefList&           getAttDefList() const;
  118.     const SchemaElementDecl* elementAt(const unsigned int index) const;
  119.     SchemaElementDecl*       elementAt(const unsigned int index);
  120.     XMLContentModel*         getContentModel(const bool checkUPA = false);
  121.     const XMLCh*             getFormattedContentModel ()   const;
  122.     XSDLocator*              getLocator() const;
  123.     const XMLCh*             getTypeLocalName() const;
  124.     const XMLCh*             getTypeUri() const;
  125.     /**
  126.      * returns true if this type is anonymous
  127.      **/
  128.     bool getAnonymous() const;
  129.     // -----------------------------------------------------------------------
  130.     //  Setter methods
  131.     // -----------------------------------------------------------------------
  132.     void setAbstract(const bool isAbstract);
  133.     void setAdoptContentSpec(const bool toAdopt);
  134.     void setAttWithTypeId(const bool value);
  135.     void setPreprocessed(const bool aValue = true);
  136.     void setDerivedBy(const int derivedBy);
  137.     void setBlockSet(const int blockSet);
  138.     void setFinalSet(const int finalSet);
  139.     void setScopeDefined(const int scopeDefined);
  140.     void setElementId(const unsigned int elemId);
  141.     void setTypeName(const XMLCh* const typeName);
  142.     void setContentType(const int contentType);
  143.     void setBaseDatatypeValidator(DatatypeValidator* const baseValidator);
  144.     void setDatatypeValidator(DatatypeValidator* const validator);
  145.     void setBaseComplexTypeInfo(ComplexTypeInfo* const typeInfo);
  146.     void setContentSpec(ContentSpecNode* const toAdopt);
  147.     void setAttWildCard(SchemaAttDef* const toAdopt);
  148.     void addAttDef(SchemaAttDef* const toAdd);
  149.     void addElement(SchemaElementDecl* const toAdd);
  150.     void setContentModel(XMLContentModel* const newModelToAdopt);
  151.     void setLocator(XSDLocator* const aLocator);
  152.     /**
  153.      * sets this type to be anonymous
  154.      **/
  155.     void setAnonymous();
  156.     // -----------------------------------------------------------------------
  157.     //  Helper methods
  158.     // -----------------------------------------------------------------------
  159.     bool hasAttDefs() const;
  160.     bool contains(const XMLCh* const attName);
  161.     XMLAttDef* findAttr
  162.     (
  163.         const   XMLCh* const    qName
  164.         , const unsigned int    uriId
  165.         , const XMLCh* const    baseName
  166.         , const XMLCh* const    prefix
  167.         , const XMLElementDecl::LookupOpts      options
  168.         ,       bool&           wasAdded
  169.     )   const;
  170.     bool resetDefs();
  171.     void checkUniqueParticleAttribution
  172.     (
  173.         SchemaGrammar*    const pGrammar
  174.       , GrammarResolver*  const pGrammarResolver
  175.       , XMLStringPool*    const pStringPool
  176.       , XMLValidator*     const pValidator
  177.     ) ;
  178. private:
  179.     // -----------------------------------------------------------------------
  180.     //  Unimplemented contstructors and operators
  181.     // -----------------------------------------------------------------------
  182.     ComplexTypeInfo(const ComplexTypeInfo& elemInfo);
  183.     ComplexTypeInfo& operator= (const ComplexTypeInfo& other);
  184.     // -----------------------------------------------------------------------
  185.     //  Private helper methods
  186.     // -----------------------------------------------------------------------
  187.     void faultInAttDefList() const;
  188.     XMLContentModel* createChildModel(ContentSpecNode* specNode, const bool isMixed);
  189.     XMLContentModel* makeContentModel(const bool checkUPA = false, ContentSpecNode* const specNode = 0);
  190.     XMLCh* formatContentModel () const ;
  191.     ContentSpecNode* expandContentModel(ContentSpecNode* const curNode, const int minOccurs, const int maxOccurs);
  192.     ContentSpecNode* convertContentSpecTree(ContentSpecNode* const curNode, const bool checkUPA = false);
  193.     void resizeContentSpecOrgURI();
  194.     // -----------------------------------------------------------------------
  195.     //  Private data members
  196.     // -----------------------------------------------------------------------
  197.     bool                               fAnonymous;
  198.     bool                               fAbstract;
  199.     bool                               fAdoptContentSpec;
  200.     bool                               fAttWithTypeId;
  201.     bool                               fPreprocessed;
  202.     int                                fDerivedBy;
  203.     int                                fBlockSet;
  204.     int                                fFinalSet;
  205.     int                                fScopeDefined;
  206.     unsigned int                       fElementId;
  207.     int                                fContentType;
  208.     XMLCh*                             fTypeName;
  209.     XMLCh*                             fTypeLocalName;
  210.     XMLCh*                             fTypeUri;
  211.     DatatypeValidator*                 fBaseDatatypeValidator;
  212.     DatatypeValidator*                 fDatatypeValidator;
  213.     ComplexTypeInfo*                   fBaseComplexTypeInfo;
  214.     ContentSpecNode*                   fContentSpec;
  215.     SchemaAttDef*                      fAttWildCard;
  216.     SchemaAttDefList*                  fAttList;
  217.     RefVectorOf<SchemaElementDecl>*    fElements;
  218.     RefVectorOf<ContentSpecNode>*      fSpecNodesToDelete;
  219.     RefHash2KeysTableOf<SchemaAttDef>* fAttDefs;
  220.     XMLContentModel*                   fContentModel;
  221.     XMLCh*                             fFormattedModel;
  222.     unsigned int*                      fContentSpecOrgURI;
  223.     unsigned int                       fUniqueURI;
  224.     unsigned int                       fContentSpecOrgURISize;
  225.     XSDLocator*                        fLocator;
  226.     MemoryManager*                     fMemoryManager;
  227. };
  228. // ---------------------------------------------------------------------------
  229. //  ComplexTypeInfo: Getter methods
  230. // ---------------------------------------------------------------------------
  231. inline bool ComplexTypeInfo::getAbstract() const {
  232.     return fAbstract;
  233. }
  234. inline bool ComplexTypeInfo::getAdoptContentSpec() const {
  235.     return fAdoptContentSpec;
  236. }
  237. inline bool ComplexTypeInfo::containsAttWithTypeId() const {
  238.     return fAttWithTypeId;
  239. }
  240. inline bool ComplexTypeInfo::getPreprocessed() const {
  241.     return fPreprocessed;
  242. }
  243. inline int ComplexTypeInfo::getDerivedBy() const {
  244.     return fDerivedBy;
  245. }
  246. inline int ComplexTypeInfo::getBlockSet() const {
  247.     return fBlockSet;
  248. }
  249. inline int ComplexTypeInfo::getFinalSet() const {
  250.     return fFinalSet;
  251. }
  252. inline int ComplexTypeInfo::getScopeDefined() const {
  253.     return fScopeDefined;
  254. }
  255. inline unsigned int ComplexTypeInfo::getElementId() const {
  256.     return fElementId;
  257. }
  258. inline int ComplexTypeInfo::getContentType() const {
  259.     return fContentType;
  260. }
  261. inline unsigned int ComplexTypeInfo::elementCount() const {
  262.     if (fElements) {
  263.         return fElements->size();
  264.     }
  265.     return 0;
  266. }
  267. inline XMLCh* ComplexTypeInfo::getTypeName() const {
  268.     return fTypeName;
  269. }
  270. inline DatatypeValidator* ComplexTypeInfo::getBaseDatatypeValidator() const {
  271.     return fBaseDatatypeValidator;
  272. }
  273. inline DatatypeValidator* ComplexTypeInfo::getDatatypeValidator() const {
  274.     return fDatatypeValidator;
  275. }
  276. inline ComplexTypeInfo* ComplexTypeInfo::getBaseComplexTypeInfo() const {
  277.     return fBaseComplexTypeInfo;
  278. }
  279. inline ContentSpecNode* ComplexTypeInfo::getContentSpec() const {
  280.     return fContentSpec;
  281. }
  282. inline const SchemaAttDef* ComplexTypeInfo::getAttWildCard() const {
  283.     return fAttWildCard;
  284. }
  285. inline SchemaAttDef* ComplexTypeInfo::getAttWildCard() {
  286.     return fAttWildCard;
  287. }
  288. inline const SchemaAttDef* ComplexTypeInfo::getAttDef(const XMLCh* const baseName,
  289.                                                       const int uriId) const {
  290.     // If no list, then return a null
  291.     if (!fAttDefs)
  292.         return 0;
  293.     return fAttDefs->get(baseName, uriId);
  294. }
  295. inline SchemaAttDef* ComplexTypeInfo::getAttDef(const XMLCh* const baseName,
  296.                                                 const int uriId)
  297. {
  298.     // If no list, then return a null
  299.     if (!fAttDefs)
  300.         return 0;
  301.     return fAttDefs->get(baseName, uriId);
  302. }
  303. inline SchemaElementDecl*
  304. ComplexTypeInfo::elementAt(const unsigned int index) {
  305.     if (!fElements) {
  306.         return 0; // REVISIT - need to throw an exception
  307.     }
  308.     return fElements->elementAt(index);
  309. }
  310. inline const SchemaElementDecl*
  311. ComplexTypeInfo::elementAt(const unsigned int index) const {
  312.     if (!fElements) {
  313.         return 0; // REVISIT - need to throw an exception
  314.     }
  315.     return fElements->elementAt(index);
  316. }
  317. inline XMLContentModel* ComplexTypeInfo::getContentModel(const bool checkUPA)
  318. {
  319.     if (!fContentModel)
  320.         fContentModel = makeContentModel(checkUPA);
  321.     return fContentModel;
  322. }
  323. inline XSDLocator* ComplexTypeInfo::getLocator() const
  324. {
  325.     return fLocator;
  326. }
  327. inline bool ComplexTypeInfo::getAnonymous() const {
  328.     return fAnonymous;
  329. }
  330. inline const XMLCh* ComplexTypeInfo::getTypeLocalName() const
  331. {
  332.     if(!fTypeLocalName) {
  333.         int index = XMLString::indexOf(fTypeName, chComma);
  334.         int length = XMLString::stringLen(fTypeName);
  335.         XMLCh *tName = (XMLCh*) fMemoryManager->allocate
  336.         (
  337.             (length - index + 1) * sizeof(XMLCh)
  338.         ); //new XMLCh[length - index + 1];
  339.         XMLString::subString(tName, fTypeName, index + 1, length);
  340.         ((ComplexTypeInfo *)this)->fTypeLocalName = tName;
  341.     }
  342.     return fTypeLocalName;
  343. }
  344. inline const XMLCh* ComplexTypeInfo::getTypeUri() const
  345. {
  346.     if(!fTypeUri) {
  347.         int index = XMLString::indexOf(fTypeName, chComma);
  348.         XMLCh *uri = (XMLCh*) fMemoryManager->allocate
  349.         (
  350.             (index + 1) * sizeof(XMLCh)
  351.         ); //new XMLCh[index + 1];
  352.         XMLString::subString(uri, fTypeName, 0, index);
  353.         ((ComplexTypeInfo *)this)->fTypeUri = uri;
  354.     }
  355.    return fTypeUri;
  356. }
  357. // ---------------------------------------------------------------------------
  358. //  ComplexTypeInfo: Setter methods
  359. // ---------------------------------------------------------------------------
  360. inline void ComplexTypeInfo::setAbstract(const bool isAbstract) {
  361.     fAbstract = isAbstract;
  362. }
  363. inline void ComplexTypeInfo::setAdoptContentSpec(const bool toAdopt) {
  364.     fAdoptContentSpec = toAdopt;
  365. }
  366. inline void ComplexTypeInfo::setAttWithTypeId(const bool value) {
  367.     fAttWithTypeId = value;
  368. }
  369. inline void ComplexTypeInfo::setPreprocessed(const bool aValue) {
  370.     fPreprocessed = aValue;
  371. }
  372. inline void ComplexTypeInfo::setDerivedBy(const int derivedBy) {
  373.     fDerivedBy = derivedBy;
  374. }
  375. inline void ComplexTypeInfo::setBlockSet(const int blockSet) {
  376.     fBlockSet = blockSet;
  377. }
  378. inline void ComplexTypeInfo::setFinalSet(const int finalSet) {
  379.     fFinalSet = finalSet;
  380. }
  381. inline void ComplexTypeInfo::setScopeDefined(const int scopeDefined) {
  382.     fScopeDefined = scopeDefined;
  383. }
  384. inline void ComplexTypeInfo::setElementId(const unsigned int elemId) {
  385.     fElementId = elemId;
  386. }
  387. inline void
  388. ComplexTypeInfo::setContentType(const int contentType) {
  389.     fContentType = contentType;
  390. }
  391. inline void ComplexTypeInfo::setTypeName(const XMLCh* const typeName) {
  392.     fMemoryManager->deallocate(fTypeName);//delete [] fTypeName;
  393.     fMemoryManager->deallocate(fTypeLocalName);//delete [] fTypeLocalName;
  394.     fMemoryManager->deallocate(fTypeUri);//delete [] fTypeUri;
  395.     fTypeLocalName = fTypeUri = 0;
  396.     fTypeName = XMLString::replicate(typeName, fMemoryManager);
  397. }
  398. inline void
  399. ComplexTypeInfo::setBaseDatatypeValidator(DatatypeValidator* const validator) {
  400.     fBaseDatatypeValidator = validator;
  401. }
  402. inline void
  403. ComplexTypeInfo::setDatatypeValidator(DatatypeValidator* const validator) {
  404.     fDatatypeValidator = validator;
  405. }
  406. inline void
  407. ComplexTypeInfo::setBaseComplexTypeInfo(ComplexTypeInfo* const typeInfo) {
  408.     fBaseComplexTypeInfo = typeInfo;
  409. }
  410. inline void ComplexTypeInfo::addElement(SchemaElementDecl* const elem) {
  411.     if (!fElements) {
  412.         fElements = new (fMemoryManager) RefVectorOf<SchemaElementDecl>(8, false, fMemoryManager);
  413.     }
  414.     else if (fElements->containsElement(elem)) {
  415.         return;
  416.     }
  417.     fElements->addElement(elem);
  418. }
  419. inline void ComplexTypeInfo::setAttWildCard(SchemaAttDef* const toAdopt) {
  420.     if (fAttWildCard) {
  421.        delete fAttWildCard;
  422.     }
  423.     fAttWildCard = toAdopt;
  424. }
  425. inline void
  426. ComplexTypeInfo::setContentModel(XMLContentModel* const newModelToAdopt)
  427. {
  428.     delete fContentModel;
  429.     fContentModel = newModelToAdopt;
  430. }
  431. inline void ComplexTypeInfo::setAnonymous() {
  432.     fAnonymous = true;
  433. }
  434. // ---------------------------------------------------------------------------
  435. //  ComplexTypeInfo: Helper methods
  436. // ---------------------------------------------------------------------------
  437. inline bool ComplexTypeInfo::hasAttDefs() const
  438. {
  439.     // If the collection hasn't been faulted in, then no att defs
  440.     if (!fAttDefs)
  441.         return false;
  442.     return !fAttDefs->isEmpty();
  443. }
  444. inline bool ComplexTypeInfo::contains(const XMLCh* const attName) {
  445.     if (!fAttDefs) {
  446.         return false;
  447.     }
  448.     RefHash2KeysTableOfEnumerator<SchemaAttDef> enumDefs(fAttDefs);
  449.     while (enumDefs.hasMoreElements()) {
  450.         if (XMLString::equals(attName, enumDefs.nextElement().getAttName()->getLocalPart())) {
  451.             return true;
  452.         }
  453.     }
  454.     return false;
  455. }
  456. XERCES_CPP_NAMESPACE_END
  457. #endif
  458. /**
  459.   * End of file ComplexTypeInfo.hpp
  460.   */