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

词法分析

开发平台:

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: ValueArrayOf.c,v $
  58.  * Revision 1.4  2003/05/16 06:01:52  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.3  2003/05/15 19:07:46  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.2  2002/11/04 15:22:05  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:22:13  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.3  2000/03/02 19:54:47  roddey
  71.  * This checkin includes many changes done while waiting for the
  72.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  73.  * available elsewhere.
  74.  *
  75.  * Revision 1.2  2000/02/06 07:48:04  rahulj
  76.  * Year 2K copyright swat.
  77.  *
  78.  * Revision 1.1.1.1  1999/11/09 01:05:26  twl
  79.  * Initial checkin
  80.  *
  81.  * Revision 1.2  1999/11/08 20:45:17  rahul
  82.  * Swat for adding in Product name and CVS comment log variable.
  83.  *
  84.  */
  85. // ---------------------------------------------------------------------------
  86. //  Includes
  87. // ---------------------------------------------------------------------------
  88. #if defined(XERCES_TMPLSINC)
  89. #include <xercesc/util/ValueArrayOf.hpp>
  90. #endif
  91. XERCES_CPP_NAMESPACE_BEGIN
  92. // ---------------------------------------------------------------------------
  93. //  ValueArrayOf: Contructors and Destructor
  94. // ---------------------------------------------------------------------------
  95. template <class TElem>
  96. ValueArrayOf<TElem>::ValueArrayOf(const unsigned int size,
  97.                                   MemoryManager* const manager) :
  98.     fSize(size)
  99.     , fArray(0)
  100.     , fMemoryManager(manager)
  101. {
  102.     fArray = (TElem*) fMemoryManager->allocate(fSize * sizeof(TElem)); //new TElem[fSize];
  103. }
  104. template <class TElem>
  105. ValueArrayOf<TElem>::ValueArrayOf( const TElem* values
  106.                                  , const unsigned int size
  107.                                  , MemoryManager* const manager) :
  108.     fSize(size)
  109.     , fArray(0)
  110.     , fMemoryManager(manager)
  111. {
  112.     fArray = (TElem*) fMemoryManager->allocate(fSize * sizeof(TElem)); //new TElem[fSize];
  113.     for (unsigned int index = 0; index < fSize; index++)
  114.         fArray[index] = values[index];
  115. }
  116. template <class TElem>
  117. ValueArrayOf<TElem>::ValueArrayOf(const ValueArrayOf<TElem>& source) :
  118.     fSize(source.fSize)
  119.     , fArray(0)
  120.     , fMemoryManager(source.fMemoryManager)
  121. {
  122.     fArray = (TElem*) fMemoryManager->allocate(fSize * sizeof(TElem)); //new TElem[fSize];
  123.     for (unsigned int index = 0; index < fSize; index++)
  124.         fArray[index] = source.fArray[index];
  125. }
  126. template <class TElem> ValueArrayOf<TElem>::~ValueArrayOf()
  127. {
  128.     fMemoryManager->deallocate(fArray); //delete [] fArray;
  129. }
  130. // ---------------------------------------------------------------------------
  131. //  ValueArrayOf: Public operators
  132. // ---------------------------------------------------------------------------
  133. template <class TElem> TElem& ValueArrayOf<TElem>::
  134. operator[](const unsigned int index)
  135. {
  136.     if (index >= fSize)
  137.         ThrowXML(ArrayIndexOutOfBoundsException, XMLExcepts::Array_BadIndex);
  138.     return fArray[index];
  139. }
  140. template <class TElem> const TElem& ValueArrayOf<TElem>::
  141. operator[](const unsigned int index) const
  142. {
  143.     if (index >= fSize)
  144.         ThrowXML(ArrayIndexOutOfBoundsException, XMLExcepts::Array_BadIndex);
  145.     return fArray[index];
  146. }
  147. template <class TElem> ValueArrayOf<TElem>& ValueArrayOf<TElem>::
  148. operator=(const ValueArrayOf<TElem>& toAssign)
  149. {
  150.     if (this == &toAssign)
  151.         return *this;
  152.     // Reallocate if not the same size
  153.     if (toAssign.fSize != fSize)
  154.     {
  155.         fMemoryManager->deallocate(fArray); //delete [] fArray;
  156.         fSize = toAssign.fSize;
  157.         fArray = (TElem*) fMemoryManager->allocate(fSize * sizeof(TElem)); //new TElem[fSize];
  158.     }
  159.     // Copy over the source elements
  160.     for (unsigned int index = 0; index < fSize; index++)
  161.         fArray[index] = toAssign.fArray[index];
  162.     return *this;
  163. }
  164. template <class TElem> bool ValueArrayOf<TElem>::
  165. operator==(const ValueArrayOf<TElem>& toCompare) const
  166. {
  167.     if (this == &toCompare)
  168.         return true;
  169.     if (fSize != toCompare.fSize)
  170.         return false;
  171.     for (unsigned int index = 0; index < fSize; index++)
  172.     {
  173.         if (fArray[index] != toCompare.fArray[index])
  174.             return false;
  175.     }
  176.     return true;
  177. }
  178. template <class TElem> bool ValueArrayOf<TElem>::
  179. operator!=(const ValueArrayOf<TElem>& toCompare) const
  180. {
  181.     return !operator==(toCompare);
  182. }
  183. // ---------------------------------------------------------------------------
  184. //  ValueArrayOf: Copy operations
  185. // ---------------------------------------------------------------------------
  186. template <class TElem> unsigned int ValueArrayOf<TElem>::
  187. copyFrom(const ValueArrayOf<TElem>& srcArray)
  188. {
  189.     //
  190.     //  Copy over as many of the source elements as will fit into
  191.     //  this array.
  192.     //
  193.     const unsigned int count = fSize < srcArray.fSize ?
  194.                                 fSize : srcArray.fSize;
  195.     for (unsigned int index = 0; index < count; index++)
  196.         fArray[index] = srcArray.fArray[index];
  197.     return count;
  198. }
  199. // ---------------------------------------------------------------------------
  200. //  ValueArrayOf: Getter methods
  201. // ---------------------------------------------------------------------------
  202. template <class TElem> unsigned int ValueArrayOf<TElem>::
  203. length() const
  204. {
  205.     return fSize;
  206. }
  207. template <class TElem> TElem* ValueArrayOf<TElem>::
  208. rawData() const
  209. {
  210.     return fArray;
  211. }
  212. // ---------------------------------------------------------------------------
  213. //  ValueArrayOf: Miscellaneous methods
  214. // ---------------------------------------------------------------------------
  215. template <class TElem> void ValueArrayOf<TElem>::
  216. resize(const unsigned int newSize)
  217. {
  218.     if (newSize == fSize)
  219.         return;
  220.     if (newSize < fSize)
  221.         ThrowXML(IllegalArgumentException, XMLExcepts::Array_BadNewSize);
  222.     // Allocate the new array
  223.     TElem* newArray = (TElem*) fMemoryManager->allocate
  224.     (
  225.         newSize * sizeof(TElem)
  226.     ); //new TElem[newSize];
  227.     // Copy the existing values
  228.     unsigned int index = 0;
  229.     for (; index < fSize; index++)
  230.         newArray[index] = fArray[index];
  231.     for (; index < newSize; index++)
  232.         newArray[index] = TElem(0);
  233.     // Delete the old array and udpate our members
  234.     fMemoryManager->deallocate(fArray); //delete [] fArray;
  235.     fArray = newArray;
  236.     fSize = newSize;
  237. }
  238. // ---------------------------------------------------------------------------
  239. //  ValueArrayEnumerator: Constructors and Destructor
  240. // ---------------------------------------------------------------------------
  241. template <class TElem> ValueArrayEnumerator<TElem>::
  242. ValueArrayEnumerator(ValueArrayOf<TElem>* const toEnum, const bool adopt) :
  243.     fAdopted(adopt)
  244.     , fCurIndex(0)
  245.     , fToEnum(toEnum)
  246. {
  247. }
  248. template <class TElem> ValueArrayEnumerator<TElem>::~ValueArrayEnumerator()
  249. {
  250.     if (fAdopted)
  251.         delete fToEnum;
  252. }
  253. // ---------------------------------------------------------------------------
  254. //  ValueArrayEnumerator: Enum interface
  255. // ---------------------------------------------------------------------------
  256. template <class TElem> bool ValueArrayEnumerator<TElem>::hasMoreElements() const
  257. {
  258.     if (fCurIndex >= fToEnum->length())
  259.         return false;
  260.     return true;
  261. }
  262. template <class TElem> TElem& ValueArrayEnumerator<TElem>::nextElement()
  263. {
  264.     return (*fToEnum)[fCurIndex++];
  265. }
  266. template <class TElem> void ValueArrayEnumerator<TElem>::Reset()
  267. {
  268.     fCurIndex = 0;
  269. }
  270. XERCES_CPP_NAMESPACE_END