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

xml/soap/webservice

开发平台:

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