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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: chxmapguidtoobj.cpp,v 1.3.32.3 2004/07/09 01:45:59 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. #include "chxmapguidtoobj.h"
  50. #define MAP_TYPE CHXMapGUIDToObj
  51. #define MAP_ITERATOR_KEY_TYPE const key_type*
  52. #define MAP_ITERATOR_KEY_GET(k) &k
  53. #define MAP_OVERRIDE_GETNEXTASSOC
  54. #include "chxmapcommon_inl.h"
  55. DECLARE_ITEMVEC_IMP(CHXMapGUIDToObj,ItemVec_t,Item,Item(),0,GUID_NULL);
  56. #if defined(_DEBUG) || defined(_DEBUG_HASH)
  57. #include "hxguid.h"
  58. #endif
  59. void CHXMapGUIDToObj::GetNextAssoc (POSITION& pos, key_type*& key, value_type& value) const
  60. {
  61.     int item = Pos2Item(pos);
  62.     HX_ASSERT (item >= 0 && item < m_items.size());
  63.     const Item* pItem = &m_items[item];
  64.     key = (key_type*)(&pItem->key);
  65.     value = pItem->val;
  66.     // go to next valid item
  67.     int s = m_items.size();
  68.     ++item; ++pItem;
  69.     while (item < s && pItem->bFree) ++item, ++pItem;
  70.     if (item >= s)
  71.     {
  72.         // Hit the end...
  73.         pos = 0;
  74.     }
  75.     else
  76.     {
  77.         // Convert back to 1-based POSITION
  78.         pos = Item2Pos(item);
  79.     }
  80. }
  81. // ==================== Code specific to the type of key and/or value goes below here.
  82. void CHXMapGUIDToObj::ConstructTypeSpecifics()
  83. {
  84. }
  85. ULONG32 CHXMapGUIDToObj::DefaultHashFunc (key_arg_type key)
  86. {
  87. #ifdef _DEBUG_HASH
  88.     CHXGUID guid(key);
  89.     CHXString strGUID;
  90.     guid.Get(strGUID);
  91. #endif /* _DEBUG_HASH */
  92.     // XXXSAB: Need something to reasonably distribute GUIDs...anyone have
  93.     //         an idea?
  94.     ULONG32 ret = 0;
  95.     // XOR together sizeof(ULONG32) chunks of the key...
  96.     static const int wordSize = sizeof(ULONG32);
  97.     const char* keySrc = (const char*)&key;
  98.     int byteLen = sizeof(GUID);
  99.     int wordLen = byteLen / wordSize;
  100.         
  101.     ULONG32 intWord;
  102.     char* pCharWord = (char*)&intWord;
  103.     for (int i = 0; i < wordLen; ++i)
  104.     {
  105.         strncpy (pCharWord, keySrc, wordSize); /* Flawfinder: ignore */
  106.         keySrc += wordSize; byteLen -= wordSize;
  107. #ifdef _DEBUG_HASH
  108.         printf ("CHXMapGUIDToObj::DefaultHashFunc("%s"): %lx ^ %lxn",
  109.                 (const char*)strGUID, ret, intWord);
  110. #endif /* _DEBUG_HASH */
  111.         ret ^= intWord;
  112.     }
  113.     if (byteLen > 0)
  114.     {
  115.         HX_ASSERT (byteLen < wordSize);
  116.         intWord = 0;
  117.         strncpy (pCharWord, keySrc, byteLen); /* Flawfinder: ignore */
  118. #ifdef _DEBUG_HASH
  119.         printf ("CHXMapGUIDToObj::DefaultHashFunc("%s"): %lx ^ %lxn",
  120.                 (const char*)strGUID, ret, intWord);
  121. #endif /* _DEBUG_HASH */
  122.         ret ^= intWord;
  123.     }
  124. #ifdef _DEBUG_HASH
  125.     printf ("CHXMapGUIDToObj::DefaultHashFunc("%s") -> %d (0x%lx)n",
  126.             (const char*)strGUID, ret);
  127. #endif /* _DEBUG_HASH */
  128.     return ret;
  129. }
  130. void CHXMapGUIDToObj::Dump() const
  131. {
  132. #ifdef _DEBUG
  133.     int i;
  134.     CHXGUID guid;
  135.     CHXString strGUID;
  136.     printf("(CHXMapGUIDToObj*)%p:n", this);
  137.     printf("   items[sz=%d/%d]", m_items.size(), m_items.capacity());
  138.     for (i = 0; i < m_items.size(); ++i)
  139.     {
  140.         guid.Set(m_items[i].key);
  141.         guid.Get(strGUID);
  142.         printf("%s{%s,%p%s}",
  143.                (i % 2) ? " " : "n      ",
  144.                (const char*)strGUID, m_items[i].val,
  145.                m_items[i].bFree ? ",FREE" : "");
  146.     }
  147.     printf("n   free[sz=%d/%d]", m_free.size(), m_free.capacity());
  148.     for (i = 0; i < m_free.size(); ++i)
  149.     {
  150.         printf("%s%d",
  151.                (i % 10) ? " " : "n      ",
  152.                m_free[i]);
  153.     }
  154.     printf("n   buckets[sz=%d]", m_buckets.size());
  155.     for (i = 0; i < m_buckets.size(); ++i)
  156.     {
  157.         if (! m_buckets[i].empty())
  158.         {
  159.             printf("n  %6d[sz=%d/%d]:",
  160.                    i, m_buckets[i].size(), m_buckets[i].capacity());
  161.             for (int j = 0; j < m_buckets[i].size(); ++j)
  162.                 printf(" %d", m_buckets[i][j]);
  163.         }
  164.     }
  165.     printf("n   chunkSize=%ld; bucketChunkSize=%ld; hf=%p;",
  166.            (long)m_chunkSize, (long)m_bucketChunkSize, m_hf);
  167.     printf("n   defChunkSize=%ld; defBucketChunkSize=%ld; defNumBuckets=%ld;n",
  168.            (long)z_defaultChunkSize, (long)z_defaultBucketChunkSize,
  169.            (long)z_defaultNumBuckets);
  170. #endif /* _DEBUG */
  171. }