servrsnd.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:8k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "debug.h"
  36. #include "hxcom.h"
  37. #include "hxtypes.h"
  38. #include "hxstring.h"
  39. #include "hxslist.h"
  40. #include "hxdeque.h"
  41. #include "hxmap.h"
  42. #include "hxengin.h"
  43. #include "ihxpckts.h"
  44. #include "basepkt.h"
  45. #include "servrsnd.h"
  46. #include "rtspif.h"
  47. #include "rtsptran.h"
  48. #include "hxheap.h"
  49. #ifdef _DEBUG
  50. #undef HX_THIS_FILE
  51. static const char HX_THIS_FILE[] = __FILE__;
  52. #endif
  53. RTSPResendBuffer::RTSPResendBuffer
  54. (
  55.     UINT32 bufferDuration,
  56.     UINT32 maxBufferDuration,
  57.     UINT32 growthRate,
  58.     UINT32 wrapSequenceNumber
  59. ) : m_bufferDuration(bufferDuration),
  60.     m_maxBufferDuration(bufferDuration), // XXXGo Is this right?
  61.     m_growthRate(growthRate),
  62.     m_uFirstSequenceNumber(0),
  63.     m_uForceSequenceNumber(0),
  64.     m_ulResendSuccess(0),
  65.     m_ulResendFailure(0),
  66.     m_wrapSequenceNumber(wrapSequenceNumber),
  67.     m_bSetFirstSequenceNumber(FALSE)
  68. {
  69.     m_pPacketDeque = new HX_deque;
  70. }
  71. RTSPResendBuffer::~RTSPResendBuffer()
  72. {
  73.     Clear();
  74.     delete m_pPacketDeque;
  75. }
  76. void
  77. RTSPResendBuffer::Clear()
  78. {
  79.     HX_deque::Iterator i;
  80.     BasePacket* pPacket;
  81.     while(!m_pPacketDeque->empty())
  82.     {
  83. pPacket = (BasePacket*)m_pPacketDeque->pop_front();
  84. if (pPacket)
  85. {
  86.     pPacket->Release();
  87. }
  88. m_uFirstSequenceNumber++;
  89. if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  90. {
  91.     m_uFirstSequenceNumber = 0;
  92. }
  93.     }
  94. }
  95. void
  96. RTSPResendBuffer::Add(BasePacket* pPacket)
  97. {
  98.     /* If this hasn't been set yet, set it (multicast) */
  99.     if (m_bSetFirstSequenceNumber == FALSE)
  100.     {
  101. SetFirstSequenceNumber(pPacket->m_uSequenceNumber);
  102.     }
  103.     /*
  104.      * If the sequence number is already in the queue, then this is
  105.      * a resend packet
  106.      */
  107.     if (Find(pPacket->m_uSequenceNumber, FALSE))
  108.     {
  109.         return;
  110.     }
  111.     pPacket->AddRef();
  112.     UINT32 index = GetPacketIndex(pPacket->GetSequenceNumber());
  113.     while (m_pPacketDeque->size() < index)
  114.     {
  115. m_pPacketDeque->push_back(0);
  116.     }
  117.     m_pPacketDeque->push_back(pPacket);
  118. #ifdef DEBUG
  119.     UINT32 uTestIndex = GetPacketIndex(pPacket->GetSequenceNumber());
  120.     BasePacket* pTestPacket = (BasePacket*)(*m_pPacketDeque)[uTestIndex];
  121.     /* GoGoGadget Short-Circuit Boolean Eval! */
  122.     HX_ASSERT(!pTestPacket ||
  123.               pTestPacket->GetSequenceNumber() == pPacket->GetSequenceNumber());
  124. #endif
  125. }
  126. BasePacket*
  127. RTSPResendBuffer::Find(UINT16 uSeqNo, BOOL bIsNAK)
  128. {
  129.     BasePacket* pPacket;
  130.     UINT32 index = GetPacketIndex(uSeqNo);
  131.     /*
  132.      * If the packet is not found, then the resend buffer is not big
  133.      * enough, so grow it
  134.      */
  135.     if(((UINT32)index) >= m_pPacketDeque->size())
  136.     {
  137. /*
  138.  * Only want to grow the buffer if a packet that has been NAKed
  139.  * was removed too soon
  140.  */
  141. if (bIsNAK)
  142. {
  143.     Grow();
  144.     m_ulResendFailure++;
  145. }
  146. return 0;
  147.     }
  148.     pPacket = (BasePacket*)(*m_pPacketDeque)[index];
  149.     if (bIsNAK)
  150.     {
  151. m_ulResendSuccess++;
  152.     }
  153.     return pPacket;
  154. }
  155. void
  156. RTSPResendBuffer::Remove(UINT16 uSeqNo)
  157. {
  158.     BasePacket* pPacket = Find(uSeqNo, FALSE);
  159.     if (pPacket)
  160.     {
  161. (*m_pPacketDeque)[GetPacketIndex(uSeqNo)] = 0;
  162. pPacket->Release();
  163.     }
  164. }
  165. void
  166. RTSPResendBuffer::Grow()
  167. {
  168.     if (m_bufferDuration + m_growthRate <= m_maxBufferDuration)
  169.     {
  170. m_bufferDuration += m_growthRate;
  171.     }
  172. }
  173. void
  174. RTSPResendBuffer::DiscardExpiredPackets(BOOL bForce, UINT32 uParameter)
  175. {
  176.     UINT32 uLastTimeStamp = 0;
  177.     if (bForce)
  178.     {
  179. m_uForceSequenceNumber = (UINT16)uParameter;
  180.     }
  181.     else
  182.     {
  183. uLastTimeStamp = uParameter;
  184.     }
  185.     BasePacket* pPacket;
  186.     while(!m_pPacketDeque->empty())
  187.     {
  188. pPacket = (BasePacket*)m_pPacketDeque->front();
  189. /*
  190.  * The packet may already have been removed by an ACK or not
  191.  * even entered if it had been a lost packet
  192.  */
  193. if (!pPacket)
  194. {
  195.     m_pPacketDeque->pop_front();
  196.     m_uFirstSequenceNumber++;
  197.     if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  198.     {
  199. m_uFirstSequenceNumber = 0;
  200.     }
  201.     continue;
  202. }
  203. /*
  204.  * 1) If we are not forcing the discard, quit if the packet
  205.  *    A) has not been in the buffer long enough or
  206.  *    B) is reliable
  207.  * 2) If we are forcing the discard, quit when the loop reaches
  208.  *    the discard sequence number
  209.  */
  210. if ((!bForce &&
  211.      (uLastTimeStamp - pPacket->GetTime() <= m_bufferDuration ||
  212.       pPacket->m_uPriority == 10)) ||
  213.     (bForce && GetForceIndex(m_uFirstSequenceNumber) < MAX_DEQUE_SIZE))
  214. {
  215.     break;
  216. }
  217. pPacket = (BasePacket*)m_pPacketDeque->pop_front();
  218. pPacket->Release();
  219. m_uFirstSequenceNumber++;
  220. if (m_uFirstSequenceNumber == m_wrapSequenceNumber)
  221. {
  222.     m_uFirstSequenceNumber = 0;
  223. }
  224.     }
  225. }
  226. void
  227. RTSPResendBuffer::SetFirstSequenceNumber(UINT16 uSeqNo)
  228. {
  229.     /*
  230.      * Only allow the first sequence number to be set once
  231.      */
  232.     if (!m_bSetFirstSequenceNumber)
  233.     {
  234. m_bSetFirstSequenceNumber = TRUE;
  235. m_uFirstSequenceNumber = uSeqNo;
  236.     }
  237. }
  238. UINT32
  239. RTSPResendBuffer::GetIndex(UINT32 uBaseSequenceNumber, UINT16 uSeqNo)
  240. {
  241.     INT32 index = uSeqNo - uBaseSequenceNumber;
  242.     if(index < 0)
  243.     {
  244. index = m_wrapSequenceNumber - uBaseSequenceNumber + uSeqNo;
  245.     }
  246.     return (UINT32)index;
  247. }
  248. HX_RESULT
  249. RTSPResendBuffer::UpdateStatistics(UINT32& ulResendSuccess,
  250.                                    UINT32& ulResendFailure)
  251. {
  252.     ulResendSuccess = m_ulResendSuccess;
  253.     ulResendFailure = m_ulResendFailure;
  254.     return HXR_OK;
  255. }
  256. void
  257. RTSPResendBuffer::SetBufferDepth(UINT32 uMilliseconds)
  258. {
  259.     m_bufferDuration = uMilliseconds;
  260.     if (m_maxBufferDuration < uMilliseconds)
  261.     {
  262. m_maxBufferDuration = uMilliseconds;
  263.     }
  264. }
  265. void
  266. RTSPResendBuffer::SetMaxBufferDepth(UINT32 uMilliseconds)
  267. {
  268.     if (m_maxBufferDuration < uMilliseconds)
  269.     {    
  270. m_maxBufferDuration = uMilliseconds;
  271.     }
  272.     else
  273.     {
  274. HX_ASSERT(FALSE);
  275.     }
  276. }