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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2002 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: VecAttrListImpl.cpp,v $
  58.  * Revision 1.6  2003/05/15 18:26:29  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.5  2002/11/04 14:58:18  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.4  2002/09/24 20:02:20  tng
  65.  * Performance: use XMLString::equals instead of XMLString::compareString
  66.  *
  67.  * Revision 1.3  2002/07/05 20:12:35  tng
  68.  * [Bug 9788] VecAttrListImpl::getValue skips prefix if SAX namespace validation is on.
  69.  *
  70.  * Revision 1.2  2002/02/27 16:49:40  tng
  71.  * Fix: AttributeList::getName should attach prefix if present
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:21:58  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.6  2000/11/02 01:14:07  andyh
  77.  * SAX bug fix:  Attribute lists were throwing exceptions rather than returning
  78.  * null when an attribute could not be found by name.  Fixed by Tinny Ng.
  79.  *
  80.  * Revision 1.5  2000/03/13 20:19:11  rahulj
  81.  * Fixed #54. Changed self-assignment to now use the parameter value.
  82.  * Reported by Helmut Eiken <H.Eiken@cli.de>
  83.  *
  84.  * Revision 1.4  2000/03/02 19:54:29  roddey
  85.  * This checkin includes many changes done while waiting for the
  86.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  87.  * available elsewhere.
  88.  *
  89.  * Revision 1.3  2000/02/06 07:47:53  rahulj
  90.  * Year 2K copyright swat.
  91.  *
  92.  * Revision 1.2  1999/12/15 19:49:37  roddey
  93.  * Added second getValue() method which takes a short name for the attribute
  94.  * to get the value for. Just a convenience method.
  95.  *
  96.  * Revision 1.1.1.1  1999/11/09 01:08:19  twl
  97.  * Initial checkin
  98.  *
  99.  * Revision 1.2  1999/11/08 20:44:44  rahul
  100.  * Swat for adding in Product name and CVS comment log variable.
  101.  *
  102.  */
  103. // ---------------------------------------------------------------------------
  104. //  Includes
  105. // ---------------------------------------------------------------------------
  106. #include <xercesc/util/Janitor.hpp>
  107. #include <xercesc/internal/VecAttrListImpl.hpp>
  108. XERCES_CPP_NAMESPACE_BEGIN
  109. // ---------------------------------------------------------------------------
  110. //  Constructors and Destructor
  111. // ---------------------------------------------------------------------------
  112. VecAttrListImpl::VecAttrListImpl() :
  113.     fAdopt(false)
  114.     , fCount(0)
  115.     , fVector(0)
  116. {
  117. }
  118. VecAttrListImpl::~VecAttrListImpl()
  119. {
  120.     //
  121.     //  Note that some compilers can't deal with the fact that the pointer
  122.     //  is to a const object, so we have to cast off the const'ness here!
  123.     //
  124.     if (fAdopt)
  125.         delete (RefVectorOf<XMLAttr>*)fVector;
  126. }
  127. // ---------------------------------------------------------------------------
  128. //  Implementation of the attribute list interface
  129. // ---------------------------------------------------------------------------
  130. unsigned int VecAttrListImpl::getLength() const
  131. {
  132.     return fCount;
  133. }
  134. const XMLCh* VecAttrListImpl::getName(const unsigned int index) const
  135. {
  136.     if (index >= fCount) {
  137.         return 0;
  138.     }
  139.     return fVector->elementAt(index)->getQName();
  140. }
  141. const XMLCh* VecAttrListImpl::getType(const unsigned int index) const
  142. {
  143.     if (index >= fCount) {
  144.         return 0;
  145.     }
  146.     return XMLAttDef::getAttTypeString(fVector->elementAt(index)->getType());
  147. }
  148. const XMLCh* VecAttrListImpl::getValue(const unsigned int index) const
  149. {
  150.     if (index >= fCount) {
  151.         return 0;
  152.     }
  153.     return fVector->elementAt(index)->getValue();
  154. }
  155. const XMLCh* VecAttrListImpl::getType(const XMLCh* const name) const
  156. {
  157.     //
  158.     //  Search the vector for the attribute with the given name and return
  159.     //  its type.
  160.     //
  161.     for (unsigned int index = 0; index < fCount; index++)
  162.     {
  163.         const XMLAttr* curElem = fVector->elementAt(index);
  164.         if (XMLString::equals(curElem->getQName(), name))
  165.             return XMLAttDef::getAttTypeString(curElem->getType());
  166.     }
  167.     return 0;
  168. }
  169. const XMLCh* VecAttrListImpl::getValue(const XMLCh* const name) const
  170. {
  171.     //
  172.     //  Search the vector for the attribute with the given name and return
  173.     //  its type.
  174.     //
  175.     for (unsigned int index = 0; index < fCount; index++)
  176.     {
  177.         const XMLAttr* curElem = fVector->elementAt(index);
  178.         if (XMLString::equals(curElem->getQName(), name))
  179.             return curElem->getValue();
  180.     }
  181.     return 0;
  182. }
  183. const XMLCh* VecAttrListImpl::getValue(const char* const name) const
  184. {
  185.     // Temporarily transcode the name for lookup
  186.     XMLCh* wideName = XMLString::transcode(name, XMLPlatformUtils::fgMemoryManager);
  187.     ArrayJanitor<XMLCh> janName(wideName, XMLPlatformUtils::fgMemoryManager);
  188.     //
  189.     //  Search the vector for the attribute with the given name and return
  190.     //  its type.
  191.     //
  192.     for (unsigned int index = 0; index < fCount; index++)
  193.     {
  194.         const XMLAttr* curElem = fVector->elementAt(index);
  195.         if (XMLString::equals(curElem->getQName(), wideName))
  196.             return curElem->getValue();
  197.     }
  198.     return 0;
  199. }
  200. // ---------------------------------------------------------------------------
  201. //  Setter methods
  202. // ---------------------------------------------------------------------------
  203. void VecAttrListImpl::setVector(const   RefVectorOf<XMLAttr>* const srcVec
  204.                                 , const unsigned int                count
  205.                                 , const bool                        adopt)
  206. {
  207.     //
  208.     //  Delete the previous vector (if any) if we are adopting. Note that some
  209.     //  compilers can't deal with the fact that the pointer is to a const
  210.     //  object, so we have to cast off the const'ness here!
  211.     //
  212.     if (fAdopt)
  213.         delete (RefVectorOf<XMLAttr>*)fVector;
  214.     fAdopt = adopt;
  215.     fCount = count;
  216.     fVector = srcVec;
  217. }
  218. XERCES_CPP_NAMESPACE_END