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

词法分析

开发平台:

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: RefArrayOf.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:04:35  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.2  2002/11/04 15:22:04  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:22:11  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.3  2000/03/02 19:54:44  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:03  rahulj
  76.  * Year 2K copyright swat.
  77.  *
  78.  * Revision 1.1.1.1  1999/11/09 01:04:56  twl
  79.  * Initial checkin
  80.  *
  81.  * Revision 1.2  1999/11/08 20:45:12  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/RefArrayOf.hpp>
  90. #endif
  91. XERCES_CPP_NAMESPACE_BEGIN
  92. // ---------------------------------------------------------------------------
  93. //  RefArrayOf: Contructors and Destructor
  94. // ---------------------------------------------------------------------------
  95. template <class TElem>
  96. RefArrayOf<TElem>::RefArrayOf(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.     for (unsigned int index = 0; index < fSize; index++)
  104.         fArray[index] = 0;
  105. }
  106. template <class TElem>
  107. RefArrayOf<TElem>::RefArrayOf(TElem* values[],
  108.                               const unsigned int size,
  109.                               MemoryManager* const manager) :
  110.     fSize(size)
  111.     , fArray(0)
  112.     , fMemoryManager(manager)
  113. {
  114.     fArray = (TElem**) fMemoryManager->allocate(fSize * sizeof(TElem*));//new TElem*[fSize];
  115.     for (unsigned int index = 0; index < fSize; index++)
  116.         fArray[index] = values[index];
  117. }
  118. template <class TElem> RefArrayOf<TElem>::
  119. RefArrayOf(const RefArrayOf<TElem>& source) :
  120.     fSize(source.fSize)
  121.     , fArray(0)
  122.     , fMemoryManager(source.fMemoryManager)
  123. {
  124.     fArray = (TElem**) fMemoryManager->allocate(fSize * sizeof(TElem*));//new TElem*[fSize];
  125.     for (unsigned int index = 0; index < fSize; index++)
  126.         fArray[index] = source.fArray[index];
  127. }
  128. template <class TElem> RefArrayOf<TElem>::~RefArrayOf()
  129. {
  130.     fMemoryManager->deallocate(fArray);//delete [] fArray;
  131. }
  132. // ---------------------------------------------------------------------------
  133. //  RefArrayOf: Public operators
  134. // ---------------------------------------------------------------------------
  135. template <class TElem> TElem*& RefArrayOf<TElem>::
  136. operator[](const unsigned int index)
  137. {
  138.     if (index >= fSize)
  139.         ThrowXML(ArrayIndexOutOfBoundsException, XMLExcepts::Array_BadIndex);
  140.     return fArray[index];
  141. }
  142. template <class TElem> const TElem* RefArrayOf<TElem>::
  143. operator[](const unsigned int index) const
  144. {
  145.     if (index >= fSize)
  146.         ThrowXML(ArrayIndexOutOfBoundsException, XMLExcepts::Array_BadIndex);
  147.     return fArray[index];
  148. }
  149. template <class TElem> RefArrayOf<TElem>& RefArrayOf<TElem>::
  150. operator=(const RefArrayOf<TElem>& toAssign)
  151. {
  152.     if (this == &toAssign)
  153.         return *this;
  154.     // Reallocate if not the same size
  155.     if (toAssign.fSize != fSize)
  156.     {
  157.         fMemoryManager->deallocate(fArray);//delete [] fArray;
  158.         fSize = toAssign.fSize;
  159.         fArray = (TElem**) fMemoryManager->allocate(fSize * sizeof(TElem*));//new TElem*[fSize];
  160.     }
  161.     // Copy over the source elements
  162.     for (unsigned int index = 0; index < fSize; index++)
  163.         fArray[index] = toAssign.fArray[index];
  164.     return *this;
  165. }
  166. template <class TElem> bool RefArrayOf<TElem>::
  167. operator==(const RefArrayOf<TElem>& toCompare) const
  168. {
  169.     if (this == &toCompare)
  170.         return true;
  171.     if (fSize != toCompare.fSize)
  172.         return false;
  173.     for (unsigned int index = 0; index < fSize; index++)
  174.     {
  175.         if (fArray[index] != toCompare.fArray[index])
  176.             return false;
  177.     }
  178.     return true;
  179. }
  180. template <class TElem> bool RefArrayOf<TElem>::
  181. operator!=(const RefArrayOf<TElem>& toCompare) const
  182. {
  183.     return !operator==(toCompare);
  184. }
  185. // ---------------------------------------------------------------------------
  186. //  RefArrayOf: Copy operations
  187. // ---------------------------------------------------------------------------
  188. template <class TElem> unsigned int RefArrayOf<TElem>::
  189. copyFrom(const RefArrayOf<TElem>& srcArray)
  190. {
  191.     //
  192.     //  Copy over as many of the source elements as will fit into
  193.     //  this array.
  194.     //
  195.     const unsigned int count = fSize < srcArray.fSize ?
  196.                                     fSize : srcArray.fSize;
  197.     for (unsigned int index = 0; index < fSize; index++)
  198.         fArray[index] = srcArray.fArray[index];
  199.     return count;
  200. }
  201. // ---------------------------------------------------------------------------
  202. //  RefArrayOf: Getter methods
  203. // ---------------------------------------------------------------------------
  204. template <class TElem> unsigned int RefArrayOf<TElem>::length() const
  205. {
  206.     return fSize;
  207. }
  208. template <class TElem> TElem** RefArrayOf<TElem>::rawData() const
  209. {
  210.     return fArray;
  211. }
  212. // ---------------------------------------------------------------------------
  213. //  RefArrayOf: Element management methods
  214. // ---------------------------------------------------------------------------
  215. template <class TElem> void RefArrayOf<TElem>::deleteAt(const unsigned int index)
  216. {
  217.     if (index >= fSize)
  218.         ThrowXML(ArrayIndexOutOfBoundsException, XMLExcepts::Array_BadIndex);
  219.     delete fArray[index];
  220.     fArray[index] = 0;
  221. }
  222. template <class TElem> void RefArrayOf<TElem>::deleteAllElements()
  223. {
  224.     for (unsigned int index = 0; index < fSize; index++)
  225.     {
  226.         delete fArray[index];
  227.         fArray[index] = 0;
  228.     }
  229. }
  230. template <class TElem> void RefArrayOf<TElem>::resize(const unsigned int newSize)
  231. {
  232.     if (newSize == fSize)
  233.         return;
  234.     if (newSize < fSize)
  235.         ThrowXML(IllegalArgumentException, XMLExcepts::Array_BadNewSize);
  236.     // Allocate the new array
  237.     TElem** newArray = (TElem**) fMemoryManager->allocate
  238.     (
  239.         newSize * sizeof(TElem*)
  240.     );//new TElem*[newSize];
  241.     // Copy the existing values
  242.     unsigned int index = 0;
  243.     for (; index < fSize; index++)
  244.         newArray[index] = fArray[index];
  245.     for (; index < newSize; index++)
  246.         newArray[index] = 0;
  247.     // Delete the old array and udpate our members
  248.     fMemoryManager->deallocate(fArray);//delete [] fArray;
  249.     fArray = newArray;
  250.     fSize = newSize;
  251. }
  252. // ---------------------------------------------------------------------------
  253. //  RefArrayEnumerator: Constructors and Destructor
  254. // ---------------------------------------------------------------------------
  255. template <class TElem> RefArrayEnumerator<TElem>::
  256. RefArrayEnumerator(         RefArrayOf<TElem>* const    toEnum
  257.                     , const bool                        adopt) :
  258.     fAdopted(adopt)
  259.     , fCurIndex(0)
  260.     , fToEnum(toEnum)
  261. {
  262. }
  263. template <class TElem> RefArrayEnumerator<TElem>::~RefArrayEnumerator()
  264. {
  265.     if (fAdopted)
  266.         delete fToEnum;
  267. }
  268. // ---------------------------------------------------------------------------
  269. //  RefArrayEnumerator: Enum interface
  270. // ---------------------------------------------------------------------------
  271. template <class TElem> bool RefArrayEnumerator<TElem>::hasMoreElements() const
  272. {
  273.     if (fCurIndex >= fToEnum->length())
  274.         return false;
  275.     return true;
  276. }
  277. template <class TElem> TElem& RefArrayEnumerator<TElem>::nextElement()
  278. {
  279.     return *(*fToEnum)[fCurIndex++];
  280. }
  281. template <class TElem> void RefArrayEnumerator<TElem>::Reset()
  282. {
  283.     fCurIndex = 0;
  284. }
  285. XERCES_CPP_NAMESPACE_END