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

Symbian

开发平台:

Visual C++

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