QXmlDefaultHandler

PyQt5.QtXml.QXmlDefaultHandler

Inherits from QXmlContentHandler, QXmlErrorHandler, QXmlDTDHandler, QXmlEntityResolver, QXmlLexicalHandler, QXmlDeclHandler.

Description

The QXmlDefaultHandler class provides a default implementation of all the XML handler classes.

This class gathers together the features of the specialized handler classes, making it a convenient starting point when implementing custom handlers for subclasses of QXmlReader, particularly QXmlSimpleReader. The virtual functions from each of the base classes are reimplemented in this class, providing sensible default behavior for many common cases. By subclassing this class, and overriding these functions, you can concentrate on implementing the parts of the handler relevant to your application.

The XML reader must be told which handler to use for different kinds of events during parsing. This means that, although QXmlDefaultHandler provides default implementations of functions inherited from all its base classes, we can still use specialized handlers for particular kinds of events.

For example, QXmlDefaultHandler subclasses both QXmlContentHandler and QXmlErrorHandler, so by subclassing it we can use the same handler for both of the following reader functions:

#     xmlReader.setContentHandler(handler);
#     xmlReader.setErrorHandler(handler);

Since the reader will inform the handler of parsing errors, it is necessary to reimplement fatalError() if, for example, we want to stop parsing when such an error occurs:

# bool Handler::fatalError (const QXmlParseException & exception)
# {
#     qWarning() << "Fatal error on line" << exception.lineNumber()
#                << ", column" << exception.columnNumber() << ':'
#                << exception.message();

#     return false;
# }

The above function returns false, which tells the reader to stop parsing. To continue to use the same reader, it is necessary to create a new handler instance, and set up the reader to use it in the manner described above.

It is useful to examine some of the functions inherited by QXmlDefaultHandler, and consider why they might be reimplemented in a custom handler. Custom handlers will typically reimplement startDocument() to prepare the handler for new content. Document elements and the text within them can be processed by reimplementing startElement(), endElement(), and characters(). You may want to reimplement endDocument() to perform some finalization or validation on the content once the document has been read completely.

Methods

__init__()

TODO


attributeDecl(str, str, str, str, str) → bool

TODO


characters(str) → bool

TODO


comment(str) → bool

TODO


endCDATA() → bool

TODO


endDocument() → bool

TODO


endDTD() → bool

TODO


endElement(str, str, str) → bool

TODO


endEntity(str) → bool

TODO


endPrefixMapping(str) → bool

TODO


error(QXmlParseException) → bool

TODO


errorString() → str

TODO


externalEntityDecl(str, str, str) → bool

TODO


fatalError(QXmlParseException) → bool

TODO


ignorableWhitespace(str) → bool

TODO


internalEntityDecl(str, str) → bool

TODO


notationDecl(str, str, str) → bool

TODO


processingInstruction(str, str) → bool

TODO


resolveEntity(str, str) → (bool, QXmlInputSource)

TODO


setDocumentLocator(QXmlLocator)

TODO


skippedEntity(str) → bool

TODO


startCDATA() → bool

TODO


startDocument() → bool

TODO


startDTD(str, str, str) → bool

TODO


startElement(str, str, str, QXmlAttributes) → bool

TODO


startEntity(str) → bool

TODO


startPrefixMapping(str, str) → bool

TODO


unparsedEntityDecl(str, str, str, str) → bool

TODO


warning(QXmlParseException) → bool

TODO