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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: tliteprefs.cpp,v 1.1.32.1 2004/07/09 02:07:23 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 "chxliteprefs.h"
  50. #include "hxccf.h"
  51. #include "unkimp.h"
  52. #include "ihxpckts.h"
  53. #include "chxpckts.h"
  54. #include "hlxclib/stdlib.h"
  55. class CHXSimpleFactory : public IHXCommonClassFactory,
  56.  public IHXScheduler,
  57.  public CUnknownIMP
  58. {
  59. public:
  60.     CHXSimpleFactory() : m_pCallback(NULL) {}
  61.     DECLARE_UNKNOWN(CHXSimpleFactory);
  62.     STDMETHOD(CreateInstance) (THIS_
  63. REFCLSID    /*IN*/  rclsid,
  64. void**     /*OUT*/ ppUnknown)
  65.     {
  66. HX_RESULT res = HXR_NOTIMPL;
  67. if (IsEqualIID(rclsid, CLSID_IHXBuffer))
  68. {
  69.     CHXBuffer* pBuffer = new CHXBuffer;
  70.     if (pBuffer)
  71.     {
  72. pBuffer->AddRef();
  73. res = pBuffer->QueryInterface(IID_IUnknown, ppUnknown);
  74. pBuffer->Release();
  75.     }
  76.     else
  77.     {
  78. res = HXR_OUTOFMEMORY;
  79.     }
  80. }
  81. return res;
  82.     }
  83.     STDMETHOD(CreateInstanceAggregatable)
  84.     (THIS_
  85.     REFCLSID     /*IN*/  rclsid,
  86.     REF(IUnknown*)  /*OUT*/ ppUnknown,
  87.     IUnknown*     /*IN*/  pUnkOuter)
  88.     {
  89. return HXR_NOTIMPL;
  90.     }
  91.     static IHXBuffer* Bufferize(int value)
  92.     {
  93. char temp[12];
  94. itoa(value, temp, 10);
  95. return Bufferize(temp);
  96.     }
  97.     static IHXBuffer* Bufferize(const char* value)
  98.     {
  99. IHXBuffer* pBuffer = new CHXBuffer;
  100. if (pBuffer)
  101. {
  102.     pBuffer->AddRef();
  103.     if (SUCCEEDED(pBuffer->Set((const UCHAR*)value, strlen(value)+1)))
  104.     {
  105. return pBuffer;
  106.     }
  107.     pBuffer->Release();
  108. }
  109. return NULL;
  110.     }
  111.     STDMETHOD_(CallbackHandle,RelativeEnter) (THIS_
  112. IHXCallback* pCallback,
  113. UINT32 ms)
  114.     {
  115. HX_RELEASE(m_pCallback);
  116. m_pCallback = pCallback;
  117. m_pCallback->AddRef();
  118. return (CallbackHandle)m_pCallback;
  119.     }
  120.     STDMETHOD_(CallbackHandle,AbsoluteEnter) (THIS_
  121. IHXCallback* pCallback,
  122. HXTimeval tVal)
  123.     {
  124. HX_RELEASE(m_pCallback);
  125. m_pCallback = pCallback;
  126. m_pCallback->AddRef();
  127. return (CallbackHandle)m_pCallback;
  128.     }
  129.     STDMETHOD(Remove) (THIS_
  130.      CallbackHandle Handle)
  131.     {
  132. if (Handle == (CallbackHandle)m_pCallback)
  133. {
  134.     HX_RELEASE(m_pCallback);
  135.     return HXR_OK;
  136. }
  137. return HXR_UNEXPECTED;
  138.     }
  139.     STDMETHOD_(HXTimeval,GetCurrentSchedulerTime) (THIS)
  140.     {
  141. HXTimeval t = {0,0};
  142. return t;
  143.     }
  144.     void    ProcessCallback()
  145.     {
  146. if (m_pCallback)
  147. {
  148.     m_pCallback->Func();
  149.     HX_RELEASE(m_pCallback);
  150. }
  151.     }
  152. private:
  153.     IHXCallback*    m_pCallback;
  154. };
  155. BEGIN_INTERFACE_LIST(CHXSimpleFactory)
  156.     INTERFACE_LIST_ENTRY_SIMPLE(IHXCommonClassFactory)
  157.     INTERFACE_LIST_ENTRY_SIMPLE(IHXScheduler)
  158. END_INTERFACE_LIST
  159. struct TestStr
  160. {
  161.     const char* pName;
  162.     const char* pValue;
  163. };
  164. struct TestInt
  165. {
  166.     const char* pName;
  167.     int nValue;
  168. };
  169. const TestStr kTestStr[] =
  170. {
  171.     { "foostr", "foo" },
  172.     { "barstr", "bar" },
  173.     { "foo\foostr", "foo-foo" },
  174.     { "foo\barstr", "foo-bar" },
  175.     { "foo\foobarstr", "foo-foobar" },
  176.     { "bar\foostr", "bar-foo" },
  177.     { NULL, NULL }
  178. };
  179. const TestInt kTestInt[] =
  180. {
  181.     { "foo", 10 },
  182.     { "foobar", 100 },
  183.     { "foo\bar", 1000 },
  184.     { "foo\foobar", 20 },
  185.     { "foo\foo\bar", 200 },
  186.     { NULL, 0 }
  187. };
  188. int main(int argc, char* argv[])
  189. {
  190.     printf("starting liteprefs test...n");
  191.     CHXSimpleFactory* pFactory = new CHXSimpleFactory;
  192.     if (pFactory)
  193.     {
  194. pFactory->AddRef();
  195. CHXLitePrefs* pPrefs = CHXLitePrefs::CreateObject();
  196. if (pPrefs)
  197. {
  198.     pPrefs->AddRef();
  199.     HX_RESULT res = pPrefs->Init(pFactory->GetUnknown());
  200.     if (FAILED(res))
  201.     {
  202. printf("failed to initialize prefsn");
  203.     }
  204.     res = pPrefs->Open("test", "test", 1, 0);
  205.     if (FAILED(res))
  206.     {
  207. printf("failed to open prefsn");
  208.     }
  209.     // stick some strings into the prefs
  210.     {
  211. int n = 1;
  212. const TestStr* pTest = kTestStr;
  213. while (pTest->pName)
  214. {
  215.     IHXBuffer* pBuf = CHXSimpleFactory::Bufferize(pTest->pValue);
  216.     res = pPrefs->WritePref(pTest->pName, pBuf);
  217.     if (FAILED(res))
  218.     {
  219. printf("WritePref string test %d failedn", n);
  220.     }
  221.     HX_RELEASE(pBuf);
  222.     pTest++;
  223.     n++;
  224. }
  225.     }
  226.     // hack our fake scheduler
  227.     pFactory->ProcessCallback();
  228.     // stick some ints into the prefs
  229.     {
  230. int n = 1;
  231. const TestInt* pTest = kTestInt;
  232. while (pTest->pName)
  233. {
  234.     IHXBuffer* pBuf = CHXSimpleFactory::Bufferize(pTest->nValue);
  235.     res = pPrefs->WritePref(pTest->pName, pBuf);
  236.     if (FAILED(res))
  237.     {
  238. printf("WritePref string test %d failedn", n);
  239.     }
  240.     HX_RELEASE(pBuf);
  241.     pTest++;
  242.     n++;
  243. }
  244.     }
  245.     // hack our fake scheduler
  246.     pFactory->ProcessCallback();
  247.     // check our strings
  248.     {
  249. int n = 1;
  250. const TestStr* pTest = kTestStr;
  251. while (pTest->pName)
  252. {
  253.     IHXBuffer* pBuf = NULL;
  254.     res = pPrefs->ReadPref(pTest->pName, pBuf);
  255.     if (FAILED(res) || !pBuf)
  256.     {
  257. printf("ReadPref string test %d failedn", n);
  258.     }
  259.     else if (strcmp(pTest->pValue, (const char*)pBuf->GetBuffer()))
  260.     {
  261. printf("mismatched pref string test %dn", n);
  262.     }
  263.     HX_RELEASE(pBuf);
  264.     pTest++;
  265.     n++;
  266. }
  267.     }
  268.     // check our ints
  269.     {
  270. int n = 1;
  271. const TestInt* pTest = kTestInt;
  272. while (pTest->pName)
  273. {
  274.     IHXBuffer* pBuf = NULL;
  275.     res = pPrefs->ReadPref(pTest->pName, pBuf);
  276.     if (FAILED(res) || !pBuf)
  277.     {
  278. printf("ReadPref string test %d failedn", n);
  279.     }
  280.     else if (pTest->nValue != atoi((const char*)pBuf->GetBuffer()))
  281.     {
  282. printf("mismatched pref string test %dn", n);
  283.     }
  284.     HX_RELEASE(pBuf);
  285.     pTest++;
  286.     n++;
  287. }
  288.     }
  289.     HX_RELEASE(pPrefs);
  290. }
  291. else
  292. {
  293.     printf("out of memory!n");
  294. }
  295. HX_RELEASE(pFactory);
  296.     }
  297.     else
  298.     {
  299. printf("out of memory!n");
  300.     }
  301.     printf("done!n");
  302.     return 0;
  303. }