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

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. #ifndef HXPLUGIN_H__
  36. #define HXPLUGIN_H__
  37. #include "hxstring.h"
  38. #include "hxtypes.h"
  39. #include "hxcom.h"
  40. #include "unkimp.h"
  41. // Plugin Types.
  42. #define PLUGIN_FILESYSTEM_TYPE     "PLUGIN_FILE_SYSTEM"
  43. #define PLUGIN_FILEFORMAT_TYPE     "PLUGIN_FILE_FORMAT"
  44. #define PLUGIN_FILEWRITER_TYPE     "PLUGIN_FILE_WRITER"
  45. #define PLUGIN_METAFILEFORMAT_TYPE  "PLUGIN_METAFILE_FORMAT"
  46. #define PLUGIN_RENDERER_TYPE     "PLUGIN_RENDERER"
  47. #define PLUGIN_STREAM_DESC_TYPE     "PLUGIN_STREAM_DESC"
  48. #define PLUGIN_CLASS_FACTORY_TYPE   "PLUGIN_CLASS_FACT"
  49. #define PLUGIN_PAC_TYPE     "PLUGIN_PAC"
  50. #define PLUGIN_CLASS     "PluginType"
  51. #define PLUGIN_FILENAME     "PluginFilename"
  52. #define PLUGIN_REGKEY_ROOT     "PluginHandlerData"
  53. #define PLUGIN_PLUGININFO     "PluginInfo"
  54. #define PLUGIN_GUIDINFO     "GUIDInfo"
  55. #define PLUGIN_NONHXINFO     "NonHXDLLs"
  56. #define PLUGIN_DESCRIPTION2     "Description"
  57. #define PLUGIN_FILE_HASH     "FileHash"
  58. #define PLUGIN_INDEX     "IndexNumber"
  59. #define PLUGIN_FILENAMES     "FileInfo"
  60. #define PLUGIN_COPYRIGHT2     "Copyright"
  61. #define PLUGIN_LOADMULTIPLE     "LoadMultiple"
  62. #define PLUGIN_VERSION     "Version"
  63. #define PLUGIN_FILESYSTEMSHORT     "FileShort"
  64. #define PLUGIN_FILESYSTEMPROTOCOL   "FileProtocol"
  65. #define PLUGIN_FILEMIMETYPES     "FileMime"
  66. #define PLUGIN_FILEEXTENSIONS     "FileExtensions"
  67. #define PLUGIN_FILEOPENNAMES     "FileOpenNames"
  68. #define PLUGIN_RENDERER_MIME     "RendererMime"
  69. #define PLUGIN_RENDERER_GRANULARITY "Renderer_Granularity"
  70. #define PLUGIN_STREAMDESCRIPTION    "StreamDescription"
  71. #define PLUGIN_NUM_PLUGINS     "NumPlugins"
  72. #define PLUGIN_FILE_CHECKSUM     "DLLCheckSum"
  73. #define PLUGIN_DLL_SIZE     "DLLSize"
  74. #define PLUGIN_HAS_FACTORY     "DLLHasFactory"
  75. class HXPluginArchiveReader;
  76. class HXPluginArchiveWriter;
  77. class HXPluginDLL;
  78. _INTERFACE IHXValues;
  79. _INTERFACE IHXPlugin;
  80. class HXPlugin 
  81. : public CUnknownIMP
  82. {
  83. public:
  84.     DECLARE_UNKNOWN_NOCREATE(HXPlugin)
  85. public:
  86.     HXPlugin(IUnknown* pContext);
  87.     HXPlugin(IUnknown* pContext, HXPluginArchiveReader& ar);
  88.     void Archive(HXPluginArchiveWriter& ar);
  89.     ~HXPlugin();
  90.     HX_RESULT Init(HXPluginDLL* pDll, UINT16 idxPlugin);
  91.  
  92.     BOOL DoesMatch(IHXValues* pValues);
  93.     HX_RESULT GetValuesFromDLL(IHXPlugin* pHXPlugin);
  94.     HX_RESULT GetPlugin(IUnknown*& pUnknown );
  95.     HX_RESULT GetInstance(IUnknown*& pUnknown, IUnknown* pIUnkOuter = NULL );
  96.     HX_RESULT GetPluginInfo(IHXValues*&);
  97.     UINT16 GetIndex();
  98.     HX_RESULT AddComponentInfo(IHXValues* pVal);
  99. private:
  100.     UINT16     m_idxPlugin;
  101.     HXPluginDLL*     m_pDll;
  102.     IHXValues*     m_pValues;
  103.     bool                    m_bCanUnload;
  104.     IUnknown*     m_pContext;
  105.     IHXCommonClassFactory*  m_pClassFactory;
  106. private:
  107.     void SetPluginProperty(const char * pszPluginType);
  108.     HX_RESULT   GetBasicValues(IHXPlugin* pHXPlugin);
  109.     HX_RESULT GetExtendedValues(IHXPlugin* pHXPlugin);
  110.     HX_RESULT   CatStrings(char** pInStrings, IHXBuffer*& pOutBuffer);
  111.     BOOL        AreBufferEqual(IHXBuffer* pBigBuff, IHXBuffer* pSmallBuff);
  112. };
  113. inline
  114. UINT16 HXPlugin::GetIndex()
  115. {
  116.     return m_idxPlugin;
  117. }
  118. #endif /* HXPLUGIN_H__ */