Used to build a tree of elements representing an XML document. More...
Classes | |
struct | TextFormat |
A struct containing options for formatting the text when representing an XML element as a string. More... | |
Public Member Functions | |
XmlElement (const String &tagName) | |
Creates an XmlElement with this tag name. | |
XmlElement (const char *tagName) | |
Creates an XmlElement with this tag name. | |
XmlElement (const Identifier &tagName) | |
Creates an XmlElement with this tag name. | |
XmlElement (StringRef tagName) | |
Creates an XmlElement with this tag name. | |
XmlElement (String::CharPointerType tagNameBegin, String::CharPointerType tagNameEnd) | |
Creates an XmlElement with this tag name. | |
XmlElement (const XmlElement &) | |
Creates a (deep) copy of another element. | |
XmlElement & | operator= (const XmlElement &) |
Creates a (deep) copy of another element. | |
XmlElement & | operator= (XmlElement &&) noexcept |
Move assignment operator. | |
XmlElement (XmlElement &&) noexcept | |
Move constructor. | |
~XmlElement () noexcept | |
Deleting an XmlElement will also delete all of its child elements. | |
bool | isEquivalentTo (const XmlElement *other, bool ignoreOrderOfAttributes) const noexcept |
Compares two XmlElements to see if they contain the same text and attributes. | |
String | toString (const TextFormat &format={}) const |
Returns a text version of this XML element. | |
void | writeTo (OutputStream &output, const TextFormat &format={}) const |
Writes the document to a stream as UTF-8. | |
bool | writeTo (const File &destinationFile, const TextFormat &format={}) const |
Writes the document to a file as UTF-8. | |
const String & | getTagName () const noexcept |
Returns this element's tag type name. | |
String | getNamespace () const |
Returns the namespace portion of the tag-name, or an empty string if none is specified. | |
String | getTagNameWithoutNamespace () const |
Returns the part of the tag-name that follows any namespace declaration. | |
bool | hasTagName (StringRef possibleTagName) const noexcept |
Tests whether this element has a particular tag name. | |
bool | hasTagNameIgnoringNamespace (StringRef possibleTagName) const |
Tests whether this element has a particular tag name, ignoring any XML namespace prefix. | |
void | setTagName (StringRef newTagName) |
Changes this elements tag name. | |
int | getNumAttributes () const noexcept |
Returns the number of XML attributes this element contains. | |
const String & | getAttributeName (int attributeIndex) const noexcept |
Returns the name of one of the elements attributes. | |
const String & | getAttributeValue (int attributeIndex) const noexcept |
Returns the value of one of the elements attributes. | |
bool | hasAttribute (StringRef attributeName) const noexcept |
Checks whether the element contains an attribute with a certain name. | |
const String & | getStringAttribute (StringRef attributeName) const noexcept |
Returns the value of a named attribute. | |
String | getStringAttribute (StringRef attributeName, const String &defaultReturnValue) const |
Returns the value of a named attribute. | |
bool | compareAttribute (StringRef attributeName, StringRef stringToCompareAgainst, bool ignoreCase=false) const noexcept |
Compares the value of a named attribute with a value passed-in. | |
int | getIntAttribute (StringRef attributeName, int defaultReturnValue=0) const |
Returns the value of a named attribute as an integer. | |
double | getDoubleAttribute (StringRef attributeName, double defaultReturnValue=0.0) const |
Returns the value of a named attribute as floating-point. | |
bool | getBoolAttribute (StringRef attributeName, bool defaultReturnValue=false) const |
Returns the value of a named attribute as a boolean. | |
void | setAttribute (const Identifier &attributeName, const String &newValue) |
Adds a named attribute to the element. | |
void | setAttribute (const Identifier &attributeName, int newValue) |
Adds a named attribute to the element, setting it to an integer value. | |
void | setAttribute (const Identifier &attributeName, double newValue) |
Adds a named attribute to the element, setting it to a floating-point value. | |
void | removeAttribute (const Identifier &attributeName) noexcept |
Removes a named attribute from the element. | |
void | removeAllAttributes () noexcept |
Removes all attributes from this element. | |
XmlElement * | getFirstChildElement () const noexcept |
Returns the first of this element's sub-elements. | |
XmlElement * | getNextElement () const noexcept |
Returns the next of this element's siblings. | |
XmlElement * | getNextElementWithTagName (StringRef requiredTagName) const |
Returns the next of this element's siblings which has the specified tag name. | |
int | getNumChildElements () const noexcept |
Returns the number of sub-elements in this element. | |
XmlElement * | getChildElement (int index) const noexcept |
Returns the sub-element at a certain index. | |
XmlElement * | getChildByName (StringRef tagNameToLookFor) const noexcept |
Returns the first sub-element with a given tag-name. | |
XmlElement * | getChildByAttribute (StringRef attributeName, StringRef attributeValue) const noexcept |
Returns the first sub-element which has an attribute that matches the given value. | |
void | addChildElement (XmlElement *newChildElement) noexcept |
Appends an element to this element's list of children. | |
void | insertChildElement (XmlElement *newChildElement, int indexToInsertAt) noexcept |
Inserts an element into this element's list of children. | |
void | prependChildElement (XmlElement *newChildElement) noexcept |
Inserts an element at the beginning of this element's list of children. | |
XmlElement * | createNewChildElement (StringRef tagName) |
Creates a new element with the given name and returns it, after adding it as a child element. | |
bool | replaceChildElement (XmlElement *currentChildElement, XmlElement *newChildNode) noexcept |
Replaces one of this element's children with another node. | |
void | removeChildElement (XmlElement *childToRemove, bool shouldDeleteTheChild) noexcept |
Removes a child element. | |
void | deleteAllChildElements () noexcept |
Deletes all the child elements in the element. | |
void | deleteAllChildElementsWithTagName (StringRef tagName) noexcept |
Deletes all the child elements with a given tag name. | |
bool | containsChildElement (const XmlElement *possibleChild) const noexcept |
Returns true if the given element is a child of this one. | |
XmlElement * | findParentElementOf (const XmlElement *childToSearchFor) noexcept |
Recursively searches all sub-elements of this one, looking for an element which is the direct parent of the specified element. | |
template<class ElementComparator> | |
void | sortChildElements (ElementComparator &comparator, bool retainOrderOfEquivalentItems=false) |
Sorts the child elements using a comparator. | |
bool | isTextElement () const noexcept |
Returns true if this element is a section of text. | |
const String & | getText () const noexcept |
Returns the text for a text element. | |
void | setText (const String &newText) |
Sets the text in a text element. | |
String | getAllSubText () const |
Returns all the text from this element's child nodes. | |
String | getChildElementAllSubText (StringRef childTagName, const String &defaultReturnValue) const |
Returns all the sub-text of a named child element. | |
void | addTextElement (const String &text) |
Appends a section of text to this element. | |
void | deleteAllTextElements () noexcept |
Removes all the text elements from this element. | |
Iterator< GetNextElement > | getChildIterator () const |
Allows iterating the children of an XmlElement using range-for syntax. | |
Iterator< GetNextElementWithTagName > | getChildWithTagNameIterator (StringRef name) const |
Allows iterating children of an XmlElement with a specific tag using range-for syntax. | |
Static Public Member Functions | |
static XmlElement * | createTextElement (const String &text) |
Creates a text element that can be added to a parent element. | |
static bool | isValidXmlName (StringRef possibleName) noexcept |
Checks if a given string is a valid XML name. | |
Used to build a tree of elements representing an XML document.
An XML document can be parsed into a tree of XmlElements, each of which represents an XML tag structure, and which may itself contain other nested elements.
An XmlElement can also be converted back into a text document, and has lots of useful methods for manipulating its attributes and sub-elements, so XmlElements can actually be used as a handy general-purpose data structure.
Here's an example of parsing some elements:
And here's an example of how to create an XML document from scratch:
|
explicit |
Creates an XmlElement with this tag name.
Referenced by addChildElement(), containsChildElement(), createNewChildElement(), createTextElement(), findParentElementOf(), getChildByAttribute(), getChildByName(), getChildElement(), getFirstChildElement(), getNextElement(), getNextElementWithTagName(), insertChildElement(), isEquivalentTo(), isValidXmlName(), LinkedListPointer< XmlAttributeNode >, LinkedListPointer< XmlElement >::Appender, NamedValueSet, operator=(), operator=(), prependChildElement(), removeChildElement(), replaceChildElement(), sortChildElements(), XmlElement(), XmlElement(), and ~XmlElement().
|
explicit |
Creates an XmlElement with this tag name.
|
explicit |
Creates an XmlElement with this tag name.
|
explicit |
Creates an XmlElement with this tag name.
XmlElement::XmlElement | ( | String::CharPointerType | tagNameBegin, |
String::CharPointerType | tagNameEnd ) |
Creates an XmlElement with this tag name.
XmlElement::XmlElement | ( | const XmlElement & | ) |
Creates a (deep) copy of another element.
References XmlElement().
|
noexcept |
Move constructor.
References XmlElement().
|
noexcept |
Deleting an XmlElement will also delete all of its child elements.
References XmlElement().
XmlElement & XmlElement::operator= | ( | const XmlElement & | ) |
Creates a (deep) copy of another element.
References XmlElement().
|
noexcept |
Move assignment operator.
References XmlElement().
|
noexcept |
Compares two XmlElements to see if they contain the same text and attributes.
The elements are only considered equivalent if they contain the same attributes with the same values, and have the same sub-nodes.
other | the other element to compare to |
ignoreOrderOfAttributes | if true, this means that two elements with the same attributes in a different order will be considered the same; if false, the attributes must be in the same order as well |
References isEquivalentTo(), and XmlElement().
Referenced by isEquivalentTo().
String XmlElement::toString | ( | const TextFormat & | format = {} | ) | const |
void XmlElement::writeTo | ( | OutputStream & | output, |
const TextFormat & | format = {} ) const |
bool XmlElement::writeTo | ( | const File & | destinationFile, |
const TextFormat & | format = {} ) const |
|
noexcept |
Returns this element's tag type name.
E.g. for an element such as <MOOSE legs="4" antlers="2">, this would return "MOOSE".
String XmlElement::getNamespace | ( | ) | const |
Returns the namespace portion of the tag-name, or an empty string if none is specified.
String XmlElement::getTagNameWithoutNamespace | ( | ) | const |
Returns the part of the tag-name that follows any namespace declaration.
|
noexcept |
Tests whether this element has a particular tag name.
possibleTagName | the tag name you're comparing it with |
bool XmlElement::hasTagNameIgnoringNamespace | ( | StringRef | possibleTagName | ) | const |
Tests whether this element has a particular tag name, ignoring any XML namespace prefix.
So a test for e.g. "xyz" will return true for "xyz" and also "foo:xyz", "bar::xyz", etc.
void XmlElement::setTagName | ( | StringRef | newTagName | ) |
Changes this elements tag name.
|
noexcept |
Returns the number of XML attributes this element contains.
E.g. for an element such as <MOOSE legs="4" antlers="2">, this would return 2.
|
noexcept |
Returns the name of one of the elements attributes.
E.g. for an element such as <MOOSE legs="4" antlers="2">, then getAttributeName (1) would return "antlers".
References getAttributeName().
Referenced by getAttributeName().
|
noexcept |
Returns the value of one of the elements attributes.
E.g. for an element such as <MOOSE legs="4" antlers="2">, then getAttributeName (1) would return "2".
References getAttributeValue().
Referenced by getAttributeValue().
|
noexcept |
Checks whether the element contains an attribute with a certain name.
References hasAttribute().
Referenced by hasAttribute().
Returns the value of a named attribute.
attributeName | the name of the attribute to look up |
References getStringAttribute().
Referenced by getStringAttribute(), and getStringAttribute().
String XmlElement::getStringAttribute | ( | StringRef | attributeName, |
const String & | defaultReturnValue ) const |
Returns the value of a named attribute.
attributeName | the name of the attribute to look up |
defaultReturnValue | a value to return if the element doesn't have an attribute with this name |
References getStringAttribute().
|
noexcept |
Compares the value of a named attribute with a value passed-in.
attributeName | the name of the attribute to look up |
stringToCompareAgainst | the value to compare it with |
ignoreCase | whether the comparison should be case-insensitive |
References compareAttribute().
Referenced by compareAttribute().
int XmlElement::getIntAttribute | ( | StringRef | attributeName, |
int | defaultReturnValue = 0 ) const |
Returns the value of a named attribute as an integer.
This will try to find the attribute and convert it to an integer (using the String::getIntValue() method).
attributeName | the name of the attribute to look up |
defaultReturnValue | a value to return if the element doesn't have an attribute with this name |
References getIntAttribute().
Referenced by getIntAttribute().
double XmlElement::getDoubleAttribute | ( | StringRef | attributeName, |
double | defaultReturnValue = 0.0 ) const |
Returns the value of a named attribute as floating-point.
This will try to find the attribute and convert it to a double (using the String::getDoubleValue() method).
attributeName | the name of the attribute to look up |
defaultReturnValue | a value to return if the element doesn't have an attribute with this name |
References getDoubleAttribute().
Referenced by getDoubleAttribute().
bool XmlElement::getBoolAttribute | ( | StringRef | attributeName, |
bool | defaultReturnValue = false ) const |
Returns the value of a named attribute as a boolean.
This will try to find the attribute and interpret it as a boolean. To do this, it'll return true if the value is "1", "true", "y", etc, or false for other values.
attributeName | the name of the attribute to look up |
defaultReturnValue | a value to return if the element doesn't have an attribute with this name |
References getBoolAttribute().
Referenced by getBoolAttribute().
void XmlElement::setAttribute | ( | const Identifier & | attributeName, |
const String & | newValue ) |
Adds a named attribute to the element.
If the element already contains an attribute with this name, it's value will be updated to the new value. If there's no such attribute yet, a new one will be added.
Note that there are other setAttribute() methods that take integers, doubles, etc. to make it easy to store numbers.
attributeName | the name of the attribute to set |
newValue | the value to set it to |
References setAttribute().
Referenced by setAttribute(), setAttribute(), and setAttribute().
void XmlElement::setAttribute | ( | const Identifier & | attributeName, |
int | newValue ) |
Adds a named attribute to the element, setting it to an integer value.
If the element already contains an attribute with this name, it's value will be updated to the new value. If there's no such attribute yet, a new one will be added.
Note that there are other setAttribute() methods that take integers, doubles, etc. to make it easy to store numbers.
attributeName | the name of the attribute to set |
newValue | the value to set it to |
References setAttribute().
void XmlElement::setAttribute | ( | const Identifier & | attributeName, |
double | newValue ) |
Adds a named attribute to the element, setting it to a floating-point value.
If the element already contains an attribute with this name, it's value will be updated to the new value. If there's no such attribute yet, a new one will be added.
Note that there are other setAttribute() methods that take integers, doubles, etc. to make it easy to store numbers.
attributeName | the name of the attribute to set |
newValue | the value to set it to |
References setAttribute().
|
noexcept |
Removes a named attribute from the element.
attributeName | the name of the attribute to remove |
References removeAttribute().
Referenced by removeAttribute().
|
noexcept |
Removes all attributes from this element.
References removeAllAttributes().
Referenced by removeAllAttributes().
|
noexcept |
Returns the first of this element's sub-elements.
see getNextElement() for an example of how to iterate the sub-elements.
References getFirstChildElement(), and XmlElement().
Referenced by getChildIterator(), and getFirstChildElement().
|
noexcept |
Returns the next of this element's siblings.
This can be used for iterating an element's sub-elements, e.g.
Note that when iterating the child elements, some of them might be text elements as well as XML tags - use isTextElement() to work this out.
Also, it's much easier and neater to use this method indirectly via the getChildIterator() method.
References XmlElement().
Referenced by isValidXmlName().
XmlElement * XmlElement::getNextElementWithTagName | ( | StringRef | requiredTagName | ) | const |
Returns the next of this element's siblings which has the specified tag name.
This is like getNextElement(), but will scan through the list until it finds an element with the given tag name.
References XmlElement().
|
noexcept |
Returns the number of sub-elements in this element.
Referenced by sortChildElements().
|
noexcept |
Returns the sub-element at a certain index.
It's not very efficient to iterate the sub-elements by index - see getNextElement() for an example of how best to iterate.
References getChildElement(), and XmlElement().
Referenced by getChildElement().
|
noexcept |
Returns the first sub-element with a given tag-name.
tagNameToLookFor | the tag name of the element you want to find |
References getChildByName(), and XmlElement().
Referenced by getChildByName(), and getChildWithTagNameIterator().
|
noexcept |
Returns the first sub-element which has an attribute that matches the given value.
attributeName | the name of the attribute to check |
attributeValue | the target value of the attribute |
References getChildByAttribute(), and XmlElement().
Referenced by getChildByAttribute().
|
noexcept |
Appends an element to this element's list of children.
Child elements are deleted automatically when their parent is deleted, so make sure the object that you pass in will not be deleted by anything else, and make sure it's not already the child of another element.
Note that due to the XmlElement using a singly-linked-list, prependChildElement() is an O(1) operation, but addChildElement() is an O(N) operation - so if you're adding large number of elements, you may prefer to do so in reverse order!
References addChildElement(), and XmlElement().
Referenced by addChildElement().
|
noexcept |
Inserts an element into this element's list of children.
Child elements are deleted automatically when their parent is deleted, so make sure the object that you pass in will not be deleted by anything else, and make sure it's not already the child of another element.
newChildElement | the element to add |
indexToInsertAt | the index at which to insert the new element - if this is below zero, it will be added to the end of the list |
References insertChildElement(), and XmlElement().
Referenced by insertChildElement().
|
noexcept |
Inserts an element at the beginning of this element's list of children.
Child elements are deleted automatically when their parent is deleted, so make sure the object that you pass in will not be deleted by anything else, and make sure it's not already the child of another element.
Note that due to the XmlElement using a singly-linked-list, prependChildElement() is an O(1) operation, but addChildElement() is an O(N) operation - so if you're adding large number of elements, you may prefer to do so in reverse order!
References prependChildElement(), and XmlElement().
Referenced by prependChildElement().
XmlElement * XmlElement::createNewChildElement | ( | StringRef | tagName | ) |
Creates a new element with the given name and returns it, after adding it as a child element.
This is a handy method that means that instead of writing this:
..you could just write this:
References createNewChildElement(), and XmlElement().
Referenced by createNewChildElement().
|
noexcept |
Replaces one of this element's children with another node.
If the current element passed-in isn't actually a child of this element, this will return false and the new one won't be added. Otherwise, the existing element will be deleted, replaced with the new one, and it will return true.
References replaceChildElement(), and XmlElement().
Referenced by replaceChildElement().
|
noexcept |
Removes a child element.
childToRemove | the child to look for and remove |
shouldDeleteTheChild | if true, the child will be deleted, if false it'll just remove it |
References removeChildElement(), and XmlElement().
Referenced by removeChildElement().
|
noexcept |
Deletes all the child elements in the element.
References deleteAllChildElements().
Referenced by deleteAllChildElements().
|
noexcept |
Deletes all the child elements with a given tag name.
References deleteAllChildElementsWithTagName().
Referenced by deleteAllChildElementsWithTagName().
|
noexcept |
Returns true if the given element is a child of this one.
References containsChildElement(), and XmlElement().
Referenced by containsChildElement().
|
noexcept |
Recursively searches all sub-elements of this one, looking for an element which is the direct parent of the specified element.
Because elements don't store a pointer to their parent, if you have one and need to find its parent, the only way to do so is to exhaustively search the whole tree for it.
If the given child is found somewhere in this element's hierarchy, then this method will return its parent. If not, it will return nullptr.
References findParentElementOf(), and XmlElement().
Referenced by findParentElementOf().
void XmlElement::sortChildElements | ( | ElementComparator & | comparator, |
bool | retainOrderOfEquivalentItems = false ) |
Sorts the child elements using a comparator.
This will use a comparator object to sort the elements into order. The object passed must have a method of the form:
..and this method must return:
To improve performance, the compareElements() method can be declared as static or const.
comparator | the comparator to use for comparing elements. |
retainOrderOfEquivalentItems | if this is true, then items which the comparator says are equivalent will be kept in the order in which they currently appear in the array. This is slower to perform, but may be important in some cases. If it's false, a faster algorithm is used, but equivalent elements may be rearranged. |
References getNumChildElements(), sortChildElements(), and XmlElement().
Referenced by sortChildElements().
|
noexcept |
Returns true if this element is a section of text.
Elements can either be an XML tag element or a section of text, so this is used to find out what kind of element this one is.
|
noexcept |
Returns the text for a text element.
Note that if you have an element like this:
then calling getText on the "xyz" element won't return "hello", because that is actually stored in a special text sub-element inside the xyz element. To get the "hello" string, you could either call getText on the (unnamed) sub-element, or use getAllSubText() to do this automatically.
Note that leading and trailing whitespace will be included in the string - to remove if, just call String::trim() on the result.
References getText().
Referenced by getText().
void XmlElement::setText | ( | const String & | newText | ) |
Sets the text in a text element.
Note that this is only a valid call if this element is a text element. If it's not, then no action will be performed. If you're trying to add text inside a normal element, you probably want to use addTextElement() instead.
References setText().
Referenced by setText().
String XmlElement::getAllSubText | ( | ) | const |
Returns all the text from this element's child nodes.
This iterates all the child elements and when it finds text elements, it concatenates their text into a big string which it returns.
E.g.
if you called getAllSubText on the "xyz" element, it'd return "hello there world".
Note that leading and trailing whitespace will be included in the string - to remove if, just call String::trim() on the result.
References getAllSubText().
Referenced by getAllSubText().
String XmlElement::getChildElementAllSubText | ( | StringRef | childTagName, |
const String & | defaultReturnValue ) const |
Returns all the sub-text of a named child element.
If there is a child element with the given tag name, this will return all of its sub-text (by calling getAllSubText() on it). If there is no such child element, this will return the default string passed-in.
References getChildElementAllSubText().
Referenced by getChildElementAllSubText().
void XmlElement::addTextElement | ( | const String & | text | ) |
Appends a section of text to this element.
References addTextElement().
Referenced by addTextElement().
|
noexcept |
Removes all the text elements from this element.
References deleteAllTextElements().
Referenced by deleteAllTextElements().
|
static |
Creates a text element that can be added to a parent element.
References createTextElement(), and XmlElement().
Referenced by createTextElement().
|
staticnoexcept |
Checks if a given string is a valid XML name.
References getNextElement(), isValidXmlName(), and XmlElement().
Referenced by isValidXmlName().
Iterator< GetNextElement > XmlElement::getChildIterator | ( | ) | const |
Allows iterating the children of an XmlElement using range-for syntax.
References getFirstChildElement().
Iterator< GetNextElementWithTagName > XmlElement::getChildWithTagNameIterator | ( | StringRef | name | ) | const |
Allows iterating children of an XmlElement with a specific tag using range-for syntax.
References getChildByName(), and name.