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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_registry.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/16 17:49:03  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.23
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___PLUGIN_REGISTRY__HPP
  10. #define GUI_CORE___PLUGIN_REGISTRY__HPP
  11. /*  $Id: plugin_registry.hpp,v 1000.3 2004/04/16 17:49:03 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.  *    CPluginRegistry -- central repository for all plugin information
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/core/plugin_handle.hpp>
  43. #include <gui/core/plugin_factory.hpp>
  44. #include <gui/plugin/PluginCommandSet.hpp>
  45. #include <set>
  46. BEGIN_NCBI_SCOPE
  47. // a predeclaration for the plugin cache avoids an include here
  48. // this needs to be wrapped in namespace objects::
  49. BEGIN_SCOPE(objects)
  50.     class CPluginCache;
  51. END_SCOPE(objects)
  52. class IDocument;
  53. class CSelectionBuffer;
  54. //
  55. // class CPluginRegistry is responsible for maintaining a list of the active
  56. // plugin handles and controlling the loading of all plugins.
  57. //
  58. // This class maintains a list of all plugin handles available for the system.
  59. // There are accessor functions to retrieve plugins based on different sets of
  60. // criteria (i.e., all view plugins, all algorithm plugins, etc.).
  61. //
  62. class NCBI_GUICORE_EXPORT CPluginRegistry
  63. {
  64.     friend class CPluginHandle_Impl;
  65. public:
  66.     // flags controlling what sorts of plugins to retrieve
  67.     enum EFlags {
  68.         fHidden = 0x01  // include "hidden" plugins (plugins with no menu item)
  69.     };
  70.     typedef int TFlags;
  71.     // enum controlling how user plugins are serialized
  72.     enum EUserPlugin {
  73.         ePersistent,
  74.         eNonPersistent
  75.     };
  76.     // typedef for a set of plugin handles - intended for external consumption
  77.     typedef list<CPluginHandle> TPlugins;
  78.     // Add to the current registry the plugins listed in a plugin cache file
  79.     // found in the specified directory
  80.     static void InitPlugins(const string& path);
  81.     // Clear() is called at application exit by the document manager.  The
  82.     // intent is to flush any CRef<>'d pointers out of the internal store
  83.     static void Clear(void);
  84.     // add a plugin implemented indirectly, e.g., via an external executable
  85.     static void RegisterPlugin(CRef<objects::CPluginInfo> info,
  86.                                CPluginFactoryBase *factory);
  87.     // add a user-defined plugin
  88.     static CPluginHandle AddPlugin(objects::CPluginLibInfo& libinfo,
  89.                                    EUserPlugin mode = ePersistent);
  90.     // Retrieve a specifically and uniquely named plugin
  91.     static CPluginHandle GetPlugin(const string& name);
  92.     // retrieve a list of all plugins
  93.     static TPlugins GetPlugins(TFlags flags = 0);
  94.     // retrieve a list of plugins for a given command type (data, algo, or view)
  95.     static TPlugins GetPlugins(objects::CPluginCommandSet::E_Choice,
  96.                                TFlags flags = 0);
  97.     // retrieve a list of plugins for a given command.  This version will
  98.     // return only those plugins that support an input parameter compatible
  99.     // with a given of the current document.  This command is a specific view,
  100.     // data, or algorithm command
  101.     static TPlugins GetPlugins(objects::EAlgoCommand cmd,
  102.                                TFlags flags = 0);
  103.     static TPlugins GetPlugins(objects::EDataCommand cmd,
  104.                                const IDocument* doc,
  105.                                TFlags flags = 0);
  106.     static TPlugins GetPlugins(objects::EViewCommand cmd,
  107.                                TFlags flags = 0);
  108.     static TPlugins GetPlugins(objects::EDataCommand cmd,
  109.                                const CSelectionBuffer& buf,
  110.                                TFlags flags = 0);
  111. protected:
  112.     // force loading of a library
  113.     static void x_LoadLibrary(const string& lib_name);
  114.     // internal init function, called after successful reading of a plugin
  115.     // cache file
  116.     static void x_InitPlugins(const string& path,
  117.                               objects::CPluginCache& cache);
  118. };
  119. END_NCBI_SCOPE
  120. #endif  // GUI_CORE___PLUGIN_REGISTRY__HPP
  121. /*
  122.  * ===========================================================================
  123.  * $Log: plugin_registry.hpp,v $
  124.  * Revision 1000.3  2004/04/16 17:49:03  gouriano
  125.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.23
  126.  *
  127.  * Revision 1.23  2004/04/16 14:31:30  dicuccio
  128.  * Changed plugin access for algorithms and views - no selection arguments
  129.  * required
  130.  *
  131.  * Revision 1.22  2003/11/06 19:54:22  dicuccio
  132.  * Removed USING_SCOPE(objects).
  133.  *
  134.  * Revision 1.21  2003/11/04 17:12:24  dicuccio
  135.  * Added Clear() to purge existing handles and plugin instances
  136.  *
  137.  * Revision 1.20  2003/10/27 17:28:32  dicuccio
  138.  * Changed AddUserPlugin() to more general AddPlugin()
  139.  *
  140.  * Revision 1.19  2003/10/23 16:12:30  dicuccio
  141.  * Added API for manually adding plugins
  142.  *
  143.  * Revision 1.18  2003/09/04 14:00:26  dicuccio
  144.  * Introduce IDocument and IView as abstract base classes.  Use IDocument instead
  145.  * of CDocument.
  146.  *
  147.  * Revision 1.17  2003/08/21 12:13:42  dicuccio
  148.  * Removed stray ',' that was causing some compiler warnings
  149.  *
  150.  * Revision 1.16  2003/07/28 19:29:29  jcherry
  151.  * Added CPluginRegistry::RegisterPlugin for registering 'external'
  152.  * (executable) plugins
  153.  *
  154.  * Revision 1.15  2003/07/21 19:19:00  dicuccio
  155.  * Added interface to request plugins given a set of selections
  156.  *
  157.  * Revision 1.14  2003/06/30 13:43:13  dicuccio
  158.  * Added API to screen for plugins that shouldn't appear in menus
  159.  *
  160.  * Revision 1.13  2003/06/25 19:55:23  dicuccio
  161.  * Fixed compilation for Windows - missing include, namespace weirdness
  162.  *
  163.  * Revision 1.12  2003/06/25 16:59:41  dicuccio
  164.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  165.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  166.  *
  167.  * Revision 1.11  2003/05/19 13:32:43  dicuccio
  168.  * Moved gui/core/plugin --> gui/plugin/
  169.  *
  170.  * Revision 1.10  2003/05/08 16:17:39  dicuccio
  171.  * Changed CFastMutex -> CMutex (locks must be recursive-safe)
  172.  *
  173.  * Revision 1.9  2003/05/06 15:50:46  dicuccio
  174.  * Added mutex guarding access to the plugin registry
  175.  *
  176.  * Revision 1.8  2003/05/05 12:39:59  dicuccio
  177.  * Added new interface function 9CanFitArgs()) for testing whether a group of
  178.  * selections or objects could possibly apply to a set of arguments
  179.  *
  180.  * Revision 1.7  2003/04/29 14:29:43  dicuccio
  181.  * Added interface function (template) to retrieve plugins that support a given
  182.  * plugin command
  183.  *
  184.  * Revision 1.6  2003/03/25 19:36:04  dicuccio
  185.  * Remove explicit class qualifier from static member function
  186.  *
  187.  * Revision 1.5  2003/03/25 14:20:47  dicuccio
  188.  * Changed export specifier from XGBPLUGIN to GUICORE
  189.  *
  190.  * Revision 1.4  2003/03/13 18:13:23  dicuccio
  191.  * Added accessor for single, named plugin
  192.  *
  193.  * Revision 1.3  2003/02/24 13:00:17  dicuccio
  194.  * Renamed classes in plugin spec:
  195.  *     CArgSeg --> CPluginArgSet
  196.  *     CArgument --> CPluginArg
  197.  *     CPluginArgs --> CPluginCommand
  198.  *     CPluginCommands --> CPluginCommandSet
  199.  *
  200.  * Revision 1.2  2003/02/21 16:44:13  dicuccio
  201.  * Added Win32 export specifiers for new plugin library.  Fixed compilation
  202.  * issues for Win32.
  203.  *
  204.  * Revision 1.1  2003/02/20 19:44:06  dicuccio
  205.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  206.  * framework over to use new plugin architecture.
  207.  *
  208.  * ===========================================================================
  209.  */