]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_PluginManager.h
Salome HOME
Added object, attribute and data model organization in the document.
[modules/shaper.git] / src / Model / Model_PluginManager.h
1 // File:        Model_PluginManager.hxx
2 // Created:     20 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Model_PluginManager_HeaderFile
6 #define Model_PluginManager_HeaderFile
7
8 #include "Model.h"
9 #include <ModelAPI_PluginManager.h>
10 #include <Event_Listener.h>
11 #include <map>
12
13 class Model_Document;
14
15 /**\class Model_PluginManager
16  * \ingroup DataModel
17  * \brief Object that knows (from the initial XML file) which
18  * plugin contains which feature, loads and stores reference to loaded plugins by
19  * the feature functionality request.
20  */
21 class Model_PluginManager : public ModelAPI_PluginManager, public Event_Listener
22 {
23   bool myPluginsInfoLoaded; ///< it true if plugins information is loaded
24   /// map of feature IDs to plugin name
25   std::map<std::string, std::string> myPlugins;
26   std::map<std::string, ModelAPI_Plugin*> myPluginObjs; ///< instances of the already plugins
27   std::string myCurrentPluginName; ///< name of the plugin that must be loaded currently
28 public:
29   /// Creates the feature object using plugins functionality
30   MODEL_EXPORT virtual std::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID);
31
32   /// Returns the root document of the application (that may contains sub-documents)
33   virtual std::shared_ptr<ModelAPI_Document> rootDocument();
34
35   /// Registers the plugin that creates features.
36   /// It is obligatory for each plugin to call this function on loading to be found by 
37   /// the plugin manager on call of the feature)
38   virtual void registerPlugin(ModelAPI_Plugin* thePlugin);
39
40   /// Processes the configuration file reading
41   MODEL_EXPORT virtual void processEvent(const Event_Message* theMessage);
42
43   /// Is called only once, on startup of the application
44   Model_PluginManager();
45
46 private:
47   /// Loads (if not done yet) the information about the features and plugins
48   void LoadPluginsInfo();
49 };
50
51 #endif