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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: servrsnd.cpp,v 1.3.36.1 2004/07/09 02:04:52 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 "debug.h"
  50. #include "hxcom.h"
  51. #include "hxtypes.h"
  52. #include "hxstring.h"
  53. #include "hxslist.h"
  54. #include "hxdeque.h"
  55. #include "hxmap.h"
  56. #include "hxengin.h"
  57. #include "ihxpckts.h"
  58. #include "basepkt.h"
  59. #include "servrsnd.h"
  60. #include "rtspif.h"
  61. #include "rtsptran.h"
  62. #include "hxheap.h"
  63. #ifdef _DEBUG
  64. #undef HX_THIS_FILE
  65. static const char HX_THIS_FILE[] = __FILE__;
  66. #endif
  67. RTSPResendBuffer::RTSPResendBuffer
  68. (
  69.     UINT32 bufferDuration,
  70.     UINT32 maxBufferDuration,
  71.     UINT32 growthRate,
  72.     UINT32 wrapSequenceNumber
  73. ) : m_bufferDuration(bufferDuration),
  74.     m_maxBufferDuration(bufferDuration), // XXXGo Is this right?
  75.     m_growthRate(growthRate),
  76.     m_uFirstSequenceNumber(0),
  77.     m_uForceSequenceNumber(0),
  78.     m_ulResendSuccess(0),
  79.     m_ulResendFailure(0),
  80.     m_wrapSequenceNumber(wrapSequenceNumber),
  81.     m_bSetFirstSequenceNumber(FALSE)
  82. {
  83.     m_pPacketDeque = new HX_deque;
  84. }
  85. RTSPResendBuffer::~RTSPResendBuffer()
  86. {
  87.     Clear();
  88.     delete m_pPacketDeque;
  89. }
  90. void
  91. RTSPResendBuffer::Clear()
  92. {
  93.     HX_deque::Iterator i;
  94.     BasePacket* pPacket;
  95.     while(!m_pPacketDeque->empty())
  96.     {
  97. pPacket = (BasePacket*)m_pPacketDeque->pop_front();
  98. if (pPacket)
  99. {
  100.     pPacket->Release();
  101. }
  102. m_uFirstSequenceNumber++;
  103. if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  104. {
  105.     m_uFirstSequenceNumber = 0;
  106. }
  107.     }
  108. }
  109. void
  110. RTSPResendBuffer::Add(BasePacket* pPacket)
  111. {
  112.     /* If this hasn't been set yet, set it (multicast) */
  113.     if (m_bSetFirstSequenceNumber == FALSE)
  114.     {
  115. SetFirstSequenceNumber(pPacket->m_uSequenceNumber);
  116.     }
  117.     /*
  118.      * If the sequence number is already in the queue, then this is
  119.      * a resend packet
  120.      */
  121.     if (Find(pPacket->m_uSequenceNumber, FALSE))
  122.     {
  123.         return;
  124.     }
  125.     pPacket->AddRef();
  126.     UINT32 index = GetPacketIndex(pPacket->GetSequenceNumber());
  127.     while (m_pPacketDeque->size() < index)
  128.     {
  129. m_pPacketDeque->push_back(0);
  130.     }
  131.     m_pPacketDeque->push_back(pPacket);
  132. #ifdef DEBUG
  133.     UINT32 uTestIndex = GetPacketIndex(pPacket->GetSequenceNumber());
  134.     BasePacket* pTestPacket = (BasePacket*)(*m_pPacketDeque)[uTestIndex];
  135.     /* GoGoGadget Short-Circuit Boolean Eval! */
  136.     HX_ASSERT(!pTestPacket ||
  137.               pTestPacket->GetSequenceNumber() == pPacket->GetSequenceNumber());
  138. #endif
  139. }
  140. BasePacket*
  141. RTSPResendBuffer::Find(UINT16 uSeqNo, BOOL bIsNAK)
  142. {
  143.     BasePacket* pPacket;
  144.     UINT32 index = GetPacketIndex(uSeqNo);
  145.     /*
  146.      * If the packet is not found, then the resend buffer is not big
  147.      * enough, so grow it
  148.      */
  149.     if(((UINT32)index) >= m_pPacketDeque->size())
  150.     {
  151. /*
  152.  * Only want to grow the buffer if a packet that has been NAKed
  153.  * was removed too soon
  154.  */
  155. if (bIsNAK)
  156. {
  157.     Grow();
  158.     m_ulResendFailure++;
  159. }
  160. return 0;
  161.     }
  162.     pPacket = (BasePacket*)(*m_pPacketDeque)[index];
  163.     if (bIsNAK)
  164.     {
  165. m_ulResendSuccess++;
  166.     }
  167.     return pPacket;
  168. }
  169. void
  170. RTSPResendBuffer::Remove(UINT16 uSeqNo)
  171. {
  172.     BasePacket* pPacket = Find(uSeqNo, FALSE);
  173.     if (pPacket)
  174.     {
  175. (*m_pPacketDeque)[GetPacketIndex(uSeqNo)] = 0;
  176. pPacket->Release();
  177.     }
  178. }
  179. void
  180. RTSPResendBuffer::Grow()
  181. {
  182.     if (m_bufferDuration + m_growthRate <= m_maxBufferDuration)
  183.     {
  184. m_bufferDuration += m_growthRate;
  185.     }
  186. }
  187. void
  188. RTSPResendBuffer::DiscardExpiredPackets(BOOL bForce, UINT32 uParameter)
  189. {
  190.     UINT32 uLastTimeStamp = 0;
  191.     if (bForce)
  192.     {
  193. m_uForceSequenceNumber = (UINT16)uParameter;
  194.     }
  195.     else
  196.     {
  197. uLastTimeStamp = uParameter;
  198.     }
  199.     BasePacket* pPacket;
  200.     while(!m_pPacketDeque->empty())
  201.     {
  202. pPacket = (BasePacket*)m_pPacketDeque->front();
  203. /*
  204.  * The packet may already have been removed by an ACK or not
  205.  * even entered if it had been a lost packet
  206.  */
  207. if (!pPacket)
  208. {
  209.     m_pPacketDeque->pop_front();
  210.     m_uFirstSequenceNumber++;
  211.     if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  212.     {
  213. m_uFirstSequenceNumber = 0;
  214.     }
  215.     continue;
  216. }
  217. /*
  218.  * 1) If we are not forcing the discard, quit if the packet
  219.  *    A) has not been in the buffer long enough or
  220.  *    B) is reliable
  221.  * 2) If we are forcing the discard, quit when the loop reaches
  222.  *    the discard sequence number
  223.  */
  224. if ((!bForce &&
  225.      (uLastTimeStamp - pPacket->GetTime() <= m_bufferDuration ||
  226.       pPacket->m_uPriority == 10)) ||
  227.     (bForce && GetForceIndex(m_uFirstSequenceNumber) < MAX_DEQUE_SIZE))
  228. {
  229.     break;
  230. }
  231. pPacket = (BasePacket*)m_pPacketDeque->pop_front();
  232. pPacket->Release();
  233. m_uFirstSequenceNumber++;
  234. if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  235. {
  236.     m_uFirstSequenceNumber = 0;
  237. }
  238.     }
  239. }
  240. void
  241. RTSPResendBuffer::SetFirstSequenceNumber(UINT16 uSeqNo)
  242. {
  243.     /*
  244.      * Only allow the first sequence number to be set once
  245.      */
  246.     if (!m_bSetFirstSequenceNumber)
  247.     {
  248. m_bSetFirstSequenceNumber = TRUE;
  249. m_uFirstSequenceNumber = uSeqNo;
  250.     }
  251. }
  252. UINT32
  253. RTSPResendBuffer::GetIndex(UINT32 uBaseSequenceNumber, UINT16 uSeqNo)
  254. {
  255.     INT32 index = uSeqNo - uBaseSequenceNumber;
  256.     if(index < 0)
  257.     {
  258. index = m_wrapSequenceNumber - uBaseSequenceNumber + uSeqNo;
  259.     }
  260.     return (UINT32)index;
  261. }
  262. HX_RESULT
  263. RTSPResendBuffer::UpdateStatistics(UINT32& ulResendSuccess,
  264.                                    UINT32& ulResendFailure)
  265. {
  266.     ulResendSuccess = m_ulResendSuccess;
  267.     ulResendFailure = m_ulResendFailure;
  268.     return HXR_OK;
  269. }
  270. void
  271. RTSPResendBuffer::SetBufferDepth(UINT32 uMilliseconds)
  272. {
  273.     m_bufferDuration = uMilliseconds;
  274.     if (m_maxBufferDuration < uMilliseconds)
  275.     {
  276. m_maxBufferDuration = uMilliseconds;
  277.     }
  278. }
  279. void
  280. RTSPResendBuffer::SetMaxBufferDepth(UINT32 uMilliseconds)
  281. {
  282.     if (m_maxBufferDuration < uMilliseconds)
  283.     {    
  284. m_maxBufferDuration = uMilliseconds;
  285.     }
  286.     else
  287.     {
  288. HX_ASSERT(FALSE);
  289.     }
  290. }