Qt 4.8
|
The QXmlStreamReader class provides a fast parser for reading well-formed XML via a simple streaming API. More...
#include <qxmlstream.h>
Public Types | |
enum | Error { NoError, UnexpectedElementError, CustomError, NotWellFormedError, PrematureEndOfDocumentError } |
This enum specifies different error cases. More... | |
enum | ReadElementTextBehaviour { ErrorOnUnexpectedElement, IncludeChildElements, SkipChildElements } |
This enum specifies the different behaviours of readElementText(). More... | |
enum | TokenType { NoToken = 0, Invalid, StartDocument, EndDocument, StartElement, EndElement, Characters, Comment, DTD, EntityReference, ProcessingInstruction } |
This enum specifies the type of token the reader just read. More... | |
Public Functions | |
void | addData (const QByteArray &data) |
Adds more data for the reader to read. More... | |
void | addData (const QString &data) |
Adds more data for the reader to read. More... | |
void | addData (const char *data) |
Adds more data for the reader to read. More... | |
void | addExtraNamespaceDeclaration (const QXmlStreamNamespaceDeclaration &extraNamespaceDeclaraction) |
Adds an extraNamespaceDeclaration. More... | |
void | addExtraNamespaceDeclarations (const QXmlStreamNamespaceDeclarations &extraNamespaceDeclaractions) |
Adds a vector of declarations specified by extraNamespaceDeclarations. More... | |
bool | atEnd () const |
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. More... | |
QXmlStreamAttributes | attributes () const |
Returns the attributes of a StartElement. More... | |
qint64 | characterOffset () const |
Returns the current character offset, starting with 0. More... | |
void | clear () |
Removes any device() or data from the reader and resets its internal state to the initial state. More... | |
qint64 | columnNumber () const |
Returns the current column number, starting with 0. More... | |
QIODevice * | device () const |
Returns the current device associated with the QXmlStreamReader, or 0 if no device has been assigned. More... | |
QStringRef | documentEncoding () const |
If the state() is StartDocument , this function returns the encoding string as specified in the XML declaration. More... | |
QStringRef | documentVersion () const |
If the state() is StartDocument , this function returns the version string as specified in the XML declaration. More... | |
QStringRef | dtdName () const |
If the state() is DTD , this function returns the DTD's name. More... | |
QStringRef | dtdPublicId () const |
If the state() is DTD , this function returns the DTD's public identifier. More... | |
QStringRef | dtdSystemId () const |
If the state() is DTD , this function returns the DTD's system identifier. More... | |
QXmlStreamEntityDeclarations | entityDeclarations () const |
If the state() is DTD , this function returns the DTD's unparsed (external) entity declarations. More... | |
QXmlStreamEntityResolver * | entityResolver () const |
Returns the entity resolver, or 0 if there is no entity resolver. More... | |
Error | error () const |
Returns the type of the current error, or NoError if no error occurred. More... | |
QString | errorString () const |
Returns the error message that was set with raiseError(). More... | |
bool | hasError () const |
Returns true if an error has occurred, otherwise false . More... | |
bool | isCDATA () const |
Returns true if the reader reports characters that stem from a CDATA section; otherwise returns false. More... | |
bool | isCharacters () const |
Returns true if tokenType() equals Characters ; otherwise returns false. More... | |
bool | isComment () const |
Returns true if tokenType() equals Comment ; otherwise returns false. More... | |
bool | isDTD () const |
Returns true if tokenType() equals DTD ; otherwise returns false. More... | |
bool | isEndDocument () const |
Returns true if tokenType() equals EndDocument ; otherwise returns false. More... | |
bool | isEndElement () const |
Returns true if tokenType() equals EndElement ; otherwise returns false. More... | |
bool | isEntityReference () const |
Returns true if tokenType() equals EntityReference ; otherwise returns false. More... | |
bool | isProcessingInstruction () const |
Returns true if tokenType() equals ProcessingInstruction ; otherwise returns false. More... | |
bool | isStandaloneDocument () const |
Returns true if this document has been declared standalone in the XML declaration; otherwise returns false. More... | |
bool | isStartDocument () const |
Returns true if tokenType() equals StartDocument ; otherwise returns false. More... | |
bool | isStartElement () const |
Returns true if tokenType() equals StartElement ; otherwise returns false. More... | |
bool | isWhitespace () const |
Returns true if the reader reports characters that only consist of white-space; otherwise returns false. More... | |
qint64 | lineNumber () const |
Returns the current line number, starting with 1. More... | |
QStringRef | name () const |
Returns the local name of a StartElement, EndElement, or an EntityReference. More... | |
QXmlStreamNamespaceDeclarations | namespaceDeclarations () const |
If the state() is StartElement , this function returns the element's namespace declarations. More... | |
bool | namespaceProcessing () const |
This property controls whether or not the stream reader processes namespaces. More... | |
QStringRef | namespaceUri () const |
Returns the namespaceUri of a StartElement or EndElement. More... | |
QXmlStreamNotationDeclarations | notationDeclarations () const |
If the state() is DTD , this function returns the DTD's notation declarations. More... | |
QStringRef | prefix () const |
Returns the prefix of a StartElement or EndElement. More... | |
QStringRef | processingInstructionData () const |
Returns the data of a ProcessingInstruction. More... | |
QStringRef | processingInstructionTarget () const |
Returns the target of a ProcessingInstruction. More... | |
QStringRef | qualifiedName () const |
Returns the qualified name of a StartElement or EndElement;. More... | |
QXmlStreamReader () | |
Constructs a stream reader. More... | |
QXmlStreamReader (QIODevice *device) | |
Creates a new stream reader that reads from device. More... | |
QXmlStreamReader (const QByteArray &data) | |
Creates a new stream reader that reads from data. More... | |
QXmlStreamReader (const QString &data) | |
Creates a new stream reader that reads from data. More... | |
QXmlStreamReader (const char *data) | |
Creates a new stream reader that reads from data. More... | |
void | raiseError (const QString &message=QString()) |
Raises a custom error with an optional error message. More... | |
QString | readElementText (ReadElementTextBehaviour behaviour) |
Convenience function to be called in case a StartElement was read. More... | |
QString | readElementText () |
TokenType | readNext () |
Reads the next token and returns its type. More... | |
bool | readNextStartElement () |
Reads until the next start element within the current element. More... | |
void | setDevice (QIODevice *device) |
Sets the current device to device. More... | |
void | setEntityResolver (QXmlStreamEntityResolver *resolver) |
Makes resolver the new entityResolver(). More... | |
void | setNamespaceProcessing (bool) |
void | skipCurrentElement () |
Reads until the end of the current element, skipping any child nodes. More... | |
QStringRef | text () const |
Returns the text of Characters , Comment , DTD , or EntityReference. More... | |
QString | tokenString () const |
Returns the reader's current token as string. More... | |
TokenType | tokenType () const |
Returns the type of the current token. More... | |
~QXmlStreamReader () | |
Destructs the reader. More... | |
Properties | |
QScopedPointer< QXmlStreamReaderPrivate > | d_ptr |
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 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.
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.
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.
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.
Definition at line 290 of file qxmlstream.h.
This enum specifies different error cases.
Enumerator | |
---|---|
NoError | |
UnexpectedElementError | |
CustomError | |
NotWellFormedError | |
PrematureEndOfDocumentError |
Definition at line 385 of file qxmlstream.h.
This enum specifies the different behaviours of readElementText().
Enumerator | |
---|---|
ErrorOnUnexpectedElement | |
IncludeChildElements | |
SkipChildElements |
Definition at line 357 of file qxmlstream.h.
This enum specifies the type of token the reader just read.
Enumerator | |
---|---|
NoToken | |
Invalid | |
StartDocument | |
EndDocument | |
StartElement | |
EndElement | |
Characters | |
Comment | |
DTD | |
EntityReference | |
ProcessingInstruction |
Definition at line 293 of file qxmlstream.h.
QXmlStreamReader::QXmlStreamReader | ( | ) |
Constructs a stream reader.
Definition at line 406 of file qxmlstream.cpp.
QXmlStreamReader::QXmlStreamReader | ( | QIODevice * | device | ) |
Creates a new stream reader that reads from device.
Definition at line 415 of file qxmlstream.cpp.
QXmlStreamReader::QXmlStreamReader | ( | const QByteArray & | data | ) |
Creates a new stream reader that reads from data.
Definition at line 426 of file qxmlstream.cpp.
QXmlStreamReader::QXmlStreamReader | ( | const QString & | data | ) |
Creates a new stream reader that reads from data.
Definition at line 438 of file qxmlstream.cpp.
QXmlStreamReader::QXmlStreamReader | ( | const char * | data | ) |
Creates a new stream reader that reads from data.
Definition at line 457 of file qxmlstream.cpp.
QXmlStreamReader::~QXmlStreamReader | ( | ) |
Destructs the reader.
Definition at line 467 of file qxmlstream.cpp.
void QXmlStreamReader::addData | ( | const QByteArray & | data | ) |
Adds more data for the reader to read.
This function does nothing if the reader has a device().
Definition at line 520 of file qxmlstream.cpp.
Referenced by addData().
void QXmlStreamReader::addData | ( | const QString & | data | ) |
Adds more data for the reader to read.
This function does nothing if the reader has a device().
Definition at line 536 of file qxmlstream.cpp.
void QXmlStreamReader::addData | ( | const char * | data | ) |
Adds more data for the reader to read.
This function does nothing if the reader has a device().
Definition at line 553 of file qxmlstream.cpp.
void QXmlStreamReader::addExtraNamespaceDeclaration | ( | const QXmlStreamNamespaceDeclaration & | extraNamespaceDeclaration | ) |
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.
Definition at line 2110 of file qxmlstream.cpp.
void QXmlStreamReader::addExtraNamespaceDeclarations | ( | const QXmlStreamNamespaceDeclarations & | extraNamespaceDeclarations | ) |
Adds a vector of declarations specified by extraNamespaceDeclarations.
Definition at line 2128 of file qxmlstream.cpp.
bool QXmlStreamReader::atEnd | ( | ) | const |
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.
Definition at line 590 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::XSLTTokenizer::insideAttributeSet(), QPatternist::XSLTTokenizer::insideChoose(), QPatternist::XSLTTokenizer::insideSequenceConstructor(), QPatternist::XSLTTokenizer::insideStylesheetModule(), Document::load(), QPatternist::XSLTTokenizer::outsideDocumentElement(), QScriptXmlParser::parse(), QPatternist::XsdSchemaParser::parse(), QSvgHandler::parse(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAnnotation(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseAppInfo(), QPatternist::XsdSchemaParser::parseAssertion(), QPatternist::XsdSchemaParser::parseChoice(), QPatternist::XsdSchemaParser::parseComplexContent(), QPatternist::XsdSchemaParser::parseComplexContentExtension(), QPatternist::XsdSchemaParser::parseComplexContentRestriction(), QPatternist::XsdSchemaParser::parseDefaultOpenContent(), QPatternist::XsdSchemaParser::parseDocumentation(), QPatternist::XsdSchemaParser::parseEnumerationFacet(), QPatternist::XsdSchemaParser::parseField(), QPatternist::XsdSchemaParser::parseFractionDigitsFacet(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseGlobalSimpleType(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseInclude(), QPatternist::XsdSchemaParser::parseKey(), QPatternist::XsdSchemaParser::parseKeyRef(), QPatternist::XsdSchemaParser::parseLengthFacet(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalChoice(), QPatternist::XsdSchemaParser::parseLocalComplexType(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseLocalSequence(), QPatternist::XsdSchemaParser::parseLocalSimpleType(), QPatternist::XsdSchemaParser::parseMaxExclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxInclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxLengthFacet(), QPatternist::XsdSchemaParser::parseMinExclusiveFacet(), QPatternist::XsdSchemaParser::parseMinInclusiveFacet(), QPatternist::XsdSchemaParser::parseMinLengthFacet(), QPatternist::XsdSchemaParser::parseNamedAttributeGroup(), QPatternist::XsdSchemaParser::parseNamedGroup(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseOpenContent(), QPatternist::XsdSchemaParser::parsePatternFacet(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseReferredAttributeGroup(), QPatternist::XsdSchemaParser::parseReferredGroup(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSelector(), QPatternist::XsdSchemaParser::parseSequence(), QPatternist::XsdSchemaParser::parseSimpleContent(), QPatternist::XsdSchemaParser::parseSimpleContentExtension(), QPatternist::XsdSchemaParser::parseSimpleContentRestriction(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseTotalDigitsFacet(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnique(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XsdSchemaParser::parseUnknownDocumentation(), QPatternist::XsdSchemaParser::parseWhiteSpaceFacet(), QPatternist::XSLTTokenizer::queueParams(), QPatternist::XSLTTokenizer::queueSorting(), QPatternist::XSLTTokenizer::queueWithParams(), QPatternist::XSLTTokenizer::readElementText(), QPatternist::XSLTTokenizer::skipSubTree(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and tokenUntil().
QXmlStreamAttributes QXmlStreamReader::attributes | ( | ) | const |
Returns the attributes of a StartElement.
Definition at line 2317 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::XSLTTokenizer::handleXSLTVersion(), Document::load(), QScriptXmlParser::parse(), QSvgHandler::parse(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), tokenUntil(), and QXmlStreamWriter::writeCurrentToken().
qint64 QXmlStreamReader::characterOffset | ( | ) | const |
Returns the current character offset, starting with 0.
Definition at line 1979 of file qxmlstream.cpp.
void QXmlStreamReader::clear | ( | ) |
Removes any device() or data from the reader and resets its internal state to the initial state.
Definition at line 564 of file qxmlstream.cpp.
qint64 QXmlStreamReader::columnNumber | ( | ) | const |
Returns the current column number, starting with 0.
Definition at line 1969 of file qxmlstream.cpp.
Referenced by QPatternist::XsdSchemaParser::currentSourceLocation(), QPatternist::XSLTTokenizer::currentSourceLocator(), and QPatternist::AccelTreeResourceLoader::streamToReceiver().
QIODevice * QXmlStreamReader::device | ( | ) | const |
Returns the current device associated with the QXmlStreamReader, or 0 if no device has been assigned.
Definition at line 507 of file qxmlstream.cpp.
Referenced by setDevice().
QStringRef QXmlStreamReader::documentEncoding | ( | ) | const |
If the state() is StartDocument , this function returns the encoding string as specified in the XML declaration.
Otherwise an empty string is returned.
Definition at line 3031 of file qxmlstream.cpp.
Referenced by QDeclarativeXMLHttpRequest::findTextCodec(), and Document::load().
QStringRef QXmlStreamReader::documentVersion | ( | ) | const |
If the state() is StartDocument , this function returns the version string as specified in the XML declaration.
Otherwise an empty string is returned.
Definition at line 3013 of file qxmlstream.cpp.
Referenced by Document::load().
QStringRef QXmlStreamReader::dtdName | ( | ) | const |
If the state() is DTD , this function returns the DTD's name.
Otherwise an empty string is returned.
Definition at line 2035 of file qxmlstream.cpp.
QStringRef QXmlStreamReader::dtdPublicId | ( | ) | const |
If the state() is DTD , this function returns the DTD's public identifier.
Otherwise an empty string is returned.
Definition at line 2053 of file qxmlstream.cpp.
QStringRef QXmlStreamReader::dtdSystemId | ( | ) | const |
If the state() is DTD , this function returns the DTD's system identifier.
Otherwise an empty string is returned.
Definition at line 2071 of file qxmlstream.cpp.
QXmlStreamEntityDeclarations QXmlStreamReader::entityDeclarations | ( | ) | const |
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.
Definition at line 2017 of file qxmlstream.cpp.
QXmlStreamEntityResolver * QXmlStreamReader::entityResolver | ( | ) | const |
Returns the entity resolver, or 0 if there is no entity resolver.
Definition at line 264 of file qxmlstream.cpp.
QXmlStreamReader::Error QXmlStreamReader::error | ( | ) | const |
Returns the type of the current error, or NoError if no error occurred.
Definition at line 2228 of file qxmlstream.cpp.
Referenced by QPatternist::XsdSchemaParser::addAttribute(), QPatternist::XsdSchemaParser::addAttributeGroup(), QPatternist::XsdSchemaParser::addElement(), QPatternist::XsdSchemaParser::addElementGroup(), QPatternist::XsdSchemaParser::addFacet(), QPatternist::XsdSchemaParser::addIdentityConstraint(), QPatternist::XsdSchemaParser::addNotation(), QPatternist::XsdSchemaParser::addType(), QPatternist::XsdSchemaParser::attributeContentError(), QPatternist::XSLTTokenizer::checkForParseError(), QPatternist::XsdSchemaParser::convertName(), QPatternist::XsdSchemaParser::error(), QPatternist::XSLTTokenizer::handleStandardAttributes(), QPatternist::XSLTTokenizer::handleValidationAttributes(), QPatternist::XSLTTokenizer::handleXSLTVersion(), QPatternist::XSLTTokenizer::insideChoose(), QPatternist::XSLTTokenizer::insideSequenceConstructor(), QPatternist::XSLTTokenizer::insideStylesheetModule(), QPatternist::XSLTTokenizer::insideTemplate(), QPatternist::XSLTTokenizer::outsideDocumentElement(), QPatternist::XsdSchemaParser::parse(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseMinMaxConstraint(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XSLTTokenizer::queueParams(), QPatternist::XSLTTokenizer::queueSelectOrSequenceConstructor(), QPatternist::XSLTTokenizer::queueSorting(), QPatternist::XSLTTokenizer::queueVariableDeclaration(), QPatternist::XSLTTokenizer::readAlternativeAttribute(), QPatternist::XsdSchemaParser::readBlockingConstraintAttribute(), QPatternist::XsdSchemaParser::readDerivationConstraintAttribute(), QPatternist::XSLTTokenizer::readToggleAttribute(), QPatternist::XSLTTokenizer::skipBodyOfParam(), QPatternist::XSLTTokenizer::unexpectedContent(), and QPatternist::XsdSchemaParser::validateIdAttribute().
QString QXmlStreamReader::errorString | ( | ) | const |
Returns the error message that was set with raiseError().
Definition at line 2216 of file qxmlstream.cpp.
Referenced by QPatternist::XSLTTokenizer::checkForParseError(), QPatternist::XsdSchemaParser::parse(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QPatternist::XSLTTokenizer::unexpectedContent().
|
inline |
Returns true
if an error has occurred, otherwise false
.
Definition at line 396 of file qxmlstream.h.
Referenced by QPatternist::XSLTTokenizer::checkForParseError(), QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::XSLTTokenizer::insideSequenceConstructor(), and Document::load().
bool QXmlStreamReader::isCDATA | ( | ) | const |
Returns true if the reader reports characters that stem from a CDATA section; otherwise returns false.
Definition at line 2982 of file qxmlstream.cpp.
Referenced by Document::load(), and QXmlStreamWriter::writeCurrentToken().
|
inline |
Returns true if tokenType() equals Characters ; otherwise returns false.
Definition at line 339 of file qxmlstream.h.
Referenced by QPatternist::XsdSchemaParser::parseNotation().
|
inline |
Returns true if tokenType() equals Comment ; otherwise returns false.
Definition at line 342 of file qxmlstream.h.
|
inline |
Returns true if tokenType() equals DTD ; otherwise returns false.
Definition at line 343 of file qxmlstream.h.
|
inline |
Returns true if tokenType() equals EndDocument ; otherwise returns false.
Definition at line 336 of file qxmlstream.h.
|
inline |
Returns true if tokenType() equals EndElement ; otherwise returns false.
Definition at line 338 of file qxmlstream.h.
Referenced by QPatternist::XSLTTokenizer::insideStylesheetModule(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAnnotation(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseAppInfo(), QPatternist::XsdSchemaParser::parseAssertion(), QPatternist::XsdSchemaParser::parseChoice(), QPatternist::XsdSchemaParser::parseComplexContent(), QPatternist::XsdSchemaParser::parseComplexContentExtension(), QPatternist::XsdSchemaParser::parseComplexContentRestriction(), QPatternist::XsdSchemaParser::parseDefaultOpenContent(), QPatternist::XsdSchemaParser::parseDocumentation(), QPatternist::XsdSchemaParser::parseEnumerationFacet(), QPatternist::XsdSchemaParser::parseField(), QPatternist::XsdSchemaParser::parseFractionDigitsFacet(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseGlobalSimpleType(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseInclude(), QPatternist::XsdSchemaParser::parseKey(), QPatternist::XsdSchemaParser::parseKeyRef(), QPatternist::XsdSchemaParser::parseLengthFacet(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalChoice(), QPatternist::XsdSchemaParser::parseLocalComplexType(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseLocalSequence(), QPatternist::XsdSchemaParser::parseLocalSimpleType(), QPatternist::XsdSchemaParser::parseMaxExclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxInclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxLengthFacet(), QPatternist::XsdSchemaParser::parseMinExclusiveFacet(), QPatternist::XsdSchemaParser::parseMinInclusiveFacet(), QPatternist::XsdSchemaParser::parseMinLengthFacet(), QPatternist::XsdSchemaParser::parseNamedAttributeGroup(), QPatternist::XsdSchemaParser::parseNamedGroup(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseOpenContent(), QPatternist::XsdSchemaParser::parsePatternFacet(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseReferredAttributeGroup(), QPatternist::XsdSchemaParser::parseReferredGroup(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSelector(), QPatternist::XsdSchemaParser::parseSequence(), QPatternist::XsdSchemaParser::parseSimpleContent(), QPatternist::XsdSchemaParser::parseSimpleContentExtension(), QPatternist::XsdSchemaParser::parseSimpleContentRestriction(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseTotalDigitsFacet(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnique(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XsdSchemaParser::parseUnknownDocumentation(), QPatternist::XsdSchemaParser::parseWhiteSpaceFacet(), readNextStartElement(), and skipCurrentElement().
|
inline |
Returns true if tokenType() equals EntityReference ; otherwise returns false.
Definition at line 344 of file qxmlstream.h.
Referenced by QPatternist::XsdSchemaParser::parseNotation().
|
inline |
Returns true if tokenType() equals ProcessingInstruction ; otherwise returns false.
Definition at line 345 of file qxmlstream.h.
bool QXmlStreamReader::isStandaloneDocument | ( | ) | const |
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.
Definition at line 2996 of file qxmlstream.cpp.
Referenced by Document::load().
|
inline |
Returns true if tokenType() equals StartDocument ; otherwise returns false.
Definition at line 335 of file qxmlstream.h.
|
inline |
Returns true if tokenType() equals StartElement ; otherwise returns false.
Definition at line 337 of file qxmlstream.h.
Referenced by QPatternist::ElementNamespaceHandler::ElementNamespaceHandler(), QPatternist::XsdSchemaParser::parse(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAnnotation(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseAppInfo(), QPatternist::XsdSchemaParser::parseAssertion(), QPatternist::XsdSchemaParser::parseChoice(), QPatternist::XsdSchemaParser::parseComplexContent(), QPatternist::XsdSchemaParser::parseComplexContentExtension(), QPatternist::XsdSchemaParser::parseComplexContentRestriction(), QPatternist::XsdSchemaParser::parseDefaultOpenContent(), QPatternist::XsdSchemaParser::parseDocumentation(), QPatternist::XsdSchemaParser::parseEnumerationFacet(), QPatternist::XsdSchemaParser::parseField(), QPatternist::XsdSchemaParser::parseFractionDigitsFacet(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseGlobalSimpleType(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseInclude(), QPatternist::XsdSchemaParser::parseKey(), QPatternist::XsdSchemaParser::parseKeyRef(), QPatternist::XsdSchemaParser::parseLengthFacet(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalChoice(), QPatternist::XsdSchemaParser::parseLocalComplexType(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseLocalSequence(), QPatternist::XsdSchemaParser::parseLocalSimpleType(), QPatternist::XsdSchemaParser::parseMaxExclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxInclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxLengthFacet(), QPatternist::XsdSchemaParser::parseMinExclusiveFacet(), QPatternist::XsdSchemaParser::parseMinInclusiveFacet(), QPatternist::XsdSchemaParser::parseMinLengthFacet(), QPatternist::XsdSchemaParser::parseNamedAttributeGroup(), QPatternist::XsdSchemaParser::parseNamedGroup(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseOpenContent(), QPatternist::XsdSchemaParser::parsePatternFacet(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseReferredAttributeGroup(), QPatternist::XsdSchemaParser::parseReferredGroup(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSelector(), QPatternist::XsdSchemaParser::parseSequence(), QPatternist::XsdSchemaParser::parseSimpleContent(), QPatternist::XsdSchemaParser::parseSimpleContentExtension(), QPatternist::XsdSchemaParser::parseSimpleContentRestriction(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseTotalDigitsFacet(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnique(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XsdSchemaParser::parseUnknownDocumentation(), QPatternist::XsdSchemaParser::parseWhiteSpaceFacet(), readNextStartElement(), and skipCurrentElement().
bool QXmlStreamReader::isWhitespace | ( | ) | const |
Returns true if the reader reports characters that only consist of white-space; otherwise returns false.
Definition at line 2971 of file qxmlstream.cpp.
Referenced by QPatternist::MaintainingReader< XSLTTokenLookup >::isWhitespace(), and QPatternist::AccelTreeResourceLoader::streamToReceiver().
qint64 QXmlStreamReader::lineNumber | ( | ) | const |
Returns the current line number, starting with 1.
Definition at line 1959 of file qxmlstream.cpp.
Referenced by QPatternist::XsdSchemaParser::currentSourceLocation(), QPatternist::XSLTTokenizer::currentSourceLocator(), and QPatternist::AccelTreeResourceLoader::streamToReceiver().
QStringRef QXmlStreamReader::name | ( | ) | const |
Returns the local name of a StartElement, EndElement, or an EntityReference.
Definition at line 2261 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::ElementNamespaceHandler::ElementNamespaceHandler(), QPatternist::XSLTTokenizer::insideStylesheetModule(), QPatternist::XSLTTokenizer::isElement(), QPatternist::XSLTTokenizer::isStylesheetElement(), Document::load(), QScriptXmlParser::parse(), QPatternist::XsdSchemaParser::parse(), QSvgHandler::parse(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAnnotation(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseAssertion(), QPatternist::XsdSchemaParser::parseChoice(), QPatternist::XsdSchemaParser::parseComplexContent(), QPatternist::XsdSchemaParser::parseComplexContentExtension(), QPatternist::XsdSchemaParser::parseComplexContentRestriction(), QPatternist::XsdSchemaParser::parseDefaultOpenContent(), QPatternist::XsdSchemaParser::parseEnumerationFacet(), QPatternist::XsdSchemaParser::parseField(), QPatternist::XsdSchemaParser::parseFractionDigitsFacet(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseGlobalSimpleType(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseInclude(), QPatternist::XsdSchemaParser::parseKey(), QPatternist::XsdSchemaParser::parseKeyRef(), QPatternist::XsdSchemaParser::parseLengthFacet(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalChoice(), QPatternist::XsdSchemaParser::parseLocalComplexType(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseLocalSequence(), QPatternist::XsdSchemaParser::parseLocalSimpleType(), QPatternist::XsdSchemaParser::parseMaxExclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxInclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxLengthFacet(), QPatternist::XsdSchemaParser::parseMinExclusiveFacet(), QPatternist::XsdSchemaParser::parseMinInclusiveFacet(), QPatternist::XsdSchemaParser::parseMinLengthFacet(), QPatternist::XsdSchemaParser::parseNamedAttributeGroup(), QPatternist::XsdSchemaParser::parseNamedGroup(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseOpenContent(), QPatternist::XsdSchemaParser::parsePatternFacet(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseReferredAttributeGroup(), QPatternist::XsdSchemaParser::parseReferredGroup(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSelector(), QPatternist::XsdSchemaParser::parseSequence(), QPatternist::XsdSchemaParser::parseSimpleContent(), QPatternist::XsdSchemaParser::parseSimpleContentExtension(), QPatternist::XsdSchemaParser::parseSimpleContentRestriction(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseTotalDigitsFacet(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnique(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XsdSchemaParser::parseWhiteSpaceFacet(), QPatternist::XSLTTokenizer::readToggleAttribute(), QPatternist::XsdSchemaParser::setupBuiltinTypeNames(), QPatternist::XSLTTokenizer::skipBodyOfParam(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), QPatternist::XSLTTokenizer::unexpectedContent(), QPatternist::TagValidationHandler::validate(), and QXmlStreamWriter::writeCurrentToken().
QXmlStreamNamespaceDeclarations QXmlStreamReader::namespaceDeclarations | ( | ) | const |
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.
Definition at line 2088 of file qxmlstream.cpp.
Referenced by QPatternist::ElementNamespaceHandler::ElementNamespaceHandler(), QPatternist::XsdSchemaParser::parseUnknown(), QPatternist::XsdSchemaParser::parseUnknownDocumentation(), QPatternist::XSLTTokenizer::queueNamespaceDeclarations(), QXmlStreamPrivateTagStack::QXmlStreamPrivateTagStack(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QXmlStreamWriter::writeCurrentToken().
bool QXmlStreamReader::namespaceProcessing | ( | ) | const |
This property controls whether or not the stream reader processes namespaces.
the namespace-processing flag of the stream reader
If enabled, the reader processes namespaces, otherwise it does not.
By default, namespace-processing is enabled.
Definition at line 788 of file qxmlstream.cpp.
QStringRef QXmlStreamReader::namespaceUri | ( | ) | const |
Returns the namespaceUri of a StartElement or EndElement.
Definition at line 2272 of file qxmlstream.cpp.
Referenced by QPatternist::ElementNamespaceHandler::ElementNamespaceHandler(), QPatternist::XSLTTokenizer::insideStylesheetModule(), QPatternist::XSLTTokenizer::isXSLT(), Document::load(), QPatternist::XsdSchemaParser::parse(), QPatternist::XsdSchemaParser::parseAll(), QPatternist::XsdSchemaParser::parseAlternative(), QPatternist::XsdSchemaParser::parseAnnotation(), QPatternist::XsdSchemaParser::parseAny(), QPatternist::XsdSchemaParser::parseAnyAttribute(), QPatternist::XsdSchemaParser::parseAssertion(), QPatternist::XsdSchemaParser::parseChoice(), QPatternist::XsdSchemaParser::parseComplexContent(), QPatternist::XsdSchemaParser::parseComplexContentExtension(), QPatternist::XsdSchemaParser::parseComplexContentRestriction(), QPatternist::XsdSchemaParser::parseDefaultOpenContent(), QPatternist::XsdSchemaParser::parseEnumerationFacet(), QPatternist::XsdSchemaParser::parseField(), QPatternist::XsdSchemaParser::parseFractionDigitsFacet(), QPatternist::XsdSchemaParser::parseGlobalAttribute(), QPatternist::XsdSchemaParser::parseGlobalComplexType(), QPatternist::XsdSchemaParser::parseGlobalElement(), QPatternist::XsdSchemaParser::parseGlobalSimpleType(), QPatternist::XsdSchemaParser::parseImport(), QPatternist::XsdSchemaParser::parseInclude(), QPatternist::XsdSchemaParser::parseKey(), QPatternist::XsdSchemaParser::parseKeyRef(), QPatternist::XsdSchemaParser::parseLengthFacet(), QPatternist::XsdSchemaParser::parseList(), QPatternist::XsdSchemaParser::parseLocalAll(), QPatternist::XsdSchemaParser::parseLocalAttribute(), QPatternist::XsdSchemaParser::parseLocalChoice(), QPatternist::XsdSchemaParser::parseLocalComplexType(), QPatternist::XsdSchemaParser::parseLocalElement(), QPatternist::XsdSchemaParser::parseLocalSequence(), QPatternist::XsdSchemaParser::parseLocalSimpleType(), QPatternist::XsdSchemaParser::parseMaxExclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxInclusiveFacet(), QPatternist::XsdSchemaParser::parseMaxLengthFacet(), QPatternist::XsdSchemaParser::parseMinExclusiveFacet(), QPatternist::XsdSchemaParser::parseMinInclusiveFacet(), QPatternist::XsdSchemaParser::parseMinLengthFacet(), QPatternist::XsdSchemaParser::parseNamedAttributeGroup(), QPatternist::XsdSchemaParser::parseNamedGroup(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XsdSchemaParser::parseOpenContent(), QPatternist::XsdSchemaParser::parsePatternFacet(), QPatternist::XsdSchemaParser::parseRedefine(), QPatternist::XsdSchemaParser::parseReferredAttributeGroup(), QPatternist::XsdSchemaParser::parseReferredGroup(), QPatternist::XsdSchemaParser::parseSchema(), QPatternist::XsdSchemaParser::parseSelector(), QPatternist::XsdSchemaParser::parseSequence(), QPatternist::XsdSchemaParser::parseSimpleContent(), QPatternist::XsdSchemaParser::parseSimpleContentExtension(), QPatternist::XsdSchemaParser::parseSimpleContentRestriction(), QPatternist::XsdSchemaParser::parseSimpleRestriction(), QPatternist::XsdSchemaParser::parseTotalDigitsFacet(), QPatternist::XsdSchemaParser::parseUnion(), QPatternist::XsdSchemaParser::parseUnique(), QPatternist::XsdSchemaParser::parseWhiteSpaceFacet(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QXmlStreamWriter::writeCurrentToken().
QXmlStreamNotationDeclarations QXmlStreamReader::notationDeclarations | ( | ) | const |
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.
Definition at line 2002 of file qxmlstream.cpp.
QStringRef QXmlStreamReader::prefix | ( | ) | const |
Returns the prefix of a StartElement or EndElement.
Definition at line 2308 of file qxmlstream.cpp.
Referenced by QPatternist::AccelTreeResourceLoader::streamToReceiver().
QStringRef QXmlStreamReader::processingInstructionData | ( | ) | const |
Returns the data of a ProcessingInstruction.
Definition at line 2248 of file qxmlstream.cpp.
Referenced by QSvgHandler::parse(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QXmlStreamWriter::writeCurrentToken().
QStringRef QXmlStreamReader::processingInstructionTarget | ( | ) | const |
Returns the target of a ProcessingInstruction.
Definition at line 2239 of file qxmlstream.cpp.
Referenced by QSvgHandler::parse(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QXmlStreamWriter::writeCurrentToken().
QStringRef QXmlStreamReader::qualifiedName | ( | ) | const |
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().
Definition at line 2290 of file qxmlstream.cpp.
Referenced by QPatternist::XSLTTokenizer::insideSequenceConstructor().
Raises a custom error with an optional error message.
Definition at line 2205 of file qxmlstream.cpp.
QString QXmlStreamReader::readElementText | ( | 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.
Definition at line 2151 of file qxmlstream.cpp.
QString QXmlStreamReader::readElementText | ( | ) |
Definition at line 2196 of file qxmlstream.cpp.
QXmlStreamReader::TokenType 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().
Definition at line 623 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QDeclarativeXMLHttpRequest::findTextCodec(), Document::load(), QScriptXmlParser::parse(), QSvgHandler::parse(), QPatternist::MaintainingReader< XSLTTokenLookup >::readNext(), readNextStartElement(), skipCurrentElement(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and tokenUntil().
bool 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:
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.
Definition at line 684 of file qxmlstream.cpp.
void QXmlStreamReader::setDevice | ( | QIODevice * | device | ) |
Sets the current device to device.
Setting the device resets the stream to its initial state.
Definition at line 489 of file qxmlstream.cpp.
Referenced by QSvgIOHandlerPrivate::load(), and QXmlStreamReader().
void QXmlStreamReader::setEntityResolver | ( | QXmlStreamEntityResolver * | resolver | ) |
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.
Definition at line 248 of file qxmlstream.cpp.
void QXmlStreamReader::setNamespaceProcessing | ( | bool | enable | ) |
Definition at line 782 of file qxmlstream.cpp.
Referenced by QSvgHandler::parse().
void 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.
Definition at line 706 of file qxmlstream.cpp.
QStringRef QXmlStreamReader::text | ( | ) | const |
Returns the text of Characters , Comment , DTD , or EntityReference.
Definition at line 1989 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::XSLTTokenizer::insideSequenceConstructor(), Document::load(), QScriptXmlParser::parse(), QSvgHandler::parse(), QPatternist::XsdSchemaParser::parseNotation(), QPatternist::XSLTTokenizer::readElementText(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), and QXmlStreamWriter::writeCurrentToken().
QString QXmlStreamReader::tokenString | ( | ) | const |
Returns the reader's current token as string.
Definition at line 798 of file qxmlstream.cpp.
QXmlStreamReader::TokenType QXmlStreamReader::tokenType | ( | ) | const |
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().
Definition at line 656 of file qxmlstream.cpp.
Referenced by QPatternist::ColoringMessageHandler::colorifyDescription(), QPatternist::XSLTTokenizer::handleStandardAttributes(), QPatternist::XSLTTokenizer::handleValidationAttributes(), QPatternist::XSLTTokenizer::insideChoose(), QPatternist::XSLTTokenizer::insideSequenceConstructor(), QPatternist::XSLTTokenizer::insideTemplate(), QPatternist::XSLTTokenizer::isElement(), QPatternist::XSLTTokenizer::isStylesheetElement(), QPatternist::XSLTTokenizer::isXSLT(), QPatternist::XSLTTokenizer::parseFallbacksOnly(), QPatternist::XSLTTokenizer::queueNamespaceDeclarations(), QPatternist::XSLTTokenizer::queueParams(), QPatternist::XSLTTokenizer::queueSelectOrSequenceConstructor(), QPatternist::XSLTTokenizer::queueSorting(), QPatternist::XSLTTokenizer::queueVariableDeclaration(), QPatternist::XSLTTokenizer::queueWithParams(), QPatternist::XSLTTokenizer::skipBodyOfParam(), QPatternist::AccelTreeResourceLoader::streamToReceiver(), QPatternist::XSLTTokenizer::unexpectedContent(), and QXmlStreamWriter::writeCurrentToken().
|
private |
Definition at line 407 of file qxmlstream.h.