hxarray.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef HLXCARRAY_H
  36. #define HLXCARRAY_H
  37. #include "hxassert.h"
  38. #include "carray.h"
  39. template <class T>
  40. class HLXArray
  41. {
  42. public:
  43.     HLXArray();
  44.     ~HLXArray();
  45.     
  46.     bool IsEmpty() const;
  47.     int GetSize() const;
  48.     int GetUpperBound() const;
  49.     void SetSize(int size, int growSize);
  50.     void FreeExtra();
  51.     void RemoveAll();
  52.     bool IsSet(int i) const;
  53.     const T& GetAt(int i) const;
  54.     T& ElementAt(int i);
  55.     void SetAt(int i, const T& value);
  56.     void SetAtGrow(int i, const T& value);
  57.     T& operator[](int i);
  58.     void InsertAt(int i, const T& value, int num = 1);
  59.     void InsertAt(int i, const HLXArray<T>& array);
  60.     void RemoveAt(int i);
  61. private:
  62.     CHXPtrArray m_rep;
  63. };
  64. template <class T>
  65. inline
  66. HLXArray<T>::HLXArray()
  67. {}
  68. template <class T>
  69. inline
  70. HLXArray<T>::~HLXArray()
  71. {
  72.     RemoveAll();
  73. }
  74.   
  75. template <class T>
  76. inline  
  77. bool HLXArray<T>::IsEmpty() const
  78. {
  79.     return m_rep.IsEmpty();
  80. }
  81. template <class T>
  82. inline
  83. int HLXArray<T>::GetSize() const
  84. {
  85.     return m_rep.GetSize();
  86. }
  87. template <class T>
  88. inline
  89. int HLXArray<T>::GetUpperBound() const
  90. {
  91.     return m_rep.GetUpperBound();
  92. }
  93. template <class T>
  94. inline
  95. void HLXArray<T>::SetSize(int size, int growSize)
  96. {
  97.     m_rep.SetSize(size, growSize);
  98. }
  99. template <class T>
  100. inline
  101. void HLXArray<T>::FreeExtra()
  102. {
  103.     m_rep.FreeExtra();
  104. }
  105. template <class T>
  106. inline
  107. void HLXArray<T>::RemoveAll()
  108. {
  109.     for (int i = 0; i < m_rep.GetSize(); i++)
  110.     {
  111. T* pTmp = (T*)m_rep[i];
  112. delete pTmp;
  113.     }
  114.     m_rep.RemoveAll();
  115. }
  116. template <class T>
  117. inline
  118. bool HLXArray<T>::IsSet(int i) const
  119. {
  120.     bool ret = false;
  121.     if ((i < m_rep.GetSize()) && m_rep.GetAt(i))
  122. ret = true;
  123.     return ret;
  124. }
  125. template <class T>
  126. inline
  127. const T& HLXArray<T>::GetAt(int i) const
  128. {
  129.     T* pTmp = (T*)m_rep.GetAt(i); 
  130.     
  131.     HX_ASSERT(pTmp);
  132.     return *pTmp;
  133. }
  134. template <class T>
  135. inline
  136. T& HLXArray<T>::ElementAt(int i)
  137. {
  138.     T* pTmp = (T*)m_rep.ElementAt(i); 
  139.     
  140.     HX_ASSERT(pTmp);
  141.     return *pTmp;
  142. }
  143. template <class T>
  144. inline
  145. void HLXArray<T>::SetAt(int i, const T& value)
  146. {
  147.     T* pTmp = 0;
  148.     if (i < m_rep.GetSize())
  149. pTmp = m_rep.GetAt(i);
  150.     if (!pTmp)
  151.     {
  152. pTmp = new T(value);
  153. m_rep.SetAt(i, pTmp);
  154.     }
  155.     else
  156. *pTmp = value;
  157. }
  158. template <class T>
  159. inline
  160. void HLXArray<T>::SetAtGrow(int i, const T& value)
  161. {
  162.     T* pTmp = 0;
  163.     if (i < m_rep.GetSize())
  164. pTmp = (T*)m_rep.GetAt(i);
  165.     if (!pTmp)
  166.     {
  167. pTmp = new T(value);
  168. m_rep.SetAtGrow(i, pTmp);
  169.     }
  170.     else
  171. *pTmp = value;
  172. }
  173. template <class T>
  174. inline
  175. T& HLXArray<T>::operator[](int i)
  176. {
  177.     T* pTmp = (T*)m_rep[i]; 
  178.     
  179.     HX_ASSERT(pTmp);
  180.     return *pTmp;
  181. }
  182. template <class T>
  183. inline
  184. void HLXArray<T>::InsertAt(int i, const T& value, int num)
  185. {
  186.     for (int j = 0; j < num; j++)
  187. m_rep.InsertAt(i + j, new T(value), 1);
  188. }
  189. template <class T>
  190. inline
  191. void HLXArray<T>::InsertAt(int i, const HLXArray<T>& array)
  192. {
  193.     for (int j = 0; j < array.GetSize(); j++)
  194. m_rep.Insert(i + j, new T(array[j]), 1);
  195. }
  196.  
  197. template <class T>
  198. inline
  199. void HLXArray<T>::RemoveAt(int i)
  200. {
  201.     delete (T*)m_rep.GetAt(i);
  202.     m_rep.RemoveAt(i);
  203. }
  204. #endif // HXLCARRAY_H