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

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 _CHXMAPPTRTOPTR_H_
  36. #define _CHXMAPPTRTOPTR_H_
  37. // Notes...
  38. //
  39. // Since we aren't using templates, we get to copy the same basic code all
  40. // over the place.  So, if you change something in this class, chances are
  41. // that the other CHXMap*To* classes may need the change as well.
  42. // XXXSAB: Need to better abstract out the common code...
  43. //
  44. // This implementation has a few dynamically resized vectors - their
  45. // "chunk sizes" (number of elements added to size when a new element
  46. // addition requires a reallocation) can be adjusted via the following
  47. // accessors.
  48. //
  49. //    m_items - This is the vector of actual key/value pairs (along with a
  50. //        boolean "free" flag) where the data for the map is stored.  It's
  51. //        chunk size is controlled via the optional argument to the map
  52. //        ctor.  And the default value for that is controlled by the
  53. //        static SetDefaultChunkSize() method.
  54. //
  55. //    m_buckets - This is the vector of hash buckets.  Each hash bucket is
  56. //        a vector of int indices into the m_items vector.  The number of
  57. //        buckets doesn't change over time and is controlled via the
  58. //        InitHashTable() method (which has the effect of resetting the
  59. //        map) and it defaults to z_defaultNumBuckets (101 at the moment).
  60. //        The chunk size of the individual hash buckets is set by the
  61. //        SetBucketChunkSize() method and the default for that is set by
  62. //        the SetDefaultBucketChunkSize() method.
  63. //
  64. #include "hxtypes.h"
  65. #include "carray.h"
  66. #include "hxstring.h"
  67. #include "hxmaputils.h"
  68. #include "chxmapbuckets.h"
  69. class CHXMapPtrToPtr
  70. {
  71. public:
  72.     typedef void* key_type;
  73.     typedef void* key_arg_type;
  74.     typedef void* key_ref_type;
  75.     inline static key_type key_nil() { return NULL; }
  76.     typedef void* value_type;
  77.     typedef void* value_arg_type;
  78.     typedef void*& value_ref_type;
  79.     typedef void* value_const_ref_type;
  80.     inline static value_ref_type val_nil() { static const value_type p = 0; return (value_ref_type)p; }
  81.     struct Item
  82.     {
  83.         Item (key_arg_type key_ = key_nil(),
  84.               value_arg_type val_ = val_nil(),
  85.               bool bFree_ = true) :
  86.             key(key_), val(val_), bFree(bFree_)
  87.         {}
  88.         key_type key;
  89.         value_type val;
  90.         bool  bFree;
  91.     };
  92.     DECLARE_ITEMVEC(ItemVec_t,Item,Item(),0,0);
  93.     class Iterator
  94.     {
  95.     public:
  96.         typedef key_type iter_key_type;
  97.         friend class CHXMapPtrToPtr;
  98.         // NOTE: (item == -1) is used to mean "set to end of pItems".
  99.         Iterator(ItemVec_t* pItems = NULL,
  100.                  int item = -1);
  101.         // NOTE: Values of 'next' copied into iterator...since this
  102.         //       iterator is caching key/value and doesn't return a
  103.         //       value_type&, it can't be used to modify the values in the
  104.         //       map.
  105.         Iterator& operator++();
  106.         Iterator  operator++(int); // XXXSAB: tested?
  107.         BOOL operator==(const Iterator&) const;
  108.         BOOL operator!=(const Iterator&) const;
  109.         value_type operator*(); // returns the 'value'
  110.         iter_key_type get_key  ();   // returns the 'key'
  111.     private:
  112.         void GotoValid();
  113.         ItemVec_t*      m_pItems;
  114.         int             m_item;
  115.         // cached key/value
  116.         iter_key_type   m_key;
  117.         value_type      m_val;
  118.     };
  119. private:
  120. #if defined(HELIX_CONFIG_NOSTATICS)
  121.     static const ULONG32 z_defaultNumBuckets;
  122.     static const ULONG32 z_defaultChunkSize;
  123.     static const ULONG32 z_defaultBucketChunkSize;
  124. #else
  125.     static ULONG32 z_defaultNumBuckets;
  126.     static ULONG32 z_defaultChunkSize;
  127.     static ULONG32 z_defaultBucketChunkSize;
  128. #endif
  129.     
  130. public:
  131.     // Construction
  132.     // NOTE: Chunk size is the number of key/value pairs to grow by each
  133.     //       time one of the hash buckets needs to be grown.
  134.     CHXMapPtrToPtr(int chunkSize = z_defaultChunkSize);
  135.     ~CHXMapPtrToPtr();
  136.     // Attributes
  137.     inline int GetCount() const;
  138.     inline BOOL IsEmpty() const;
  139.     BOOL Lookup(key_arg_type key, value_arg_type& value) const;
  140.     POSITION Lookup(key_arg_type key) const;
  141.     // XXXSAB: I added GetKeyAt() and GetAt() since there was previously
  142.     //         no easy way to get those data without advancing the
  143.     //         POSITION.
  144.     key_ref_type GetKeyAt(POSITION pos) const;
  145.     value_const_ref_type GetAt(POSITION pos) const;
  146.     value_ref_type GetAt(POSITION pos);
  147.     // Lookup & add if not there
  148.     value_ref_type operator[](key_arg_type key);
  149.     // add a new (key, value) pair
  150.     POSITION SetAt(key_arg_type key, value_arg_type value);
  151.     // remove existing (key, ?) pair
  152.     POSITION Remove(key_arg_type key);
  153.     BOOL RemoveKey(key_arg_type key);
  154.     void RemoveAll();
  155.     // Iteration
  156.     POSITION GetStartPosition() const;
  157.     void GetNextAssoc (POSITION& pos, key_arg_type& key, value_arg_type& value) const;
  158.     Iterator Begin();
  159.     Iterator End();
  160.     Iterator Erase(Iterator it);
  161.     // XXXSAB: Added Find() command to parallel STL style method
  162.     Iterator Find(key_arg_type key);
  163.     // Returns the number of hash buckets
  164.     inline ULONG32 GetHashTableSize() const;
  165.     // This will reset the internal storage so that any the map will be
  166.     // empty when this returns.
  167.     HX_RESULT InitHashTable(ULONG32 numBuckets = z_defaultNumBuckets,
  168.                        BOOL bAlloc = TRUE);
  169.     typedef ULONG32 (*HashFunc_t) (key_arg_type key);
  170.     static ULONG32 DefaultHashFunc (key_arg_type key);
  171.     inline HashFunc_t SetHashFunc (HashFunc_t hf = DefaultHashFunc); // XXXSAB: tested???
  172.     // Overrideables: special non-virtual (XXXSAB: Huh?)
  173.     inline ULONG32 HashKey(key_arg_type key) const;
  174.     inline static void SetDefaultNumBuckets (ULONG32 numBuckets);
  175.     inline static void SetDefaultChunkSize (ULONG32 chunkSize);
  176.     inline static void SetDefaultBucketChunkSize (ULONG32 chunkSize);
  177.     inline void SetBucketChunkSize (ULONG32 chunkSize);
  178.     // In _DEBUG mode, this does a bunch of DPRINTF's...
  179.     void Dump() const;
  180. private:
  181.     inline BOOL Lookup(key_arg_type key, int& retItem) const;
  182.     BOOL LookupInBucket(ULONG32 bucket, key_arg_type key, int& retItem) const;
  183.     Item* LookupItem(ULONG32 bucket, key_arg_type key);
  184.     inline const Item* LookupItem(ULONG32 bucket, key_arg_type key) const
  185.     {
  186.         return ((CHXMapPtrToPtr*)this)->LookupItem(bucket, key);
  187.     }
  188.     // Internal function - key already verified not to exist
  189.     BOOL AddToBucket(ULONG32 bucket, key_arg_type key, value_arg_type value, int& retItem);
  190.     inline POSITION Item2Pos(int item) const;
  191.     inline int Pos2Item(POSITION pos) const;
  192. private:
  193.     HashFunc_t          m_hf;
  194.     ItemVec_t           m_items;
  195.     HlxMap::IntVec_t    m_free;
  196.     CHlxMapBuckets      m_buckets;
  197.     ULONG32             m_numBuckets;
  198.     ULONG32             m_chunkSize;
  199.     ULONG32             m_bucketChunkSize;
  200.     // Members specific to the type of key and/or value goes below here.
  201.     void ConstructTypeSpecifics();
  202.     inline BOOL IsKeyMatch (key_arg_type k1, key_arg_type k2) const
  203.     {
  204.         return (k1 == k2) ? TRUE : FALSE;
  205.     }
  206. };
  207. int CHXMapPtrToPtr::GetCount() const
  208. {
  209.     return m_items.size() - m_free.size();
  210. }
  211. BOOL CHXMapPtrToPtr::IsEmpty() const
  212. {
  213.     return GetCount() == 0;
  214. }
  215. ULONG32 CHXMapPtrToPtr::GetHashTableSize() const
  216. {
  217.     return m_numBuckets;
  218. }
  219. CHXMapPtrToPtr::HashFunc_t CHXMapPtrToPtr::SetHashFunc (
  220.     CHXMapPtrToPtr::HashFunc_t hf)
  221. {
  222.     HashFunc_t old = m_hf;
  223.     m_hf = hf;
  224.     return old;
  225. }
  226. ULONG32 CHXMapPtrToPtr::HashKey (key_arg_type key) const
  227. {
  228.     if (m_hf) return m_hf(key);
  229.     return DefaultHashFunc(key);
  230. }
  231. void CHXMapPtrToPtr::SetDefaultNumBuckets (ULONG32 numBuckets)
  232. {
  233. #if !defined(HELIX_CONFIG_NOSTATICS)
  234.     z_defaultNumBuckets = numBuckets;
  235. #endif
  236. }
  237. void CHXMapPtrToPtr::SetDefaultChunkSize (ULONG32 chunkSize)
  238. {
  239. #if !defined(HELIX_CONFIG_NOSTATICS)
  240.     z_defaultChunkSize = chunkSize;
  241. #endif
  242. }
  243. void CHXMapPtrToPtr::SetDefaultBucketChunkSize (ULONG32 chunkSize)
  244. {
  245. #if !defined(HELIX_CONFIG_NOSTATICS)
  246.     z_defaultBucketChunkSize = chunkSize;
  247. #endif
  248. }
  249. void CHXMapPtrToPtr::SetBucketChunkSize (ULONG32 chunkSize)
  250. {
  251.     m_bucketChunkSize = chunkSize;
  252. }
  253. #endif // _CHXMAPPTRTOPTR_H_