X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=ccb0611154dd7d9d1267c8b83dba05a691296f31;hb=ff4d5d0f42cf5d24b86b2bd2b6e1f58e74f52032;hp=1a75184b619496a5627c26ef968bf2947272454b;hpb=abab0a0689765a60fcec0d7861a3ef7893a685fa;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index 1a75184b6..ccb061115 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; @@ -36,8 +37,17 @@ struct _xmlDoc; class Config_XMLReader { public: + /*! + * Constructor + * \param theXmlFile - full path to the xml file which will be processed by the reader + */ CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile); CONFIG_EXPORT virtual ~Config_XMLReader(); + /*! + * Returns a path to the plugins.xml file (created from ROOT_DIR environment variable) + * \return string value + */ + CONFIG_EXPORT static std::string pluginConfigFile(); /*! * Read all nodes in associated xml file, * recursively if processChildren(xmlNode) is true for the xmlNode. @@ -50,13 +60,20 @@ class Config_XMLReader */ CONFIG_EXPORT xmlNodePtr findRoot(); + CONFIG_EXPORT const char* encoding() const; + protected: /*! * \brief Allows to customize reader's behavior for a node. Virtual. - * The default implementation process "source", "validator" and - * "selection_filter" nodes. + * The default implementation process "source" and "validator" 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. @@ -74,21 +91,24 @@ 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, bool doClean = false); + /// 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); + /// Cleanups attribute from cache + bool cleanupAttribute(xmlNodePtr theNode, const char* theNodeAttribute); + /// Cleanups attribute from cache + 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_ */