/** ** \file XmlNode.h ** \date 2008-02-09 ** \author grymse@alhem.net **/ /* Copyright (C) 2008-2011 Anders Hedstrom This library is made available under the terms of the GNU GPL, with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. If you would like to use this library in a closed-source application, a separate license agreement is available. For information about the closed-source license agreement for the C++ sockets library, please visit http://www.alhem.net/Sockets/license.html and/or email license@alhem.net. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _XmlNode_H #define _XmlNode_H #include "sockets-config.h" #ifdef ENABLE_XML #include #include #include #include #ifdef SOCKETS_NAMESPACE namespace Sockets { #endif class XmlDocument; class XmlNode { public: XmlNode() {} XmlNode(XmlDocument&); XmlNode(XmlDocument&, const std::string& nodepath); XmlNode(const XmlNode&, const std::string& nodepath); XmlNode(xmlDocPtr, xmlNodePtr ptr); XmlNode(XmlDocument&, xmlNodePtr ptr); ~XmlNode(); operator xmlNodePtr() const; XmlNode operator[](const std::string& name) const; operator std::string() const { return GetContent(); } void operator++() const; xmlDocPtr GetDocument() const { return m_doc; } bool Valid() const { return m_current ? true : false; } /** Assign document root element to 'current node'. \return Current Node */ xmlNodePtr GetRootElement() const; /** Return property 'propname' for 'current node'. */ std::string GetProperty(const std::string& propname) const; bool PropertyExists(const std::string& propname) const; /** Assign first child node of 'current node' to 'current node'. \return Current Node */ xmlNodePtr GetChildrenNode() const; /** Assign next non-blank (xmlIsBlankNode) node of 'current node' to 'current node'. \return Current Node */ xmlNodePtr GetNextNode() const; /** Return nodename of 'current node'. */ const std::string& GetNodeName() const; /** Return content of 'current node'. */ const std::string& GetContent() const; /** Sets 'current node' that the following methods act on: GetProperty GetNodeName GetContent GetNodeNs GetNodeNsPrefix GetNodeNsHref */ void SetCurrent(xmlNodePtr p) const { m_current = p; } /** \return Namespace of 'current node'. */ xmlNsPtr GetNodeNs() const; /** \return Namespace prefix of 'current node'. */ const std::string& GetNodeNsPrefix() const; /** \return Namespace href of 'current node'. */ const std::string& GetNodeNsHref() const; /** Search element named 'name' in Root element child nodes. Set 'current node' to Root element. */ xmlNodePtr GetFirstElement(const std::string& name) const; /** Search element named 'name' in 'parent' element child nodes. Set 'current node' to 'parent'. */ xmlNodePtr GetFirstElement(xmlNodePtr parent,const std::string& name) const; /** Find next element named 'name' on same level as 'node'. Set 'current node' to 'p'. */ xmlNodePtr GetNextElement(xmlNodePtr node,const std::string& name) const; /** Check that child element with name 'name' exists. */ bool Exists(const std::string& name) const; /** [prefix] = href */ std::map GetNsMap() const; /** [href] = prefix */ std::map GetNsMapRe() const; const std::string FindProperty(const std::string& propname, bool climb = false) const; private: xmlDocPtr m_doc; mutable xmlNodePtr m_current; mutable std::string m_current_name; mutable std::string m_ns_prefix; mutable std::string m_ns_href; mutable std::string m_content; mutable std::string m_lookup_name; }; #ifdef SOCKETS_NAMESPACE } #endif #endif // ENABLE_XML #endif // _XmlNode_H