Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModelAPI / ModelAPI_PluginManager.h
1 // File:        ModelAPI_PluginManager.hxx
2 // Created:     20 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef ModelAPI_PluginManager_HeaderFile
6 #define ModelAPI_PluginManager_HeaderFile
7
8 #include "ModelAPI.h"
9 #include <string>
10 #include <boost/shared_ptr.hpp>
11
12 class ModelAPI_Feature;
13 class ModelAPI_Plugin;
14 class ModelAPI_Document;
15
16 /**\class ModelAPI_PluginManager
17  * \ingroup DataModel
18  * \brief Object that knows (from the initial XML file) which
19  * plugin contains which feature, loads and stores reference to loaded plugins by
20  * the feature functionality request.
21  */
22
23 class MODELAPI_EXPORT ModelAPI_PluginManager
24 {
25 public:
26   /// Returns the real implementation (the alone instance per application) of the plugin manager
27   static boost::shared_ptr<ModelAPI_PluginManager> get();
28
29   /// Registers the plugin that creates features.
30   /// It is obligatory for each plugin to call this function on loading to be found by 
31   /// the plugin manager on call of the feature)
32   virtual void registerPlugin(ModelAPI_Plugin* thePlugin) = 0;
33
34   /// Returns the root document of the application (that may contains sub-documents)
35   virtual boost::shared_ptr<ModelAPI_Document> rootDocument() = 0;
36
37   /// Return true if root document has been already created
38   virtual bool hasRootDocument() = 0;
39
40   /// Returns the current document that used for current work in the application
41   virtual boost::shared_ptr<ModelAPI_Document> currentDocument() = 0;
42
43   /// Defines the current document that used for current work in the application
44   virtual void setCurrentDocument(boost::shared_ptr<ModelAPI_Document> theDoc) = 0;
45
46   /// Is needed for python wrapping by swig, call Get to get an instance
47   ModelAPI_PluginManager();
48
49   /// To virtually destroy the fields of successors
50   virtual ~ModelAPI_PluginManager() {}
51
52 protected:
53   /// Creates the feature object using plugins functionality
54   virtual boost::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID) = 0;
55
56   static void SetPluginManager(boost::shared_ptr<ModelAPI_PluginManager> theManager);
57
58   friend class Model_Document;
59 };
60
61 #endif