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

Symbian

开发平台:

Visual C++

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