Class representing a node of XML document. More...
#include <rapidxml.hpp>
Public Member Functions | |
xml_node (node_type type) | |
Constructs an empty node with the specified type. More... | |
node_type | type () const |
Gets type of node. More... | |
void | prefix (const Ch *prefix, std::size_t size) |
void | prefix (const Ch *prefix) |
Ch * | prefix () const |
std::size_t | prefix_size () const |
Ch * | xmlns () const |
void | xmlns_lookup (Ch *&xmlns, size_t &xmlns_size, Ch *prefix, size_t prefix_size) const |
std::size_t | xmlns_size () const |
xml_document< Ch > * | document () const |
Gets document of which node is a child. More... | |
xml_node< Ch > * | first_node (const Ch *name=0, const Ch *xmlns=0, std::size_t name_size=0, std::size_t xmlns_size=0, bool case_sensitive=true) const |
Gets first child node, optionally matching node name. More... | |
xml_node< Ch > * | last_node (const Ch *name=0, const Ch *xmlns=0, std::size_t name_size=0, std::size_t xmlns_size=0, bool case_sensitive=true) const |
Gets last child node, optionally matching node name. More... | |
xml_node< Ch > * | previous_sibling (const Ch *name=0, std::size_t name_size=0, bool case_sensitive=true) const |
Gets previous sibling node, optionally matching node name. More... | |
xml_node< Ch > * | next_sibling (const Ch *name=0, std::size_t name_size=0, bool case_sensitive=true) const |
Gets next sibling node, optionally matching node name. More... | |
xml_attribute< Ch > * | first_attribute (const Ch *name=0, std::size_t name_size=0, bool case_sensitive=true) const |
Gets first attribute of node, optionally matching attribute name. More... | |
xml_attribute< Ch > * | last_attribute (const Ch *name=0, std::size_t name_size=0, bool case_sensitive=true) const |
Gets last attribute of node, optionally matching attribute name. More... | |
void | type (node_type type) |
Sets type of node. More... | |
void | prepend_node (xml_node< Ch > *child) |
Prepends a new child node. More... | |
void | append_node (xml_node< Ch > *child) |
Appends a new child node. More... | |
void | insert_node (xml_node< Ch > *where, xml_node< Ch > *child) |
Inserts a new child node at specified place inside the node. More... | |
void | remove_first_node () |
Removes first child node. More... | |
void | remove_last_node () |
Removes last child of the node. More... | |
void | remove_node (xml_node< Ch > *where) |
Removes specified child from the node. More... | |
void | remove_all_nodes () |
Removes all child nodes (but not attributes). More... | |
void | prepend_attribute (xml_attribute< Ch > *attribute) |
Prepends a new attribute to the node. More... | |
void | append_attribute (xml_attribute< Ch > *attribute) |
Appends a new attribute to the node. More... | |
void | insert_attribute (xml_attribute< Ch > *where, xml_attribute< Ch > *attribute) |
Inserts a new attribute at specified place inside the node. More... | |
void | remove_first_attribute () |
Removes first attribute of the node. More... | |
void | remove_last_attribute () |
Removes last attribute of the node. More... | |
void | remove_attribute (xml_attribute< Ch > *where) |
Removes specified attribute from node. More... | |
void | remove_all_attributes () |
Removes all attributes of node. More... | |
void | validate () const |
Class representing a node of XML document.
Each node may have associated name and value strings, which are available through name() and value() functions. Interpretation of name and value depends on type of the node. Type of node can be determined by using type() function.
Note that after parse, both name and value of node, if any, will point interior of source text used for parsing. Thus, this text must persist in the memory for the lifetime of node.
Ch | Character type to use. |
Definition at line 140 of file rapidxml.hpp.
|
inline |
Constructs an empty node with the specified type.
Consider using memory_pool of appropriate document to allocate nodes manually.
type | Type of node to construct. |
Definition at line 985 of file rapidxml.hpp.
|
inline |
Appends a new attribute to the node.
attribute | Attribute to append. |
Definition at line 1400 of file rapidxml.hpp.
|
inline |
Appends a new child node.
The appended child becomes the last child.
child | Node to append. |
Definition at line 1280 of file rapidxml.hpp.
|
inline |
Gets document of which node is a child.
Definition at line 1102 of file rapidxml.hpp.
|
inline |
Gets first attribute of node, optionally matching attribute name.
name | Name of attribute to find, or 0 to return first attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1208 of file rapidxml.hpp.
|
inline |
Gets first child node, optionally matching node name.
name | Name of child to find, or 0 to return first child regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1115 of file rapidxml.hpp.
|
inline |
Inserts a new attribute at specified place inside the node.
All attributes after and including the specified attribute are moved one position back.
where | Place where to insert the attribute, or 0 to insert at the back. |
attribute | Attribute to insert. |
Definition at line 1422 of file rapidxml.hpp.
|
inline |
Inserts a new child node at specified place inside the node.
All children after and including the specified node are moved one position back.
where | Place where to insert the child, or 0 to insert at the back. |
child | Node to insert. |
Definition at line 1302 of file rapidxml.hpp.
|
inline |
Gets last attribute of node, optionally matching attribute name.
name | Name of attribute to find, or 0 to return last attribute regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1228 of file rapidxml.hpp.
|
inline |
Gets last child node, optionally matching node name.
Behaviour is undefined if node has no children. Use first_node() to test if node has children.
name | Name of child to find, or 0 to return last child regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1139 of file rapidxml.hpp.
|
inline |
Gets next sibling node, optionally matching node name.
Behaviour is undefined if node has no parent. Use parent() to test if node has a parent.
name | Name of sibling to find, or 0 to return next sibling regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1187 of file rapidxml.hpp.
|
inline |
Definition at line 1014 of file rapidxml.hpp.
|
inline |
Definition at line 1009 of file rapidxml.hpp.
|
inline |
Definition at line 1004 of file rapidxml.hpp.
|
inline |
Definition at line 1019 of file rapidxml.hpp.
|
inline |
Prepends a new attribute to the node.
attribute | Attribute to prepend. |
Definition at line 1380 of file rapidxml.hpp.
|
inline |
Prepends a new child node.
The prepended child becomes the first child, and all existing children are moved one position back.
child | Node to prepend. |
Definition at line 1259 of file rapidxml.hpp.
|
inline |
Gets previous sibling node, optionally matching node name.
Behaviour is undefined if node has no parent. Use parent() to test if node has a parent.
name | Name of sibling to find, or 0 to return previous sibling regardless of its name; this string doesn't have to be zero-terminated if name_size is non-zero |
name_size | Size of name, in characters, or 0 to have size calculated automatically from string |
case_sensitive | Should name comparison be case-sensitive; non case-sensitive comparison works properly only for ASCII characters |
Definition at line 1164 of file rapidxml.hpp.
|
inline |
Removes all attributes of node.
Definition at line 1492 of file rapidxml.hpp.
|
inline |
Removes all child nodes (but not attributes).
Definition at line 1371 of file rapidxml.hpp.
|
inline |
Removes specified attribute from node.
where | Pointer to attribute to be removed. |
Definition at line 1476 of file rapidxml.hpp.
|
inline |
Removes first attribute of the node.
If node has no attributes, behaviour is undefined. Use first_attribute() to test if node has attributes.
Definition at line 1443 of file rapidxml.hpp.
|
inline |
Removes first child node.
If node has no children, behaviour is undefined. Use first_node() to test if node has children.
Definition at line 1323 of file rapidxml.hpp.
|
inline |
Removes last attribute of the node.
If node has no attributes, behaviour is undefined. Use first_attribute() to test if node has attributes.
Definition at line 1460 of file rapidxml.hpp.
|
inline |
Removes last child of the node.
If node has no children, behaviour is undefined. Use first_node() to test if node has children.
Definition at line 1338 of file rapidxml.hpp.
|
inline |
Removes specified child from the node.
Definition at line 1354 of file rapidxml.hpp.
|
inline |
|
inline |
Sets type of node.
type | Type of node to set. |
Definition at line 1248 of file rapidxml.hpp.
|
inline |
Definition at line 1499 of file rapidxml.hpp.
|
inline |
Definition at line 1024 of file rapidxml.hpp.
|
inline |
Definition at line 1031 of file rapidxml.hpp.
|
inline |
Definition at line 1090 of file rapidxml.hpp.