Salome HOME
"Internal" feature XML procesing. Fixes #40
[modules/shaper.git] / src / Config / Config_FeatureReader.h
1 /*
2  * Config_FeatureReader.h
3  *
4  *  Created on: Mar 20, 2014
5  *      Author: sbh
6  */
7
8 #ifndef CONFIG_FEATUREREADER_H_
9 #define CONFIG_FEATUREREADER_H_
10
11 #include <Config.h>
12 #include <Config_XMLReader.h>
13
14 #include <string>
15 #include <list>
16
17 class Config_FeatureMessage;
18
19 class Config_FeatureReader: public Config_XMLReader
20 {
21 public:
22   Config_FeatureReader(const std::string& theXmlFile,
23                        const std::string& theLibraryName,
24                        const char* theEventGenerated = 0);
25   virtual ~Config_FeatureReader();
26
27   std::list<std::string> features() const;
28
29 protected:
30   void processNode(xmlNodePtr aNode);
31   bool processChildren(xmlNodePtr aNode);
32
33   void fillFeature(xmlNodePtr theRoot, Config_FeatureMessage& outFeatureMessage);
34   bool isInternalFeature(xmlNodePtr theRoot);
35
36 private:
37   std::string myLastWorkbench;
38   std::string myLastGroup;
39   std::string myLibraryName;
40
41   std::list<std::string> myFeatures;
42   /// event generated on feature data sending, by default it is EVENT_FEATURE_LOADED
43   const char* myEventGenerated;
44 };
45
46 #endif /* CONFIG_FEATUREREADER_H_ */