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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxmaputils.h,v 1.7.32.3 2004/07/09 01:45:51 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 _HLXMAPUTILS_H_
  50. #define _HLXMAPUTILS_H_
  51. #include "hxtypes.h"
  52. #include "hxassert.h"
  53. typedef void* POSITION;         // XXXSAB: where does this belong?
  54. #if defined(HELIX_CONFIG_LOW_HEAP_HASH_TABLE)
  55. // The default values to the hash class result in terrible heap consumption.
  56. // Using absolute minimal values here. Not much of a hash table now though!
  57. #define CHUNK_INIT 1
  58. #else
  59. #define CHUNK_INIT 16
  60. #endif
  61. #define DECLARE_ITEMVEC(CLASS,ITEM,NIL,CHUNK,INIT) 
  62.     class CLASS 
  63.     { 
  64.     public: 
  65.         CLASS(); 
  66.         CLASS(int num);
  67.         CLASS(int num, const ITEM& item); 
  68.         CLASS(const CLASS& from); 
  69.         CLASS& operator= (const CLASS& from); 
  70.         ~CLASS(); 
  71.  
  72.         inline ITEM& operator[] (int idx) 
  73.         { 
  74.             return m_items[idx]; 
  75.             /* return (idx >= 0 && idx < m_used ? m_items[idx] : nil()); */ 
  76.         } 
  77.  
  78.         inline const ITEM& operator[] (int idx) const 
  79.         { 
  80.             return m_items[idx]; 
  81.             /* return (idx >= 0 && idx < m_used ? m_items[idx] : nil()); */ 
  82.         } 
  83.  
  84.         inline bool empty () const { return m_used <= 0; } 
  85.         inline int size () const { return m_used; } 
  86.         inline void resize (int s) 
  87.         { 
  88.             resize(s, INIT); 
  89.         } 
  90.  
  91.         void resize (int s, const ITEM& item); 
  92.  
  93.         inline int capacity () const { return m_alloc; } 
  94.         void reserve (int s); 
  95.         inline void SetChunkSize (int chunk) { m_chunkSize = chunk; } 
  96.         void GrowBy (int by); 
  97.  
  98.         CLASS& push_back (const ITEM& item); 
  99.  
  100.         inline CLASS& pop_back () 
  101.         { 
  102.             HX_ASSERT (m_used > 0); 
  103.             if (m_used > 0) --m_used; 
  104.             return *this; 
  105.         } 
  106.  
  107.         inline ITEM& back() 
  108.         { 
  109.             HX_ASSERT (m_items); HX_ASSERT (m_used > 0); 
  110.             return m_items[m_used-1]; 
  111.         } 
  112.  
  113.         void zap (int idx, int numToZap = 1); 
  114.  
  115.     private: 
  116.         ITEM*       m_items; 
  117.         int         m_alloc; 
  118.         int         m_used; 
  119.         UINT16      m_chunkSize; 
  120.     }
  121. #define DECLARE_ITEMVEC_IMP(PARENT, CLASS,ITEM,NIL,CHUNK,INIT) 
  122.         PARENT::CLASS::CLASS() : 
  123.             m_items(0), m_alloc(0), m_used(0), m_chunkSize(CHUNK) 
  124.         { 
  125.         } 
  126.  
  127.         PARENT::CLASS::CLASS(int num) : 
  128.             m_items(0), m_alloc(0), m_used(0), m_chunkSize(CHUNK) 
  129.         { 
  130.             if (num > 0) 
  131.             { 
  132.                 m_items = new ITEM[num]; 
  133.                 m_used = m_alloc = num; 
  134.                 for (int i = 0; i < num; ++i) m_items[i] = INIT; 
  135.             } 
  136.         } 
  137.  
  138.         PARENT::CLASS::CLASS(int num, const ITEM& item) : 
  139.             m_items(0), m_alloc(0), m_used(0), m_chunkSize(CHUNK) 
  140.         { 
  141.             if (num > 0) 
  142.             { 
  143.                 m_items = new ITEM[num]; 
  144.                 m_used = m_alloc = num; 
  145.                 for (int i = 0; i < num; ++i) m_items[i] = item; 
  146.             } 
  147.         } 
  148.  
  149.         PARENT::CLASS::CLASS(const PARENT::CLASS& from) : 
  150.             m_items(0), m_alloc(0), m_used(0), m_chunkSize(CHUNK) 
  151.         { 
  152.             m_used = from.m_used; 
  153.             m_alloc = from.m_alloc; 
  154.             m_items = new ITEM[m_alloc]; 
  155.             for (int i = 0; i < m_used; ++i) m_items[i] = from.m_items[i]; 
  156.         } 
  157.  
  158.         PARENT::CLASS& PARENT::CLASS::operator= (const PARENT::CLASS& from) 
  159.         { 
  160.             if (m_items != from.m_items) 
  161.             { 
  162.                 HX_VECTOR_DELETE(m_items); 
  163.                 m_used = from.m_used; 
  164.                 m_alloc = from.m_alloc; 
  165.                 m_items = new ITEM[m_alloc]; 
  166.                 for (int i = 0; i < m_used; ++i) m_items[i] = from.m_items[i]; 
  167.             } 
  168.             return *this; 
  169.         } 
  170.  
  171.         PARENT::CLASS::~CLASS() { HX_VECTOR_DELETE(m_items); } 
  172.  
  173.  
  174.         void PARENT::CLASS::resize (int s, const ITEM& item) 
  175.         { 
  176.             reserve(s); 
  177.             for (int i = m_used; i < s; ++i) m_items[i] = item; 
  178.             m_used = s; 
  179.         } 
  180.  
  181.         void PARENT::CLASS::reserve (int s) 
  182.         { 
  183.             if (s > m_alloc) 
  184.             { 
  185.                 ITEM* newItems = new ITEM[s]; 
  186.                 if( newItems ){ 
  187.                 for (int i = 0; i < m_used; ++i) newItems[i] = m_items[i]; 
  188.                 HX_VECTOR_DELETE (m_items); 
  189.                 m_items = newItems; 
  190.                 m_alloc = s; 
  191.                 } 
  192.             } 
  193.         } 
  194.  
  195.         void PARENT::CLASS::GrowBy (int by) 
  196.         { 
  197.             /* If no chunkSize specified, 
  198.                use the larger of 16 and the currently allocated amount. 
  199.             */ 
  200.  
  201.             int chunk = m_chunkSize > 0 ? m_chunkSize : MAX (m_alloc, CHUNK_INIT); 
  202.             int newAlloc = m_alloc + ((by + chunk - 1) / chunk) * chunk; 
  203.             reserve (newAlloc); 
  204.         } 
  205.  
  206.         PARENT::CLASS& PARENT::CLASS::push_back (const ITEM& item) 
  207.         { 
  208.             if (m_used == m_alloc) GrowBy (1); 
  209.             HX_ASSERT (m_used < m_alloc); 
  210.             m_items[m_used++] = item; 
  211.             return *this; 
  212.         } 
  213.  
  214.         void PARENT::CLASS::zap (int idx, int numToZap) 
  215.         { 
  216.             HX_ASSERT (idx >= 0 && idx < m_used); 
  217.  
  218.             if ((idx + numToZap) >= m_used) 
  219.             { 
  220.                 m_used = idx; 
  221.             } 
  222.             else 
  223.             { 
  224.                 int src = idx + numToZap; 
  225.                 int dest = idx; 
  226.                 for (; src < m_used; ++src, ++dest) 
  227.                     m_items[dest] = m_items[src]; 
  228.                 m_used -= numToZap; 
  229.             } 
  230.         } 
  231. struct HlxMap
  232. {
  233.     DECLARE_ITEMVEC(IntVec_t, int, 0, 0, 0);
  234.     static ULONG32 StrHashFunc (const char* key, bool bCaseSens);
  235. };
  236. #endif // _HLXMAPUTILS_H_