QXmlDefaultHandler 类

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

头: #include <QXmlDefaultHandler>
qmake: QT += xml
继承: QXmlContentHandler , QXmlErrorHandler , QXmlDTDHandler , QXmlEntityResolver , QXmlLexicalHandler ,和 QXmlDeclHandler

注意: 此类的所有函数 可重入 .

公共函数

QXmlDefaultHandler ()
virtual ~QXmlDefaultHandler ()

重实现公共函数

virtual bool attributeDecl (const QString & eName , const QString & aName , const QString & type , const QString & valueDefault , const QString & value )
virtual bool characters (const QString & ch )
virtual bool comment (const QString & ch )
virtual bool endCDATA ()
virtual bool endDTD ()
virtual bool endDocument ()
virtual bool endElement (const QString & namespaceURI , const QString & localName , const QString & qName )
virtual bool endEntity (const QString & name )
virtual bool endPrefixMapping (const QString & prefix )
virtual bool error (const QXmlParseException & exception )
virtual QString errorString () const
virtual bool externalEntityDecl (const QString & name , const QString & publicId , const QString & systemId )
virtual bool fatalError (const QXmlParseException & exception )
virtual bool ignorableWhitespace (const QString & ch )
virtual bool internalEntityDecl (const QString & name , const QString & value )
virtual bool notationDecl (const QString & name , const QString & publicId , const QString & systemId )
virtual bool processingInstruction (const QString & target , const QString & data )
virtual bool resolveEntity (const QString & publicId , const QString & systemId , QXmlInputSource *& ret )
virtual void setDocumentLocator (QXmlLocator * locator )
virtual bool skippedEntity (const QString & name )
virtual bool startCDATA ()
virtual bool startDTD (const QString & name , const QString & publicId , const QString & systemId )
virtual bool startDocument ()
virtual bool startElement (const QString & namespaceURI , const QString & localName , const QString & qName , const QXmlAttributes & atts )
virtual bool startEntity (const QString & name )
virtual bool startPrefixMapping (const QString & prefix , const QString & uri )
virtual bool unparsedEntityDecl (const QString & name , const QString & publicId , const QString & systemId , const QString & notationName )
virtual bool warning (const QXmlParseException & exception )

详细描述

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.

例如, 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 QXmlErrorHandler::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 QXmlContentHandler::startDocument () to prepare the handler for new content. Document elements and the text within them can be processed by reimplementing QXmlContentHandler::startElement (), QXmlContentHandler::endElement (),和 QXmlContentHandler::characters (). You may want to reimplement QXmlContentHandler::endDocument () to perform some finalization or validation on the content once the document has been read completely.

另请参阅 QXmlDTDHandler , QXmlDeclHandler , QXmlContentHandler , QXmlEntityResolver , QXmlErrorHandler , QXmlLexicalHandler ,和 Introduction to SAX2 .

成员函数文档编制

QXmlDefaultHandler:: QXmlDefaultHandler ()

Constructs a handler for use with subclasses of QXmlReader .

[virtual] QXmlDefaultHandler:: ~QXmlDefaultHandler ()

Destroys the handler.

[virtual] bool QXmlDefaultHandler:: attributeDecl (const QString & eName , const QString & aName , const QString & type , const QString & valueDefault , const QString & value )

重实现自 QXmlDeclHandler::attributeDecl ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: characters (const QString & ch )

重实现自 QXmlContentHandler::characters ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: comment (const QString & ch )

重实现自 QXmlLexicalHandler::comment ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endCDATA ()

重实现自 QXmlLexicalHandler::endCDATA ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endDTD ()

重实现自 QXmlLexicalHandler::endDTD ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endDocument ()

重实现自 QXmlContentHandler::endDocument ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endElement (const QString & namespaceURI , const QString & localName , const QString & qName )

重实现自 QXmlContentHandler::endElement ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endEntity (const QString & name )

重实现自 QXmlLexicalHandler::endEntity ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: endPrefixMapping (const QString & prefix )

重实现自 QXmlContentHandler::endPrefixMapping ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: error (const QXmlParseException & exception )

重实现自 QXmlErrorHandler::error ().

This reimplementation does nothing.

[virtual] QString QXmlDefaultHandler:: errorString () const

重实现自 QXmlContentHandler::errorString ().

Returns the default error string.

[virtual] bool QXmlDefaultHandler:: externalEntityDecl (const QString & name , const QString & publicId , const QString & systemId )

重实现自 QXmlDeclHandler::externalEntityDecl ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: fatalError (const QXmlParseException & exception )

重实现自 QXmlErrorHandler::fatalError ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: ignorableWhitespace (const QString & ch )

重实现自 QXmlContentHandler::ignorableWhitespace ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: internalEntityDecl (const QString & name , const QString & value )

重实现自 QXmlDeclHandler::internalEntityDecl ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: notationDecl (const QString & name , const QString & publicId , const QString & systemId )

重实现自 QXmlDTDHandler::notationDecl ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: processingInstruction (const QString & target , const QString & data )

重实现自 QXmlContentHandler::processingInstruction ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: resolveEntity (const QString & publicId , const QString & systemId , QXmlInputSource *& ret )

重实现自 QXmlEntityResolver::resolveEntity ().

ret to 0, so that the reader uses the system identifier provided in the XML document.

[virtual] void QXmlDefaultHandler:: setDocumentLocator ( QXmlLocator * locator )

重实现自 QXmlContentHandler::setDocumentLocator ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: skippedEntity (const QString & name )

重实现自 QXmlContentHandler::skippedEntity ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startCDATA ()

重实现自 QXmlLexicalHandler::startCDATA ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startDTD (const QString & name , const QString & publicId , const QString & systemId )

重实现自 QXmlLexicalHandler::startDTD ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startDocument ()

重实现自 QXmlContentHandler::startDocument ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startElement (const QString & namespaceURI , const QString & localName , const QString & qName , const QXmlAttributes & atts )

重实现自 QXmlContentHandler::startElement ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startEntity (const QString & name )

重实现自 QXmlLexicalHandler::startEntity ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: startPrefixMapping (const QString & prefix , const QString & uri )

重实现自 QXmlContentHandler::startPrefixMapping ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: unparsedEntityDecl (const QString & name , const QString & publicId , const QString & systemId , const QString & notationName )

重实现自 QXmlDTDHandler::unparsedEntityDecl ().

This reimplementation does nothing.

[virtual] bool QXmlDefaultHandler:: warning (const QXmlParseException & exception )

重实现自 QXmlErrorHandler::warning ().

This reimplementation does nothing.