X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=d19bd8467a482517d7602cb4b33e0bc595593ef7;hb=817439b17505a397a77d29308faf277611a341c9;hp=01e64c39494cecb606212073c5daec89c38fd8a9;hpb=e18f820916dd4c72fd64ae6d0c36fd7a934867d5;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index 01e64c394..d19bd8467 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -14,6 +14,7 @@ #include #include +#include //>> Forward declaration of xmlNodePtr. typedef struct _xmlNode xmlNode; @@ -61,6 +62,12 @@ class Config_XMLReader * "selection_filter" nodes. */ virtual void processNode(xmlNodePtr aNode); + + /*! + * This method gives an ability to finalize processing of a node, + * when reader is about to leave the node (node and all it's children are processed) + */ + virtual void cleanup(xmlNodePtr aNode); /*! * \brief Defines which nodes should be processed recursively. Virtual. * The default impl is to read all nodes. @@ -78,21 +85,22 @@ class Config_XMLReader xmlNodePtr node(void* theNode); /// Gets xml node name std::string getNodeName(xmlNodePtr theNode); - /*! - * \brief Retrieves all the necessary info from the validator node. - * Sends ValidatorLoaded event - */ - void processValidator(xmlNodePtr theNode); - /*! - * \brief Retrieves all the necessary info from the SelectionFilter node. - * Sends SelectionFilterLoaded event - */ - void processSelectionFilter(xmlNodePtr theNode); + /// Stores an attribute in internal map for later use. + /// Key is "Node_Name:Node_Attribute" and value is getProperty(theNodeAttribute) + void storeAttribute(xmlNodePtr theNode, const char* theNodeAttribute); + /// Restores an attribute from internal map. + std::string restoreAttribute(xmlNodePtr theNode, const char* theNodeAttribute); + /// Restores an attribute from internal map. + std::string restoreAttribute(const char* theNodeName, const char* theNodeAttribute); + bool cleanupAttribute(xmlNodePtr theNode, const char* theNodeAttribute); + bool cleanupAttribute(const char* theNodeName, const char* theNodeAttribute); protected: - std::string myCurrentFeature; ///< Name of currently processed feature std::string myDocumentPath; ///< Path to the xml document xmlDocPtr myXmlDoc; ///< Root of the xml document + /// A map to store all parent's attributes. + /// The key has from "Node_Name:Node_Attribute" + std::map myCachedAttributes; }; #endif /* CONFIG_XMLREADER_H_ */