XMLParser

Inherits:Reference<Object

Low-level class for creating parsers forXML files.

Description

This class can serve as base to make custom XML parsers. Since XML is a very flexible standard, this interface is low-level so it can be applied to any possible schema.

Methods

int

get_attribute_count()const

String

get_attribute_name(int idx)const

String

get_attribute_value(int idx)const

int

get_current_line()const

String

get_named_attribute_value(String name)const

String

get_named_attribute_value_safe(String name)const

String

get_node_data()const

String

get_node_name()const

int

get_node_offset()const

NodeType

get_node_type()

bool

has_attribute(String name)const

bool

is_empty()const

Error

open(String file)

Error

open_buffer(PoolByteArray buffer)

Error

read()

Error

seek(int position)

void

skip_section()

Enumerations

enumNodeType:

  • NODE_NONE =0 --- There's no node (no file or buffer opened).

  • NODE_ELEMENT =1 --- Element (tag).

  • NODE_ELEMENT_END =2 --- End of element.

  • NODE_TEXT =3 --- Text node.

  • NODE_COMMENT =4 --- Comment node.

  • NODE_CDATA =5 --- CDATA content.

  • NODE_UNKNOWN =6 --- Unknown node.

Method Descriptions

Gets the amount of attributes in the current element.


Gets the name of the attribute specified by the index inidx argument.


Gets the value of the attribute specified by the index inidx argument.


Gets the current line in the parsed file (currently not implemented).


Gets the value of a certain attribute of the current element by name. This will raise an error if the element has no such attribute.


Gets the value of a certain attribute of the current element by name. This will return an emptyString if the attribute is not found.


Gets the contents of a text node. This will raise an error in any other type of node.


Gets the name of the current element node. This will raise an error if the current node type is neitherNODE_ELEMENT norNODE_ELEMENT_END.


Gets the byte offset of the current node since the beginning of the file or buffer.


Gets the type of the current node. Compare withNodeType constants.


Check whether the current element has a certain attribute.


Check whether the current element is empty (this only works for completely empty tags, e.g.<element\>).


Opens an XML file for parsing. This returns an error code.


Opens an XML raw buffer for parsing. This returns an error code.


Reads the next node of the file. This returns an error code.


Moves the buffer cursor to a certain offset (since the beginning) and read the next node there. This returns an error code.


  • voidskip_section()

Skips the current section. If the node contains other elements, they will be ignored and the cursor will go to the closing of the current element.