ComplexTypeInfo.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:16k
源码类别:

xml/soap/webservice

开发平台:

C/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.12 2001/11/21 14:30:13 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 <util/XMLString.hpp>
  70. #include <util/RefHash2KeysTableOf.hpp>
  71. #include <util/RefVectorOf.hpp>
  72. #include <util/Janitor.hpp>
  73. #include <framework/XMLElementDecl.hpp>
  74. #include <framework/XMLContentModel.hpp>
  75. #include <validators/schema/SchemaAttDef.hpp>
  76. // ---------------------------------------------------------------------------
  77. //  Forward Declarations
  78. // ---------------------------------------------------------------------------
  79. class DatatypeValidator;
  80. class ContentSpecNode;
  81. class SchemaAttDefList;
  82. class SchemaElementDecl;
  83. class VALIDATORS_EXPORT ComplexTypeInfo
  84. {
  85. public:
  86.     // -----------------------------------------------------------------------
  87.     //  Public Constructors/Destructor
  88.     // -----------------------------------------------------------------------
  89.     ComplexTypeInfo();
  90.     ~ComplexTypeInfo();
  91.     // -----------------------------------------------------------------------
  92.     //  Getter methods
  93.     // -----------------------------------------------------------------------
  94.     bool                     getAbstract() const;
  95.     bool                     getAdoptContentSpec() const;
  96.     bool                     containsAttWithTypeId() const;
  97.     int                      getDerivedBy() const;
  98.     int                      getBlockSet() const;
  99.     int                      getFinalSet() const;
  100.     int                      getScopeDefined() const;
  101.     unsigned int             getElementId() const;
  102.     int                      getContentType() const;
  103.     unsigned int             elementCount() const;
  104.     XMLCh*                   getTypeName() const;
  105.     DatatypeValidator*       getBaseDatatypeValidator() const;
  106.     DatatypeValidator*       getDatatypeValidator() const;
  107.     ComplexTypeInfo*         getBaseComplexTypeInfo() const;
  108.     ContentSpecNode*         getContentSpec() const;
  109.     const SchemaAttDef*      getAttWildCard() const;
  110.     SchemaAttDef*            getAttWildCard();
  111.     const SchemaAttDef*      getAttDef(const XMLCh* const baseName,
  112.                                        const int uriId) const;
  113.     SchemaAttDef*            getAttDef(const XMLCh* const baseName,
  114.                                        const int uriId);
  115.     XMLAttDefList&           getAttDefList() const;
  116.     const SchemaElementDecl* elementAt(const unsigned int index) const;
  117.     SchemaElementDecl*       elementAt(const unsigned int index);
  118.     XMLContentModel*         getContentModel(const bool checkUPA = false);
  119.     const XMLCh*             getFormattedContentModel ()   const;
  120.     // -----------------------------------------------------------------------
  121.     //  Setter methods
  122.     // -----------------------------------------------------------------------
  123.     void setAbstract(const bool isAbstract);
  124.     void setAdoptContentSpec(const bool toAdopt);
  125.     void setAttWithTypeId(const bool value);
  126.     void setDerivedBy(const int derivedBy);
  127.     void setBlockSet(const int blockSet);
  128.     void setFinalSet(const int finalSet);
  129.     void setScopeDefined(const int scopeDefined);
  130.     void setElementId(const unsigned int elemId);
  131.     void setTypeName(const XMLCh* const typeName);
  132.     void setContentType(const int contentType);
  133.     void setBaseDatatypeValidator(DatatypeValidator* const baseValidator);
  134.     void setDatatypeValidator(DatatypeValidator* const validator);
  135.     void setBaseComplexTypeInfo(ComplexTypeInfo* const typeInfo);
  136.     void setContentSpec(ContentSpecNode* const toAdopt);
  137.     void setAttWildCard(SchemaAttDef* const toAdopt);
  138.     void addAttDef(SchemaAttDef* const toAdd);
  139.     void addElement(SchemaElementDecl* const toAdd);
  140.     void setContentModel(XMLContentModel* const newModelToAdopt);
  141.     // -----------------------------------------------------------------------
  142.     //  Helper methods
  143.     // -----------------------------------------------------------------------
  144.     bool hasAttDefs() const;
  145.     bool contains(const XMLCh* const attName);
  146.     XMLAttDef* findAttr
  147.     (
  148.         const   XMLCh* const    qName
  149.         , const unsigned int    uriId
  150.         , const XMLCh* const    baseName
  151.         , const XMLCh* const    prefix
  152.         , const XMLElementDecl::LookupOpts      options
  153.         ,       bool&           wasAdded
  154.     )   const;
  155.     bool resetDefs();
  156.     void checkUniqueParticleAttribution
  157.     (
  158.         SchemaGrammar*    const pGrammar
  159.       , GrammarResolver*  const pGrammarResolver
  160.       , XMLStringPool*    const pStringPool
  161.       , XMLValidator*     const pValidator
  162.     ) ;
  163. private:
  164.     // -----------------------------------------------------------------------
  165.     //  Unimplemented contstructors and operators
  166.     // -----------------------------------------------------------------------
  167.     ComplexTypeInfo(const ComplexTypeInfo& elemInfo);
  168.     ComplexTypeInfo& operator= (const ComplexTypeInfo& other);
  169.     // -----------------------------------------------------------------------
  170.     //  Private helper methods
  171.     // -----------------------------------------------------------------------
  172.     void faultInAttDefList() const;
  173.     XMLContentModel* createChildModel(ContentSpecNode* specNode, const bool isMixed);
  174.     XMLContentModel* makeContentModel(const bool checkUPA = false, ContentSpecNode* const specNode = 0);
  175.     XMLCh* formatContentModel () const ;
  176.     ContentSpecNode* expandContentModel(ContentSpecNode* const curNode, const int minOccurs, const int maxOccurs);
  177.     ContentSpecNode* convertContentSpecTree(ContentSpecNode* const curNode, const bool checkUPA = false);
  178.     void resizeContentSpecOrgURI();
  179.     // -----------------------------------------------------------------------
  180.     //  Private data members
  181.     // -----------------------------------------------------------------------
  182.     bool                               fAbstract;
  183.     bool                               fAdoptContentSpec;
  184.     bool                               fAttWithTypeId;
  185.     int                                fDerivedBy;
  186.     int                                fBlockSet;
  187.     int                                fFinalSet;
  188.     int                                fScopeDefined;
  189.     unsigned int                       fElementId;
  190.     int                                fContentType;
  191.     XMLCh*                             fTypeName;
  192.     DatatypeValidator*                 fBaseDatatypeValidator;
  193.     DatatypeValidator*                 fDatatypeValidator;
  194.     ComplexTypeInfo*                   fBaseComplexTypeInfo;
  195.     ContentSpecNode*                   fContentSpec;
  196.     SchemaAttDef*                      fAttWildCard;
  197.     RefHash2KeysTableOf<SchemaAttDef>* fAttDefs;
  198.     SchemaAttDefList*                  fAttList;
  199.     RefVectorOf<SchemaElementDecl>*    fElements;
  200.     XMLContentModel*                   fContentModel;
  201.     XMLCh*                             fFormattedModel;
  202.     unsigned int*                      fContentSpecOrgURI;
  203.     unsigned int                       fUniqueURI;
  204.     unsigned int                       fContentSpecOrgURISize;
  205.     RefVectorOf<ContentSpecNode>*      fSpecNodesToDelete;
  206. };
  207. // ---------------------------------------------------------------------------
  208. //  ComplexTypeInfo: Getter methods
  209. // ---------------------------------------------------------------------------
  210. inline bool ComplexTypeInfo::getAbstract() const {
  211.     return fAbstract;
  212. }
  213. inline bool ComplexTypeInfo::getAdoptContentSpec() const {
  214.     return fAdoptContentSpec;
  215. }
  216. inline bool ComplexTypeInfo::containsAttWithTypeId() const {
  217.     return fAttWithTypeId;
  218. }
  219. inline int ComplexTypeInfo::getDerivedBy() const {
  220.     return fDerivedBy;
  221. }
  222. inline int ComplexTypeInfo::getBlockSet() const {
  223.     return fBlockSet;
  224. }
  225. inline int ComplexTypeInfo::getFinalSet() const {
  226.     return fFinalSet;
  227. }
  228. inline int ComplexTypeInfo::getScopeDefined() const {
  229.     return fScopeDefined;
  230. }
  231. inline unsigned int ComplexTypeInfo::getElementId() const {
  232.     return fElementId;
  233. }
  234. inline int ComplexTypeInfo::getContentType() const {
  235.     return fContentType;
  236. }
  237. inline unsigned int ComplexTypeInfo::elementCount() const {
  238.     if (fElements) {
  239.         return fElements->size();
  240.     }
  241.     return 0;
  242. }
  243. inline XMLCh* ComplexTypeInfo::getTypeName() const {
  244.     return fTypeName;
  245. }
  246. inline DatatypeValidator* ComplexTypeInfo::getBaseDatatypeValidator() const {
  247.     return fBaseDatatypeValidator;
  248. }
  249. inline DatatypeValidator* ComplexTypeInfo::getDatatypeValidator() const {
  250.     return fDatatypeValidator;
  251. }
  252. inline ComplexTypeInfo* ComplexTypeInfo::getBaseComplexTypeInfo() const {
  253.     return fBaseComplexTypeInfo;
  254. }
  255. inline ContentSpecNode* ComplexTypeInfo::getContentSpec() const {
  256.     return fContentSpec;
  257. }
  258. inline const SchemaAttDef* ComplexTypeInfo::getAttWildCard() const {
  259.     return fAttWildCard;
  260. }
  261. inline SchemaAttDef* ComplexTypeInfo::getAttWildCard() {
  262.     return fAttWildCard;
  263. }
  264. inline const SchemaAttDef* ComplexTypeInfo::getAttDef(const XMLCh* const baseName,
  265.                                                       const int uriId) const {
  266.     // If no list, then return a null
  267.     if (!fAttDefs)
  268.         return 0;
  269.     return fAttDefs->get(baseName, uriId);
  270. }
  271. inline SchemaAttDef* ComplexTypeInfo::getAttDef(const XMLCh* const baseName,
  272.                                                 const int uriId)
  273. {
  274.     // If no list, then return a null
  275.     if (!fAttDefs)
  276.         return 0;
  277.     return fAttDefs->get(baseName, uriId);
  278. }
  279. inline SchemaElementDecl*
  280. ComplexTypeInfo::elementAt(const unsigned int index) {
  281.     if (!fElements) {
  282.         return 0; // REVISIT - need to throw an exception
  283.     }
  284.     return fElements->elementAt(index);
  285. }
  286. inline const SchemaElementDecl*
  287. ComplexTypeInfo::elementAt(const unsigned int index) const {
  288.     if (!fElements) {
  289.         return 0; // REVISIT - need to throw an exception
  290.     }
  291.     return fElements->elementAt(index);
  292. }
  293. inline XMLContentModel* ComplexTypeInfo::getContentModel(const bool checkUPA)
  294. {
  295.     if (!fContentModel)
  296.         fContentModel = makeContentModel(checkUPA);
  297.     return fContentModel;
  298. }
  299. // ---------------------------------------------------------------------------
  300. //  ComplexTypeInfo: Setter methods
  301. // ---------------------------------------------------------------------------
  302. inline void ComplexTypeInfo::setAbstract(const bool isAbstract) {
  303.     fAbstract = isAbstract;
  304. }
  305. inline void ComplexTypeInfo::setAdoptContentSpec(const bool toAdopt) {
  306.     fAdoptContentSpec = toAdopt;
  307. }
  308. inline void ComplexTypeInfo::setAttWithTypeId(const bool value) {
  309.     fAttWithTypeId = value;
  310. }
  311. inline void ComplexTypeInfo::setDerivedBy(const int derivedBy) {
  312.     fDerivedBy = derivedBy;
  313. }
  314. inline void ComplexTypeInfo::setBlockSet(const int blockSet) {
  315.     fBlockSet = blockSet;
  316. }
  317. inline void ComplexTypeInfo::setFinalSet(const int finalSet) {
  318.     fFinalSet = finalSet;
  319. }
  320. inline void ComplexTypeInfo::setScopeDefined(const int scopeDefined) {
  321.     fScopeDefined = scopeDefined;
  322. }
  323. inline void ComplexTypeInfo::setElementId(const unsigned int elemId) {
  324.     fElementId = elemId;
  325. }
  326. inline void
  327. ComplexTypeInfo::setContentType(const int contentType) {
  328.     fContentType = contentType;
  329. }
  330. inline void ComplexTypeInfo::setTypeName(const XMLCh* const typeName) {
  331.     if (fTypeName != 0) {
  332.         delete [] fTypeName;
  333.     }
  334.     fTypeName = XMLString::replicate(typeName);
  335. }
  336. inline void
  337. ComplexTypeInfo::setBaseDatatypeValidator(DatatypeValidator* const validator) {
  338.     fBaseDatatypeValidator = validator;
  339. }
  340. inline void
  341. ComplexTypeInfo::setDatatypeValidator(DatatypeValidator* const validator) {
  342.     fDatatypeValidator = validator;
  343. }
  344. inline void
  345. ComplexTypeInfo::setBaseComplexTypeInfo(ComplexTypeInfo* const typeInfo) {
  346.     fBaseComplexTypeInfo = typeInfo;
  347. }
  348. inline void ComplexTypeInfo::addElement(SchemaElementDecl* const elem) {
  349.     if (!fElements) {
  350.         fElements = new RefVectorOf<SchemaElementDecl>(8, false);
  351.     }
  352.     fElements->addElement(elem);
  353. }
  354. inline void ComplexTypeInfo::setAttWildCard(SchemaAttDef* const toAdopt) {
  355.     if (fAttWildCard) {
  356.        delete fAttWildCard;
  357.     }
  358.     fAttWildCard = toAdopt;
  359. }
  360. inline void
  361. ComplexTypeInfo::setContentModel(XMLContentModel* const newModelToAdopt)
  362. {
  363.     delete fContentModel;
  364.     fContentModel = newModelToAdopt;
  365. }
  366. // ---------------------------------------------------------------------------
  367. //  ComplexTypeInfo: Helper methods
  368. // ---------------------------------------------------------------------------
  369. inline bool ComplexTypeInfo::hasAttDefs() const
  370. {
  371.     // If the collection hasn't been faulted in, then no att defs
  372.     if (!fAttDefs)
  373.         return false;
  374.     return !fAttDefs->isEmpty();
  375. }
  376. inline bool ComplexTypeInfo::contains(const XMLCh* const attName) {
  377.     if (!fAttDefs) {
  378.         return false;
  379.     }
  380.     RefHash2KeysTableOfEnumerator<SchemaAttDef> enumDefs(fAttDefs);
  381.     while (enumDefs.hasMoreElements()) {
  382.         if (XMLString::compareString(attName,
  383.                 enumDefs.nextElement().getAttName()->getLocalPart()) == 0) {
  384.             return true;
  385.         }
  386.     }
  387.     return false;
  388. }
  389. #endif
  390. /**
  391.   * End of file ComplexTypeInfo.hpp
  392.   */