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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: chxbufpl.h,v 1.1.1.1.46.1 2004/07/09 01:55:29 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 _HXBUFPL_H_
  50. #define _HXBUFPL_H_
  51. /****************************************************************************
  52.  *  Includes
  53.  */
  54. #include "hxtypes.h"
  55. #include "hxresult.h"
  56. #include "hxassert.h"
  57. #include "hxslist.h"
  58. typedef void (*BufferKillerFunc) (void* pBuffer);
  59. typedef ULONG32 (*BufferSizeFunc) (void* pBuffer);
  60. /****************************************************************************
  61.  *  CHXBufferPool
  62.  */
  63. class CHXBufferPool
  64. {
  65. public:
  66.     CHXBufferPool(BufferSizeFunc fpSize,
  67.   BufferKillerFunc fpKiller = NULL)
  68. : m_pMutex(NULL)
  69. , m_fpSize(fpSize)
  70. , m_fpKiller(fpKiller)
  71.     {
  72. #ifdef THREADS_SUPPORTED
  73. HXMutex::MakeMutex(m_pMutex);
  74. #else // THREADS_SUPPORTED
  75. HXMutex::MakeStubMutex(m_pMutex);
  76. #endif // THREADS_SUPPORTED
  77. HX_ASSERT(m_fpSize);
  78. HX_ASSERT(m_pMutex);
  79.     }
  80.     ~CHXBufferPool()
  81.     {
  82. Flush();
  83. HX_DELETE(m_pMutex);
  84.     }
  85.     void* Get(ULONG32 ulSize)
  86.     {
  87. void* pBuffer;
  88. m_pMutex->Lock();
  89. while (!m_FreeList.IsEmpty())
  90. {
  91.     pBuffer = m_FreeList.RemoveHead();
  92.     if (m_fpSize(pBuffer) >= ulSize)
  93.     {
  94. m_pMutex->Unlock();
  95. return pBuffer;
  96.     }
  97.     
  98.     if (m_fpKiller)
  99.     {
  100. m_fpKiller(pBuffer);
  101.     }
  102. }
  103. m_pMutex->Unlock();
  104. return NULL;
  105.     }
  106.     void* GetBestMatch(ULONG32 ulSize)
  107.     {
  108.         void* pBuffer = NULL;
  109.         m_pMutex->Lock();
  110.         if (!m_FreeList.IsEmpty())
  111.         {
  112.             UINT32  ulBufSize = 0,
  113.                     ulSmallest = -1,
  114.                     ulBest = -1;
  115.             
  116.             LISTPOSITION pos = m_FreeList.GetHeadPosition(),
  117.                          best = NULL,
  118.                          smallest = NULL;
  119.             for (int i=0; i<m_FreeList.GetCount(); i++)
  120.             {
  121.                 pBuffer = m_FreeList.GetAt(pos);
  122.                 ulBufSize = m_fpSize(pBuffer);
  123.                 if (ulBufSize >= ulSize)
  124.                 {
  125.                     if (ulBufSize - ulSize < ulBest)
  126.                     {
  127.                         ulBest = ulBufSize - ulSize;
  128.                         best = pos;
  129.                     }
  130.                 }
  131.                 if (ulBufSize < ulSmallest)
  132.                 {
  133.                     ulSmallest = ulBufSize;
  134.                     smallest = pos;
  135.                 }
  136.                 m_FreeList.GetNext(pos);
  137.             } 
  138.             // Return the buffer closest to the requested size
  139.             if (best)
  140.             {
  141.                 pBuffer = m_FreeList.GetAt(best);
  142.                 m_FreeList.RemoveAt(best);
  143.             }
  144.             // If we could not find a buffer to match the size,
  145.             // destroy the smallest and return NULL.
  146.             else
  147.             {
  148.                 pBuffer = m_FreeList.GetAt(smallest);
  149.                 m_FreeList.RemoveAt(smallest);
  150.                 if (m_fpKiller)
  151.                 {
  152.                     m_fpKiller(pBuffer);
  153.                 }
  154.                 pBuffer = NULL;
  155.             }
  156.         }
  157.         m_pMutex->Unlock();
  158.         return pBuffer;
  159.     }
  160.     
  161.     void Put(void* pBuffer)
  162.     {
  163. m_pMutex->Lock();
  164. m_FreeList.AddHead(pBuffer);
  165. m_pMutex->Unlock();
  166. return;
  167.     }
  168.     void Flush(void)
  169.     {
  170. void* pBuffer;
  171. m_pMutex->Lock();
  172. while (!m_FreeList.IsEmpty())
  173. {
  174.     pBuffer = m_FreeList.RemoveHead();
  175.     if (m_fpKiller)
  176.     {
  177. m_fpKiller(pBuffer);
  178.     }
  179. }
  180. m_pMutex->Unlock();
  181.     }
  182. private:
  183.     HXMutex* m_pMutex;
  184.     CHXSimpleList m_FreeList;
  185.     BufferSizeFunc m_fpSize;
  186.     BufferKillerFunc m_fpKiller;
  187. };
  188. #endif // _HXBUFPL_H_