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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: medblock.cpp,v 1.5.20.1 2004/07/09 02:07:28 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 "medblock.h"
  50. #include "hlxclib/string.h"
  51. CMediumBlockAllocator::CMediumBlockAllocator()
  52.     :   m_nMinBucketSize(400)
  53.     , m_nNumberBuckets(256)
  54.     , m_nBucketSize(128)
  55.     , m_ppBuckets(0)
  56.     , m_pTimeStampArray(0)
  57.     , m_pCountArray(0)
  58.     , m_nLastTimeStamp(0)
  59.     , m_nCurrentTimeStamp(0)
  60.     , m_nLastMinimizeTime(0)
  61.     , m_nHeaderSize(0)
  62.     , m_nRelaxTime(5000)
  63.     , m_nCallbackTime(500)
  64.     , m_nGarbageTime(10000)
  65.     , m_nGarbageDivider(10)
  66.     , m_lRefCount(0)
  67.     , m_nLastRelaxTime(0)
  68.     , m_hCallback(0)
  69.     , m_pScheduler(0)
  70.     , m_pMutex(NULL)
  71. {
  72. #ifdef THREADS_SUPPORTED
  73.     HXMutex::MakeMutex(m_pMutex);
  74. #else
  75.     HXMutex::MakeStubMutex(m_pMutex);
  76. #endif
  77.     m_hCallback = 0;
  78.     m_ppBuckets = new CMemoryNode*[m_nNumberBuckets];
  79.     m_pTimeStampArray = new UINT32[m_nNumberBuckets];
  80.     m_pTimeStampArray = new UINT32[m_nNumberBuckets];
  81.     m_pCountArray = new UINT32[m_nNumberBuckets];
  82.     if (m_ppBuckets)
  83.     {
  84. for(int i = 0; i< (int)m_nNumberBuckets; i++)
  85. {
  86.     m_ppBuckets[i] = 0;
  87.     m_pCountArray[i] = 0;
  88. }
  89.     }
  90.     
  91.     m_nCurrentTimeStamp = HX_GET_TICKCOUNT();
  92.     m_nLastRelaxTime = m_nCurrentTimeStamp;
  93.     m_nLastMinimizeTime = m_nCurrentTimeStamp;
  94.     // round to the nearest dword size. 
  95.     // I think this is the correct alignment for all platforms.
  96.     m_nHeaderSize = (sizeof(CMemoryNode) + sizeof(double) - 1) & ~(sizeof(double) - 1);
  97. }
  98. CMediumBlockAllocator::~CMediumBlockAllocator()
  99. {
  100.     HX_RELEASE(m_pScheduler);
  101.     HeapMinimize();
  102.     HX_VECTOR_DELETE(m_ppBuckets);
  103.     HX_VECTOR_DELETE(m_pTimeStampArray);
  104.     HX_VECTOR_DELETE(m_pCountArray);
  105.     HX_DELETE(m_pMutex);
  106. }
  107. void CMediumBlockAllocator::SetScheduler(IUnknown* pUnk)
  108. {
  109.     if (m_pScheduler && m_hCallback)
  110.     {
  111. m_pScheduler->Remove(m_hCallback);
  112. m_hCallback = 0;
  113.     }
  114.     HX_RELEASE(m_pScheduler);
  115.     if (pUnk)
  116.     {
  117. pUnk->QueryInterface(IID_IHXScheduler, (void**)&m_pScheduler);
  118. if (m_pScheduler)
  119. {
  120.     m_hCallback = m_pScheduler->RelativeEnter((IHXCallback*)this, m_nCallbackTime);
  121. }
  122.     }
  123. }
  124. /****************************************************************************
  125. * Method:
  126. * IUnknown::QueryInterface
  127. * Purpose:
  128. * Implement this to export the interfaces supported by your 
  129. * object.
  130. *
  131. ****************************************************************************/
  132. STDMETHODIMP CMediumBlockAllocator::QueryInterface(REFIID riid, void** ppvObj)
  133. {
  134.     QInterfaceList qiList[] =
  135.         {
  136.             { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IMalloc*)this },
  137.             { GET_IIDHANDLE(IID_IMalloc), (IMalloc*)this },
  138.             { GET_IIDHANDLE(IID_IHXCallback), (IHXCallback*)this },
  139.         };
  140.     
  141.     return ::QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  142. }
  143. /****************************************************************************
  144. * Method:
  145. * IUnknown::AddRef
  146. * Purpose:
  147. * Everyone usually implements this the same... feel free to use
  148. * this implementation.
  149. *
  150. ****************************************************************************/
  151. STDMETHODIMP_(ULONG32) CMediumBlockAllocator::AddRef()
  152. {
  153.     return InterlockedIncrement(&m_lRefCount);
  154. }
  155. /****************************************************************************
  156. * Method:
  157. * IUnknown::Release
  158. * Purpose:
  159. * Everyone usually implements this the same... feel free to use
  160. * this implementation.
  161. *
  162. ****************************************************************************/
  163. STDMETHODIMP_(ULONG32) CMediumBlockAllocator::Release()
  164. {
  165.     if (InterlockedDecrement(&m_lRefCount) > 0)
  166.     {
  167. return m_lRefCount;
  168.     }
  169.     delete this;
  170.     return 0;
  171. }
  172. /****************************************************************************
  173. * Method:
  174. * IMalloc::Alloc
  175. * Purpose:
  176. * If there is a block of memory within the current pools
  177. * to satistify then it will be given, if there is no such 
  178. * object then we will ask the default memory allocator for 
  179. * it. 
  180. *
  181. ****************************************************************************/
  182. STDMETHODIMP_(void*) CMediumBlockAllocator::Alloc(UINT32 ulLength)
  183. {
  184.     m_pMutex->Lock();
  185.     void*     returnValue = NULL;
  186.     CMemoryNode*    pMemNode = NULL;
  187.     // figure out what bucket this belongs in
  188.     UINT32 bucketIndex = ulLength/m_nBucketSize;
  189.     if (ulLength> m_nMinBucketSize && bucketIndex < m_nNumberBuckets)
  190.     {
  191. if (m_ppBuckets[bucketIndex])
  192. {
  193.     pMemNode = m_ppBuckets[bucketIndex];
  194.     m_ppBuckets[bucketIndex] = pMemNode->m_pNext;
  195.     m_pCountArray[bucketIndex] = m_pCountArray[bucketIndex] -1;
  196.     m_pTimeStampArray[bucketIndex] = m_nCurrentTimeStamp;
  197.     returnValue = (void*) (((char*) (pMemNode)) + m_nHeaderSize);
  198. }
  199. if (!returnValue)
  200. {
  201.     pMemNode = (CMemoryNode*) new UCHAR[((bucketIndex+1)*m_nBucketSize + m_nHeaderSize - 1)];
  202.     if (pMemNode)
  203.     {
  204. pMemNode->m_nSize = (bucketIndex+1)* m_nBucketSize - 1;
  205. pMemNode->m_pNext = NULL;
  206. returnValue = (void*) ((char*)pMemNode + m_nHeaderSize);
  207.     }
  208. }
  209.     }
  210.     else
  211.     {
  212. pMemNode = (CMemoryNode*) new UCHAR[(ulLength+ m_nHeaderSize)];
  213. if (pMemNode)
  214. {
  215.     pMemNode->m_nSize = ulLength;
  216.     pMemNode->m_pNext = NULL;
  217.     returnValue = (void*) ((char*)pMemNode + m_nHeaderSize);
  218. }
  219.     }
  220.     m_pMutex->Unlock();
  221.     return returnValue;
  222. }
  223. /****************************************************************************
  224. * Method:
  225. * IMalloc::Free
  226. * Purpose:
  227. * Returns a given block of memory to the memory buckets 
  228. *
  229. ****************************************************************************/
  230. STDMETHODIMP_(void) CMediumBlockAllocator::Free(void* pMem)
  231. {
  232.     m_pMutex->Lock();
  233.     CMemoryNode* pMemNode   = (CMemoryNode*) (((char*)pMem) - m_nHeaderSize);
  234.     UINT32 bucketIndex = (pMemNode->m_nSize)/m_nBucketSize;
  235.     if (pMemNode->m_nSize > m_nMinBucketSize && bucketIndex < m_nNumberBuckets)
  236.     {
  237. m_pTimeStampArray[bucketIndex] = m_nCurrentTimeStamp;
  238. CMemoryNode* pBufferHead = m_ppBuckets[bucketIndex];
  239. m_pCountArray[bucketIndex] = m_pCountArray[bucketIndex]+1;
  240. if (pBufferHead)
  241. {
  242.     m_ppBuckets[bucketIndex] = pMemNode;
  243.     pMemNode->m_pNext = pBufferHead;
  244. }
  245. else
  246. {
  247.     m_ppBuckets[bucketIndex] = pMemNode;
  248.     pMemNode->m_pNext = NULL;
  249. }
  250.     }
  251.     else
  252.     {
  253. HX_DELETE(pMemNode);
  254.     }
  255.     m_pMutex->Unlock();
  256. }
  257. /****************************************************************************
  258. * Method:
  259. * IMalloc::Realloc
  260. * Purpose:
  261. * Incrediably stupid. Creates a new block and memcopies it.
  262. *
  263. ****************************************************************************/
  264. STDMETHODIMP_(void*) CMediumBlockAllocator::Realloc(void* pMem, UINT32 count)
  265. {
  266.     m_pMutex->Lock();
  267.     CMemoryNode* pMemNode   = (CMemoryNode*) ((char*)pMem - sizeof(CMemoryNode));
  268.     void* pNewMemory = Alloc(count);
  269.     if (pNewMemory)
  270.     {
  271. memcpy(pNewMemory, pMem, pMemNode->m_nSize); /* Flawfinder: ignore */
  272. Free(pMem);
  273.     }
  274.     m_pMutex->Unlock();
  275.     return pNewMemory;
  276. }
  277. /****************************************************************************
  278. * Method:
  279. * IMalloc::GetSize
  280. * Purpose:
  281. * Simply returns the size requested when the block was allocated.
  282. *
  283. ****************************************************************************/
  284. STDMETHODIMP_(UINT32) CMediumBlockAllocator::GetSize(void* pMem)
  285. {
  286.     CMemoryNode* pMemNode   = (CMemoryNode*) ((char*)pMem - m_nHeaderSize);
  287.     return pMemNode->m_nSize;
  288. }
  289. /****************************************************************************
  290. * Method:
  291. * IMalloc::DidAlloc
  292. * Purpose:
  293. * Have not thought of a nice way to do this.
  294. *
  295. ****************************************************************************/
  296. STDMETHODIMP_(BOOL) CMediumBlockAllocator::DidAlloc(void* pMem)
  297. {
  298.     return FALSE;
  299. }
  300. /****************************************************************************
  301. * Method:
  302. * IMalloc::HeapMinimize
  303. * Purpose:
  304. * Deletes all blocks within the free list.
  305. *
  306. ****************************************************************************/
  307. STDMETHODIMP_(void) CMediumBlockAllocator::HeapMinimize()
  308. {
  309.     m_pMutex->Lock();
  310.     CMemoryNode* pNode;
  311.     CMemoryNode* pTempNode;
  312.     for(UINT32 i = 0; i<m_nNumberBuckets; i++)
  313.     {
  314. pNode = m_ppBuckets[i];
  315. m_pCountArray[i] = 0;
  316. m_pTimeStampArray = 0;
  317. while (pNode)
  318. {
  319.     pTempNode = pNode;
  320.     pNode = pTempNode->m_pNext;
  321.     HX_DELETE(pTempNode);
  322. }
  323. m_ppBuckets[i] = NULL;
  324.     }
  325.     m_pMutex->Unlock();
  326. }
  327. /****************************************************************************
  328. * Method:
  329. * IHXCallback::Func
  330. * Purpose:
  331. * Resets the m_nCurrentTimeStamp to the granularity of 
  332. * m_nCallbackTime so we needn't call gettimeofday() all of the 
  333. * time. Also attempts to reduce the size of the free lists
  334. * if a certian tolerance has been exceeded.
  335. *
  336. ****************************************************************************/
  337. STDMETHODIMP
  338. CMediumBlockAllocator::Func()
  339. {
  340.     // every time through this function we must reset the current timestamp
  341.     m_nCurrentTimeStamp = HX_GET_TICKCOUNT();
  342.     // now if the current 
  343.     if (CALCULATE_ELAPSED_TICKS(m_nLastRelaxTime, m_nCurrentTimeStamp) > m_nRelaxTime)
  344.     {
  345. m_nLastRelaxTime = m_nCurrentTimeStamp;
  346. RelaxBuckets();
  347.     }
  348.     
  349.     m_hCallback = m_pScheduler->RelativeEnter((IHXCallback*)this, m_nCallbackTime);
  350.     return HXR_OK;
  351. }
  352. /****************************************************************************
  353. * Method:
  354. * CMediumBlockAllocator::Func
  355. * Purpose:
  356. * Helper function called by Func. Attempts to slowly reduce 
  357. * the size of the buckets if no one has used them in a while.
  358. *
  359. ****************************************************************************/
  360. void CMediumBlockAllocator::RelaxBuckets()
  361. {
  362.     // go through the heap look for places that have a list of nodes
  363.     // if the time stamp on that node is greater than relax time then 
  364.     // throw away a few items off of that head. 
  365.     m_pMutex->Lock();
  366.     for(UINT32 i = 0; i<m_nNumberBuckets; i++)
  367.     {
  368. CMemoryNode*  pListItem = m_ppBuckets[i];
  369. if (pListItem)
  370. {
  371.     if (CALCULATE_ELAPSED_TICKS(m_pTimeStampArray[i], m_nCurrentTimeStamp) > m_nGarbageTime)
  372.     {
  373. // find out how many nodes we have
  374. UINT32 nNodesToThrowAway = m_pCountArray[i]/m_nGarbageDivider;
  375. if (!nNodesToThrowAway)
  376. {
  377.     nNodesToThrowAway = 1;
  378. }
  379. m_pCountArray[i] -= nNodesToThrowAway;
  380. for (;nNodesToThrowAway; nNodesToThrowAway--)
  381. {
  382.     m_ppBuckets[i] = pListItem->m_pNext;
  383.     HX_DELETE(pListItem);
  384.     pListItem = m_ppBuckets[i];
  385. }
  386.     }
  387. }
  388.     }
  389.     m_pMutex->Unlock();
  390. }