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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: cringbuf.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 _CRINGBUF_
  50. #define _CRINGBUF_
  51. /****************************************************************************
  52.  *  Includes
  53.  */
  54. #define RNGBF_FULL_SIZE     0x7FFFFFFF
  55. /****************************************************************************
  56.  *  Includes
  57.  */
  58. #include "hxtypes.h"
  59. #include "hxresult.h"
  60. #include "hxassert.h"
  61. /****************************************************************************
  62.  *  CRingBuffer
  63.  */
  64. class CRingBuffer
  65. {
  66. public:
  67.     CRingBuffer(ULONG32 ulSize)
  68. : m_pDataStart(NULL)
  69. , m_pDataEnd(NULL)
  70. , m_pHead(NULL)
  71. , m_pTail(NULL)
  72. , m_ulSize(ulSize)
  73. , m_lMaxCount((LONG32) ulSize)
  74.     {
  75. HX_ASSERT(ulSize);
  76. m_pDataStart = new void* [ulSize + 1];
  77. HX_ASSERT(m_pDataStart);
  78. m_pDataEnd = &(m_pDataStart[ulSize]);
  79. m_pHead = m_pDataStart;
  80. m_pTail = m_pHead;
  81.     }
  82.     ~CRingBuffer()
  83.     {
  84. delete [] m_pDataStart;
  85.     }
  86.     BOOL Put(void* pData)
  87.     {
  88. if (Count() < m_lMaxCount)
  89. {
  90.     *m_pHead = pData;
  91.     m_pHead = Advance(m_pHead);
  92.     
  93.     return TRUE;
  94. }
  95. return FALSE;
  96.     }
  97.     void* Get(void)
  98.     {
  99. void* pData = NULL;
  100. if (m_pTail != m_pHead)
  101. {
  102.     pData = *m_pTail;
  103.     m_pTail = Advance(m_pTail);
  104. }
  105. return pData;
  106.     }
  107.     void* Peek(void)
  108.     {
  109. void* pData = NULL;
  110. if (m_pTail != m_pHead)
  111. {
  112.     pData = *m_pTail;
  113. }
  114. return pData;
  115.     }
  116.     LONG32 Count(void)
  117.     {
  118. LONG32 lCount = m_pHead - m_pTail;
  119. if (lCount < 0)
  120. {
  121.     lCount += (m_ulSize + 1);
  122. }
  123. return lCount;
  124.     }
  125.     BOOL IsFull(void)
  126.     {
  127. return (Count() >= m_lMaxCount);
  128.     }
  129.     void SetMaxCount(LONG32 lMaxCount)
  130.     {
  131. if (lMaxCount <= ((LONG32) m_ulSize))
  132. {
  133.     m_lMaxCount = lMaxCount;
  134. }
  135. else
  136. {
  137.     m_lMaxCount = (LONG32) m_ulSize;
  138. }
  139.     }
  140.     LONG32 MaxCount(void)
  141.     {
  142. return m_lMaxCount;
  143.     }
  144.     ULONG32 Size(void)
  145.     {
  146. return m_ulSize;
  147.     }
  148. private:
  149.     void** Advance(void** pDataPtr)
  150.     {
  151. if (pDataPtr != m_pDataEnd)
  152. {
  153.     pDataPtr++;
  154. }
  155. else
  156. {
  157.     pDataPtr = m_pDataStart;
  158. }
  159. return pDataPtr;
  160.     }
  161.     ULONG32 m_ulSize;
  162.     LONG32 m_lMaxCount;
  163.     void** m_pDataStart;
  164.     void** m_pDataEnd;
  165.     void** m_pHead;
  166.     void** m_pTail;
  167. };
  168. #endif // _CRINGBUF_