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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: pkthndlr.cpp,v 1.4.20.1 2004/07/09 02:04:33 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 "hxtypes.h"
  50. #include "hxresult.h"
  51. #include "hxcom.h"  
  52. #include "hlxclib/string.h"
  53. #include "ihxpckts.h"
  54. #include "hxassert.h"
  55. #include "rtpwrap.h"
  56. #include "pkthndlr.h"
  57. RTCPPacker::RTCPPacker()
  58.     : m_pReport(NULL)
  59.     , m_pSDES(NULL)
  60.     , m_pBYE(NULL)
  61.     , m_pAPP(NULL)
  62. {
  63. }
  64. HX_RESULT
  65. RTCPPacker::Set(RTCPPacket* pPkt)
  66. {
  67.     HX_ASSERT(pPkt);
  68.     switch(pPkt->packet_type)
  69.     {
  70.     case RTCP_SR:
  71. HX_ASSERT(!m_pReport);
  72. m_pReport = pPkt;
  73. break;
  74.     case RTCP_RR:
  75. HX_ASSERT(!m_pReport);
  76.      m_pReport = pPkt;
  77. break;
  78.     case RTCP_SDES:
  79. m_pSDES = pPkt;
  80. break;
  81.     case RTCP_BYE:
  82. m_pBYE = pPkt;
  83. break;
  84.     case RTCP_APP:
  85. m_pAPP = pPkt;
  86. break;
  87.     default:
  88. HX_ASSERT(!"RTCPPacker::Set():  Don't know this packet type");
  89. return HXR_FAIL;
  90.     }
  91.     return HXR_OK;
  92. }
  93. void
  94. RTCPPacker::PackOne(RTCPPacket* pPkt, REF(UCHAR*) pc, REF(UINT32) ulPackedLen)
  95. {
  96.     HX_ASSERT(pPkt && pc);
  97.     pc = pPkt->pack(pc, ulPackedLen);    
  98. }
  99. /*
  100. *   SR or RR must have been set
  101. *   SDES must have been set
  102. */   
  103. HX_RESULT
  104. RTCPPacker::Pack(REF(IHXBuffer*) pBuf)
  105. {    
  106.     HX_ASSERT(m_pReport);
  107.     HX_ASSERT(m_pSDES);
  108.     HX_ASSERT(pBuf); // needs to be an object
  109.     UINT32 ulBufSize = (m_pReport->length + 1) * 4;
  110.     ulBufSize += (m_pSDES->length + 1) * 4;
  111.     if (m_pBYE)
  112.     {
  113. ulBufSize += (m_pBYE->length + 1) * 4;
  114.     }
  115.     if (m_pAPP)
  116.     {
  117. ulBufSize += (m_pAPP->length + 1) * 4;
  118.     }
  119.     // now pack!
  120.     pBuf->SetSize(ulBufSize);
  121.     UCHAR* pc = pBuf->GetBuffer();
  122.     UINT32 ulPackedLen = 0;
  123.     PackOne(m_pReport, pc, ulPackedLen);
  124.     HX_ASSERT((((UINT32)m_pReport->length + 1) * 4) == ulPackedLen);
  125.     PackOne(m_pSDES, pc, ulPackedLen);
  126.     HX_ASSERT((((UINT32)m_pSDES->length + 1) * 4) == ulPackedLen);
  127.     if (m_pAPP)
  128.     {
  129. PackOne(m_pAPP, pc, ulPackedLen);
  130. HX_ASSERT((((UINT32)m_pAPP->length + 1) * 4) == ulPackedLen);
  131.     }
  132.     /* BYE pkt needs to be the last pkt! */
  133.     if (m_pBYE)
  134.     {    
  135. PackOne(m_pBYE, pc, ulPackedLen);
  136. HX_ASSERT((((UINT32)m_pBYE->length + 1) * 4) == ulPackedLen);
  137.     }
  138.     return HXR_OK;
  139. }
  140. RTCPUnPacker::RTCPUnPacker()
  141. {
  142.     /* nothing to do */
  143. }
  144. /*
  145. *   if there are left over pkts in the list, delete them.
  146. */
  147. RTCPUnPacker::~RTCPUnPacker()
  148. {
  149.     if (!m_PktList.IsEmpty())
  150.     {
  151. CHXSimpleList::Iterator i;
  152. for (i = m_PktList.Begin(); i != m_PktList.End(); ++i)
  153. {
  154.     delete (RTCPPacket*)(*i);
  155. }
  156.     }
  157.     HX_ASSERT(m_PktList.IsEmpty());
  158. }
  159. /*
  160. *   Get a pkt in the head of the list.  Caller is responsible of deleting it
  161. */
  162. HX_RESULT
  163. RTCPUnPacker::Get(REF(RTCPPacket*) pPkt)
  164. {
  165.     if (m_PktList.IsEmpty())
  166.     {
  167. return HXR_FAIL;
  168.     }
  169.     pPkt = (RTCPPacket*)m_PktList.RemoveHead();    
  170.     HX_ASSERT(pPkt);
  171.     return HXR_OK;
  172. }
  173. /*
  174. *   RTCPPacket will be created for each pkt in this compound pkt.
  175. *   Caller is responsible of freeing them
  176. */
  177. HX_RESULT
  178. RTCPUnPacker::UnPack(IHXBuffer* pCompound)
  179. {
  180.     if (HXR_OK != Validate(pCompound))
  181.     {
  182. return HXR_FAIL;
  183.     }
  184.     
  185.     BYTE* pFirst = pCompound->GetBuffer();
  186.     BYTE* pNext = pFirst;
  187.     RTCPPacket* pPkt = NULL;
  188.     
  189.     while (pNext && pNext < (pFirst + pCompound->GetSize()))
  190.     {
  191. pPkt = new RTCPPacket();
  192. pNext = pPkt->unpack(pNext, (pFirst + pCompound->GetSize()) - pNext);
  193. m_PktList.AddTail(pPkt);
  194.     }
  195.     return HXR_OK;
  196. }
  197. /*
  198. *   Copied from the RFC with a feeling...
  199. */
  200. HX_RESULT
  201. RTCPUnPacker::Validate(IHXBuffer* pCompound)
  202. {
  203.     HX_ASSERT(pCompound);
  204.     
  205.     UINT32 ulLen = pCompound->GetSize();
  206.     BYTE* pc = pCompound->GetBuffer();
  207.     BYTE* end = pc + ulLen;
  208.     BYTE* pcTemp;    
  209.     UINT16 unPktLen = 0;
  210.     UINT8  uchVer = 0;
  211.     do
  212.     {
  213. pcTemp = pc;
  214. uchVer = (*pcTemp++ & 0xc0) >> 6;
  215. *pcTemp++;  // this is type
  216. unPktLen = *pcTemp++ << 8;
  217. unPktLen |= *pcTemp++;
  218. pc = (pc + ((unPktLen + 1) * 4));
  219.     } while (pc < end && 2 == uchVer);
  220.     
  221.     if (pc != end)
  222.     {
  223. /* something is wrong */
  224. HX_ASSERT(!"RTCPUnPacker::Validate() failed");
  225. return HXR_FAIL;
  226.     }
  227.     return HXR_OK;
  228. }