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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxpropwclnt.h,v 1.2.46.2 2004/07/09 02:07:18 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. #ifndef _HXPROPW_H_
  50. #define _HXPROPW_H_
  51. class HXClientRegistry;
  52. class CHXSimpleList;
  53. struct IHXScheduler;
  54. struct IHXInterruptSafe;
  55. struct IHXInterruptState;
  56. #include "hxengin.h"
  57. #include "hxmon.h"
  58. #include "hxthread.h"
  59. typedef enum 
  60. {
  61.     ADDEDPROP = 0,
  62.     MODIFIEDPROP,
  63.     DELETEDPROP
  64. } ResponseType;
  65. struct PropResponseValues
  66. {
  67.     PropResponseValues(ResponseType uResponseType,
  68.        const UINT32 id,
  69.        const HXPropType    propType,
  70.        const UINT32 ulParentID)
  71.     {
  72. m_uResponseType = uResponseType;
  73. m_ulId = id;
  74. m_propType = propType;
  75. m_ulParentID = ulParentID;
  76.     };
  77.     ResponseType m_uResponseType;
  78.     UINT32 m_ulId;
  79.     HXPropType    m_propType;
  80.     UINT32 m_ulParentID;
  81. };
  82. class HXClientPropWatch : public IHXPropWatch
  83. {
  84. private:
  85. virtual ~HXClientPropWatch();
  86.     PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  87.     LONG32 m_lRefCount;
  88.     IHXPropWatchResponse* m_pResponse;
  89.     CommonRegistry* m_pRegistry;
  90.     IHXInterruptSafe* m_pInterruptSafeResponse;
  91.     IHXInterruptState* m_pInterruptState;
  92.     IHXScheduler* m_pScheduler;
  93.   
  94. public:
  95. HXClientPropWatch(CommonRegistry* pRegistry,
  96.   IUnknown* pContext);
  97.     
  98.     /*
  99.      * IUnknown methods
  100.      */
  101.     STDMETHOD(QueryInterface) (THIS_
  102. REFIID riid,
  103. void** ppvObj);
  104.     STDMETHOD_(ULONG32,AddRef) (THIS);
  105.     STDMETHOD_(ULONG32,Release) (THIS);
  106.     /*
  107.      * IHXPropWatch methods
  108.      */
  109.     /************************************************************************
  110.      *  Method:
  111.      *      IHXPropWatch::Init
  112.      *  Purpose:
  113.      *      Initialize with the response object and the registry so that
  114.      *  Watch notifications can be sent back to the respective plugins.
  115.      */
  116.     STDMETHOD(Init) (THIS_
  117. IHXPropWatchResponse* pResponse);
  118.     /************************************************************************
  119.      *  Method:
  120.      *      IHXPropWatch::SetWatchOnRoot
  121.      *  Purpose:
  122.      *      The SetWatch method puts a watch at the highest level of
  123.      *  the registry hierarchy. It notifies ONLY IF properties at THIS LEVEL
  124.      *  get added/modified/deleted.
  125.      */
  126.     STDMETHOD_(UINT32, SetWatchOnRoot) (THIS);
  127.     /************************************************************************
  128.      *  Method:
  129.      *      IHXPropWatch::SetWatchByXXX
  130.      *  Purpose:
  131.      *      Sets a watch-point on the Property whose name or id is
  132.      *  specified. In case the mentioned Property gets modified or deleted
  133.      *  a notification of that will be sent to the object which set the
  134.      *  watch-point.
  135.      */
  136.     STDMETHOD_(UINT32, SetWatchByName) (THIS_
  137. const char* pName);
  138.     STDMETHOD_(UINT32, SetWatchById) (THIS_
  139. const UINT32 id);
  140.     /************************************************************************
  141.      *  Method:
  142.      *      IHXPropWatch::ClearWatchOnRoot
  143.      *  Purpose:
  144.      *      Clears the watch on the root of registry.
  145.      */
  146.     STDMETHOD(ClearWatchOnRoot) (THIS);
  147.  
  148.     /************************************************************************
  149.      *  Method:
  150.      *      IHXPropWatch::ClearWatch
  151.      *  Purpose:
  152.      *      Clears a watch-point based on the Property's name or id.
  153.      */
  154.     STDMETHOD(ClearWatchByName) (THIS_
  155. const char* pName);
  156.     STDMETHOD(ClearWatchById) (THIS_
  157. const UINT32 id);
  158.     class PropWatchCallback : public IHXCallback
  159.     {
  160. public:
  161.     HXClientPropWatch*     m_pPropWatch;
  162.     CallbackHandle     m_PendingHandle;
  163.     BOOL     m_bIsCallbackPending;
  164. PropWatchCallback(HXClientPropWatch* pClientPropWatch);
  165.     /*
  166.      * IUnknown methods
  167.      */
  168.     STDMETHOD(QueryInterface) (THIS_
  169.     REFIID riid,
  170.     void** ppvObj);
  171.     STDMETHOD_(ULONG32,AddRef) (THIS);
  172.     STDMETHOD_(ULONG32,Release) (THIS);
  173.     /*
  174.      * IHXCallback methods
  175.      */
  176.     STDMETHOD(Func) (THIS);
  177. protected:
  178.     ~PropWatchCallback();
  179.     LONG32     m_lRefCount;
  180.     };
  181.     class PropWatchResponse : public IHXPropWatchResponse
  182.     {
  183. public:
  184.     HXClientPropWatch*     m_pPropWatch;
  185.     PropWatchResponse(HXClientPropWatch* pClientPropWatch);
  186.     void ProcessPendingResponses();
  187.     /*
  188.      * IUnknown methods
  189.      */
  190.     STDMETHOD(QueryInterface) (THIS_
  191.     REFIID riid,
  192.     void** ppvObj);
  193.     STDMETHOD_(ULONG32,AddRef) (THIS);
  194.     STDMETHOD_(ULONG32,Release) (THIS);
  195.     /*
  196.      * IHXPropWatchResponse methods
  197.      */
  198.     STDMETHOD(AddedProp) (THIS_
  199. const UINT32 id,
  200. const HXPropType    propType,
  201. const UINT32 ulParentID);
  202.     STDMETHOD(ModifiedProp) (THIS_
  203. const UINT32 id,
  204. const HXPropType    propType,
  205. const UINT32 ulParentID);
  206.     STDMETHOD(DeletedProp) (THIS_
  207. const UINT32 id,
  208. const UINT32 ulParentID);
  209. protected:
  210.     void ScheduleCallback(ResponseType uResponseType,
  211.      const UINT32 id,
  212.      const HXPropType    propType,
  213.      const UINT32 ulParentID);
  214.     ~PropWatchResponse();
  215.     LONG32     m_lRefCount;
  216.     CHXSimpleList*  m_pPendingResponseList;
  217.     
  218.     HXMutex*        m_pMutex;
  219.     };
  220.     friend class PropWatchResponse;
  221.     friend class PropWatchCallback;
  222.     PropWatchResponse*     m_pInternalResponse;
  223.     PropWatchCallback*     m_pCallback;
  224. };
  225. #endif // _HXPROPW_H_