X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fxml%2FDocumentMemory.hpp;h=06123a1ebb3cfc1822f11f536ab76e5d29fdcecd;hp=f67611c3e704aea6d524750b481c3dd22396133f;hb=9be8dddda350c2a17febabfa31d5d392ff4870fb;hpb=d7b32ee56cf86c7702943d6afbac34c668b023ed diff --git a/include/anna/xml/DocumentMemory.hpp b/include/anna/xml/DocumentMemory.hpp index f67611c..06123a1 100644 --- a/include/anna/xml/DocumentMemory.hpp +++ b/include/anna/xml/DocumentMemory.hpp @@ -9,7 +9,9 @@ #ifndef anna_xml_DocumentMemory_hpp #define anna_xml_DocumentMemory_hpp +#include #include +#include namespace anna { @@ -23,11 +25,41 @@ public: /** Constructor. */ - DocumentMemory() {;} + DocumentMemory() : a_rootNode(NULL) {;} + + /** + * Root node after parsing, or NULL if not analyzed by mean parse() + * + * @return XML document root node + */ + const Node * getRootNode() const throw() { return a_rootNode; } + + /** + * Parse xml document and return root node + * \return Root node + * \warning Need previous initialization + */ + const Node* parse() throw(RuntimeException) { return (a_rootNode = Document::parse()); } + + /** + * Parse xml document with dtd and return root node + * \param dtd Validation DTD for XML document + * \return Root node + * \warning Need previous initialization + */ + const Node* parse(const DTD& dtd) throw(RuntimeException) { return (a_rootNode = Document::parse(dtd)); } + + /** + * XML representation from loaded document + * \return XML string + * \warning Need previous initialization and parsing + */ + std::string asXmlString() const throw() { Compiler c; return (c.apply(a_rootNode)); } private: + const anna::xml::Node * a_rootNode; virtual _xmlDoc* do_initialize(const char* content) throw(RuntimeException); - virtual _xmlDoc* do_initialize(const anna::DataBlock& content) throw(RuntimeException); + virtual _xmlDoc* do_initialize(const anna::DataBlock&) throw(RuntimeException); }; }