libxml++
2.40.1
|
Represents XML Nodes. More...
#include <libxml++/nodes/node.h>
Public Types | |
typedef std::list< Node* > | NodeList |
typedef std::map< Glib::ustring, Glib::ustring > | PrefixNsMap |
A map of namespace prefixes to namespace URIs. More... | |
Public Member Functions | |
Node (_xmlNode* node) | |
~Node () override | |
Element* | add_child (const Glib::ustring& name, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node. More... | |
Element* | add_child (xmlpp::Node* previous_sibling, const Glib::ustring& name, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node after the specified existing child node. More... | |
Element* | add_child_before (xmlpp::Node* next_sibling, const Glib::ustring& name, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node before the specified existing child node. More... | |
Element* | add_child_before_with_new_ns (xmlpp::Node* next_sibling, const Glib::ustring& name, const Glib::ustring& ns_uri, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node before the specified existing child node. More... | |
Element* | add_child_with_new_ns (const Glib::ustring& name, const Glib::ustring& ns_uri, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node. More... | |
Element* | add_child_with_new_ns (xmlpp::Node* previous_sibling, const Glib::ustring& name, const Glib::ustring& ns_uri, const Glib::ustring& ns_prefix=Glib::ustring()) |
Add a child element to this node after the specified existing child node. More... | |
_xmlNode* | cobj () |
Access the underlying libxml implementation. More... | |
const _xmlNode* | cobj () const |
Access the underlying libxml implementation. More... | |
bool | eval_to_boolean (const Glib::ustring& xpath, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
bool | eval_to_boolean (const Glib::ustring& xpath, const PrefixNsMap& namespaces, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
double | eval_to_number (const Glib::ustring& xpath, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
double | eval_to_number (const Glib::ustring& xpath, const PrefixNsMap& namespaces, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
Glib::ustring | eval_to_string (const Glib::ustring& xpath, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
Glib::ustring | eval_to_string (const Glib::ustring& xpath, const PrefixNsMap& namespaces, XPathResultType* result_type=nullptr) const |
Evaluate an XPath expression. More... | |
NodeSet | find (const Glib::ustring& xpath) const |
Find nodes from an XPath expression. More... | |
NodeSet | find (const Glib::ustring& xpath, const PrefixNsMap& namespaces) const |
Find nodes from an XPath expression. More... | |
NodeList | get_children (const Glib::ustring& name=Glib::ustring()) |
Obtain the list of child nodes. More... | |
const NodeList | get_children (const Glib::ustring& name=Glib::ustring()) const |
Obtain the list of child nodes. More... | |
const Node* | get_first_child (const Glib::ustring& name=Glib::ustring()) const |
Get the first child of this node. More... | |
Node* | get_first_child (const Glib::ustring& name=Glib::ustring()) |
Get the first child of this node. More... | |
int | get_line () const |
Discover at what line number this node occurs in the XML file. More... | |
Glib::ustring | get_name () const |
Get the name of this node. More... | |
Glib::ustring | get_namespace_prefix () const |
Get the namespace prefix of this node. More... | |
Glib::ustring | get_namespace_uri () const |
Get the namespace URI of this node. More... | |
const Node* | get_next_sibling () const |
Get the next sibling for this node. More... | |
Node* | get_next_sibling () |
Get the next sibling for this node. More... | |
const Element* | get_parent () const |
Get the parent element for this node. More... | |
Element* | get_parent () |
Get the parent element for this node. More... | |
Glib::ustring | get_path () const |
Get the XPath of this node. More... | |
const Node* | get_previous_sibling () const |
Get the previous sibling for this node . More... | |
Node* | get_previous_sibling () |
Get the previous sibling for this node. More... | |
Node* | import_node (const Node* node, bool recursive=true) |
Import node(s) from another document under this node, without affecting the source node. More... | |
void | remove_child (Node* node) |
Remove the child node. More... | |
void | set_name (const Glib::ustring& name) |
Set the name of this node. More... | |
void | set_namespace (const Glib::ustring& ns_prefix) |
Set the namespace prefix used by the node. More... | |
Static Public Member Functions | |
static void | create_wrapper (_xmlNode* node) |
Construct the correct C++ instance for a given libxml C struct instance. More... | |
static void | free_wrappers (_xmlNode* node) |
Delete the C++ instance for a given libxml C struct instance, and also recursively destroy the C++ instances for any children. More... | |
Protected Member Functions | |
_xmlNode* | create_new_child_node (const Glib::ustring& name, const Glib::ustring& ns_prefix) |
Create the C instance ready to be added to the parent node. More... | |
_xmlNode* | create_new_child_node_with_new_ns (const Glib::ustring& name, const Glib::ustring& ns_uri, const Glib::ustring& ns_prefix) |
Create the C instance ready to be added to the parent node. More... | |
![]() | |
NonCopyable () | |
NonCopyable (const NonCopyable&)=delete | |
virtual | ~NonCopyable () |
NonCopyable& | operator= (const NonCopyable&)=delete |
Represents XML Nodes.
You should never new or delete Nodes. The Parser will create and manage them for you.
typedef std::list<Node*> xmlpp::Node::NodeList |
A map of namespace prefixes to namespace URIs.
|
explicit |
xmlpp::internal_error | If node is nullptr . |
|
override |
Element* xmlpp::Node::add_child | ( | const Glib::ustring & | name, |
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node.
This node must be an element node.
name | The new node name |
ns_prefix | The namespace prefix. If the prefix has not been declared then this method will throw an exception. |
xmlpp::exception | If a namespace prefix is specified, but has not been declared. |
xmlpp::internal_error | If this node is not an element node, or the child node cannot be created. |
Element* xmlpp::Node::add_child | ( | xmlpp::Node* | previous_sibling, |
const Glib::ustring & | name, | ||
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node after the specified existing child node.
This node must be an element node.
previous_sibling | An existing child node. |
name | The new node name |
ns_prefix | The namespace prefix. If the prefix has not been declared then this method will throw an exception. |
xmlpp::exception | If a namespace prefix is specified, but has not been declared. |
xmlpp::internal_error | If this node is not an element node, or the child node cannot be created. |
Element* xmlpp::Node::add_child_before | ( | xmlpp::Node* | next_sibling, |
const Glib::ustring & | name, | ||
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node before the specified existing child node.
This node must be an element node.
next_sibling | An existing child node. |
name | The new node name |
ns_prefix | The namespace prefix. If the prefix has not been declared then this method will throw an exception. |
xmlpp::exception | If a namespace prefix is specified, but has not been declared. |
xmlpp::internal_error | If this node is not an element node, or the child node cannot be created. |
Element* xmlpp::Node::add_child_before_with_new_ns | ( | xmlpp::Node* | next_sibling, |
const Glib::ustring & | name, | ||
const Glib::ustring & | ns_uri, | ||
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node before the specified existing child node.
This node must be an element node.
next_sibling | An existing child node. |
name | The new node name. |
ns_uri | The namespace to associate with the prefix, or to use as the default namespace if no prefix is specified. |
ns_prefix | The prefix of the node's namespace. If no prefix is specified then the namespace URI will be the default namespace. |
xmlpp::internal_error | If this node is not an element node, or the child node or the namespace node cannot be created. |
Element* xmlpp::Node::add_child_with_new_ns | ( | const Glib::ustring & | name, |
const Glib::ustring & | ns_uri, | ||
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node.
This node must be an element node.
name | The new node name. |
ns_uri | The namespace to associate with the prefix, or to use as the default namespace if no prefix is specified. |
ns_prefix | The prefix of the node's namespace. If no prefix is specified then the namespace URI will be the default namespace. |
xmlpp::internal_error | If this node is not an element node, or the child node or the namespace node cannot be created. |
Element* xmlpp::Node::add_child_with_new_ns | ( | xmlpp::Node* | previous_sibling, |
const Glib::ustring & | name, | ||
const Glib::ustring & | ns_uri, | ||
const Glib::ustring & | ns_prefix = Glib::ustring() |
||
) |
Add a child element to this node after the specified existing child node.
This node must be an element node.
previous_sibling | An existing child node. |
name | The new node name. |
ns_uri | The namespace to associate with the prefix, or to use as the default namespace if no prefix is specified. |
ns_prefix | The prefix of the node's namespace. If no prefix is specified then the namespace URI will be the default namespace. |
xmlpp::internal_error | If this node is not an element node, or the child node or the namespace node cannot be created. |
_xmlNode* xmlpp::Node::cobj | ( | ) |
Access the underlying libxml implementation.
const _xmlNode* xmlpp::Node::cobj | ( | ) | const |
Access the underlying libxml implementation.
|
protected |
Create the C instance ready to be added to the parent node.
|
protected |
Create the C instance ready to be added to the parent node.
|
static |
Construct the correct C++ instance for a given libxml C struct instance.
This is only for use by the libxml++ implementation.
node | A pointer to an xmlNode or a "derived" struct, such as xmlDoc, xmlAttr, etc. |
bool xmlpp::Node::eval_to_boolean | ( | const Glib::ustring & | xpath, |
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
[out] | result_type | Result type of the XPath expression before conversion to boolean. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
bool xmlpp::Node::eval_to_boolean | ( | const Glib::ustring & | xpath, |
const PrefixNsMap& | namespaces, | ||
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
namespaces | A map of namespace prefixes to namespace URIs to be used while evaluating. | |
[out] | result_type | Result type of the XPath expression before conversion to boolean. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
double xmlpp::Node::eval_to_number | ( | const Glib::ustring & | xpath, |
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
[out] | result_type | Result type of the XPath expression before conversion to number. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
double xmlpp::Node::eval_to_number | ( | const Glib::ustring & | xpath, |
const PrefixNsMap& | namespaces, | ||
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
namespaces | A map of namespace prefixes to namespace URIs to be used while evaluating. | |
[out] | result_type | Result type of the XPath expression before conversion to number. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
Glib::ustring xmlpp::Node::eval_to_string | ( | const Glib::ustring & | xpath, |
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
[out] | result_type | Result type of the XPath expression before conversion to string. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
Glib::ustring xmlpp::Node::eval_to_string | ( | const Glib::ustring & | xpath, |
const PrefixNsMap& | namespaces, | ||
XPathResultType* | result_type = nullptr |
||
) | const |
Evaluate an XPath expression.
xpath | The XPath expression. | |
namespaces | A map of namespace prefixes to namespace URIs to be used while evaluating. | |
[out] | result_type | Result type of the XPath expression before conversion to string. If nullptr , the result type is not returned. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error |
NodeSet xmlpp::Node::find | ( | const Glib::ustring & | xpath | ) | const |
Find nodes from an XPath expression.
xpath | The XPath of the nodes. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error | If the result type is not nodeset. |
NodeSet xmlpp::Node::find | ( | const Glib::ustring & | xpath, |
const PrefixNsMap& | namespaces | ||
) | const |
Find nodes from an XPath expression.
xpath | The XPath of the nodes. |
namespaces | A map of namespace prefixes to namespace URIs to be used while finding. |
xmlpp::exception | If the XPath expression cannot be evaluated. |
xmlpp::internal_error | If the result type is not nodeset. |
|
static |
Delete the C++ instance for a given libxml C struct instance, and also recursively destroy the C++ instances for any children.
This is only for use by the libxml++ implementation.
node | A pointer to an xmlNode or a "derived" struct, such as xmlDoc, xmlAttr, etc. |
NodeList xmlpp::Node::get_children | ( | const Glib::ustring & | name = Glib::ustring() | ) |
Obtain the list of child nodes.
You may optionally obtain a list of only the child nodes which have a certain name.
name | The names of the child nodes to get. If you do not specify a name, then the list will contain all nodes, regardless of their names. |
const NodeList xmlpp::Node::get_children | ( | const Glib::ustring & | name = Glib::ustring() | ) | const |
Obtain the list of child nodes.
You may optionally obtain a list of only the child nodes which have a certain name.
name | The names of the child nodes to get. If you do not specify a name, then the list will contain all nodes, regardless of their names. |
const Node* xmlpp::Node::get_first_child | ( | const Glib::ustring & | name = Glib::ustring() | ) | const |
Get the first child of this node.
You may optionally get the first child node which has a certain name.
name | The name of the requested child node, or an empty string. |
nullptr
if no child node (with the specified name) exists.Node* xmlpp::Node::get_first_child | ( | const Glib::ustring & | name = Glib::ustring() | ) |
Get the first child of this node.
You may optionally get the first child node which has a certain name.
name | The name of the requested child node, or an empty string. |
nullptr
if no child node (with the specified name) exists.int xmlpp::Node::get_line | ( | ) | const |
Discover at what line number this node occurs in the XML file.
Glib::ustring xmlpp::Node::get_name | ( | ) | const |
Get the name of this node.
Glib::ustring xmlpp::Node::get_namespace_prefix | ( | ) | const |
Get the namespace prefix of this node.
Glib::ustring xmlpp::Node::get_namespace_uri | ( | ) | const |
Get the namespace URI of this node.
const Node* xmlpp::Node::get_next_sibling | ( | ) | const |
Get the next sibling for this node.
nullptr
if the node has no next sibling. Node* xmlpp::Node::get_next_sibling | ( | ) |
Get the next sibling for this node.
nullptr
if the node has no next sibling. const Element* xmlpp::Node::get_parent | ( | ) | const |
Get the parent element for this node.
nullptr
if the node has no parent element. Element* xmlpp::Node::get_parent | ( | ) |
Get the parent element for this node.
nullptr
if the node has no parent element. Glib::ustring xmlpp::Node::get_path | ( | ) | const |
Get the XPath of this node.
const Node* xmlpp::Node::get_previous_sibling | ( | ) | const |
Get the previous sibling for this node .
nullptr
if the node has no previous sibling. Node* xmlpp::Node::get_previous_sibling | ( | ) |
Get the previous sibling for this node.
nullptr
if the node has no previous sibling. Import node(s) from another document under this node, without affecting the source node.
If the imported node is an attribute node, and this node has an attribute with the same name as the imported attribute, the existing attribute is destroyed before the imported attribute is added. Any pointer to a destroyed attribute node becomes invalid.
node | The node to copy and insert under the current node. |
recursive | Whether to import the child nodes also. Defaults to true. |
xmlpp::exception |
void xmlpp::Node::remove_child | ( | Node* | node | ) |
Remove the child node.
node | The child node to remove. This Node will be deleted and therefore unusable after calling this method. |
void xmlpp::Node::set_name | ( | const Glib::ustring & | name | ) |
Set the name of this node.
name | The new name for the node. |
void xmlpp::Node::set_namespace | ( | const Glib::ustring & | ns_prefix | ) |
Set the namespace prefix used by the node.
If no such namespace prefix has been declared then this method will throw an exception.
ns_prefix | The namespace prefix. |
xmlpp::exception |