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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2003 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: XercesAttGroupInfo.hpp,v 1.5 2003/05/18 14:02:08 knoaman Exp $
  58.  */
  59. #if !defined(XERCESATTGROUPINFO_HPP)
  60. #define XERCESATTGROUPINFO_HPP
  61. /**
  62.   * The class act as a place holder to store attributeGroup information.
  63.   *
  64.   * The class is intended for internal use.
  65.   */
  66. // ---------------------------------------------------------------------------
  67. //  Includes
  68. // ---------------------------------------------------------------------------
  69. #include <xercesc/util/RefVectorOf.hpp>
  70. #include <xercesc/validators/schema/SchemaAttDef.hpp>
  71. XERCES_CPP_NAMESPACE_BEGIN
  72. class VALIDATORS_EXPORT XercesAttGroupInfo : public XMemory
  73. {
  74. public:
  75.     // -----------------------------------------------------------------------
  76.     //  Public Constructors/Destructor
  77.     // -----------------------------------------------------------------------
  78.     XercesAttGroupInfo(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  79. ~XercesAttGroupInfo();
  80. // -----------------------------------------------------------------------
  81.     //  Getter methods
  82.     // -----------------------------------------------------------------------
  83.     bool                containsTypeWithId() const;
  84.     unsigned int        attributeCount() const;
  85.     unsigned int        anyAttributeCount() const;
  86.     SchemaAttDef*       attributeAt(const unsigned int index);
  87.     const SchemaAttDef* attributeAt(const unsigned int index) const;
  88.     SchemaAttDef*       anyAttributeAt(const unsigned int index);
  89.     const SchemaAttDef* anyAttributeAt(const unsigned int index) const;
  90.     SchemaAttDef*       getCompleteWildCard() const;
  91.     const SchemaAttDef* getAttDef(const XMLCh* const baseName,
  92.                                   const int uriId) const;
  93. // -----------------------------------------------------------------------
  94.     //  Setter methods
  95.     // -----------------------------------------------------------------------
  96.     void setTypeWithId(const bool other);
  97.     void addAttDef(SchemaAttDef* const toAdd, const bool toClone = false);
  98.     void addAnyAttDef(SchemaAttDef* const toAdd, const bool toClone = false);
  99.     void setCompleteWildCard(SchemaAttDef* const toSet);
  100. // -----------------------------------------------------------------------
  101.     //  Query methods
  102.     // -----------------------------------------------------------------------
  103.     bool containsAttribute(const XMLCh* const name, const unsigned int uri);
  104. private:
  105.     // -----------------------------------------------------------------------
  106.     //  Unimplemented contstructors and operators
  107.     // -----------------------------------------------------------------------
  108.     XercesAttGroupInfo(const XercesAttGroupInfo& elemInfo);
  109.     XercesAttGroupInfo& operator= (const XercesAttGroupInfo& other);
  110.     // -----------------------------------------------------------------------
  111.     //  Private data members
  112.     // -----------------------------------------------------------------------
  113.     bool                       fTypeWithId;
  114.     RefVectorOf<SchemaAttDef>* fAttributes;
  115.     RefVectorOf<SchemaAttDef>* fAnyAttributes;
  116.     SchemaAttDef*              fCompleteWildCard;
  117.     MemoryManager*             fMemoryManager;
  118. };
  119. // ---------------------------------------------------------------------------
  120. //  XercesAttGroupInfo: Getter methods
  121. // ---------------------------------------------------------------------------
  122. inline bool XercesAttGroupInfo::containsTypeWithId() const {
  123.     return fTypeWithId;
  124. }
  125. inline unsigned int XercesAttGroupInfo::attributeCount() const {
  126.     if (fAttributes) {
  127.         return fAttributes->size();
  128.     }
  129.     return 0;
  130. }
  131. inline unsigned int XercesAttGroupInfo::anyAttributeCount() const {
  132.     if (fAnyAttributes) {
  133.         return fAnyAttributes->size();
  134.     }
  135.     return 0;
  136. }
  137. inline SchemaAttDef*
  138. XercesAttGroupInfo::attributeAt(const unsigned int index) {
  139.     if (fAttributes) {
  140.         return fAttributes->elementAt(index);
  141.     }
  142.     return 0;
  143. }
  144. inline const SchemaAttDef*
  145. XercesAttGroupInfo::attributeAt(const unsigned int index) const {
  146.     if (fAttributes) {
  147.         return fAttributes->elementAt(index);
  148.     }
  149.     return 0;
  150. }
  151. inline SchemaAttDef*
  152. XercesAttGroupInfo::anyAttributeAt(const unsigned int index) {
  153.     if (fAnyAttributes) {
  154.         return fAnyAttributes->elementAt(index);
  155.     }
  156.     return 0;
  157. }
  158. inline const SchemaAttDef*
  159. XercesAttGroupInfo::anyAttributeAt(const unsigned int index) const {
  160.     if (fAnyAttributes) {
  161.         return fAnyAttributes->elementAt(index);
  162.     }
  163.     return 0;
  164. }
  165. inline SchemaAttDef*
  166. XercesAttGroupInfo::getCompleteWildCard() const {
  167.     return fCompleteWildCard;
  168. }
  169. // ---------------------------------------------------------------------------
  170. //  XercesAttGroupInfo: Setter methods
  171. // ---------------------------------------------------------------------------
  172. inline void XercesAttGroupInfo::setTypeWithId(const bool other) {
  173.     fTypeWithId = other;
  174. }
  175. inline void XercesAttGroupInfo::addAttDef(SchemaAttDef* const toAdd,
  176.                                              const bool toClone) {
  177.     if (!fAttributes) {
  178.         fAttributes = new (fMemoryManager) RefVectorOf<SchemaAttDef>(4, true, fMemoryManager);
  179.     }
  180.     if (toClone) {
  181.         fAttributes->addElement(new (fMemoryManager) SchemaAttDef(toAdd));
  182.     }
  183.     else {
  184.         fAttributes->addElement(toAdd);
  185.     }
  186. }
  187. inline void XercesAttGroupInfo::addAnyAttDef(SchemaAttDef* const toAdd,
  188.                                              const bool toClone) {
  189.     if (!fAnyAttributes) {
  190.         fAnyAttributes = new (fMemoryManager) RefVectorOf<SchemaAttDef>(2, true, fMemoryManager);
  191.     }
  192.     if (toClone) {
  193.         fAnyAttributes->addElement(new (fMemoryManager) SchemaAttDef(toAdd));
  194.     }
  195.     else {
  196.         fAnyAttributes->addElement(toAdd);
  197.     }
  198. }
  199. inline void
  200. XercesAttGroupInfo::setCompleteWildCard(SchemaAttDef* const toSet) {
  201.     if (fCompleteWildCard) {
  202.         delete fCompleteWildCard;
  203.     }
  204.     fCompleteWildCard = toSet;
  205. }
  206. XERCES_CPP_NAMESPACE_END
  207. #endif
  208. /**
  209.   * End of file XercesAttGroupInfo.hpp
  210.   */