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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: gensdptest.cpp,v 1.1.28.1 2004/07/09 02:05:10 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 "hlxclib/stdio.h"
  50. #define  INITGUID
  51. #include "hxcom.h"
  52. #include "chxminiccf.h"
  53. #include "ihxpckts.h"
  54. #include "sdpmdparse.h"
  55. IHXBuffer* ReadSDPFile(IHXCommonClassFactory* pCCF, const char* pFilename)
  56. {
  57.     IHXBuffer* pBuf = 0;
  58.     FILE* pFile = ::fopen(pFilename, "rb");
  59.     if (pFile)
  60.     {
  61. if (!fseek(pFile, 0, SEEK_END))
  62. {
  63.     long fileSize = ftell(pFile);
  64.     
  65.     if (HXR_OK == pCCF->CreateInstance(CLSID_IHXBuffer,(void**)&pBuf))
  66.     {
  67. BOOL bFailed = TRUE;
  68. if ((HXR_OK == pBuf->SetSize(fileSize)) &&
  69.     (!fseek(pFile, 0, SEEK_SET)) &&
  70.     (fread(pBuf->GetBuffer(), fileSize, 1, pFile) == 1))
  71. {
  72.     bFailed = FALSE;
  73. }
  74. if (bFailed)
  75. {
  76.     pBuf->Release();
  77.     pBuf = 0;
  78. }
  79.     }
  80. }
  81. ::fclose(pFile);
  82.     }
  83.     return pBuf;
  84. }
  85. void PrintString(IHXBuffer* pBuf)
  86. {
  87.     const char* pCur = (const char*)pBuf->GetBuffer();
  88.     const char* pEnd = pCur + pBuf->GetSize();
  89.     
  90.     for (; pCur < pEnd; pCur++)
  91.     {
  92. if (*pCur == 'r')
  93. {
  94.     printf("\r");
  95. }
  96. else if (*pCur == 'n')
  97. {
  98.     printf("\n");
  99. }
  100. else if (*pCur == '"')
  101. {
  102.     printf("\"");
  103. }
  104. else if (*pCur == '\')
  105. {
  106.     printf("\\");
  107. }
  108. else if(*pCur)
  109. {
  110.     printf("%c", *pCur);
  111. }
  112.     }
  113. }
  114. ULONG32 CountULONG32(IHXValues* pHdr)
  115. {
  116.     ULONG32 ulCount = 0;
  117.     
  118.     const char* pName = 0;
  119.     ULONG32 ulValue = 0;
  120.     HX_RESULT res = pHdr->GetFirstPropertyULONG32(pName, ulValue);
  121.     
  122.     while (HXR_OK == res)
  123.     {
  124. ulCount++;
  125. res = pHdr->GetNextPropertyULONG32(pName, ulValue);
  126.     }
  127.     return ulCount;
  128. }
  129. void OutputULONG32Tests(UINT16 ulStreamID, IHXValues* pHdr)
  130. {
  131.     const char* pName = 0;
  132.     ULONG32 ulValue = 0;
  133.     HX_RESULT res = pHdr->GetFirstPropertyULONG32(pName, ulValue);
  134.     
  135.     while (HXR_OK == res)
  136.     {
  137. printf ("GetInt %u %s %lun", ulStreamID, pName, ulValue);
  138. res = pHdr->GetNextPropertyULONG32(pName, ulValue);
  139.     }
  140. }
  141. ULONG32 CountStrings(IHXValues* pHdr)
  142. {
  143.     ULONG32 ulCount = 0;
  144.     
  145.     const char* pName = 0;
  146.     IHXBuffer* pValue = 0;
  147.     HX_RESULT res = pHdr->GetFirstPropertyCString(pName, pValue);
  148.     
  149.     while (HXR_OK == res)
  150.     {
  151. ulCount++;
  152. HX_RELEASE(pValue);
  153. res = pHdr->GetNextPropertyCString(pName, pValue);
  154.     }
  155.     
  156.     HX_RELEASE(pValue);
  157.     return ulCount;
  158. }
  159. void OutputStrings(UINT16 ulStreamID, IHXValues* pHdr)
  160. {
  161.     const char* pName = 0;
  162.     IHXBuffer* pValue = 0;
  163.     HX_RESULT res = pHdr->GetFirstPropertyCString(pName, pValue);
  164.     
  165.     while (HXR_OK == res)
  166.     {
  167. printf("GetString %u "%s" "", ulStreamID, pName);
  168. PrintString(pValue);
  169. printf(""n");
  170. HX_RELEASE(pValue);
  171. res = pHdr->GetNextPropertyCString(pName, pValue);
  172.     }
  173.     
  174.     HX_RELEASE(pValue);
  175. }
  176. ULONG32 CountBuffers(IHXValues* pHdr)
  177. {
  178.     ULONG32 ulCount = 0;
  179.     
  180.     const char* pName = 0;
  181.     IHXBuffer* pValue = 0;
  182.     HX_RESULT res = pHdr->GetFirstPropertyBuffer(pName, pValue);
  183.     
  184.     while (HXR_OK == res)
  185.     {
  186. ulCount++;
  187. HX_RELEASE(pValue);
  188. res = pHdr->GetNextPropertyBuffer(pName, pValue);
  189.     }
  190.     
  191.     HX_RELEASE(pValue);
  192.     return ulCount;
  193. }
  194. void OutputBuffers(UINT16 ulStreamID, IHXValues* pHdr)
  195. {
  196.     const char* pName = 0;
  197.     IHXBuffer* pValue = 0;
  198.     HX_RESULT res = pHdr->GetFirstPropertyBuffer(pName, pValue);
  199.     
  200.     while (HXR_OK == res)
  201.     {
  202. printf("GetBuffer %u "%s" "", ulStreamID, pName);
  203. UCHAR* pCur = pValue->GetBuffer();
  204. UCHAR* pEnd = pCur + pValue->GetSize();
  205. static const char z_hexChars[] = "0123456789abcdef";
  206. for (;pCur < pEnd; pCur++)
  207. {
  208.     printf("%c%c", z_hexChars[*pCur >> 4], z_hexChars[*pCur & 0xf]);
  209. }
  210. printf(""n");
  211. HX_RELEASE(pValue);
  212. res = pHdr->GetNextPropertyBuffer(pName, pValue);
  213.     }
  214.     
  215.     HX_RELEASE(pValue);
  216. }
  217. HX_RESULT Parse(IUnknown* pContext, ULONG32 ulVersion, IHXBuffer* pSDP)
  218. {
  219.     SDPMediaDescParser parser(ulVersion);
  220.     HX_RESULT res = parser.Init(pContext);
  221.     if (HXR_OK == res)
  222.     {
  223. UINT16 nValues = 0;
  224. IHXValues** ppValues = 0;
  225. res = parser.Parse(pSDP, nValues, ppValues);
  226. printf("Init %lun", ulVersion);
  227. printf("Parse 0x%08x %lu "", res, nValues);
  228. PrintString(pSDP);
  229. printf (""n");
  230. for (UINT16 i = 0; i < nValues; i++)
  231. {
  232.     IHXValues* pHdr = ppValues[i];
  233.     printf ("IntCount %u %lun", i, CountULONG32(pHdr));
  234.     OutputULONG32Tests(i, pHdr);
  235.     printf ("StringCount %u %lun", i, CountStrings(pHdr));
  236.     OutputStrings(i, pHdr);
  237.     printf ("BufferCount %u %lun", i, CountBuffers(pHdr));
  238.     OutputBuffers(i, pHdr);
  239. }
  240.     }
  241.     return res;
  242. }
  243. int main(int argc, char* argv[])
  244. {
  245.     if (argc != 3)
  246.     {
  247. fprintf(stderr, "Usage : %s <sdp version> <sdp file>n", argv[0]);
  248.     }
  249.     else
  250.     {
  251. IUnknown* pContext = new CHXMiniCCF();
  252. if (pContext)
  253. {
  254.     pContext->AddRef();
  255.     
  256.     IHXCommonClassFactory* pCCF = 0;
  257.     if (HXR_OK == pContext->QueryInterface(IID_IHXCommonClassFactory,
  258.    (void**)&pCCF))
  259.     {
  260. IHXBuffer* pSDP = ReadSDPFile(pCCF, argv[2]);
  261. if (pSDP)
  262. {
  263.     if (HXR_OK != Parse(pContext, strtoul(argv[1], 0, 10), 
  264. pSDP))
  265.     {
  266. fprintf(stderr, "Failed to parse SDPn", argv[1]);
  267.     }
  268.     pSDP->Release();
  269.     pSDP = 0;
  270. }
  271. else
  272. {
  273.     fprintf(stderr, "Failed to read SDP file '%s'n", argv[2]);
  274. }
  275. pCCF->Release();
  276. pCCF = 0;
  277.     }
  278.          
  279.     pContext->Release();
  280.     pContext = 0;
  281. }
  282.     }
  283.     return 0;
  284. }