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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: carray.h,v 1.1.1.1.50.3 2004/07/09 01:45:50 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. #ifndef CARRAY_H_
  50. #define CARRAY_H_
  51. #include "hxcom.h"
  52. #include "hxassert.h"
  53. class HXEXPORT_CLASS CHXPtrArray {
  54. public:
  55.     CHXPtrArray();
  56.     ~CHXPtrArray();
  57. // return num elements == 0
  58.     BOOL IsEmpty() const;
  59. // return number of elements
  60.     int GetSize() const;
  61. // return largest index
  62.     int GetUpperBound() const;
  63. // set size and grow by size
  64.     void SetSize(int nelems, int growSize=-1);
  65. // free un-assigned slots
  66.     void FreeExtra();
  67. // free the entire array
  68.     void RemoveAll();
  69. // return the value at the given index
  70.     void* GetAt(int index) const;
  71. // set the value at the given index
  72.     void SetAt(int index, void* value);
  73. // return reference to value at given index
  74.     void*& ElementAt(int index);
  75. // set value, grow array if needed
  76.     void SetAtGrow(int index, void* value);
  77. // add the element, ret index of added element
  78.     int Add(void* value);
  79. // add the element if not already in array
  80.     BOOL AddIfUnique(void* value);
  81. // same as GetAt()
  82.     void* operator[](int index) const;
  83. // same as ElementAt()
  84.     void*& operator[](int index);
  85. // insert value at index
  86.     void InsertAt(int index, void* value, int repeat=1);
  87. // insert array at index
  88.     void InsertAt(int index, CHXPtrArray* pPtrArray);
  89. // remove value(s) at index
  90.     void RemoveAt(int index, int repeat=1);
  91. // search for value in array
  92.     BOOL Find(void* value, int* index=NULL);
  93. // search for and remove first occurence
  94.     BOOL FindAndRemoveOne(void* value);
  95. // search for and remove all occurences
  96.     BOOL FindAndRemoveAll(void* value);
  97. private:
  98. // not implemented
  99.     CHXPtrArray(const CHXPtrArray&);
  100. // not implemented
  101.     void operator=(const CHXPtrArray&);
  102. // resize the array to given size
  103.     void Resize(int size);
  104. // get the size to grow array by
  105.     int GetGrowSize(int newSize);
  106. // common code for insertions
  107.     void InsertCommon(int index, int len);
  108.     
  109. // total slots allocated
  110.     int m_size;
  111. // number of elements in array
  112.     int m_nelems;
  113. // use set grow size for resizing ops
  114.     int m_userGrowSize;
  115. // default grow size if user does not set
  116.     int m_defGrowSize;
  117. // data array
  118.     void** m_pData;
  119.     
  120. };
  121. ///
  122. /// IsEmpty() const
  123. ///
  124. /// return num elements == 0
  125. ///
  126. inline BOOL 
  127. CHXPtrArray::IsEmpty() const
  128. {
  129.     return m_nelems == 0;
  130. }
  131. ///
  132. /// GetSize() const
  133. ///
  134. /// return size of the array
  135. ///
  136. inline int 
  137. CHXPtrArray::GetSize() const
  138. {
  139.     return m_nelems;
  140. }
  141. ///
  142. /// GetUpperBound() const
  143. ///
  144. /// return largest index
  145. ///
  146. inline int 
  147. CHXPtrArray::GetUpperBound() const
  148. {
  149.     return m_nelems - 1;
  150. }
  151. ///
  152. /// GetAt(int index) const
  153. ///
  154. /// return the value at the given index
  155. ///
  156. inline void* 
  157. CHXPtrArray::GetAt(int index) const
  158. {
  159.     HX_ASSERT(index >= 0 && index < m_nelems);
  160.     return m_pData[index];
  161. }
  162. ///
  163. /// SetAt(int index, void* value)
  164. ///
  165. /// set the value at the given index
  166. ///
  167. inline void
  168. CHXPtrArray::SetAt(int index, void* value)
  169. {
  170.     HX_ASSERT(index >= 0 && index < m_nelems);
  171.     m_pData[index] = value;
  172. }
  173. ///
  174. /// ElementAt(int index)
  175. ///
  176. /// return reference to value at given index
  177. ///
  178. inline void*& 
  179. CHXPtrArray::ElementAt(int index)
  180. {
  181.     HX_ASSERT(index >= 0 && index < m_nelems);
  182.     return m_pData[index];
  183. }
  184. ///
  185. /// Add(void* value)
  186. ///
  187. /// append the element to the array
  188. ///
  189. inline int
  190. CHXPtrArray::Add(void* value)
  191. {
  192.     int ret = m_nelems;
  193.     SetAtGrow(m_nelems, value);
  194.     return ret;
  195. }
  196. ///
  197. /// void* operator[]
  198. ///
  199. /// same as GetAt()
  200. ///
  201. inline void*
  202. CHXPtrArray::operator[] (int index) const
  203. {
  204.     return GetAt(index);
  205. }
  206. ///
  207. /// void*& operator[]
  208. ///
  209. /// same as ElementAt()
  210. ///
  211. inline void*&
  212. CHXPtrArray::operator[] (int index)
  213. {
  214.     return ElementAt(index);
  215. }
  216. ///
  217. /// AddIfUnique(void* value)
  218. ///
  219. /// add the element if not already in array
  220. ///
  221. inline BOOL 
  222. CHXPtrArray::AddIfUnique(void* value)
  223. {
  224.     int index;
  225.     if (Find(value, &index)) return FALSE;
  226.     Add(value);
  227.     return TRUE;
  228. }
  229. ///
  230. /// Find(void* value, int* index=NULL)
  231. ///
  232. /// search for value in array
  233. ///
  234. inline BOOL 
  235. CHXPtrArray::Find(void* value, int* index)
  236. {
  237.     int i = 0;
  238.     for (void** cur = m_pData; i < m_nelems; ++i, ++cur)
  239.     {
  240.         if (*cur == value)
  241.         {
  242.             if (index) *index = i;
  243.             return TRUE;
  244.         }
  245.     }
  246.     return FALSE;
  247. }
  248. ///
  249. /// FindAndRemoveOne(void* value)
  250. ///
  251. /// search for and remove first occurence
  252. ///
  253. inline BOOL 
  254. CHXPtrArray::FindAndRemoveOne(void* value)
  255. {
  256.     int index = -1;
  257.     if (Find(value, &index) && index >= 0)
  258.     {
  259.         RemoveAt(index, 1);
  260.         return TRUE;
  261.     }
  262.     return FALSE;
  263. }
  264. ///
  265. /// FindAndRemoveAll(void* value)
  266. ///
  267. /// search for and remove all occurences
  268. ///
  269. inline BOOL 
  270. CHXPtrArray::FindAndRemoveAll(void* value)
  271. {
  272.     void** src = m_pData;
  273.     void** dest = m_pData;
  274.     for (int i = 0; i < m_nelems; ++i, ++src)
  275.         if (value == *src) *dest++ = *src;
  276.     if (src != dest)
  277.     {
  278.         SetSize(dest - m_pData);
  279.         return TRUE;
  280.     }
  281.     return FALSE;
  282. }
  283. #endif /* CARRAY_H_ */