Salome HOME
Merge branch 'Dev_0.7.1' of newgeom:newgeom into Dev_0.7.1
[modules/shaper.git] / src / Config / Config_ModuleReader.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * Config_XMLModuleReader.h
5  *
6  *  Created on: Mar 20, 2014
7  *      Author: sbh
8  */
9
10 #ifndef CONFIG_MODULEREADER_H_
11 #define CONFIG_MODULEREADER_H_
12
13 #include <Config_def.h>
14 #include <Config_XMLReader.h>
15
16 #include <map>
17 #include <list>
18 #include <set>
19 #include <string>
20
21 /*!
22  * \class Config_ModuleReader
23  * \ingroup Config
24  * \brief Class to process plugins.xml - definition of plugins (scripts, libraries).
25  */
26 class Config_ModuleReader : public Config_XMLReader
27 {
28   enum PluginType {
29     Binary = 0,
30     Intrenal = 1,
31     Python = 2
32   };
33
34  public:
35   /// Constructor
36   CONFIG_EXPORT Config_ModuleReader(const char* theEventGenerated = 0);
37   /// Destructor
38   CONFIG_EXPORT virtual ~Config_ModuleReader();
39   /// Returns map that describes which file contains a feature (the feature is key, the file is value)
40   CONFIG_EXPORT const std::map<std::string, std::string>& featuresInFiles() const;
41   /// Returns module name: an xml attribute from the root of the plugins.xml:
42   /// e.g <plugins module="PartSet">
43   CONFIG_EXPORT std::string getModuleName();
44   /// Detects type of the given plugin and loads it using loadLibrary or loadScript.
45   CONFIG_EXPORT static void loadPlugin(const std::string& thePluginName);
46   /// loads the library with specific name, appends "lib*.dll" or "*.so" depending on the platform
47   CONFIG_EXPORT static void loadLibrary(const std::string& theLibName);
48   /// loads the python module with specified name
49   CONFIG_EXPORT static void loadScript(const std::string& theFileName);
50   /*!
51    * Extends set of modules,  used for dependency checking (if there is no
52    * required module in the set, a plugin will not be loaded)
53    */
54   CONFIG_EXPORT static void addDependencyModule(const std::string& theModuleName);
55
56  protected:
57   /// Recursively process the given xmlNode
58   virtual void processNode(xmlNodePtr aNode);
59   /// Defines if the reader should process children of the given node
60   virtual bool processChildren(xmlNodePtr aNode);
61   /// check if dependencies of the given node are in the list of loaded modules
62   bool hasRequiredModules(xmlNodePtr aNode) const;
63   /// reads info about plugin's features from plugin xml description
64   std::list<std::string> importPlugin(const std::string& thePluginLibrary,
65                                       const std::string& thePluginFile);
66   /// stores information about plugin in the internal cache
67   std::string addPlugin(const std::string& aPluginLibrary,
68                         const std::string& aPluginScript,
69                         const std::string& aPluginConf);
70
71  private:
72   std::map<std::string, std::string> myFeaturesInFiles; ///< a feature name is key, a file is value
73   static std::map<std::string, PluginType> myPluginTypes; ///< a plugin name is key, a plugin type is value
74   static std::set<std::string> myDependencyModules; ///< set of loaded modules
75   const char* myEventGenerated; ///< gives ability to send Feature_Messages to various listeners
76 };
77
78 #endif /* CONFIG_XMLMODULEREADER_H_ */