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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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) 1999, 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.  * $Log: VecAttributesImpl.cpp,v $
  58.  * Revision 1.4  2003/05/16 21:36:57  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.3  2002/11/04 14:58:18  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.2  2002/09/24 20:02:20  tng
  65.  * Performance: use XMLString::equals instead of XMLString::compareString
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:21:58  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.7  2001/10/05 17:57:39  peiyongz
  71.  * [BUG# 3831]: -1 returned from getIndex() needs to be checked
  72.  *
  73.  * Revision 1.6  2001/05/11 13:26:16  tng
  74.  * Copyright update.
  75.  *
  76.  * Revision 1.5  2001/03/21 21:56:04  tng
  77.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  78.  *
  79.  * Revision 1.4  2001/02/26 19:44:14  tng
  80.  * Schema: add utility class QName, by Pei Yong Zhang.
  81.  *
  82.  * Revision 1.3  2000/11/02 01:14:07  andyh
  83.  * SAX bug fix:  Attribute lists were throwing exceptions rather than returning
  84.  * null when an attribute could not be found by name.  Fixed by Tinny Ng.
  85.  *
  86.  * Revision 1.2  2000/08/09 22:11:16  jpolast
  87.  * changes to allow const instances of the sax2
  88.  * Attributes class.
  89.  *
  90.  * Revision 1.1  2000/08/02 18:09:14  jpolast
  91.  * initial checkin: attributes vector needed for
  92.  * Attributes class as defined by sax2 spec
  93.  *
  94.  *
  95.  */
  96. // ---------------------------------------------------------------------------
  97. //  Includes
  98. // ---------------------------------------------------------------------------
  99. #include <xercesc/util/Janitor.hpp>
  100. #include <xercesc/internal/VecAttributesImpl.hpp>
  101. XERCES_CPP_NAMESPACE_BEGIN
  102. // ---------------------------------------------------------------------------
  103. //  Constructors and Destructor
  104. // ---------------------------------------------------------------------------
  105. VecAttributesImpl::VecAttributesImpl() :
  106.     fAdopt(false)
  107.     , fCount(0)
  108.     , fVector(0)
  109.     , fScanner(0)
  110. {
  111. }
  112. VecAttributesImpl::~VecAttributesImpl()
  113. {
  114.     //
  115.     //  Note that some compilers can't deal with the fact that the pointer
  116.     //  is to a const object, so we have to cast off the const'ness here!
  117.     //
  118.     if (fAdopt)
  119.         delete (RefVectorOf<XMLAttr>*)fVector;
  120. }
  121. // ---------------------------------------------------------------------------
  122. //  Implementation of the attribute list interface
  123. // ---------------------------------------------------------------------------
  124. unsigned int VecAttributesImpl::getLength() const
  125. {
  126.     return fCount;
  127. }
  128. const XMLCh* VecAttributesImpl::getURI(const unsigned int index) const
  129. {
  130.     // since this func really needs to be const, like the rest, not sure how we
  131.     // make it const and re-use the fURIBuffer member variable.  we're currently
  132.     // creating a buffer each time you need a URI.  there has to be a better
  133.     // way to do this...
  134.     //XMLBuffer tempBuf;
  135.     if (index >= fCount) {
  136.         return 0;
  137.      }
  138.     //fValidator->getURIText(fVector->elementAt(index)->getURIId(), tempBuf) ;
  139.     //return tempBuf.getRawBuffer() ;
  140.     return fScanner->getURIText(fVector->elementAt(index)->getURIId());
  141. }
  142. const XMLCh* VecAttributesImpl::getLocalName(const unsigned int index) const
  143. {
  144.     if (index >= fCount) {
  145.         return 0;
  146.      }
  147.     return fVector->elementAt(index)->getName();
  148. }
  149. const XMLCh* VecAttributesImpl::getQName(const unsigned int index) const
  150. {
  151.     if (index >= fCount) {
  152.         return 0;
  153.      }
  154.     return fVector->elementAt(index)->getQName();
  155. }
  156. const XMLCh* VecAttributesImpl::getType(const unsigned int index) const
  157. {
  158.     if (index >= fCount) {
  159.         return 0;
  160.      }
  161.     return XMLAttDef::getAttTypeString(fVector->elementAt(index)->getType());
  162. }
  163. const XMLCh* VecAttributesImpl::getValue(const unsigned int index) const
  164. {
  165.     if (index >= fCount) {
  166.         return 0;
  167.      }
  168.     return fVector->elementAt(index)->getValue();
  169. }
  170. int VecAttributesImpl::getIndex(const XMLCh* const uri, const XMLCh* const localPart ) const
  171. {
  172.     //
  173.     //  Search the vector for the attribute with the given name and return
  174.     //  its type.
  175.     //
  176.     XMLBuffer uriBuffer(1023, fVector->getMemoryManager()) ;
  177.     for (unsigned int index = 0; index < fCount; index++)
  178.     {
  179.         const XMLAttr* curElem = fVector->elementAt(index);
  180.         fScanner->getURIText(curElem->getURIId(), uriBuffer) ;
  181.         if ( (XMLString::equals(curElem->getName(), localPart)) &&
  182.              (XMLString::equals(uriBuffer.getRawBuffer(), uri)) )
  183.             return index ;
  184.     }
  185.     return -1;
  186. }
  187. int VecAttributesImpl::getIndex(const XMLCh* const qName ) const
  188. {
  189.     //
  190.     //  Search the vector for the attribute with the given name and return
  191.     //  its type.
  192.     //
  193.     for (unsigned int index = 0; index < fCount; index++)
  194.     {
  195.         const XMLAttr* curElem = fVector->elementAt(index);
  196.         if (XMLString::equals(curElem->getQName(), qName))
  197.             return index ;
  198.     }
  199.     return -1;
  200. }
  201. const XMLCh* VecAttributesImpl::getType(const XMLCh* const uri, const XMLCh* const localPart ) const
  202. {
  203.     int retVal = getIndex(uri, localPart);
  204.     return ((retVal < 0) ? 0 : getType(retVal));
  205. }
  206. const XMLCh* VecAttributesImpl::getType(const XMLCh* const qName) const
  207. {
  208.     int retVal = getIndex(qName);
  209.     return ((retVal < 0) ? 0 : getType(retVal));
  210. }
  211. const XMLCh* VecAttributesImpl::getValue(const XMLCh* const uri, const XMLCh* const localPart ) const
  212. {
  213.     int retVal = getIndex(uri, localPart);
  214.     return ((retVal < 0) ? 0 : getValue(retVal));
  215. }
  216. const XMLCh* VecAttributesImpl::getValue(const XMLCh* const qName) const
  217. {
  218.     int retVal = getIndex(qName);
  219.     return ((retVal < 0) ? 0 : getValue(retVal));
  220. }
  221. // ---------------------------------------------------------------------------
  222. //  Setter methods
  223. // ---------------------------------------------------------------------------
  224. void VecAttributesImpl::setVector(const   RefVectorOf<XMLAttr>* const srcVec
  225.                                 , const unsigned int                count
  226.                                 , const XMLScanner * const        scanner
  227.                                 , const bool                        adopt)
  228. {
  229.     //
  230.     //  Delete the previous vector (if any) if we are adopting. Note that some
  231.     //  compilers can't deal with the fact that the pointer is to a const
  232.     //  object, so we have to cast off the const'ness here!
  233.     //
  234.     if (fAdopt)
  235.         delete (RefVectorOf<XMLAttr>*)fVector;
  236.     fAdopt = adopt;
  237.     fCount = count;
  238.     fVector = srcVec;
  239.     fScanner = scanner ;
  240. }
  241. XERCES_CPP_NAMESPACE_END