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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: wrvsarry.cpp,v 1.3.36.3 2004/07/09 01:47:42 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 "hxcom.h"
  50. #include "hxtypes.h"
  51. #include "hxresult.h"
  52. #include "hxstring.h"
  53. #include "hxwinreg.h"
  54. #include "hxstrutl.h"
  55. #include "hxheap.h"
  56. #ifdef _DEBUG
  57. #undef HX_THIS_FILE
  58. static const char HX_THIS_FILE[] = __FILE__;
  59. #endif
  60. CWinRegStringArrayValue::CWinRegStringArrayValue
  61. (
  62.     const char* szName, 
  63.     HKEY hkParent
  64. )
  65.     : AWinRegValue(szName, hkParent)
  66. {
  67. }
  68. CWinRegStringArrayValue::~CWinRegStringArrayValue()
  69. {
  70. }
  71. CWinRegStringArrayValue& 
  72. CWinRegStringArrayValue::operator=
  73. (
  74.     const _CListOfCHXString_& rilosNewValue
  75. )
  76. {
  77.     FromStringArray(rilosNewValue);
  78.     return *this;
  79. }
  80. BOOL 
  81. CWinRegStringArrayValue::IsStringArray()
  82. {
  83.     UINT32 ulType;
  84.     if
  85.     (
  86. RegQueryValueEx
  87. (
  88.     m_hkParent,
  89.     OS_STRING(m_sName),
  90.     NULL,
  91.     &ulType,
  92.     NULL,
  93.     NULL
  94. ) == ERROR_SUCCESS
  95. &&
  96. ulType == REG_MULTI_SZ
  97.     )
  98.     {
  99. return TRUE;
  100.     }
  101.     return FALSE;
  102. }
  103. BOOL 
  104. CWinRegStringArrayValue::AsStringArray(char** pszValue)
  105. {
  106.     UINT32 ulType;
  107.     UINT32 ulSize;
  108.     
  109.     if(!pszValue)
  110.     {
  111. return FALSE;
  112.     }
  113.     *pszValue = NULL;
  114.     
  115.     if
  116.     (
  117. RegQueryValueEx
  118. (
  119.     m_hkParent,
  120.     OS_STRING(m_sName),
  121.     NULL,
  122.     &ulType,
  123.     NULL,
  124.     &ulSize
  125. ) == ERROR_SUCCESS
  126. &&
  127. ulType == REG_MULTI_SZ
  128.     )
  129.     {
  130. if (!ulSize)
  131. {
  132.     return TRUE;
  133. }
  134. ++ulSize;
  135. *pszValue = new char[ulSize];
  136. if
  137. (
  138.     *pszValue
  139.     &&
  140.     RegQueryValueEx
  141.     (
  142. m_hkParent,
  143. OS_STRING(m_sName),
  144. NULL,
  145. &ulType,
  146. (unsigned char*)*pszValue,
  147. &ulSize
  148.     ) == ERROR_SUCCESS
  149. )
  150. {
  151.     return TRUE;
  152. }
  153.     }
  154.     return FALSE;
  155. }
  156. BOOL 
  157. CWinRegStringArrayValue::AsStringArray(_CListOfCHXString_& rilosValue)
  158. {
  159.     char* szValue;
  160.     UINT32 ulIndex;
  161.     
  162.     rilosValue.empty();
  163.     
  164.     if
  165.     (
  166. AsStringArray(&szValue)
  167.     )
  168.     {
  169. for(ulIndex=0; szValue[ulIndex]; ulIndex += strlen(szValue+ulIndex)+1)
  170. {
  171.     rilosValue.insert
  172.     (
  173. rilosValue.end(), 
  174. CHXString(szValue+ulIndex)
  175.     );
  176. }
  177. FreeStringArray(szValue);
  178. return TRUE;
  179.     }
  180.     return FALSE;
  181. }
  182. BOOL 
  183. CWinRegStringArrayValue::FromStringArray
  184. (
  185.     const _CListOfCHXString_& rilosNewValue
  186. )
  187. {
  188.     char* szNewValue=NULL;
  189.     _CListOfCHXString_::iterator itilosCurrent;
  190.     UINT32 ulSize;
  191.     UINT32 ulBufSize;
  192.     enum STATE{ST_COUNT, ST_FILL, ST_DONE};
  193.     STATE stCurrent = ST_COUNT;
  194.     while(stCurrent!=ST_DONE)
  195.     {
  196. for
  197. (
  198.     ulSize=0,
  199.     itilosCurrent=rilosNewValue.begin();
  200.     itilosCurrent!=rilosNewValue.end();
  201.     ++itilosCurrent
  202. )
  203. {
  204.     switch(stCurrent)
  205.     {
  206.     case ST_COUNT:
  207. {
  208. }
  209. break;
  210.     case ST_FILL:
  211. {
  212.     SafeStrCpy
  213.     (
  214. szNewValue+ulSize, 
  215. (*itilosCurrent).GetBuffer(1), ulBufSize
  216.     );
  217. }
  218. break;
  219.     default:
  220. break;
  221.     };
  222.     // Inc Size of second dimension (data)
  223.     ulSize += (*itilosCurrent).GetLength()+1;
  224. }
  225. switch(stCurrent)
  226. {
  227. case ST_COUNT:
  228.     {
  229. ulBufSize = ulSize+1;
  230. szNewValue = new char[ulBufSize];
  231. stCurrent = ST_FILL;
  232.     }
  233.     break;
  234. case ST_FILL:
  235.     {
  236. szNewValue[ulBufSize-1] = 0;
  237. stCurrent = ST_DONE;
  238.     }
  239.     break;
  240. default:
  241.     break;
  242. };
  243.     }
  244.     if
  245.     (
  246. szNewValue
  247. &&
  248. FromStringArray((const char *)szNewValue, ulBufSize)
  249.     )
  250.     {
  251. delete [] szNewValue;
  252. return TRUE;
  253.     }
  254.     
  255.     delete [] szNewValue;
  256.     return FALSE;
  257. }
  258. BOOL 
  259. CWinRegStringArrayValue::FromStringArray
  260. (
  261.     const char* szNewValue, 
  262.     UINT32 ulSize
  263. )
  264. {
  265.     if
  266.     (
  267. RegSetValueEx
  268. (
  269.     m_hkParent,
  270.     OS_STRING(m_sName),
  271.     NULL,
  272.     REG_MULTI_SZ,
  273.     (unsigned char*)szNewValue,
  274.     ulSize
  275. ) == ERROR_SUCCESS
  276.     )
  277.     {
  278. return TRUE;
  279.     }
  280.     return FALSE;
  281. }
  282. BOOL 
  283. CWinRegStringArrayValue::DoesExist()
  284. {
  285.     return IsStringArray();
  286. }