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

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 "hxcom.h"
  36. #include <stdlib.h>
  37. #include "hxtypes.h"
  38. #include "hxstring.h"
  39. #include "hxslist.h"
  40. #include "hxengin.h"
  41. #include "ihxpckts.h"
  42. #include "chxpckts.h"
  43. #include "mimehead.h"
  44. #include "mimescan.h"
  45. #include "timerep.h"
  46. #include "basepkt.h"
  47. #include "rtspbase.h"
  48. #include "dbcs.h" // for HXIsEqual
  49. #include "trmimemp.h"
  50. #include "hxheap.h"
  51. #ifdef _DEBUG
  52. #undef HX_THIS_FILE
  53. static const char HX_THIS_FILE[] = __FILE__;
  54. #endif
  55. const RTSPTransportMimeType RTSPTransportMimeTypeTable[] =
  56. {
  57.     { RTSP_TR_RDT_MCAST, RTSP_SUBTR_MCAST, "x-real-rdt/mcast" },
  58.     { RTSP_TR_RDT_UDP, RTSP_SUBTR_UDP, "x-real-rdt/udp" },
  59.     { RTSP_TR_RDT_TCP, RTSP_SUBTR_TCP, "x-real-rdt/tcp" },
  60.     { RTSP_TR_TNG_UDP, RTSP_SUBTR_UDP, "x-pn-tng/udp" },
  61.     { RTSP_TR_TNG_TCP, RTSP_SUBTR_TCP, "x-pn-tng/tcp" },
  62.     { RTSP_TR_RTP_UDP,     RTSP_SUBTR_NONE, "RTP/AVP;unicast" },
  63.     { RTSP_TR_RTP_UDP,     RTSP_SUBTR_UDP, "RTP/AVP/UDP;unicast" },
  64.     { RTSP_TR_RTP_MCAST,    RTSP_SUBTR_NONE, "RTP/AVP;multicast" },
  65.     { RTSP_TR_RTP_MCAST,    RTSP_SUBTR_MCAST, "RTP/AVP/UDP;multicast" },
  66.     { RTSP_TR_RTP_MCAST,    RTSP_SUBTR_NONE, "RTP/AVP" },
  67.     { RTSP_TR_RTP_MCAST,    RTSP_SUBTR_NONE, "RTP/AVP/UDP" },
  68.     { RTSP_TR_RTP_TCP,     RTSP_SUBTR_TCP, "RTP/AVP/TCP;unicast" },
  69.     { RTSP_TR_RTP_TCP,     RTSP_SUBTR_TCP, "RTP/AVP/TCP" },
  70.     { RTSP_TR_NULLSET,      RTSP_SUBTR_NULLSET, "x-real-nullsetup" },
  71.     { RTSP_TR_BCNG_UDP,     RTSP_SUBTR_UDP,     "x-real-bcng/udp" },
  72.     { RTSP_TR_BCNG_MCAST,   RTSP_SUBTR_MCAST,   "x-real-bcng/mcast" },
  73.     { RTSP_TR_BCNG_TCP,     RTSP_SUBTR_TCP,     "x-real-bcng/tcp" }
  74. };
  75. const char*
  76. RTSPTransportMimeMapper::getTransportMimeType(RTSPTransportTypeEnum tType)
  77. {
  78.     int tabSize = sizeof(RTSPTransportMimeTypeTable) /
  79.     sizeof(RTSPTransportMimeTypeTable[0]);
  80.     for (int i = 0; i < tabSize; ++i)
  81.     {
  82. if (RTSPTransportMimeTypeTable[i].m_lTransportType == tType)
  83. {
  84.     return RTSPTransportMimeTypeTable[i].m_pMimeType;
  85. }
  86.     }    
  87.     return "";
  88. }
  89. RTSPTransportTypeEnum
  90. RTSPTransportMimeMapper::getTransportType(const char* pMimeType)
  91. {
  92.     int tabSize = sizeof(RTSPTransportMimeTypeTable) /
  93.         sizeof(RTSPTransportMimeTypeTable[0]);
  94.     for (int i=0; i<tabSize; ++i)
  95.     {
  96. if (strcasecmp(RTSPTransportMimeTypeTable[i].m_pMimeType,
  97.                        pMimeType) == 0)
  98. {
  99.     return RTSPTransportMimeTypeTable[i].m_lTransportType;
  100. }
  101.     }    
  102.     return RTSP_TR_NONE;
  103. }