plugin_factory.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_factory.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/18 15:43:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___PLUGIN_FACTORY__HPP
  10. #define GUI_CORE___PLUGIN_FACTORY__HPP
  11. /*  $Id: plugin_factory.hpp,v 1000.1 2003/11/18 15:43:56 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CPluginFactory -- abstract base class for plugin factories
  40.  */
  41. #include <gui/core/plugin.hpp>
  42. #include <gui/plugin/PluginCommand.hpp>
  43. #include <gui/plugin/PluginCommandSet.hpp>
  44. #include <gui/plugin/PluginInfo.hpp>
  45. #include <gui/plugin/PluginReply.hpp>
  46. #include <gui/plugin/PluginRequest.hpp>
  47. BEGIN_NCBI_SCOPE
  48. //
  49. // class CPluginFactory defines the interface required of all plugin factories.
  50. //
  51. // This class is responsible for the creation of a plugin instance.
  52. // It serves as the entry point class for a given plugin library.
  53. //
  54. class NCBI_GUICORE_EXPORT CPluginFactoryBase
  55. {
  56. public:
  57.     // this is a typedef for the main DLL entry point for a plugin
  58.     typedef void (*FPluginEntryPoint)(list<CPluginFactoryBase*>&);
  59.     // virtual destructor
  60.     virtual ~CPluginFactoryBase();
  61.     // GetInfo() is the hook for a derived plugin factory to fill in the
  62.     // appropriate and required information.  This is pure virtual as all
  63.     // plugin factories must implement this function.
  64.     virtual void GetInfo(objects::CPluginInfo& info) const = 0;
  65.     virtual CPluginBase* GetPlugin(void) = 0;
  66. };
  67. //
  68. // templatized base class for all factory types
  69. //
  70. template <class PluginType>
  71. class CPluginFactory : public CPluginFactoryBase
  72. {
  73. public:
  74.     // overloaded GetInfo() - we call a static function in our derived plugin
  75.     // type.  This static function is a requirement of all plugin
  76.     // implementations.
  77.     virtual void GetInfo(objects::CPluginInfo& info) const
  78.     {
  79.         PluginType::GetInfo(info);
  80.     }
  81.     virtual CPluginBase*  GetPlugin(void) = 0;
  82. };
  83. //
  84. // macros to assist in setting up plugin entry points
  85. //
  86. #ifdef NCBI_OS_MSWIN
  87. #  define NCBI_PLUGINENTRYPOINT_EXPORT __declspec(dllexport)
  88. #else
  89. #  define NCBI_PLUGINENTRYPOINT_EXPORT
  90. #endif
  91. #define BEGIN_PLUGIN_REGISTRATION 
  92. extern "C" { 
  93. NCBI_PLUGINENTRYPOINT_EXPORT 
  94. void NCBIGBenchGetPlugins(list<CPluginFactoryBase*>& plugins) {
  95. #define END_PLUGIN_REGISTRATION } }
  96. END_NCBI_SCOPE
  97. #endif  // GUI_CORE___PLUGIN_FACTORY__HPP
  98. /*
  99.  * ===========================================================================
  100.  * $Log: plugin_factory.hpp,v $
  101.  * Revision 1000.1  2003/11/18 15:43:56  gouriano
  102.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.10
  103.  *
  104.  * Revision 1.10  2003/11/06 19:53:41  dicuccio
  105.  * Removed USING_SCOPE(objects)
  106.  *
  107.  * Revision 1.9  2003/07/14 10:57:45  shomrat
  108.  * Plugin messageing system related changes
  109.  *
  110.  * Revision 1.8  2003/06/25 16:59:41  dicuccio
  111.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  112.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  113.  *
  114.  * Revision 1.7  2003/06/20 14:44:36  dicuccio
  115.  * Revamped handling of plugin registration.  All plugin factories now derive
  116.  * from CPluginFactoryBase; CPluginFactory is a template.  There is a new
  117.  * requirement for derived plugin handlers of all types (each must implement a
  118.  * static function of the form 'static void GetInfo(CPluginInfo&)')
  119.  *
  120.  * Revision 1.6  2003/05/19 13:32:43  dicuccio
  121.  * Moved gui/core/plugin --> gui/plugin/
  122.  *
  123.  * Revision 1.5  2003/03/25 14:20:47  dicuccio
  124.  * Changed export specifier from XGBPLUGIN to GUICORE
  125.  *
  126.  * Revision 1.4  2003/03/13 18:07:58  dicuccio
  127.  * Added standard mechanism for processing plugin reply (view action is currently
  128.  * the only handled action)
  129.  *
  130.  * Revision 1.3  2003/02/24 13:00:17  dicuccio
  131.  * Renamed classes in plugin spec:
  132.  *     CArgSeg --> CPluginArgSet
  133.  *     CArgument --> CPluginArg
  134.  *     CPluginArgs --> CPluginCommand
  135.  *     CPluginCommands --> CPluginCommandSet
  136.  *
  137.  * Revision 1.2  2003/02/21 16:44:13  dicuccio
  138.  * Added Win32 export specifiers for new plugin library.  Fixed compilation
  139.  * issues for Win32.
  140.  *
  141.  * Revision 1.1  2003/02/20 19:44:06  dicuccio
  142.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  143.  * framework over to use new plugin architecture.
  144.  *
  145.  * ===========================================================================
  146.  */