Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / Config / Config_XMLReader.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_XMLREADER_H_
22 #define CONFIG_XMLREADER_H_
23
24 #include <Config_def.h>
25
26 #include <cstdarg>
27 #include <string>
28 #include <map>
29
30 //>> Forward declaration of xmlNodePtr.
31 typedef struct _xmlNode xmlNode;
32 typedef xmlNode *xmlNodePtr;
33 struct _xmlNode;
34 //<<
35
36 //>> Forward declaration of xmlDocPtr.
37 typedef struct _xmlDoc xmlDoc;
38 typedef xmlDoc *xmlDocPtr;
39 struct _xmlDoc;
40 //<<
41
42 /*!
43  * \class Config_XMLReader
44  * \ingroup Config
45  * \brief Base class for all libxml readers. Provides high-level API
46  * for all xml operations.
47 */
48 class Config_XMLReader
49 {
50  public:
51   /*!
52    * Constructor
53    * \param theXmlFile - full path to the xml file which will be processed by the reader
54    */
55   CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile);
56   CONFIG_EXPORT virtual ~Config_XMLReader();
57   /*!
58    * Returns a path to resource files (created from ROOT_DIR environment variable)
59    * \return string value
60    */
61   CONFIG_EXPORT static std::string resourcesConfigFile();
62   /*!
63    * Returns a path to the plugins.xml file (created from ROOT_DIR environment variable)
64    * \return string value
65    */
66   CONFIG_EXPORT static std::string pluginConfigFile();
67   /*!
68    * Read all nodes in associated xml file,
69    * recursively if processChildren(xmlNode) is true for the xmlNode.
70    * For each read node the processNode will be called.
71    */
72   CONFIG_EXPORT void readAll();
73   /*!
74    * Returns xmlNodePtr to the root of reader's document or NULL if not found.
75    * If the path to the document to read is empty, uses myDocumentPath.
76    */
77   CONFIG_EXPORT xmlNodePtr findRoot(const std::string theDocumentPath = "");
78
79   CONFIG_EXPORT const char* encoding() const;
80
81   /// Checks all possible paths to configuration file given
82   /// Uses theFindIndex if several solutions can be found (this is the number of solution to find)
83   CONFIG_EXPORT static std::string
84     findConfigFile(const std::string theFileName, const int theFindIndex = 0);
85
86  protected:
87   /*!
88    * \brief Allows to customize reader's behavior for a node. Virtual.
89    * The default implementation process "source" and "validator" nodes.
90    */
91   virtual void processNode(xmlNodePtr aNode);
92
93   /*!
94    * This method gives an ability to finalize processing of a node,
95    * when reader is about to leave the node (node and all it's children are processed)
96    */
97   virtual void cleanup(xmlNodePtr aNode);
98   /*!
99    * \brief Defines which nodes should be processed recursively. Virtual.
100    * The default impl is to read all nodes.
101    */
102   virtual bool processChildren(xmlNodePtr aNode);
103   /*!
104    * Calls processNode() for each child (for some - recursively)
105    * of the given node.
106    * \sa ReadAll()
107    */
108   void readRecursively(xmlNodePtr theParent);
109   /*!
110    * \brief void* -> xmlNodePtr
111    */
112   xmlNodePtr node(void* theNode);
113   /// Gets xml node name
114   std::string getNodeName(xmlNodePtr theNode);
115   /// Stores an attribute in internal map for later use.
116   /// Key is "Node_Name:Node_Attribute" and value is getProperty(theNodeAttribute)
117   void storeAttribute(xmlNodePtr theNode, const char* theNodeAttribute, bool doClean = false);
118   /// Restores an attribute from internal map.
119   std::string restoreAttribute(xmlNodePtr theNode, const char* theNodeAttribute);
120   /// Restores an attribute from internal map.
121   std::string restoreAttribute(const char* theNodeName, const char* theNodeAttribute);
122   /// Cleanups attribute from cache
123   bool cleanupAttribute(xmlNodePtr theNode, const char* theNodeAttribute);
124   /// Cleanups attribute from cache
125   bool cleanupAttribute(const char* theNodeName, const char* theNodeAttribute);
126
127  protected:
128   std::string myDocumentPath; ///< Path to the xml document
129   xmlDocPtr myXmlDoc; ///< Root of the xml document
130   std::string myRootFileName; ///< name of the root file
131   /// A map to store all parent's attributes.
132   /// The key has from "Node_Name:Node_Attribute"
133   std::map<std::string, std::string> myCachedAttributes;
134 };
135
136 #endif /* CONFIG_XMLREADER_H_ */