carray.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: carray.cpp,v 1.3.28.3 2004/07/09 01:45:59 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "carray.h"
  50. #include "hlxclib/string.h"
  51. static const int KInitDefaultGrowSize = 16;
  52. ///
  53. /// public methods
  54. ///
  55. CHXPtrArray::CHXPtrArray()
  56.     : m_size(0),
  57.       m_nelems(0),
  58.       m_userGrowSize(-1),
  59.       m_defGrowSize(KInitDefaultGrowSize),
  60.       m_pData(0)
  61. {
  62.     
  63. }
  64. CHXPtrArray::~CHXPtrArray()
  65. {
  66.     delete [] m_pData;
  67. }
  68. ///
  69. /// SetSize(int nelems, int growSize)
  70. ///
  71. /// set size and grow size
  72. ///
  73. void 
  74. CHXPtrArray::SetSize(int nelems, int growSize)
  75. {
  76.     if (growSize != -1)
  77. m_userGrowSize = growSize;
  78.     if (nelems > m_size)
  79. Resize(nelems);
  80.     else if (nelems < m_nelems)
  81. ::memset(&m_pData[nelems], 0, (m_nelems - nelems) * sizeof(void*));
  82.     m_nelems = nelems;
  83. }
  84. ///
  85. /// FreeExtra()
  86. ///
  87. /// free un-assigned slots
  88. ///
  89. void 
  90. CHXPtrArray::FreeExtra()
  91. {
  92.     if (m_size > m_nelems)
  93. Resize(m_nelems);
  94. }
  95. ///
  96. /// RemoveAll()
  97. ///
  98. /// free the entire array
  99. ///
  100. void 
  101. CHXPtrArray::RemoveAll()
  102. {
  103.     delete [] m_pData;
  104.     m_pData = 0;
  105.     m_nelems = 0;
  106.     m_size = 0;
  107. }
  108. ///
  109. /// SetAtGrow(int index, void* value)
  110. ///
  111. /// set value, grow array if needed
  112. ///
  113. void 
  114. CHXPtrArray::SetAtGrow(int index, void* value)
  115. {
  116.     HX_ASSERT(index >= 0);
  117.     int nelems = index + 1;
  118.     if (nelems > m_size)
  119. Resize(m_size + GetGrowSize(nelems));
  120.     if (nelems > m_nelems) m_nelems = nelems;
  121.     m_pData[index] = value;
  122. }
  123. /// 
  124. /// InsertAt(int index, void* value, int repeat=1)
  125. ///
  126. /// insert value(s) at index -- list operation
  127. ///
  128. void 
  129. CHXPtrArray::InsertAt(int index, void* value, int repeat)
  130. {
  131.     InsertCommon(index, repeat);
  132.     for (int i=0; i < repeat; ++i)
  133. m_pData[i + index] = value;
  134. }
  135. ///
  136. /// InsertAt(int index, CHXPtrArray* pPtrArray)
  137. ///
  138. /// insert array at index
  139. ///
  140. void 
  141. CHXPtrArray::InsertAt(int index, CHXPtrArray* pPtrArray)
  142. {
  143.     InsertCommon(index, pPtrArray->m_nelems);
  144.     ::memmove(&m_pData[index], pPtrArray->m_pData,
  145.       pPtrArray->m_nelems * sizeof(void*));
  146. }
  147. ///
  148. /// RemoveAt(int index, int repeat=1)
  149. ///
  150. /// remove value at index
  151. ///
  152. void 
  153. CHXPtrArray::RemoveAt(int index, int repeat)
  154. {
  155.     HX_ASSERT(index >= 0 && index < m_nelems);
  156.     int relems = MIN(repeat, m_nelems - index); // number of elements to remove
  157.     int numBytes = (m_nelems - index - relems) * sizeof(void*);
  158.     if (numBytes > 0)
  159.         ::memmove(&m_pData[index], &m_pData[index + relems], numBytes);
  160.     SetSize(m_nelems - relems);
  161. }
  162. ///
  163. /// private methods
  164. ///
  165. ///
  166. /// Resize()
  167. ///
  168. /// common resize method
  169. ///
  170. void
  171. CHXPtrArray::Resize(int size)
  172. {
  173.     void** pData = new void*[size];
  174.     HX_ASSERT(pData);
  175.     if (pData)
  176.     {
  177. // copy the existing data
  178. int celems = MIN(size, m_nelems); // number of elements to copy
  179. if (celems > 0)
  180.     ::memcpy(pData, m_pData, celems * sizeof(void*)); /* Flawfinder: ignore */
  181. if (size > celems)
  182.     ::memset(&pData[celems], 0, (size - celems) * sizeof(void*));
  183. delete [] m_pData;
  184. m_pData = pData;
  185. m_size = size;
  186. m_nelems = celems;
  187.     }
  188. }
  189. ///
  190. /// GetGrowSize() 
  191. ///
  192. /// return the size to grow the array, this may be set by the user in
  193. /// SetSize() but will default to a doubling algorithm if not
  194. ///
  195. int
  196. CHXPtrArray::GetGrowSize(int newSize) 
  197. {
  198.     int growSize = 0;
  199.     if (m_userGrowSize != -1)
  200.     {
  201. // use multiple of user set size
  202. while (m_size + growSize < newSize)
  203.     growSize += m_userGrowSize;
  204.     }
  205.     else
  206.     {
  207. // or use doubling if user did not set grow size
  208. while (m_size + m_defGrowSize < newSize)
  209.     m_defGrowSize <<= 1;
  210. growSize = m_defGrowSize;
  211.     }
  212.     return growSize;
  213. }
  214. ///
  215. /// InsertCommon(int index, int len)
  216. ///
  217. /// common implementation for InsertAt methods
  218. /// makes room in array to insert 'len' values at 'index'
  219. ///
  220. void
  221. CHXPtrArray::InsertCommon(int index, int len)
  222. {
  223.     HX_ASSERT(index >= 0);
  224.     int nelems; // total number of elements post insert
  225.     // are we adding off the end or adding in the middle?
  226.     if (index > m_nelems)
  227. nelems = index + len;
  228.     else 
  229. nelems = m_nelems + len;
  230.     // check to see if we need to grow the array
  231.     void** pData = m_pData;
  232.     if (nelems > m_size) 
  233.     {
  234. int newSize = m_size + GetGrowSize(nelems);
  235. pData = new void*[newSize];
  236. // zero the extra data
  237. ::memset(&pData[m_nelems], 0, (newSize - m_nelems) * sizeof(void*));
  238. m_size = newSize;
  239. // copy the prefix
  240. if (index > 0)
  241.     ::memcpy(pData, m_pData, MIN(m_nelems, index) * sizeof(void*)); /* Flawfinder: ignore */
  242.     }
  243.     // copy the suffix -- uses memmove in case of overlap
  244.     if (index < m_nelems)
  245. ::memmove(&pData[index + len], &m_pData[index], 
  246.   (m_nelems - index) * sizeof(void*));
  247.     m_nelems = nelems;
  248.     // if we had to resize, delete the old storage
  249.     if (pData != m_pData)
  250.     {
  251. delete [] m_pData;
  252. m_pData = pData;
  253.     }
  254. }