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

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 "pyldparse.h"
  36. #include "char_stack.h"
  37. #include <stdlib.h>
  38. #include <string.h>
  39. CPayloadParamParser::CPayloadParamParser() :
  40.     m_pCCF(0),
  41.     m_pValues(0)
  42. {}
  43. CPayloadParamParser::~CPayloadParamParser()
  44. {
  45.     HX_RELEASE(m_pCCF);
  46.     HX_RELEASE(m_pValues);
  47. }
  48. HX_RESULT CPayloadParamParser::Init(IHXCommonClassFactory* pCCF)
  49. {
  50.     HX_RESULT res = HXR_FAILED;
  51.     
  52.     if (pCCF)
  53. res = pCCF->QueryInterface(IID_IHXCommonClassFactory,
  54.    (void**)&m_pCCF);
  55.     return res;
  56. }
  57. HX_RESULT CPayloadParamParser::Parse(const char* pParamString)
  58. {
  59.     HX_RESULT res = HXR_FAILED;
  60.     HX_RELEASE(m_pValues);
  61.     if (m_pCCF &&
  62. SUCCEEDED(res = m_pCCF->CreateInstance(IID_IHXValues,
  63.        (void**)&m_pValues)))
  64.     {
  65. CharStack key;
  66. CharStack value;
  67. const char* pCur = pParamString;
  68. while(*pCur && SUCCEEDED(res))
  69. {
  70.     // Get rid of leading whitespace
  71.     for(;*pCur && *pCur == ' '; pCur++) 
  72. ;
  73.     
  74.     // Get key
  75.     key.Reset();
  76.     while(*pCur && (*pCur != ' ') && (*pCur != '='))
  77.     {
  78. *key = *pCur++;
  79. key++;
  80.     }
  81.     
  82.     if (strlen(key.Finish()) &&
  83. (*pCur == '='))
  84.     {
  85. // This is a key=value pair
  86. pCur++; // skip '='
  87. value.Reset();
  88. // Get value
  89. while(*pCur && (*pCur != ' ') && (*pCur != ';'))
  90. {
  91.     *value = *pCur++;
  92.     value++;
  93. }
  94. if (strlen(value.Finish()))
  95. {
  96.     if (*pCur)
  97. pCur++; // skip ' ' or ';'
  98.     
  99.     res = AddParameter(key.Finish(), value.Finish());
  100. }
  101. else
  102. {
  103.     // We got an empty value
  104.     res = HXR_UNEXPECTED;
  105. }
  106.     }
  107.     else
  108.     {
  109. // We got an empty or invalid key
  110. res = HXR_UNEXPECTED;
  111.     }
  112. }
  113. if (!SUCCEEDED(res))
  114.     HX_RELEASE(m_pValues);
  115.     }
  116.     return res;
  117. }
  118. HX_RESULT CPayloadParamParser::AddParameter(const char* pKey, 
  119.     const char* pValue)
  120. {
  121.     HX_RESULT res = HXR_FAILED;
  122.     IHXBuffer* pBuf = 0;
  123.     if (m_pCCF &&
  124. SUCCEEDED(res = m_pCCF->CreateInstance(IID_IHXBuffer, 
  125.        (void**)&pBuf))&&
  126. SUCCEEDED(res = pBuf->SetSize(strlen(pValue) + 1)))
  127.     {
  128. strcpy((char*)pBuf->GetBuffer(), pValue); /* Flawfinder: ignore */
  129. m_pValues->SetPropertyCString(pKey, pBuf);
  130.     }
  131.     HX_RELEASE(pBuf);
  132.     return res;
  133. }
  134. HX_RESULT CPayloadParamParser::GetULONG32(const char* pKey, 
  135.   REF(ULONG32) ulValue)
  136. {
  137.     HX_RESULT res = HXR_FAILED;
  138.     IHXBuffer* pBuf = 0;
  139.     if (m_pValues &&
  140. SUCCEEDED(m_pValues->GetPropertyCString(pKey, pBuf)))
  141.     {
  142. const char* pValue = (const char*)pBuf->GetBuffer();
  143. char* pEnd = 0;
  144. ULONG32 ulTmp = strtoul(pValue, &pEnd, 10);
  145. if (*pValue && pEnd && !*pEnd)
  146. {
  147.     ulValue = ulTmp;
  148.     res = HXR_OK;
  149. }
  150.     }
  151.     HX_RELEASE(pBuf);
  152.     return res;
  153. }
  154. static HX_RESULT FromHex(char ch, UINT8& val)
  155. {
  156.     HX_RESULT res = HXR_OK;
  157.     if ((ch >= '0') && (ch <= '9'))
  158. val += ch - '0';
  159.     else if ((ch >= 'a') && (ch <= 'f'))
  160. val += 10 + ch - 'a';
  161.     else if ((ch >= 'A') && (ch <= 'F'))
  162. val += 10 + ch - 'A';
  163.     else
  164. res = HXR_FAILED;
  165.     return res;
  166. }
  167. HX_RESULT CPayloadParamParser::GetBuffer(const char* pKey, 
  168.  REF(IHXBuffer*) pValue)
  169. {
  170.     HX_RESULT res = HXR_FAILED;
  171.         
  172.     IHXBuffer* pBuf = 0;
  173.     if (m_pCCF && m_pValues &&
  174. SUCCEEDED(m_pValues->GetPropertyCString(pKey, pBuf)))
  175.     {
  176. const char* pStr = (const char*)pBuf->GetBuffer();
  177. ULONG32 ulStringSize = strlen(pStr);
  178. ULONG32 ulBufferSize = ulStringSize / 2;
  179. // make sure the string length is even
  180. if (!(ulStringSize & 0x1)) 
  181. {
  182.     res = m_pCCF->CreateInstance(IID_IHXBuffer, (void**)&pValue);
  183.     if (SUCCEEDED(res) &&
  184. SUCCEEDED(res = pValue->SetSize(ulBufferSize)))
  185.     {
  186. UINT8* pDest = pValue->GetBuffer();
  187. while(SUCCEEDED(res) && *pStr)
  188. {
  189.     UINT8 val = 0;
  190.     
  191.     res = FromHex(*pStr++, val);
  192.     
  193.     if (SUCCEEDED(res))
  194.     {
  195. val <<= 4;
  196. res = FromHex(*pStr++, val);
  197. if (SUCCEEDED(res))
  198.     *pDest++ = val;
  199.     }
  200. }
  201.     }
  202.     if (!SUCCEEDED(res))
  203. HX_RELEASE(pValue);
  204. }
  205.     }
  206.     HX_RELEASE(pBuf);
  207.     
  208.     return res;
  209. }
  210. HX_RESULT CPayloadParamParser::GetString(const char* pKey, 
  211.  REF(IHXBuffer*) pValue)
  212. {
  213.     HX_RESULT res = HXR_FAILED;
  214.         
  215.     IHXBuffer* pBuf = 0;
  216.     if (m_pValues &&
  217. SUCCEEDED(m_pValues->GetPropertyCString(pKey, pBuf)))
  218.     {
  219. pValue = pBuf;
  220. pValue->AddRef();
  221.     }
  222.     
  223.     HX_RELEASE(pBuf);
  224.     return res;
  225. }