QXmlInputSource

Inheritance diagram of QXmlInputSource

Synopsis

Functions

Virtual functions

Detailed Description

The PySide.QtXml.QXmlInputSource class provides the input data for the PySide.QtXml.QXmlReader subclasses.

All subclasses of PySide.QtXml.QXmlReader read the input XML document from this class.

This class recognizes the encoding of the data by reading the encoding declaration in the XML file if it finds one, and reading the data using the corresponding encoding. If it does not find an encoding declaration, then it assumes that the data is either in UTF-8 or UTF-16, depending on whether it can find a byte-order mark.

There are two ways to populate the input source with data: you can construct it with a PySide.QtCore.QIODevice * so that the input source reads the data from that device. Or you can set the data explicitly with one of the PySide.QtXml.QXmlInputSource.setData() functions.

Usually you either construct a PySide.QtXml.QXmlInputSource that works on a PySide.QtCore.QIODevice * or you construct an empty PySide.QtXml.QXmlInputSource and set the data with PySide.QtXml.QXmlInputSource.setData() . There are only rare occasions where you would want to mix both methods.

The PySide.QtXml.QXmlReader subclasses use the PySide.QtXml.QXmlInputSource.next() function to read the input character by character. If you want to start from the beginning again, use PySide.QtXml.QXmlInputSource.reset() .

The functions PySide.QtXml.QXmlInputSource.data() and PySide.QtXml.QXmlInputSource.fetchData() are useful if you want to do something with the data other than parsing, e.g. displaying the raw XML file. The benefit of using the QXmlInputClass in such cases is that it tries to use the correct encoding.

class PySide.QtXml.QXmlInputSource
class PySide.QtXml.QXmlInputSource(dev)
Parameters:devPySide.QtCore.QIODevice

Constructs an input source which contains no data.

Constructs an input source and gets the data from device dev . If dev is not open, it is opened in read-only mode. If dev is 0 or it is not possible to read from the device, the input source will contain no data.

PySide.QtXml.QXmlInputSource.data()
Return type:unicode

Returns the data the input source contains or an empty string if the input source does not contain any data.

See also

PySide.QtXml.QXmlInputSource.setData() PySide.QtXml.QXmlInputSource.QXmlInputSource() PySide.QtXml.QXmlInputSource.fetchData()

PySide.QtXml.QXmlInputSource.fetchData()

This function reads more data from the device that was set during construction. If the input source already contained data, this function deletes that data first.

This object contains no data after a call to this function if the object was constructed without a device to read data from or if this function was not able to get more data from the device.

There are two occasions where a fetch is done implicitly by another function call: during construction (so that the object starts out with some initial data where available), and during a call to PySide.QtXml.QXmlInputSource.next() (if the data had run out).

You don’t normally need to use this function if you use PySide.QtXml.QXmlInputSource.next() .

See also

PySide.QtXml.QXmlInputSource.data() PySide.QtXml.QXmlInputSource.next() PySide.QtXml.QXmlInputSource.QXmlInputSource()

PySide.QtXml.QXmlInputSource.fromRawData(data[, beginning=false])
Parameters:
Return type:

unicode

This function reads the XML file from data and tries to recognize the encoding. It converts the raw data data into a PySide.QtCore.QString and returns it. It tries its best to get the correct encoding for the XML file.

If beginning is true, this function assumes that the data starts at the beginning of a new XML document and looks for an encoding declaration. If beginning is false, it converts the raw data using the encoding determined from prior calls.

PySide.QtXml.QXmlInputSource.init()
PySide.QtXml.QXmlInputSource.next()
Return type:PySide.QtCore.QChar

Returns the next character of the input source. If this function reaches the end of available data, it returns QXmlInputSource.EndOfData . If you call PySide.QtXml.QXmlInputSource.next() after that, it tries to fetch more data by calling PySide.QtXml.QXmlInputSource.fetchData() . If the PySide.QtXml.QXmlInputSource.fetchData() call results in new data, this function returns the first character of that data; otherwise it returns QXmlInputSource.EndOfDocument .

Readers, such as PySide.QtXml.QXmlSimpleReader , will assume that the end of the XML document has been reached if the this function returns QXmlInputSource.EndOfDocument , and will check that the supplied input is well-formed. Therefore, when reimplementing this function, it is important to ensure that this behavior is duplicated.

PySide.QtXml.QXmlInputSource.reset()

This function sets the position used by PySide.QtXml.QXmlInputSource.next() to the beginning of the data returned by PySide.QtXml.QXmlInputSource.data() . This is useful if you want to use the input source for more than one parse.

Note

In the case that the underlying data source is a PySide.QtCore.QIODevice , the current position in the device is not automatically set to the start of input. Call QIODevice::seek(0) on the device to do this.

PySide.QtXml.QXmlInputSource.setData(dat)
Parameters:datPySide.QtCore.QByteArray

This is an overloaded function.

The data dat is passed through the correct text-codec, before it is set.

PySide.QtXml.QXmlInputSource.setData(dat)
Parameters:dat – unicode

Sets the data of the input source to dat .

If the input source already contains data, this function deletes that data first.