Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtCore.QXmlStreamReader Class Reference

The QXmlStreamReader class provides a fast parser for reading well-formed XML via a simple streaming API. More...

Inheritance diagram for QtCore.QXmlStreamReader:
Collaboration diagram for QtCore.QXmlStreamReader:

Public Types

enum  Error {
  CustomError = 2, NoError = 0, NotWellFormedError = 3, PrematureEndOfDocumentError = 4,
  UnexpectedElementError = 1
}
  More...
 
enum  ReadElementTextBehaviour { ErrorOnUnexpectedElement = 0, IncludeChildElements = 1, SkipChildElements = 2 }
  More...
 
enum  TokenType {
  Characters = 6, Comment = 7, DTD = 8, EndDocument = 3,
  EndElement = 5, EntityReference = 9, Invalid = 1, NoToken = 0,
  ProcessingInstruction = 10, StartDocument = 2, StartElement = 4
}
  More...
 

Public Member Functions

 QXmlStreamReader ()
 
 
 QXmlStreamReader (QIODevice device)
 
 
 QXmlStreamReader (QByteArray data)
 
 
 QXmlStreamReader (string data)
 
 
virtual void CreateProxy ()
 
new void AddData (QByteArray data)
 
 
new void AddData (string data)
 
 
new void AddExtraNamespaceDeclaration (QXmlStreamNamespaceDeclaration extraNamespaceDeclaraction)
 
 
new void AddExtraNamespaceDeclarations (System.Collections.Generic.List< QXmlStreamNamespaceDeclaration > extraNamespaceDeclaractions)
 
 
new bool AtEnd ()
 
 
new QXmlStreamAttributes Attributes ()
 
 
new long CharacterOffset ()
 
 
new void Clear ()
 
 
new long ColumnNumber ()
 
 
new QStringRef DocumentEncoding ()
 
 
new QStringRef DocumentVersion ()
 
 
new QStringRef DtdName ()
 
 
new QStringRef DtdPublicId ()
 
 
new QStringRef DtdSystemId ()
 
 
new
System.Collections.Generic.List
< QXmlStreamEntityDeclaration
EntityDeclarations ()
 
 
new QXmlStreamReader.Error error ()
 
 
new string ErrorString ()
 
 
new bool HasError ()
 
 
new bool IsCDATA ()
 
 
new bool IsCharacters ()
 
 
new bool IsComment ()
 
 
new bool IsDTD ()
 
 
new bool IsEndDocument ()
 
 
new bool IsEndElement ()
 
 
new bool IsEntityReference ()
 
 
new bool IsProcessingInstruction ()
 
 
new bool IsStandaloneDocument ()
 
 
new bool IsStartDocument ()
 
 
new bool IsStartElement ()
 
 
new bool IsWhitespace ()
 
 
new long LineNumber ()
 
 
new QStringRef Name ()
 
 
new
System.Collections.Generic.List
< QXmlStreamNamespaceDeclaration
NamespaceDeclarations ()
 
 
new QStringRef NamespaceUri ()
 
 
new
System.Collections.Generic.List
< QXmlStreamNotationDeclaration
NotationDeclarations ()
 
 
new QStringRef Prefix ()
 
 
new QStringRef ProcessingInstructionData ()
 
 
new QStringRef ProcessingInstructionTarget ()
 
 
new QStringRef QualifiedName ()
 
 
new void RaiseError (string message="")
 
 
new string ReadElementText ()
 
 
new string ReadElementText (QXmlStreamReader.ReadElementTextBehaviour behaviour)
 
 
new QXmlStreamReader.TokenType ReadNext ()
 
 
new bool ReadNextStartElement ()
 
 
new void SkipCurrentElement ()
 
 
new QStringRef Text ()
 
 
new string TokenString ()
 
 
new QXmlStreamReader.TokenType tokenType ()
 
 
new void Dispose ()
 

Protected Member Functions

 QXmlStreamReader (System.Type dummy)
 

Protected Attributes

SmokeInvocation interceptor
 

Properties

new QIODevice Device [get, set]
 
 
new QXmlStreamEntityResolver EntityResolver [get, set]
 
 
new bool NamespaceProcessing [get, set]
 
virtual System.IntPtr SmokeObject [get, set]
 

Detailed Description

The QXmlStreamReader class provides a fast parser for reading well-formed XML via a simple streaming API.

QXmlStreamReader is a faster and more convenient replacement for Qt's own SAX parser (see QXmlSimpleReader). In some cases it might also be a faster and more convenient alternative for use in applications that would otherwise use a DOM tree (see QDomDocument). QXmlStreamReader reads data either from a QIODevice (see setDevice()), or from a raw QByteArray (see addData()).

Qt provides QXmlStreamWriter for writing XML.

The basic concept of a stream reader is to report an XML document as a stream of tokens, similar to SAX. The main difference between QXmlStreamReader and SAX is how these XML tokens are reported. With SAX, the application must provide handlers (callback functions) that receive so-called XML events from the parser at the parser's convenience. With QXmlStreamReader, the application code itself drives the loop and pulls tokens from the reader, one after another, as it needs them. This is done by calling readNext(), where the reader reads from the input stream until it completes the next token, at which point it returns the tokenType(). A set of convenient functions including isStartElement() and text() can then be used to examine the token to obtain information about what has been read. The big advantage of this pulling approach is the possibility to build recursive descent parsers with it, meaning you can split your XML parsing code easily into different methods or classes. This makes it easy to keep track of the application's own state when parsing XML.

A typical loop with QXmlStreamReader looks like this:

QXmlStreamReader xml;

...

while (!xml.atEnd()) {

xml.readNext();

... // do processing

}

if (xml.hasError()) {

... // do error handling

}

QXmlStreamReader is a well-formed XML 1.0 parser that does not include external parsed entities. As long as no error occurs, the application code can thus be assured that the data provided by the stream reader satisfies the W3C's criteria for well-formed XML. For example, you can be certain that all tags are indeed nested and closed properly, that references to internal entities have been replaced with the correct replacement text, and that attributes have been normalized or added according to the internal subset of the DTD.

If an error occurs while parsing, atEnd() and hasError() return true, and error() returns the error that occurred. The functions errorString(), lineNumber(), columnNumber(), and characterOffset() are for constructing an appropriate error or warning message. To simplify application code, QXmlStreamReader contains a raiseError() mechanism that lets you raise custom errors that trigger the same error handling described.

The QXmlStream Bookmarks Example illustrates how to use the recursive descent technique to read an XML bookmark file (XBEL) with a stream reader.

Namespaces

QXmlStream understands and resolves XML namespaces. E.g. in case of a StartElement, namespaceUri() returns the namespace the element is in, and name() returns the element's local name. The combination of namespaceUri and name uniquely identifies an element. If a namespace prefix was not declared in the XML entities parsed by the reader, the namespaceUri is empty.

If you parse XML data that does not utilize namespaces according to the XML specification or doesn't use namespaces at all, you can use the element's qualifiedName() instead. A qualified name is the element's prefix() followed by colon followed by the element's local name() - exactly like the element appears in the raw XML data. Since the mapping namespaceUri to prefix is neither unique nor universal, qualifiedName() should be avoided for namespace-compliant XML data.

In order to parse standalone documents that do use undeclared namespace prefixes, you can turn off namespace processing completely with the namespaceProcessing property.

Incremental parsing

QXmlStreamReader is an incremental parser. It can handle the case where the document can't be parsed all at once because it arrives in chunks (e.g. from multiple files, or over a network connection). When the reader runs out of data before the complete document has been parsed, it reports a PrematureEndOfDocumentError. When more data arrives, either because of a call to addData() or because more data is available through the network device(), the reader recovers from the PrematureEndOfDocumentError error and continues parsing the new data with the next call to readNext().

For example, if your application reads data from the network using a network access manager, you would issue a network request to the manager and receive a network reply in return. Since a QNetworkReply is a QIODevice, you connect its readyRead() signal to a custom slot, e.g. slotReadyRead() in the code snippet shown in the discussion for QNetworkAccessManager. In this slot, you read all available data with readAll() and pass it to the XML stream reader using addData(). Then you call your custom parsing function that reads the XML events from the reader.

Performance and memory consumption

QXmlStreamReader is memory-conservative by design, since it doesn't store the entire XML document tree in memory, but only the current token at the time it is reported. In addition, QXmlStreamReader avoids the many small string allocations that it normally takes to map an XML document to a convenient and Qt-ish API. It does this by reporting all string data as QStringRef rather than real QString objects. QStringRef is a thin wrapper around QString substrings that provides a subset of the QString API without the memory allocation and reference-counting overhead. Calling toString() on any of those objects returns an equivalent real QString object.

Member Enumeration Documentation

This enum specifies different error cases

Enumerator:
CustomError 

A custom error has been raised with raiseError()

NoError 

No error has occurred.

NotWellFormedError 

The parser internally raised an error due to the read XML not being well-formed.

PrematureEndOfDocumentError 

The input stream ended before a well-formed XML document was parsed. Recovery from this error is possible if more XML arrives in the stream, either by calling addData() or by waiting for it to arrive on the device().

UnexpectedElementError 

The parser encountered an element that was different to those it expected.

This enum specifies the different behaviours of readElementText().

This enum was introduced or modified in Qt 4.6.

Enumerator:
ErrorOnUnexpectedElement 

Raise an UnexpectedElementError and return what was read so far when a child element is encountered.

IncludeChildElements 

Recursively include the text from child elements.

SkipChildElements 

Skip child elements.

This enum specifies the type of token the reader just read.

Enumerator:
Characters 

The reader reports characters in text(). If the characters are all white-space, isWhitespace() returns true. If the characters stem from a CDATA section, isCDATA() returns true.

Comment 

The reader reports a comment in text().

DTD 

The reader reports a DTD in text(), notation declarations in notationDeclarations(), and entity declarations in entityDeclarations(). Details of the DTD declaration are reported in in dtdName(), dtdPublicId(), and dtdSystemId().

EndDocument 

The reader reports the end of the document.

EndElement 

The reader reports the end of an element with namespaceUri() and name().

EntityReference 

The reader reports an entity reference that could not be resolved. The name of the reference is reported in name(), the replacement text in text().

Invalid 

An error has occurred, reported in error() and errorString().

NoToken 

The reader has not yet read anything.

ProcessingInstruction 

The reader reports a processing instruction in processingInstructionTarget() and processingInstructionData().

StartDocument 

The reader reports the XML version number in documentVersion(), and the encoding as specified in the XML document in documentEncoding(). If the document is declared standalone, isStandaloneDocument() returns true; otherwise it returns false.

StartElement 

The reader reports the start of an element with namespaceUri() and name(). Empty elements are also reported as StartElement, followed directly by EndElement. The convenience function readElementText() can be called to concatenate all content until the corresponding EndElement. Attributes are reported in attributes(), namespace declarations in namespaceDeclarations().

Constructor & Destructor Documentation

QtCore.QXmlStreamReader.QXmlStreamReader ( System.Type  dummy)
protected
QtCore.QXmlStreamReader.QXmlStreamReader ( )

Constructs a stream reader.

See also setDevice() and addData().

QtCore.QXmlStreamReader.QXmlStreamReader ( QIODevice  device)

Creates a new stream reader that reads from device.

See also setDevice() and clear().

QtCore.QXmlStreamReader.QXmlStreamReader ( QByteArray  data)

Creates a new stream reader that reads from data.

See also addData(), clear(), and setDevice().

QtCore.QXmlStreamReader.QXmlStreamReader ( string  data)

Creates a new stream reader that reads from data.

See also addData(), clear(), and setDevice().

Member Function Documentation

new void QtCore.QXmlStreamReader.AddData ( QByteArray  data)

Adds more data for the reader to read. This function does nothing if the reader has a device().

See also readNext() and clear().

new void QtCore.QXmlStreamReader.AddData ( string  data)

Adds more data for the reader to read. This function does nothing if the reader has a device().

See also readNext() and clear().

new void QtCore.QXmlStreamReader.AddExtraNamespaceDeclaration ( QXmlStreamNamespaceDeclaration  extraNamespaceDeclaraction)

Adds an extraNamespaceDeclaration. The declaration will be valid for children of the current element, or - should the function be called before any elements are read - for the entire XML document.

This function was introduced in Qt 4.4.

See also namespaceDeclarations(), addExtraNamespaceDeclarations(), and setNamespaceProcessing().

new void QtCore.QXmlStreamReader.AddExtraNamespaceDeclarations ( System.Collections.Generic.List< QXmlStreamNamespaceDeclaration extraNamespaceDeclaractions)

Adds a vector of declarations specified by extraNamespaceDeclarations.

This function was introduced in Qt 4.4.

See also namespaceDeclarations() and addExtraNamespaceDeclaration().

new bool QtCore.QXmlStreamReader.AtEnd ( )

Returns true if the reader has read until the end of the XML document, or if an error() has occurred and reading has been aborted. Otherwise, it returns false.

When atEnd() and hasError() return true and error() returns PrematureEndOfDocumentError, it means the XML has been well-formed so far, but a complete XML document has not been parsed. The next chunk of XML can be added with addData(), if the XML is being read from a QByteArray, or by waiting for more data to arrive if the XML is being read from a QIODevice. Either way, atEnd() will return false once more data is available.

See also hasError(), error(), device(), and QIODevice::atEnd().

new QXmlStreamAttributes QtCore.QXmlStreamReader.Attributes ( )

Returns the attributes of a StartElement.

new long QtCore.QXmlStreamReader.CharacterOffset ( )

Returns the current character offset, starting with 0.

See also lineNumber() and columnNumber().

new void QtCore.QXmlStreamReader.Clear ( )

Removes any device() or data from the reader and resets its internal state to the initial state.

See also addData().

new long QtCore.QXmlStreamReader.ColumnNumber ( )

Returns the current column number, starting with 0.

See also lineNumber() and characterOffset().

virtual void QtCore.QXmlStreamReader.CreateProxy ( )
virtual
new void QtCore.QXmlStreamReader.Dispose ( )
new QStringRef QtCore.QXmlStreamReader.DocumentEncoding ( )

If the state() is StartDocument, this function returns the encoding string as specified in the XML declaration. Otherwise an empty string is returned.

This function was introduced in Qt 4.4.

new QStringRef QtCore.QXmlStreamReader.DocumentVersion ( )

If the state() is StartDocument, this function returns the version string as specified in the XML declaration. Otherwise an empty string is returned.

This function was introduced in Qt 4.4.

new QStringRef QtCore.QXmlStreamReader.DtdName ( )

If the state() is DTD, this function returns the DTD's name. Otherwise an empty string is returned.

This function was introduced in Qt 4.4.

new QStringRef QtCore.QXmlStreamReader.DtdPublicId ( )

If the state() is DTD, this function returns the DTD's public identifier. Otherwise an empty string is returned.

This function was introduced in Qt 4.4.

new QStringRef QtCore.QXmlStreamReader.DtdSystemId ( )

If the state() is DTD, this function returns the DTD's system identifier. Otherwise an empty string is returned.

This function was introduced in Qt 4.4.

new System.Collections.Generic.List<QXmlStreamEntityDeclaration> QtCore.QXmlStreamReader.EntityDeclarations ( )

If the state() is DTD, this function returns the DTD's unparsed (external) entity declarations. Otherwise an empty vector is returned.

The QXmlStreamEntityDeclarations class is defined to be a QVector of QXmlStreamEntityDeclaration.

new QXmlStreamReader.Error QtCore.QXmlStreamReader.error ( )

Returns the type of the current error, or NoError if no error occurred.

See also errorString() and raiseError().

new string QtCore.QXmlStreamReader.ErrorString ( )

Returns the error message that was set with raiseError().

See also error(), lineNumber(), columnNumber(), and characterOffset().

new bool QtCore.QXmlStreamReader.HasError ( )

Returns true if an error has occurred, otherwise false.

See also errorString() and error().

new bool QtCore.QXmlStreamReader.IsCDATA ( )

Returns true if the reader reports characters that stem from a CDATA section; otherwise returns false.

See also isCharacters() and text().

new bool QtCore.QXmlStreamReader.IsCharacters ( )

Returns true if tokenType() equals Characters; otherwise returns false.

See also isWhitespace() and isCDATA().

new bool QtCore.QXmlStreamReader.IsComment ( )

Returns true if tokenType() equals Comment; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsDTD ( )

Returns true if tokenType() equals DTD; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsEndDocument ( )

Returns true if tokenType() equals EndDocument; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsEndElement ( )

Returns true if tokenType() equals EndElement; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsEntityReference ( )

Returns true if tokenType() equals EntityReference; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsProcessingInstruction ( )

Returns true if tokenType() equals ProcessingInstruction; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsStandaloneDocument ( )

Returns true if this document has been declared standalone in the XML declaration; otherwise returns false.

If no XML declaration has been parsed, this function returns false.

new bool QtCore.QXmlStreamReader.IsStartDocument ( )

Returns true if tokenType() equals StartDocument; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsStartElement ( )

Returns true if tokenType() equals StartElement; otherwise returns false.

new bool QtCore.QXmlStreamReader.IsWhitespace ( )

Returns true if the reader reports characters that only consist of white-space; otherwise returns false.

See also isCharacters() and text().

new long QtCore.QXmlStreamReader.LineNumber ( )

Returns the current line number, starting with 1.

See also columnNumber() and characterOffset().

new QStringRef QtCore.QXmlStreamReader.Name ( )

Returns the local name of a StartElement, EndElement, or an EntityReference.

See also namespaceUri() and qualifiedName().

new System.Collections.Generic.List<QXmlStreamNamespaceDeclaration> QtCore.QXmlStreamReader.NamespaceDeclarations ( )

If the state() is StartElement, this function returns the element's namespace declarations. Otherwise an empty vector is returned.

The QXmlStreamNamespaceDeclaration class is defined to be a QVector of QXmlStreamNamespaceDeclaration.

See also addExtraNamespaceDeclaration() and addExtraNamespaceDeclarations().

new QStringRef QtCore.QXmlStreamReader.NamespaceUri ( )

Returns the namespaceUri of a StartElement or EndElement.

See also name() and qualifiedName().

new System.Collections.Generic.List<QXmlStreamNotationDeclaration> QtCore.QXmlStreamReader.NotationDeclarations ( )

If the state() is DTD, this function returns the DTD's notation declarations. Otherwise an empty vector is returned.

The QXmlStreamNotationDeclarations class is defined to be a QVector of QXmlStreamNotationDeclaration.

new QStringRef QtCore.QXmlStreamReader.Prefix ( )

Returns the prefix of a StartElement or EndElement.

This function was introduced in Qt 4.4.

See also name() and qualifiedName().

new QStringRef QtCore.QXmlStreamReader.ProcessingInstructionData ( )

Returns the data of a ProcessingInstruction.

new QStringRef QtCore.QXmlStreamReader.ProcessingInstructionTarget ( )

Returns the target of a ProcessingInstruction.

new QStringRef QtCore.QXmlStreamReader.QualifiedName ( )

Returns the qualified name of a StartElement or EndElement;

A qualified name is the raw name of an element in the XML data. It consists of the namespace prefix, followed by colon, followed by the element's local name. Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn't use qualifiedName(), but the resolved namespaceUri() and the attribute's local name().

See also name(), prefix(), and namespaceUri().

new void QtCore.QXmlStreamReader.RaiseError ( string  message = "")

Raises a custom error with an optional error message.

See also error() and errorString().

new string QtCore.QXmlStreamReader.ReadElementText ( )

This function overloads readElementText().

Calling this function is equivalent to calling readElementText(ErrorOnUnexpectedElement).

new string QtCore.QXmlStreamReader.ReadElementText ( QXmlStreamReader.ReadElementTextBehaviour  behaviour)

Convenience function to be called in case a StartElement was read. Reads until the corresponding EndElement and returns all text in-between. In case of no error, the current token (see tokenType()) after having called this function is EndElement.

The function concatenates text() when it reads either Characters or EntityReference tokens, but skips ProcessingInstruction and Comment. If the current token is not StartElement, an empty string is returned.

The behaviour defines what happens in case anything else is read before reaching EndElement. The function can include the text from child elements (useful for example for HTML), ignore child elements, or raise an UnexpectedElementError and return what was read so far.

This function was introduced in Qt 4.6.

new QXmlStreamReader.TokenType QtCore.QXmlStreamReader.ReadNext ( )

Reads the next token and returns its type.

With one exception, once an error() is reported by readNext(), further reading of the XML stream is not possible. Then atEnd() returns true, hasError() returns true, and this function returns QXmlStreamReader::Invalid.

The exception is when error() returns PrematureEndOfDocumentError. This error is reported when the end of an otherwise well-formed chunk of XML is reached, but the chunk doesn't represent a complete XML document. In that case, parsing can be resumed by calling addData() to add the next chunk of XML, when the stream is being read from a QByteArray, or by waiting for more data to arrive when the stream is being read from a device().

See also tokenType() and tokenString().

new bool QtCore.QXmlStreamReader.ReadNextStartElement ( )

Reads until the next start element within the current element. Returns true when a start element was reached. When the end element was reached, or when an error occurred, false is returned.

The current element is the element matching the most recently parsed start element of which a matching end element has not yet been reached. When the parser has reached the end element, the current element becomes the parent element.

You can traverse a document by repeatedly calling this function while ensuring that the stream reader is not at the end of the document:

QXmlStreamReader xs(&file);

while (!xs.atEnd()) {

if (xs.readNextStartElement())

std::cout << qPrintable(xs.name().toString()) << std::endl;

}

This is a convenience function for when you're only concerned with parsing XML elements. The QXmlStream Bookmarks Example makes extensive use of this function.

This function was introduced in Qt 4.6.

See also readNext().

new void QtCore.QXmlStreamReader.SkipCurrentElement ( )

Reads until the end of the current element, skipping any child nodes. This function is useful for skipping unknown elements.

The current element is the element matching the most recently parsed start element of which a matching end element has not yet been reached. When the parser has reached the end element, the current element becomes the parent element.

This function was introduced in Qt 4.6.

new QStringRef QtCore.QXmlStreamReader.Text ( )

Returns the text of Characters, Comment, DTD, or EntityReference.

new string QtCore.QXmlStreamReader.TokenString ( )

Returns the reader's current token as string.

See also tokenType().

new QXmlStreamReader.TokenType QtCore.QXmlStreamReader.tokenType ( )

Returns the type of the current token.

The current token can also be queried with the convenience functions isStartDocument(), isEndDocument(), isStartElement(), isEndElement(), isCharacters(), isComment(), isDTD(), isEntityReference(), and isProcessingInstruction().

See also tokenString().

Member Data Documentation

SmokeInvocation QtCore.QXmlStreamReader.interceptor
protected

Property Documentation

new QIODevice QtCore.QXmlStreamReader.Device
getset

Returns the current device associated with the QXmlStreamReader, or 0 if no device has been assigned.

Sets the current device to device. Setting the device resets the stream to its initial state.

new QXmlStreamEntityResolver QtCore.QXmlStreamReader.EntityResolver
getset

Returns the entity resolver, or 0 if there is no entity resolver.

This function was introduced in Qt 4.4.

Makes resolver the new entityResolver().

The stream reader does not take ownership of the resolver. It's the callers responsibility to ensure that the resolver is valid during the entire life-time of the stream reader object, or until another resolver or 0 is set.

This function was introduced in Qt 4.4.

new bool QtCore.QXmlStreamReader.NamespaceProcessing
getset
virtual System.IntPtr QtCore.QXmlStreamReader.SmokeObject
getset