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

Symbian

开发平台:

Visual C++

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