QXmlContentHandler 类提供报告 XML 数据逻辑内容的接口。 更多...
头: | #include <QXmlContentHandler> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Core5Compat)
target_link_libraries(mytarget PRIVATE Qt6::Core5Compat) |
qmake: | QT += core5compat |
继承者: | QXmlDefaultHandler |
注意: 此类的所有函数 可重入 .
virtual | ~QXmlContentHandler () |
virtual bool | characters (const QString & ch ) = 0 |
virtual bool | endDocument () = 0 |
virtual bool | endElement (const QString & namespaceURI , const QString & localName , const QString & qName ) = 0 |
virtual bool | endPrefixMapping (const QString & prefix ) = 0 |
virtual QString | errorString () const = 0 |
virtual bool | ignorableWhitespace (const QString & ch ) = 0 |
virtual bool | processingInstruction (const QString & target , const QString & data ) = 0 |
virtual void | setDocumentLocator (QXmlLocator * locator ) = 0 |
virtual bool | skippedEntity (const QString & name ) = 0 |
virtual bool | startDocument () = 0 |
virtual bool | startElement (const QString & namespaceURI , const QString & localName , const QString & qName , const QXmlAttributes & atts ) = 0 |
virtual bool | startPrefixMapping (const QString & prefix , const QString & uri ) = 0 |
If the application needs to be informed of basic parsing events, it can implement this interface and activate it using QXmlReader::setContentHandler (). The reader can then report basic document-related events like the start and end of elements and character data through this interface.
The order of events in this interface is very important, and mirrors the order of information in the document itself. For example, all of an element's content (character data, processing instructions, and sub-elements) appears, in order, between the startElement () event and the corresponding endElement () event.
类 QXmlDefaultHandler provides a default implementation for this interface; subclassing from the QXmlDefaultHandler class is very convenient if you only want to be informed of some parsing events.
The startDocument () function is called at the start of the document, and endDocument () is called at the end. Before parsing begins setDocumentLocator () is called. For each element startElement () is called, with endElement () being called at the end of each element. The characters () function is called with chunks of character data; ignorableWhitespace () is called with chunks of whitespace and processingInstruction () is called with processing instructions. If an entity is skipped skippedEntity () is called. At the beginning of prefix-URI scopes startPrefixMapping () 被调用。
另请参阅 QXmlDTDHandler , QXmlDeclHandler , QXmlEntityResolver , QXmlErrorHandler ,和 QXmlLexicalHandler .
[虚拟]
QXmlContentHandler::
~QXmlContentHandler
()
Destroys the content handler.
[pure virtual]
bool
QXmlContentHandler::
characters
(const
QString
&
ch
)
The reader calls this function when it has parsed a chunk of character data (either normal character data or character data inside a CDATA section; if you need to distinguish between those two types you must use QXmlLexicalHandler::startCDATA () 和 QXmlLexicalHandler::endCDATA ()). The character data is reported in ch .
Some readers report whitespace in element content using the ignorableWhitespace () function rather than using this one.
A reader may report the character data of an element in more than one chunk; e.g. a reader might want to report "a<b" in three characters() events ("a ", "<" and " b").
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
[pure virtual]
bool
QXmlContentHandler::
endDocument
()
The reader calls this function after it has finished parsing. It is called just once, and is the last handler function called. It is called after the reader has read all input or has abandoned parsing because of a fatal error.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 startDocument ().
[pure virtual]
bool
QXmlContentHandler::
endElement
(const
QString
&
namespaceURI
, const
QString
&
localName
, const
QString
&
qName
)
The reader calls this function when it has parsed an end element tag with the qualified name qName , the local name localName 和名称空间 URI namespaceURI .
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 startElement ().
[pure virtual]
bool
QXmlContentHandler::
endPrefixMapping
(const
QString
&
prefix
)
The reader calls this function to signal the end of a prefix mapping for the prefix prefix .
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 startPrefixMapping ().
[pure virtual]
QString
QXmlContentHandler::
errorString
() const
The reader calls this function to get an error string, e.g. if any of the handler functions returns
false
.
[pure virtual]
bool
QXmlContentHandler::
ignorableWhitespace
(const
QString
&
ch
)
Some readers may use this function to report each chunk of whitespace in element content. The whitespace is reported in ch .
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
[pure virtual]
bool
QXmlContentHandler::
processingInstruction
(const
QString
&
target
, const
QString
&
data
)
The reader calls this function when it has parsed a processing instruction.
target is the target name of the processing instruction and data is the data in the processing instruction.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
[pure virtual]
void
QXmlContentHandler::
setDocumentLocator
(
QXmlLocator
*
locator
)
The reader calls this function before it starts parsing the document. The argument locator 是指针指向 QXmlLocator which allows the application to get the parsing position within the document.
Do not destroy the locator ; it is destroyed when the reader is destroyed. (Do not use the locator after the reader is destroyed).
[pure virtual]
bool
QXmlContentHandler::
skippedEntity
(const
QString
&
name
)
Some readers may skip entities if they have not seen the declarations (e.g. because they are in an external DTD). If they do so they report that they skipped the entity called name by calling this function.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
[pure virtual]
bool
QXmlContentHandler::
startDocument
()
The reader calls this function when it starts parsing the document. The reader calls this function just once, after the call to setDocumentLocator (), and before any other functions in this class or in the QXmlDTDHandler class are called.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 endDocument ().
[pure virtual]
bool
QXmlContentHandler::
startElement
(const
QString
&
namespaceURI
, const
QString
&
localName
, const
QString
&
qName
, const
QXmlAttributes
&
atts
)
The reader calls this function when it has parsed a start element tag.
There is a corresponding
endElement
() call when the corresponding end element tag is read. The startElement() and
endElement
() calls are always nested correctly. Empty element tags (e.g.
<x/>
) cause a startElement() call to be immediately followed by an
endElement
() 调用。
The attribute list provided only contains attributes with explicit values. The attribute list contains attributes used for namespace declaration (i.e. attributes starting with xmlns) only if the namespace-prefix property of the reader is true.
自变量 namespaceURI is the namespace URI, or an empty string if the element has no namespace URI or if no namespace processing is done. localName is the local name (without prefix), or an empty string if no namespace processing is done, qName is the qualified name (with prefix) and atts are the attributes attached to the element. If there are no attributes, atts is an empty attributes object.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 endElement ().
[pure virtual]
bool
QXmlContentHandler::
startPrefixMapping
(const
QString
&
prefix
, const
QString
&
uri
)
The reader calls this function to signal the begin of a prefix-URI namespace mapping scope. This information is not necessary for normal namespace processing since the reader automatically replaces prefixes for element and attribute names.
Note that startPrefixMapping() and endPrefixMapping () calls are not guaranteed to be properly nested relative to each other: all startPrefixMapping() events occur before the corresponding startElement () event, and all endPrefixMapping () events occur after the corresponding endElement () event, but their order is not otherwise guaranteed.
自变量 prefix is the namespace prefix being declared and the argument uri is the namespace URI the prefix is mapped to.
若此函数返回
false
the reader stops parsing and reports an error. The reader uses the function
errorString
() to get the error message.
另请参阅 endPrefixMapping ().