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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: chxmapstringtostring.h,v 1.6.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 _CHXMAPSTRINGTOSTRING_H_
  50. #define _CHXMAPSTRINGTOSTRING_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 "hxtypes.h"
  79. #include "carray.h"
  80. #include "hxstring.h"
  81. #include "hxmaputils.h"
  82. #include "chxmapbuckets.h"
  83. #include "hlxclib/string.h"     // strcasecmp()
  84. class CHXMapStringToString
  85. {
  86. public:
  87.     typedef const char* key_type;
  88.     typedef const char* key_arg_type;
  89.     typedef const char* key_ref_type;
  90.     inline static CHXString& key_nil() { return (CHXString&)HXEmptyString; }
  91.     
  92.     typedef const char* value_type;
  93.     typedef const char* value_arg_type;
  94.     typedef CHXString& value_ref_type;
  95.     typedef const CHXString& value_const_ref_type;
  96.     inline static CHXString& val_nil() { return (CHXString&)HXEmptyString; }
  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.         CHXString  key;
  105.         CHXString  val;
  106.         bool  bFree;
  107.     };
  108.     DECLARE_ITEMVEC(ItemVec_t,Item,Item(),0,0);//HXEmptyString);
  109.     class Iterator
  110.     {
  111.     public:
  112.         typedef key_type iter_key_type;
  113.         friend class CHXMapStringToString;
  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.         Iterator& operator++();
  122.         Iterator  operator++(int); // XXXSAB: tested?
  123.         BOOL operator==(const Iterator&) const;
  124.         BOOL operator!=(const Iterator&) const;
  125.         value_type operator*(); // returns the 'value'
  126.         iter_key_type get_key  ();   // returns the 'key'
  127.     private:
  128.         void GotoValid();
  129.         ItemVec_t*      m_pItems;
  130.         int             m_item;
  131.         // cached key/value
  132.         CHXString       m_key;
  133.         CHXString       m_val;
  134.     };
  135. private:
  136. #if defined(HELIX_CONFIG_NOSTATICS)
  137.     static const ULONG32 z_defaultNumBuckets;
  138.     static const ULONG32 z_defaultChunkSize;
  139.     static const ULONG32 z_defaultBucketChunkSize;
  140. #else
  141.     static ULONG32 z_defaultNumBuckets;
  142.     static ULONG32 z_defaultChunkSize;
  143.     static ULONG32 z_defaultBucketChunkSize;
  144. #endif
  145.     
  146. public:
  147.     // Construction
  148.     // NOTE: Chunk size is the number of key/value pairs to grow by each
  149.     //       time one of the hash buckets needs to be grown.
  150.     CHXMapStringToString(int chunkSize = z_defaultChunkSize);
  151.     ~CHXMapStringToString();
  152.     // Attributes
  153.     inline int GetCount() const;
  154.     inline BOOL IsEmpty() const;
  155.     BOOL Lookup(key_arg_type key, CHXString& value) const;
  156.     POSITION Lookup(key_arg_type key) const;
  157.     // XXXSAB: I added GetKeyAt() and GetAt() since there was previously
  158.     //         no easy way to get those data without advancing the
  159.     //         POSITION.
  160.     key_ref_type GetKeyAt(POSITION pos) const;
  161.     value_const_ref_type GetAt(POSITION pos) const;
  162.     value_ref_type GetAt(POSITION pos);
  163.     // Lookup & add if not there
  164.     value_ref_type operator[](key_arg_type key);
  165.     // add a new (key, value) pair
  166.     POSITION SetAt(key_arg_type key, value_arg_type value);
  167.     // remove existing (key, ?) pair
  168.     POSITION Remove(key_arg_type key);
  169.     BOOL RemoveKey(key_arg_type key);
  170.     void RemoveAll();
  171.     // Iteration
  172.     POSITION GetStartPosition() const;
  173.     void GetNextAssoc (POSITION& pos, CHXString& key, CHXString& value) const;
  174.     Iterator Begin();
  175.     Iterator End();
  176.     Iterator Erase(Iterator it);
  177.     // XXXSAB: Added Find() command to parallel STL style method
  178.     Iterator Find(key_arg_type key);
  179.     // Returns the number of hash buckets
  180.     inline ULONG32 GetHashTableSize() const;
  181.     // This will reset the internal storage so that any the map will be
  182.     // empty when this returns.
  183.     // NOTE: This function always allocates some data - the bAlloc flag is
  184.     //       for compatibility with an old interface and is ignored.
  185.     HX_RESULT InitHashTable(ULONG32 numBuckets = z_defaultNumBuckets,
  186.                        BOOL bAlloc = TRUE);
  187.     // defaults to on. Set this before you add anything! And make sure
  188.     // that if you set a hash function that it's behavior matches the case
  189.     // sensitivity flag.
  190.     void SetCaseSensitive(BOOL bCaseSens) { m_bCaseSens = bCaseSens ? true : false; }
  191.     typedef ULONG32 (*HashFunc_t) (key_arg_type key);
  192.     static ULONG32 DefaultHashFunc (key_arg_type key)
  193.     {
  194.         return HlxMap::StrHashFunc(key, true);
  195.     }
  196.     static ULONG32 DefaultNoCaseHashFunc (key_arg_type key)
  197.     {
  198.         return HlxMap::StrHashFunc(key, false);
  199.     }
  200.     inline HashFunc_t SetHashFunc (HashFunc_t hf = DefaultHashFunc); // XXXSAB: tested???
  201.     // Overrideables: special non-virtual (XXXSAB: Huh?)
  202.     inline ULONG32 HashKey(key_arg_type key) const;
  203.     inline static void SetDefaultNumBuckets (ULONG32 numBuckets);
  204.     inline static void SetDefaultChunkSize (ULONG32 chunkSize);
  205.     inline static void SetDefaultBucketChunkSize (ULONG32 chunkSize);
  206.     inline void SetBucketChunkSize (ULONG32 chunkSize);
  207.     // In _DEBUG mode, this does a bunch of DPRINTF's...
  208.     void Dump() const;
  209. private:
  210.     inline BOOL Lookup(key_arg_type key, int& retItem) const;
  211.     BOOL LookupInBucket(ULONG32 bucket, key_arg_type key, int& retItem) const;
  212.     Item* LookupItem(ULONG32 bucket, key_arg_type key);
  213.     inline const Item* LookupItem(ULONG32 bucket, key_arg_type key) const
  214.     {
  215.         return ((CHXMapStringToString*)this)->LookupItem(bucket, key);
  216.     }
  217.     // Internal function - key already verified not to exist
  218.     BOOL AddToBucket(ULONG32 bucket, key_arg_type key, value_arg_type value, int& retItem);
  219.     inline POSITION Item2Pos(int item) const;
  220.     inline int Pos2Item(POSITION pos) const;
  221. private:
  222.     HashFunc_t          m_hf;
  223.     ItemVec_t           m_items;
  224.     HlxMap::IntVec_t    m_free;
  225.     CHlxMapBuckets      m_buckets;
  226.     ULONG32             m_numBuckets;
  227.     ULONG32             m_chunkSize;
  228.     ULONG32             m_bucketChunkSize;
  229.     // Members specific to the type of key and/or value goes below here.
  230.     void ConstructTypeSpecifics();
  231.     inline BOOL IsKeyMatch (key_arg_type k1, key_arg_type k2) const
  232.     {
  233.         BOOL bRet;
  234.         if (m_bCaseSens) bRet = (strcmp(k1, k2) == 0);
  235.         else bRet = (strcasecmp(k1, k2) == 0);
  236. #ifdef XXXSAB
  237.         printf ("IsKeyMatch("%s", "%s") -> %sn",
  238.                 k1, k2,
  239.                 bRet ? "true" : "false");
  240. #endif /* XXXSAB */
  241.         return bRet;
  242.     }
  243.     bool                m_bCaseSens;
  244. };
  245. int CHXMapStringToString::GetCount() const
  246. {
  247.     return m_items.size() - m_free.size();
  248. }
  249. BOOL CHXMapStringToString::IsEmpty() const
  250. {
  251.     return GetCount() == 0;
  252. }
  253. ULONG32 CHXMapStringToString::GetHashTableSize() const
  254. {
  255.     return m_numBuckets;
  256. }
  257. CHXMapStringToString::HashFunc_t CHXMapStringToString::SetHashFunc (
  258.     CHXMapStringToString::HashFunc_t hf)
  259. {
  260.     HashFunc_t old = m_hf;
  261.     m_hf = hf;
  262.     return old;
  263. }
  264. ULONG32 CHXMapStringToString::HashKey (key_arg_type key) const
  265. {
  266.     if (m_hf) return m_hf(key);
  267.     return m_bCaseSens ? DefaultHashFunc(key) : DefaultNoCaseHashFunc(key);
  268. }
  269. void CHXMapStringToString::SetDefaultNumBuckets (ULONG32 numBuckets)
  270. {
  271. #if !defined(HELIX_CONFIG_NOSTATICS)
  272.     z_defaultNumBuckets = numBuckets;
  273. #endif
  274. }
  275. void CHXMapStringToString::SetDefaultChunkSize (ULONG32 chunkSize)
  276. {
  277. #if !defined(HELIX_CONFIG_NOSTATICS)
  278.     z_defaultChunkSize = chunkSize;
  279. #endif
  280. }
  281. void CHXMapStringToString::SetDefaultBucketChunkSize (ULONG32 chunkSize)
  282. {
  283. #if !defined(HELIX_CONFIG_NOSTATICS)
  284.     z_defaultBucketChunkSize = chunkSize;
  285. #endif
  286. }
  287. void CHXMapStringToString::SetBucketChunkSize (ULONG32 chunkSize)
  288. {
  289.     m_bucketChunkSize = chunkSize;
  290. }
  291. #endif // _CHXMAPSTRINGTOSTRING_H_