Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / Config / Config_FeatureReader.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef CONFIG_FEATUREREADER_H_
22 #define CONFIG_FEATUREREADER_H_
23
24 #include <Config_def.h>
25 #include <Config_XMLReader.h>
26 #include <memory>
27
28 #include <string>
29 #include <list>
30
31 class Config_FeatureMessage;
32
33 /*!
34  * \class Config_FeatureReader
35  * \ingroup Config
36  * \brief Class to process feature's xml definition.
37  */
38 class Config_FeatureReader : public Config_XMLReader
39 {
40  public:
41   /// Constructor
42   Config_FeatureReader(const std::string& theXmlFile,
43                        const std::string& theLibraryName,
44                        const char* theEventGenerated = 0);
45   virtual ~Config_FeatureReader();
46   /// Returns list of all features defined in reader's file
47   std::list<std::string> features() const;
48
49  protected:
50   /// Overloaded method. Defines how to process each node
51   virtual void processNode(xmlNodePtr aNode);
52
53   /// Overloaded method. Clears attribute cache on exit from attribute's node
54   virtual void cleanup(xmlNodePtr aNode);
55
56   /// Overloaded method. Defines if the given node should be parsed recursively
57   virtual bool processChildren(xmlNodePtr aNode);
58
59   /// Fills feature message
60   void fillFeature(xmlNodePtr theRoot,
61                    const std::shared_ptr<Config_FeatureMessage>& outFeatureMessage);
62
63  private:
64   std::string myLibraryName;
65
66   std::list<std::string> myFeatures;
67   /// event generated on feature data sending, by default it is Config_FeatureMessage::GUI_EVENT()
68   const char* myEventGenerated;
69   bool myIsProcessWidgets;
70 };
71
72 #endif /* CONFIG_FEATUREREADER_H_ */