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

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. /****************************************************************************
  36.  * 
  37.  *  activewrap.cpp
  38.  *
  39.  * Wrapper classes for easy use of ActivePropUser Interface  
  40.  *
  41.  * Possible TODOs: 
  42.  *     store list of active property names (set as inactive during destructor)
  43.  *     add interface to remove active properties
  44.  *     map active properties to wrapper users (ie multiple users per wrapper)
  45.  *     let caller set flags about what types of changes are supported, etc
  46.  *
  47.  */
  48. /****************************************************************************
  49.  * Defines
  50.  */
  51. /****************************************************************************
  52.  * Includes
  53.  */
  54. #include "hxtypes.h"
  55. #include "hxcom.h"
  56. #include "hxcomm.h"
  57. #include "hxerror.h"
  58. #include "hxassert.h"
  59. #include "hxmon.h"
  60. #include "hxslist.h"
  61. #include "hxbuffer.h"
  62. #include "hxstrutl.h"
  63. #include "hxmap.h"
  64. #include "activewrap.h"
  65. #ifdef _DEBUG
  66. #undef HX_THIS_FILE             
  67. static const char HX_THIS_FILE[] = __FILE__;
  68. #endif
  69. CActivePropWrapper::CActivePropWrapper()
  70. : m_lRefCount(0)
  71. , m_pContext(NULL)
  72. , m_pUser(NULL)
  73. , m_pClassFactory(NULL)
  74. {
  75. };                             
  76. HX_RESULT
  77. CActivePropWrapper::Init(IUnknown* /*IN*/ pContext, CActivePropWrapperUser * pUser)
  78. {
  79.     if (!(pUser||pContext)) 
  80.     {
  81. return HXR_FAILED;
  82.     }
  83.     m_pContext = pContext ;
  84.     m_pContext->AddRef();
  85.     m_pUser = pUser;
  86.     m_pUser->AddRef();
  87.     HX_RESULT theErr = HXR_OK;
  88.     
  89.     theErr = m_pContext->QueryInterface(IID_IHXCommonClassFactory, 
  90. (void**)&m_pClassFactory);
  91.     if (theErr != HXR_OK || m_pClassFactory == NULL)
  92.     {
  93.         theErr = HXR_INVALID_PARAMETER;
  94.         goto bail;
  95.     }
  96. bail:
  97.     return theErr;
  98. };                             
  99. /* Add the registry property pPropName to the list of Active properties
  100. */
  101. HX_RESULT
  102. CActivePropWrapper::SetAsActive(const char* pPropName)
  103. {
  104.     IHXRegistry* pRegistry = 0;
  105.     IHXActiveRegistry* pActiveReg = 0;
  106.     HX_RESULT theErr = m_pContext->QueryInterface(IID_IHXRegistry, 
  107. (void**)&pRegistry);
  108.     if (theErr != HXR_OK || pRegistry == NULL)
  109.     {
  110.         theErr = HXR_INVALID_PARAMETER;
  111.         goto bail;
  112.     }
  113.     theErr = pRegistry->QueryInterface(IID_IHXActiveRegistry, 
  114. (void**) &pActiveReg);
  115.     if (theErr != HXR_OK || pActiveReg == NULL)
  116.     {
  117.         theErr = HXR_INVALID_PARAMETER;
  118.         goto bail;
  119.     }
  120.     theErr = pActiveReg->SetAsActive(pPropName, this);
  121.     
  122. bail:
  123.     HX_RELEASE(pActiveReg);
  124.     HX_RELEASE(pRegistry);
  125.     return theErr ;
  126. }
  127. HX_RESULT
  128. CActivePropWrapper::Done()
  129. {
  130.     if (m_pUser)
  131.     {
  132.         m_pUser->Release();
  133.         m_pUser = NULL;
  134.     }
  135.     return HXR_OK;
  136. }
  137. CActivePropWrapper::~CActivePropWrapper()
  138. {
  139.     HX_RELEASE(m_pContext);
  140.     if (m_pUser)
  141.     {
  142.         m_pUser->Release();
  143.         m_pUser = NULL;
  144.     }
  145. }
  146.     
  147. // IUnknown COM Interface Methods
  148. /****************************************************************************
  149.  *  IUnknown::AddRef                                            ref:  hxcom.h
  150.  *
  151.  *  This routine increases the object reference count in a thread safe
  152.  *  manner. The reference count is used to manage the lifetime of an object.
  153.  *  This method must be explicitly called by the user whenever a new
  154.  *  reference to an object is used.
  155.  */
  156. STDMETHODIMP_(UINT32)
  157. CActivePropWrapper::AddRef()
  158. {
  159.     return InterlockedIncrement(&m_lRefCount);
  160. }   
  161. /****************************************************************************
  162.  *  IUnknown::Release                                           ref:  hxcom.h
  163.  *
  164.  *  This routine decreases the object reference count in a thread safe
  165.  *  manner, and deletes the object if no more references to it exist. It must
  166.  *  be called explicitly by the user whenever an object is no longer needed.
  167.  */
  168. STDMETHODIMP_(UINT32)
  169. CActivePropWrapper::Release()
  170. {
  171.     if (InterlockedDecrement(&m_lRefCount) > 0)
  172.     {
  173.         return m_lRefCount;
  174.     }
  175.     
  176.     delete this;
  177.     return 0;
  178. }   
  179. /****************************************************************************
  180.  *  IUnknown::QueryInterface                                    ref:  hxcom.h
  181.  *
  182.  *  This routine indicates which interfaces this object supports. If a given
  183.  *  interface is supported, the object's reference count is incremented, and
  184.  *  a reference to that interface is returned. Otherwise a NULL object and
  185.  *  error code are returned. This method is called by other objects to
  186.  *  discover the functionality of this object.
  187.  */
  188. STDMETHODIMP
  189. CActivePropWrapper::QueryInterface(REFIID riid, void** ppvObj)
  190. {
  191. QInterfaceList qiList[] =
  192. {
  193. { GET_IIDHANDLE(IID_IUnknown), (IUnknown*) this },
  194. { GET_IIDHANDLE(IID_IHXActivePropUser), (IHXActivePropUser*) this },
  195. };
  196.     return QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);   
  197. /************************************************************************
  198. * IHXActivePropUser::SetActiveInt
  199. *
  200. *    Async request to set int pName to ul.
  201. */
  202. STDMETHODIMP
  203. CActivePropWrapper::SetActiveInt(const char* pName,
  204.                         UINT32 ul,
  205.                         IHXActivePropUserResponse* pResponse)
  206. {
  207.     //printf("SetActiveInt: %s = %dn", pName, ul);
  208.     if (!m_pUser) return HXR_OK;
  209.     CHXString strName(pName);
  210.     CHXString strErr;
  211.     
  212.     HX_RESULT res = m_pUser->PropUpdated(strName, ul, strErr);
  213.     IHXBuffer* pBuf = NULL;
  214.     if (! strErr.IsEmpty())
  215.     {
  216. pBuf = MakeBufString((const char*) strErr);
  217.     }
  218.     pResponse->SetActiveIntDone(res,
  219. pName, 
  220. ul,
  221. pBuf ? &pBuf : 0,
  222. pBuf ? 1 : 0);
  223.     HX_RELEASE(pBuf);
  224.     return HXR_OK;
  225. }
  226. /************************************************************************
  227. * IHXActivePropUser::SetActiveStr
  228. *
  229. *    Async request to set string pName to string in pBuffer.
  230. */
  231. STDMETHODIMP
  232. CActivePropWrapper::SetActiveStr(const char* pName,
  233.                         IHXBuffer* pBuffer,
  234.                         IHXActivePropUserResponse* pResponse)
  235. {
  236.     //printf("SetActiveStr: %s = %sn", pName, (const char *)pBuffer->GetBuffer());
  237.     if (!m_pUser) return HXR_OK;
  238.     CHXString strName(pName);
  239.     CHXString strVal((const char *)pBuffer->GetBuffer());
  240.     CHXString strErr;
  241.     HX_RESULT res = m_pUser->PropUpdated(strName, strVal, strErr);
  242.     IHXBuffer* pBuf = NULL;
  243.     if (! strErr.IsEmpty())
  244.     {
  245.         pBuf = MakeBufString((const char*) strErr);
  246.     }
  247.     
  248.     if ((res == HXR_OK) &&
  249.  (strVal != (const char *)pBuffer->GetBuffer()))
  250.     {
  251.         pBuffer->Set((const UCHAR *)(const char *)strVal, strVal.GetLength());
  252.     }
  253.     pResponse->SetActiveStrDone(res,
  254. pName, 
  255. pBuffer, 
  256. pBuf ? &pBuf : 0,
  257. pBuf ? 1 : 0);
  258.     HX_RELEASE(pBuf);
  259.     return HXR_OK;
  260. }
  261. /************************************************************************
  262. * IHXActivePropUser::SetActiveBuf
  263. *
  264. *    Async request to set buffer pName to buffer in pBuffer.
  265. *  reUse SetActiveStr
  266. */
  267. STDMETHODIMP
  268. CActivePropWrapper::SetActiveBuf(const char* pName,
  269.                             IHXBuffer* pBuffer,
  270.                             IHXActivePropUserResponse* pResponse)
  271. {
  272.     //printf("SetActiveBuf is Calling ");
  273.     return SetActiveStr(pName, pBuffer, pResponse);
  274. }
  275. /************************************************************************
  276. * IHXActivePropUser::DeleteActiveProp
  277. *
  278. *       Async request to delete the active property.
  279. */
  280. STDMETHODIMP
  281. CActivePropWrapper::DeleteActiveProp(const char* pName,
  282.                         IHXActivePropUserResponse* pResponse)
  283. {
  284.     //printf("DeleteActiveProp: %sn", pName);
  285.     if (!m_pUser) return HXR_OK;
  286.     CHXString strName(pName);
  287.     CHXString strErr;
  288.     
  289.     HX_RESULT res = m_pUser->PropDeleted(strName, strErr);
  290.     IHXBuffer* pBuf = NULL;
  291.     if (! strErr.IsEmpty())
  292.     {
  293.         pBuf = MakeBufString((const char*) strErr);
  294.     }
  295.     
  296.     pResponse->DeleteActivePropDone(res,
  297. pName, 
  298. pBuf ? &pBuf : 0,
  299. pBuf ? 1 : 0);
  300.     HX_RELEASE(pBuf);
  301.     return HXR_OK;
  302. }
  303. IHXBuffer*
  304. CActivePropWrapper::MakeBufString(const char* pText)
  305. {
  306.     IHXBuffer* pRet;
  307.     m_pClassFactory->CreateInstance(CLSID_IHXBuffer, (void**)&pRet);
  308.     pRet->Set((const unsigned char*)pText, strlen(pText) + 1);
  309.     return pRet;
  310. }