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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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: ValueVectorOf.hpp,v $
  58.  * Revision 1.6  2003/05/16 21:37:00  knoaman
  59.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  60.  *
  61.  * Revision 1.5  2003/05/16 06:01:52  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2003/05/15 19:07:46  knoaman
  65.  * Partial implementation of the configurable memory manager.
  66.  *
  67.  * Revision 1.3  2002/11/04 15:22:05  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/08/21 17:45:00  tng
  71.  * [Bug 7087] compiler warnings when using gcc.
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:13  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.6  2002/01/10 17:44:49  knoaman
  77.  * Fix for bug 5786.
  78.  *
  79.  * Revision 1.5  2001/08/09 15:24:37  knoaman
  80.  * add support for <anyAttribute> declaration.
  81.  *
  82.  * Revision 1.4  2000/03/02 19:54:47  roddey
  83.  * This checkin includes many changes done while waiting for the
  84.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  85.  * available elsewhere.
  86.  *
  87.  * Revision 1.3  2000/02/24 20:05:26  abagchi
  88.  * Swat for removing Log from API docs
  89.  *
  90.  * Revision 1.2  2000/02/06 07:48:05  rahulj
  91.  * Year 2K copyright swat.
  92.  *
  93.  * Revision 1.1.1.1  1999/11/09 01:05:33  twl
  94.  * Initial checkin
  95.  *
  96.  * Revision 1.2  1999/11/08 20:45:19  rahul
  97.  * Swat for adding in Product name and CVS comment log variable.
  98.  *
  99.  */
  100. #if !defined(VALUEVECTOROF_HPP)
  101. #define VALUEVECTOROF_HPP
  102. #include <xercesc/util/ArrayIndexOutOfBoundsException.hpp>
  103. #include <xercesc/util/XMLEnumerator.hpp>
  104. #include <xercesc/util/PlatformUtils.hpp>
  105. #include <xercesc/framework/MemoryManager.hpp>
  106. XERCES_CPP_NAMESPACE_BEGIN
  107. template <class TElem> class ValueVectorOf : public XMemory
  108. {
  109. public :
  110.     // -----------------------------------------------------------------------
  111.     //  Constructors and Destructor
  112.     // -----------------------------------------------------------------------
  113.     ValueVectorOf
  114.     (
  115.         const unsigned int maxElems
  116.         , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
  117.     );
  118.     ValueVectorOf(const ValueVectorOf<TElem>& toCopy);
  119.     ~ValueVectorOf();
  120.     // -----------------------------------------------------------------------
  121.     //  Operators
  122.     // -----------------------------------------------------------------------
  123.     ValueVectorOf<TElem>& operator=(const ValueVectorOf<TElem>& toAssign);
  124.     // -----------------------------------------------------------------------
  125.     //  Element management
  126.     // -----------------------------------------------------------------------
  127.     void addElement(const TElem& toAdd);
  128.     void setElementAt(const TElem& toSet, const unsigned int setAt);
  129.     void insertElementAt(const TElem& toInsert, const unsigned int insertAt);
  130.     void removeElementAt(const unsigned int removeAt);
  131.     void removeAllElements();
  132.     bool containsElement(const TElem& toCheck, const unsigned int startIndex = 0);
  133.     // -----------------------------------------------------------------------
  134.     //  Getter methods
  135.     // -----------------------------------------------------------------------
  136.     const TElem& elementAt(const unsigned int getAt) const;
  137.     TElem& elementAt(const unsigned int getAt);
  138.     unsigned int curCapacity() const;
  139.     unsigned int size() const;
  140.     MemoryManager* getMemoryManager() const;
  141.     // -----------------------------------------------------------------------
  142.     //  Miscellaneous
  143.     // -----------------------------------------------------------------------
  144.     void ensureExtraCapacity(const unsigned int length);
  145.     const TElem* rawData() const;
  146. private:
  147.     // -----------------------------------------------------------------------
  148.     //  Data members
  149.     //
  150.     //  fCurCount
  151.     //      The count of values current added to the vector, which may be
  152.     //      less than the internal capacity.
  153.     //
  154.     //  fMaxCount
  155.     //      The current capacity of the vector.
  156.     //
  157.     //  fElemList
  158.     //      The list of elements, which is dynamically allocated to the needed
  159.     //      size.
  160.     // -----------------------------------------------------------------------
  161.     unsigned int    fCurCount;
  162.     unsigned int    fMaxCount;
  163.     TElem*          fElemList;
  164.     MemoryManager*  fMemoryManager;
  165. };
  166. //
  167. //  An enumerator for a value vector. It derives from the basic enumerator
  168. //  class, so that value vectors can be generically enumerated.
  169. //
  170. template <class TElem> class ValueVectorEnumerator : public XMLEnumerator<TElem>
  171. {
  172. public :
  173.     // -----------------------------------------------------------------------
  174.     //  Constructors and Destructor
  175.     // -----------------------------------------------------------------------
  176.     ValueVectorEnumerator
  177.     (
  178.                 ValueVectorOf<TElem>* const toEnum
  179.         , const bool                        adopt = false
  180.     );
  181.     virtual ~ValueVectorEnumerator();
  182.     // -----------------------------------------------------------------------
  183.     //  Enum interface
  184.     // -----------------------------------------------------------------------
  185.     bool hasMoreElements() const;
  186.     TElem& nextElement();
  187.     void Reset();
  188. private :
  189.     // -----------------------------------------------------------------------
  190.     //  Data Members
  191.     //
  192.     //  fAdopted
  193.     //      Indicates whether we have adopted the passed vector. If so then
  194.     //      we delete the vector when we are destroyed.
  195.     //
  196.     //  fCurIndex
  197.     //      This is the current index into the vector.
  198.     //
  199.     //  fToEnum
  200.     //      The value vector being enumerated.
  201.     // -----------------------------------------------------------------------
  202.     bool                    fAdopted;
  203.     unsigned int            fCurIndex;
  204.     ValueVectorOf<TElem>*   fToEnum;
  205. };
  206. XERCES_CPP_NAMESPACE_END
  207. #if !defined(XERCES_TMPLSINC)
  208. #include <xercesc/util/ValueVectorOf.c>
  209. #endif
  210. #endif