rlogplin.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2003 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. #ifndef RLOGPLIN_H
  36. #define RLOGPLIN_H
  37. #include "hxtypes.h"
  38. #include "hxcom.h"
  39. #include "hxplugn.h"
  40. #include "hxerror.h"
  41. #include "hxcore.h"
  42. #include "hxpsink.h"
  43. #include "remote_logger.h"
  44. class HXRemoteLoggerPlugin : public IHXPlugin,
  45.      public IHXGenericPlugin,
  46.      public IHXPlayerCreationSink,
  47.      public IHXComponentPlugin
  48. {
  49. public:
  50.     HXRemoteLoggerPlugin();
  51.     /*
  52.      * IUnknown methods
  53.      */
  54.     STDMETHOD(QueryInterface) (THIS_
  55. REFIID riid,
  56. void** ppvObj);
  57.     STDMETHOD_(ULONG32,AddRef) (THIS);
  58.     STDMETHOD_(ULONG32,Release) (THIS);
  59.     /*
  60.      * IHXPlugin methods
  61.      */
  62.     /************************************************************************
  63.      * Method:
  64.      *     IHXPlugin::GetPluginInfo
  65.      * Purpose:
  66.      *     Returns the basic information about this plugin. Including:
  67.      *
  68.      *     bMultipleLoad Whether or not this plugin can be instantiated
  69.      * multiple times. All File Formats must set
  70.      * this value to TRUE.  The only other type of
  71.      * plugin that can specify bMultipleLoad=TRUE is
  72.      * a filesystem plugin.  Any plugin that sets
  73.      * this flag to TRUE must not use global variables
  74.      * of any type.
  75.      *
  76.      * Setting this flag to TRUE implies that you
  77.      * accept that your plugin may be instantiated
  78.      * multiple times (possibly in different
  79.      * address spaces).  Plugins are instantiated
  80.      * multiple times only in the server (for
  81.      * performance reasons).
  82.      *
  83.      * An example of a plugin, that must set this
  84.      * flag to FALSE is a filesystem plugin that 
  85.      * uses a single TCP connection to communicate
  86.      * with a database.
  87.      *
  88.      *     pDescription which is used in about UIs (can be NULL)
  89.      *     pCopyright which is used in about UIs (can be NULL)
  90.      *     pMoreInfoURL which is used in about UIs (can be NULL)
  91.      *     ulVersionNumber The version of this plugin.
  92.      */
  93.     STDMETHOD(GetPluginInfo) (THIS_
  94. REF(BOOL)  /*OUT*/ bMultipleLoad,
  95. REF(const char*) /*OUT*/ pDescription,
  96. REF(const char*) /*OUT*/ pCopyright,
  97. REF(const char*) /*OUT*/ pMoreInfoURL,
  98. REF(ULONG32)  /*OUT*/ ulVersionNumber);
  99.     /************************************************************************
  100.      * Method:
  101.      *     IHXPlugin::InitPlugin
  102.      * Purpose:
  103.      *     Initializes the plugin for use. This interface must always be
  104.      *     called before any other method is called. This is primarily needed 
  105.      *     so that the plugin can have access to the context for creation of
  106.      *     IHXBuffers and IMalloc.
  107.      */
  108.     STDMETHOD(InitPlugin)   (THIS_
  109.     IUnknown*   /*IN*/  pContext);
  110.     /*
  111.      * IHXGenericPlugin methods
  112.      */
  113.     STDMETHOD(IsGeneric) (THIS_
  114. REF(BOOL)  /*OUT*/ bIsGeneric);
  115.     /*
  116.      * IHXPlayerCreationSink Methods
  117.      */
  118.     /************************************************************************
  119.      * Method:
  120.      *     IHXPlayerCreationSink::PlayerCreated
  121.      * Purpose:
  122.      *     Notification when a new player is created
  123.      *
  124.      */
  125.     STDMETHOD(PlayerCreated) (THIS_
  126. IHXPlayer* pPlayer);
  127.     
  128.     /************************************************************************
  129.      * Method:
  130.      *     IHXPlayerCreationSink::PlayerClosed
  131.      * Purpose:
  132.      *     Notification when an exisitng player is closed
  133.      *
  134.      */
  135.     STDMETHOD(PlayerClosed) (THIS_
  136. IHXPlayer* pPlayer);
  137.     /*
  138.      * IHXComponentPlugin methods
  139.      */
  140.     /************************************************************************
  141.      * Method:
  142.      *     IHXComponentPlugin::GetNumberComponents
  143.      * Purpose:
  144.      */
  145.     STDMETHOD_(UINT32, GetNumComponents)(THIS);
  146.     /************************************************************************
  147.      * Method:
  148.      *     IHXComponentPlugin::GetPackageName
  149.      * Purpose:
  150.      */
  151.     STDMETHOD_(char const*, GetPackageName)(THIS) CONSTMETHOD;
  152.     /************************************************************************
  153.      *  Method:
  154.      *     IHXComponentPlugin::GetComponentInfoAtIndex
  155.      *  Purpose:
  156.      */
  157.     STDMETHOD(GetComponentInfoAtIndex) (THIS_
  158.     UINT32      /*IN*/  nIndex,
  159.     REF(IHXValues*)  /*OUT*/ pInfo);
  160.     /************************************************************************
  161.      *  Method:
  162.      *     IHXComponentPlugin::CreateComponentInstance
  163.      *  Purpose:
  164.      */
  165.     STDMETHOD(CreateComponentInstance)(THIS_
  166.     REFCLSID     /*IN*/  rclsid,
  167.     REF(IUnknown*)  /*OUT*/ ppUnknown,
  168.     IUnknown*     /*IN*/  pUnkOuter);
  169.     HX_RESULT ErrorOccurred(const UINT8  unSeverity,  
  170.     const ULONG32 ulHXCode,
  171.     const ULONG32 ulUserCode,
  172.     const char* pUserString,
  173.     const char* pMoreInfoURL);
  174. private:
  175.     ~HXRemoteLoggerPlugin();
  176.     ULONG32 m_lRefCount;
  177.     IHXErrorSink* m_pErrorSink;
  178.     HXRemoteLogger* m_pRemoteLogger;
  179. };
  180. #endif /* RLOGPLIN_H */