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

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 "hlxclib/stdlib.h"
  36. //#include "hlxclib/stdio.h"
  37. #include "hxtypes.h"
  38. #include "hxcom.h"
  39. #include "ihxpckts.h"
  40. #include "chxpckts.h"
  41. #include "hxslist.h"
  42. #include "hxstrutl.h"
  43. #include "rtsputil.h"
  44. #include "rtspprop.h"
  45. #include "hxheap.h"
  46. #ifdef _DEBUG
  47. #undef HX_THIS_FILE
  48. static const char HX_THIS_FILE[] = __FILE__;
  49. #endif
  50. /*
  51.  * RTSPProperty methods
  52.  */
  53. RTSPProperty::RTSPProperty(const char* pName, INT32 propType):
  54.     m_propType(propType)
  55. {
  56.     m_pName = new char[strlen(pName)+1];
  57.     strcpy(m_pName, pName); /* Flawfinder: ignore */
  58. }
  59. RTSPProperty::~RTSPProperty()
  60. {
  61.     delete[] m_pName;
  62. }
  63. const char*
  64. RTSPProperty::getName()
  65. {
  66.     return m_pName;
  67. }
  68. INT32
  69. RTSPProperty::getType()
  70. {
  71.     return m_propType;
  72. }
  73. RTSPIntegerProperty::RTSPIntegerProperty(const char* pName,
  74.     INT32 value): 
  75.     RTSPProperty(pName, PROP_INTEGER),
  76.     m_value(value)
  77. {
  78. }
  79. RTSPIntegerProperty::~RTSPIntegerProperty()
  80. {
  81. }
  82. INT32
  83. RTSPIntegerProperty::getValue()
  84. {
  85.     return m_value;
  86. }
  87.     
  88. RTSPBufferProperty::RTSPBufferProperty(const char* pName,
  89.     IHXBuffer* pBuffer):
  90.     RTSPProperty(pName, PROP_BUFFER)
  91. {
  92.     pBuffer->AddRef();
  93.     m_pValue = pBuffer;
  94. }
  95. RTSPBufferProperty::~RTSPBufferProperty()
  96. {
  97.     if(m_pValue)
  98.     {
  99. m_pValue->Release();
  100.     }
  101. }
  102. IHXBuffer*
  103. RTSPBufferProperty::getValue()
  104. {
  105.     return m_pValue;
  106. }
  107. RTSPStringProperty::RTSPStringProperty(const char* pName,
  108.     const char* pValue):
  109.     RTSPProperty(pName, PROP_STRING),
  110.     m_value(pValue)
  111. {
  112. }
  113. RTSPStringProperty::~RTSPStringProperty()
  114. {
  115. }
  116. const char*
  117. RTSPStringProperty::getValue()
  118. {
  119.     return m_value;
  120. }
  121. RTSPPropertyList::RTSPPropertyList()
  122. {
  123.     m_pPropertyList = new CHXSimpleList;
  124. }
  125. RTSPPropertyList::~RTSPPropertyList()
  126. {
  127.     RTSPProperty* pProp = getFirstProperty();
  128.     while(pProp)
  129.     {
  130. delete pProp;
  131. pProp = getNextProperty();
  132.     }
  133.     m_pPropertyList->RemoveAll();
  134.     delete m_pPropertyList;
  135. }
  136. void
  137. RTSPPropertyList::addProperty(RTSPProperty* pProp)
  138. {
  139.     m_pPropertyList->AddTail(pProp);
  140. }
  141. RTSPProperty*
  142. RTSPPropertyList::getProperty(const char* pName)
  143. {
  144.     CHXSimpleList::Iterator i;
  145.     for(i=m_pPropertyList->Begin(); i!=m_pPropertyList->End(); ++i)
  146.     {
  147. RTSPProperty* pProp = (RTSPProperty*)(*i);
  148. if(strcasecmp(pProp->getName(), pName) == 0)
  149. {
  150.     return pProp;
  151. }
  152.     }
  153.     return 0;
  154. }
  155. RTSPProperty*
  156. RTSPPropertyList::getFirstProperty()
  157. {
  158.     m_listPos = m_pPropertyList->GetHeadPosition();
  159.     if(m_listPos)
  160.     {
  161. RTSPProperty* pProp = 
  162.     (RTSPProperty*)m_pPropertyList->GetNext(m_listPos);
  163. return pProp;
  164.     }
  165.     return 0;
  166. }
  167. RTSPProperty*
  168. RTSPPropertyList::getNextProperty()
  169. {
  170.     RTSPProperty* pProp = 0;
  171.     if(m_listPos)
  172.     {
  173. pProp = (RTSPProperty*)m_pPropertyList->GetNext(m_listPos);
  174.     }
  175.     return pProp;
  176. }