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

词法分析

开发平台:

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: SchemaInfo.hpp,v 1.14 2003/05/16 21:43:21 knoaman Exp $
  58.  */
  59. #if !defined(SCHEMAINFO_HPP)
  60. #define SCHEMAINFO_HPP
  61. /** When in a <redefine>, type definitions being used (and indeed
  62.   * refs to <group>'s and <attributeGroup>'s) may refer to info
  63.   * items either in the schema being redefined, in the <redefine>,
  64.   * or else in the schema doing the redefining.  Because of this
  65.   * latter we have to be prepared sometimes to look for our type
  66.   * definitions outside the schema stored in fSchemaRootElement.
  67.   * This simple class does this; it's just a linked list that
  68.   * lets us look at the <schema>'s on the queue; note also that this
  69.   * should provide us with a mechanism to handle nested <redefine>'s.
  70.   * It's also a handy way of saving schema info when importing/including.
  71.   */
  72. // ---------------------------------------------------------------------------
  73. //  Includes
  74. // ---------------------------------------------------------------------------
  75. #include <xercesc/dom/DOMElement.hpp>
  76. #include <xercesc/util/RefVectorOf.hpp>
  77. #include <xercesc/util/ValueVectorOf.hpp>
  78. XERCES_CPP_NAMESPACE_BEGIN
  79. class VALIDATORS_EXPORT SchemaInfo : public XMemory
  80. {
  81. public:
  82.     enum ListType {
  83.         // Redefine is treated as an include
  84.         IMPORT = 1,
  85.         INCLUDE = 2
  86.     };
  87.     enum {
  88.         C_ComplexType,
  89.         C_SimpleType,
  90.         C_Group,
  91.         C_Attribute,
  92.         C_AttributeGroup,
  93.         C_Element,
  94.         C_Notation,
  95.         C_Count
  96.     };
  97.     // -----------------------------------------------------------------------
  98.     //  Constructor/Destructor
  99.     // -----------------------------------------------------------------------
  100.     SchemaInfo(const unsigned short fElemAttrDefaultQualified,
  101.                const int blockDefault,
  102.                const int finalDefault,
  103.                const int targetNSURI,
  104.                const int scopeCount,
  105.                const unsigned int namespaceScopeLevel,
  106.                XMLCh* const schemaURL,
  107.                const XMLCh* const targetNSURIString,
  108.                const DOMElement* const root,
  109.                MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  110.     ~SchemaInfo();
  111.     // -----------------------------------------------------------------------
  112.     //  Getter methods
  113.     // -----------------------------------------------------------------------
  114.     XMLCh*                            getCurrentSchemaURL() const;
  115.     const XMLCh* const                getTargetNSURIString() const;
  116.     const DOMElement*                 getRoot() const;
  117.     bool                              getProcessed() const;
  118.     int                               getBlockDefault() const;
  119.     int                               getFinalDefault() const;
  120.     int                               getTargetNSURI() const;
  121.     int                               getScopeCount() const;
  122.     unsigned int                      getNamespaceScopeLevel() const;
  123.     unsigned short                    getElemAttrDefaultQualified() const;
  124.     BaseRefVectorEnumerator<SchemaInfo>   getImportingListEnumerator() const;
  125.     ValueVectorOf<const DOMElement*>* getRecursingAnonTypes() const;
  126.     ValueVectorOf<const XMLCh*>*      getRecursingTypeNames() const;
  127.     // -----------------------------------------------------------------------
  128.     //  Setter methods
  129.     // -----------------------------------------------------------------------
  130.     void setProcessed(const bool aValue = true);
  131.     void setScopeCount(const int aValue);
  132.     void setBlockDefault(const int aValue);
  133.     void setFinalDefault(const int aValue);
  134.     void setElemAttrDefaultQualified(const unsigned short aValue);
  135.     // -----------------------------------------------------------------------
  136.     //  Access methods
  137.     // -----------------------------------------------------------------------
  138.     void addSchemaInfo(SchemaInfo* const toAdd, const ListType aListType);
  139.     bool containsInfo(const SchemaInfo* const toCheck, const ListType aListType) const;
  140.     SchemaInfo* getImportInfo(const unsigned int namespaceURI) const;
  141.     DOMElement* getTopLevelComponent(const unsigned short compCategory,
  142.                                      const XMLCh* const compName,
  143.                                      const XMLCh* const name);
  144.     DOMElement* getTopLevelComponent(const unsigned short compCategory,
  145.                                      const XMLCh* const compName,
  146.                                      const XMLCh* const name,
  147.                                      SchemaInfo** enclosingSchema);
  148.     void updateImportingInfo(SchemaInfo* const importingInfo);
  149.     bool circularImportExist(const unsigned int nameSpaceURI);
  150.     bool isFailedRedefine(const DOMElement* const anElem);
  151.     void addFailedRedefine(const DOMElement* const anElem);
  152.     bool isImportingNS(const int namespaceURI);
  153.     void addImportedNS(const int namespaceURI);
  154.     void addRecursingType(const DOMElement* const elem, const XMLCh* const name);
  155. private:
  156.     // -----------------------------------------------------------------------
  157.     //  Private helper methods
  158.     // -----------------------------------------------------------------------
  159.     void clearTopLevelComponents();
  160.     // -----------------------------------------------------------------------
  161.     //  Private data members
  162.     // -----------------------------------------------------------------------
  163.     bool                              fAdoptInclude;
  164.     bool                              fProcessed;
  165.     unsigned short                    fElemAttrDefaultQualified;
  166.     int                               fBlockDefault;
  167.     int                               fFinalDefault;
  168.     int                               fTargetNSURI;
  169.     int                               fScopeCount;
  170.     unsigned int                      fNamespaceScopeLevel;
  171.     XMLCh*                            fCurrentSchemaURL;
  172.     const XMLCh*                      fTargetNSURIString;
  173.     const DOMElement*                 fSchemaRootElement;
  174.     RefVectorOf<SchemaInfo>*          fIncludeInfoList;
  175.     RefVectorOf<SchemaInfo>*          fImportedInfoList;
  176.     RefVectorOf<SchemaInfo>*          fImportingInfoList;
  177.     ValueVectorOf<const DOMElement*>* fFailedRedefineList;
  178.     ValueVectorOf<int>*               fImportedNSList;
  179.     ValueVectorOf<const DOMElement*>* fRecursingAnonTypes;
  180.     ValueVectorOf<const XMLCh*>*      fRecursingTypeNames;
  181.     ValueVectorOf<DOMElement*>*       fTopLevelComponents[C_Count];
  182.     MemoryManager*                    fMemoryManager;
  183. };
  184. // ---------------------------------------------------------------------------
  185. //  SchemaInfo: Getter methods
  186. // ---------------------------------------------------------------------------
  187. inline unsigned short SchemaInfo::getElemAttrDefaultQualified() const {
  188.     return fElemAttrDefaultQualified;
  189. }
  190. inline bool SchemaInfo::getProcessed() const {
  191.     return fProcessed;
  192. }
  193. inline int SchemaInfo::getBlockDefault() const {
  194.     return fBlockDefault;
  195. }
  196. inline int SchemaInfo::getFinalDefault() const {
  197.     return fFinalDefault;
  198. }
  199. inline unsigned int SchemaInfo::getNamespaceScopeLevel() const {
  200.     return fNamespaceScopeLevel;
  201. }
  202. inline XMLCh* SchemaInfo::getCurrentSchemaURL() const {
  203.     return fCurrentSchemaURL;
  204. }
  205. inline const XMLCh* const SchemaInfo::getTargetNSURIString() const {
  206.     return fTargetNSURIString;
  207. }
  208. inline const DOMElement* SchemaInfo::getRoot() const {
  209.     return fSchemaRootElement;
  210. }
  211. inline int SchemaInfo::getTargetNSURI() const {
  212.     return fTargetNSURI;
  213. }
  214. inline int SchemaInfo::getScopeCount() const {
  215.     return fScopeCount;
  216. }
  217. inline BaseRefVectorEnumerator<SchemaInfo>
  218. SchemaInfo::getImportingListEnumerator() const {
  219.     return BaseRefVectorEnumerator<SchemaInfo>(fImportingInfoList);
  220. }
  221. inline ValueVectorOf<const DOMElement*>*
  222. SchemaInfo::getRecursingAnonTypes() const {
  223.     return fRecursingAnonTypes;
  224. }
  225. inline ValueVectorOf<const XMLCh*>*
  226. SchemaInfo::getRecursingTypeNames() const {
  227.     return fRecursingTypeNames;
  228. }
  229. // ---------------------------------------------------------------------------
  230. //  Setter methods
  231. // ---------------------------------------------------------------------------
  232. inline void SchemaInfo::setScopeCount(const int aValue) {
  233.     fScopeCount = aValue;
  234. }
  235. inline void SchemaInfo::setBlockDefault(const int aValue) {
  236.     fBlockDefault = aValue;
  237. }
  238. inline void SchemaInfo::setFinalDefault(const int aValue) {
  239.     fFinalDefault = aValue;
  240. }
  241. inline void SchemaInfo::setElemAttrDefaultQualified(const unsigned short aValue) {
  242.     fElemAttrDefaultQualified = aValue;
  243. }
  244. inline void SchemaInfo::setProcessed(const bool aValue) {
  245.     fProcessed = aValue;
  246. /*    if (fProcessed && fIncludeInfoList) {
  247.         unsigned int includeListLen = fIncludeInfoList->size());
  248.         for (unsigned int i = 0; i < includeListLen; i++) {
  249.             fIncludeInfoList->elementAt(i)->clearTopLevelComponents();
  250.         }
  251.     }*/
  252. }
  253. // ---------------------------------------------------------------------------
  254. //  SchemaInfo: Access methods
  255. // ---------------------------------------------------------------------------
  256. inline void SchemaInfo::addImportedNS(const int namespaceURI) {
  257.     if (!fImportedNSList) {
  258.         fImportedNSList = new (fMemoryManager) ValueVectorOf<int>(4, fMemoryManager);
  259.     }
  260.     if (!fImportedNSList->containsElement(namespaceURI))
  261.         fImportedNSList->addElement(namespaceURI);
  262. }
  263. inline void SchemaInfo::addSchemaInfo(SchemaInfo* const toAdd,
  264.                                       const ListType aListType) {
  265.     if (aListType == IMPORT) {
  266.         if (!fImportedInfoList)
  267.             fImportedInfoList = new (fMemoryManager) RefVectorOf<SchemaInfo>(4, false, fMemoryManager);
  268.         if (!fImportedInfoList->containsElement(toAdd)) {
  269.             fImportedInfoList->addElement(toAdd);
  270.             addImportedNS(toAdd->getTargetNSURI());
  271.             toAdd->updateImportingInfo(this);
  272.         }
  273.     }
  274.     else {
  275.         if (!fIncludeInfoList) {
  276.             fIncludeInfoList = new (fMemoryManager) RefVectorOf<SchemaInfo>(8, false, fMemoryManager);
  277.             fAdoptInclude = true;
  278.         }
  279.         if (!fIncludeInfoList->containsElement(toAdd)) {
  280.     fIncludeInfoList->addElement(toAdd);
  281.             toAdd->fIncludeInfoList = fIncludeInfoList;
  282.         }
  283.     }
  284. }
  285. inline SchemaInfo* SchemaInfo::getImportInfo(const unsigned int namespaceURI) const {
  286.     unsigned int importSize = (fImportedInfoList) ? fImportedInfoList->size() : 0;
  287.     SchemaInfo* currInfo = 0;
  288.     for (unsigned int i=0; i < importSize; i++) {
  289.         currInfo = fImportedInfoList->elementAt(i);
  290.         if (currInfo->getTargetNSURI() == (int) namespaceURI)
  291.             break;
  292.     }
  293.     return currInfo;
  294. }
  295. inline bool SchemaInfo::containsInfo(const SchemaInfo* const toCheck,
  296.                                      const ListType aListType) const {
  297.     if ((aListType == INCLUDE) && fIncludeInfoList) {
  298.         return fIncludeInfoList->containsElement(toCheck);
  299.     }
  300.     else if ((aListType == IMPORT) && fImportedInfoList) {
  301.         return fImportedInfoList->containsElement(toCheck);
  302.     }
  303.     return false;
  304. }
  305. inline bool SchemaInfo::circularImportExist(const unsigned int namespaceURI) {
  306.     unsigned int importSize = fImportingInfoList->size();
  307.     for (unsigned int i=0; i < importSize; i++) {
  308.         if (fImportingInfoList->elementAt(i)->getTargetNSURI() == (int) namespaceURI) {
  309.             return true;
  310.         }
  311.     }
  312.     return false;
  313. }
  314. inline bool SchemaInfo::isFailedRedefine(const DOMElement* const anElem) {
  315.     if (fFailedRedefineList)
  316.         return (fFailedRedefineList->containsElement(anElem));
  317.     return false;
  318. }
  319. inline void SchemaInfo::addFailedRedefine(const DOMElement* const anElem) {
  320.     if (!fFailedRedefineList) {
  321.         fFailedRedefineList = new (fMemoryManager) ValueVectorOf<const DOMElement*>(4, fMemoryManager);
  322.     }
  323.     fFailedRedefineList->addElement(anElem);
  324. }
  325. inline bool SchemaInfo::isImportingNS(const int namespaceURI) {
  326.     if (!fImportedNSList)
  327.         return false;
  328.     return (fImportedNSList->containsElement(namespaceURI));
  329. }
  330. inline void SchemaInfo::addRecursingType(const DOMElement* const elem,
  331.                                          const XMLCh* const name) {
  332.     if (!fRecursingAnonTypes) {
  333.         fRecursingAnonTypes = new (fMemoryManager) ValueVectorOf<const DOMElement*>(8, fMemoryManager);
  334.         fRecursingTypeNames = new (fMemoryManager) ValueVectorOf<const XMLCh*>(8, fMemoryManager);
  335.     }
  336.     fRecursingAnonTypes->addElement(elem);
  337.     fRecursingTypeNames->addElement(name);
  338. }
  339. inline void SchemaInfo::clearTopLevelComponents() {
  340.     for (unsigned int i = 0; i < C_Count; i++) {
  341.         delete fTopLevelComponents[i];
  342.         fTopLevelComponents[i] = 0;
  343.     }
  344. }
  345. XERCES_CPP_NAMESPACE_END
  346. #endif
  347. /**
  348.   * End of file SchemaInfo.hpp
  349.   */