X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_XMLReader.h;h=01e64c39494cecb606212073c5daec89c38fd8a9;hb=d77e6639d89abdcbf327cc73d13bf955064b8524;hp=119bd71c132542d662f3fb5b9f152207d4955fb1;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/Config/Config_XMLReader.h b/src/Config/Config_XMLReader.h index 119bd71c1..01e64c394 100644 --- a/src/Config/Config_XMLReader.h +++ b/src/Config/Config_XMLReader.h @@ -27,38 +27,72 @@ typedef xmlDoc *xmlDocPtr; struct _xmlDoc; //<< -/* - * Base class for all libxml readers. Provides high-level API +/*! + * \class Config_XMLReader + * \ingroup Config + * \brief Base class for all libxml readers. Provides high-level API * for all xml operations. - * - */ +*/ class Config_XMLReader { public: - CONFIG_EXPORT Config_XMLReader(const std::string& theXmlFile);CONFIG_EXPORT virtual ~Config_XMLReader(); - + /*! + * 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(); + /*! + * Read all nodes in associated xml file, + * recursively if processChildren(xmlNode) is true for the xmlNode. + * For each read node the processNode will be called. + */ CONFIG_EXPORT void readAll(); - - public: + /*! + * Returns xmlNodePtr to the root of reader's document + * or NULL if not found + */ CONFIG_EXPORT xmlNodePtr findRoot(); protected: + /*! + * \brief Allows to customize reader's behavior for a node. Virtual. + * The default implementation process "source", "validator" and + * "selection_filter" nodes. + */ virtual void processNode(xmlNodePtr aNode); + /*! + * \brief Defines which nodes should be processed recursively. Virtual. + * The default impl is to read all nodes. + */ virtual bool processChildren(xmlNodePtr aNode); - + /*! + * Calls processNode() for each child (for some - recursively) + * of the given node. + * \sa ReadAll() + */ void readRecursively(xmlNodePtr theParent); - + /*! + * \brief void* -> xmlNodePtr + */ 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); protected: - std::string myCurrentFeature; - - protected: - std::string myDocumentPath; - xmlDocPtr myXmlDoc; + std::string myCurrentFeature; ///< Name of currently processed feature + std::string myDocumentPath; ///< Path to the xml document + xmlDocPtr myXmlDoc; ///< Root of the xml document }; #endif /* CONFIG_XMLREADER_H_ */