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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxarray.h,v 1.1.1.1.50.3 2004/07/09 01:45:54 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 HLXCARRAY_H
  50. #define HLXCARRAY_H
  51. #include "hxassert.h"
  52. #include "carray.h"
  53. template <class T>
  54. class HLXArray
  55. {
  56. public:
  57.     HLXArray();
  58.     ~HLXArray();
  59.     
  60.     bool IsEmpty() const;
  61.     int GetSize() const;
  62.     int GetUpperBound() const;
  63.     void SetSize(int size, int growSize);
  64.     void FreeExtra();
  65.     void RemoveAll();
  66.     bool IsSet(int i) const;
  67.     const T& GetAt(int i) const;
  68.     T& ElementAt(int i);
  69.     void SetAt(int i, const T& value);
  70.     void SetAtGrow(int i, const T& value);
  71.     T& operator[](int i);
  72.     void InsertAt(int i, const T& value, int num = 1);
  73.     void InsertAt(int i, const HLXArray<T>& array);
  74.     void RemoveAt(int i);
  75. private:
  76.     CHXPtrArray m_rep;
  77. };
  78. template <class T>
  79. inline
  80. HLXArray<T>::HLXArray()
  81. {}
  82. template <class T>
  83. inline
  84. HLXArray<T>::~HLXArray()
  85. {
  86.     RemoveAll();
  87. }
  88.   
  89. template <class T>
  90. inline  
  91. bool HLXArray<T>::IsEmpty() const
  92. {
  93.     return m_rep.IsEmpty();
  94. }
  95. template <class T>
  96. inline
  97. int HLXArray<T>::GetSize() const
  98. {
  99.     return m_rep.GetSize();
  100. }
  101. template <class T>
  102. inline
  103. int HLXArray<T>::GetUpperBound() const
  104. {
  105.     return m_rep.GetUpperBound();
  106. }
  107. template <class T>
  108. inline
  109. void HLXArray<T>::SetSize(int size, int growSize)
  110. {
  111.     m_rep.SetSize(size, growSize);
  112. }
  113. template <class T>
  114. inline
  115. void HLXArray<T>::FreeExtra()
  116. {
  117.     m_rep.FreeExtra();
  118. }
  119. template <class T>
  120. inline
  121. void HLXArray<T>::RemoveAll()
  122. {
  123.     for (int i = 0; i < m_rep.GetSize(); i++)
  124.     {
  125. T* pTmp = (T*)m_rep[i];
  126. delete pTmp;
  127.     }
  128.     m_rep.RemoveAll();
  129. }
  130. template <class T>
  131. inline
  132. bool HLXArray<T>::IsSet(int i) const
  133. {
  134.     bool ret = false;
  135.     if ((i < m_rep.GetSize()) && m_rep.GetAt(i))
  136. ret = true;
  137.     return ret;
  138. }
  139. template <class T>
  140. inline
  141. const T& HLXArray<T>::GetAt(int i) const
  142. {
  143.     T* pTmp = (T*)m_rep.GetAt(i); 
  144.     
  145.     HX_ASSERT(pTmp);
  146.     return *pTmp;
  147. }
  148. template <class T>
  149. inline
  150. T& HLXArray<T>::ElementAt(int i)
  151. {
  152.     T* pTmp = (T*)m_rep.ElementAt(i); 
  153.     
  154.     HX_ASSERT(pTmp);
  155.     return *pTmp;
  156. }
  157. template <class T>
  158. inline
  159. void HLXArray<T>::SetAt(int i, const T& value)
  160. {
  161.     T* pTmp = 0;
  162.     if (i < m_rep.GetSize())
  163. pTmp = m_rep.GetAt(i);
  164.     if (!pTmp)
  165.     {
  166. pTmp = new T(value);
  167. m_rep.SetAt(i, pTmp);
  168.     }
  169.     else
  170. *pTmp = value;
  171. }
  172. template <class T>
  173. inline
  174. void HLXArray<T>::SetAtGrow(int i, const T& value)
  175. {
  176.     T* pTmp = 0;
  177.     if (i < m_rep.GetSize())
  178. pTmp = (T*)m_rep.GetAt(i);
  179.     if (!pTmp)
  180.     {
  181. pTmp = new T(value);
  182. m_rep.SetAtGrow(i, pTmp);
  183.     }
  184.     else
  185. *pTmp = value;
  186. }
  187. template <class T>
  188. inline
  189. T& HLXArray<T>::operator[](int i)
  190. {
  191.     T* pTmp = (T*)m_rep[i]; 
  192.     
  193.     HX_ASSERT(pTmp);
  194.     return *pTmp;
  195. }
  196. template <class T>
  197. inline
  198. void HLXArray<T>::InsertAt(int i, const T& value, int num)
  199. {
  200.     for (int j = 0; j < num; j++)
  201. m_rep.InsertAt(i + j, new T(value), 1);
  202. }
  203. template <class T>
  204. inline
  205. void HLXArray<T>::InsertAt(int i, const HLXArray<T>& array)
  206. {
  207.     for (int j = 0; j < array.GetSize(); j++)
  208. m_rep.Insert(i + j, new T(array[j]), 1);
  209. }
  210.  
  211. template <class T>
  212. inline
  213. void HLXArray<T>::RemoveAt(int i)
  214. {
  215.     delete (T*)m_rep.GetAt(i);
  216.     m_rep.RemoveAt(i);
  217. }
  218. #endif // HXLCARRAY_H