diff options
Diffstat (limited to 'devdocs/python~3.12/library%2Fxml.sax.handler.html')
| -rw-r--r-- | devdocs/python~3.12/library%2Fxml.sax.handler.html | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/devdocs/python~3.12/library%2Fxml.sax.handler.html b/devdocs/python~3.12/library%2Fxml.sax.handler.html new file mode 100644 index 00000000..78ed491d --- /dev/null +++ b/devdocs/python~3.12/library%2Fxml.sax.handler.html @@ -0,0 +1,120 @@ + <span id="xml-sax-handler-base-classes-for-sax-handlers"></span><h1>xml.sax.handler — Base classes for SAX handlers</h1> <p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/3.12/Lib/xml/sax/handler.py">Lib/xml/sax/handler.py</a></p> <p>The SAX API defines five kinds of handlers: content handlers, DTD handlers, error handlers, entity resolvers and lexical handlers. Applications normally only need to implement those interfaces whose events they are interested in; they can implement the interfaces in a single object or in multiple objects. Handler implementations should inherit from the base classes provided in the module <a class="reference internal" href="#module-xml.sax.handler" title="xml.sax.handler: Base classes for SAX event handlers."><code>xml.sax.handler</code></a>, so that all methods get default implementations.</p> <dl class="py class"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler"> +<code>class xml.sax.handler.ContentHandler</code> </dt> <dd> +<p>This is the main callback interface in SAX, and the one most important to applications. The order of events in this interface mirrors the order of the information in the document.</p> </dd> +</dl> <dl class="py class"> <dt class="sig sig-object py" id="xml.sax.handler.DTDHandler"> +<code>class xml.sax.handler.DTDHandler</code> </dt> <dd> +<p>Handle DTD events.</p> <p>This interface specifies only those DTD events required for basic parsing (unparsed entities and attributes).</p> </dd> +</dl> <dl class="py class"> <dt class="sig sig-object py" id="xml.sax.handler.EntityResolver"> +<code>class xml.sax.handler.EntityResolver</code> </dt> <dd> +<p>Basic interface for resolving entities. If you create an object implementing this interface, then register the object with your Parser, the parser will call the method in your object to resolve all external entities.</p> </dd> +</dl> <dl class="py class"> <dt class="sig sig-object py" id="xml.sax.handler.ErrorHandler"> +<code>class xml.sax.handler.ErrorHandler</code> </dt> <dd> +<p>Interface used by the parser to present error and warning messages to the application. The methods of this object control whether errors are immediately converted to exceptions or are handled in some other way.</p> </dd> +</dl> <dl class="py class"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler"> +<code>class xml.sax.handler.LexicalHandler</code> </dt> <dd> +<p>Interface used by the parser to represent low frequency events which may not be of interest to many applications.</p> </dd> +</dl> <p>In addition to these classes, <a class="reference internal" href="#module-xml.sax.handler" title="xml.sax.handler: Base classes for SAX event handlers."><code>xml.sax.handler</code></a> provides symbolic constants for the feature and property names.</p> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_namespaces"> +<code>xml.sax.handler.feature_namespaces</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_namespace_prefixes"> +<code>xml.sax.handler.feature_namespace_prefixes</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_string_interning"> +<code>xml.sax.handler.feature_string_interning</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_validation"> +<code>xml.sax.handler.feature_validation</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_external_ges"> +<code>xml.sax.handler.feature_external_ges</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.feature_external_pes"> +<code>xml.sax.handler.feature_external_pes</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.all_features"> +<code>xml.sax.handler.all_features</code> </dt> <dd> +<p>List of all features.</p> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.property_lexical_handler"> +<code>xml.sax.handler.property_lexical_handler</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.property_declaration_handler"> +<code>xml.sax.handler.property_declaration_handler</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.property_dom_node"> +<code>xml.sax.handler.property_dom_node</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.property_xml_string"> +<code>xml.sax.handler.property_xml_string</code> </dt> <dd> </dd> +</dl> <dl class="py data"> <dt class="sig sig-object py" id="xml.sax.handler.all_properties"> +<code>xml.sax.handler.all_properties</code> </dt> <dd> +<p>List of all known property names.</p> </dd> +</dl> <section id="contenthandler-objects"> <span id="content-handler-objects"></span><h2>ContentHandler Objects</h2> <p>Users are expected to subclass <a class="reference internal" href="#xml.sax.handler.ContentHandler" title="xml.sax.handler.ContentHandler"><code>ContentHandler</code></a> to support their application. The following methods are called by the parser on the appropriate events in the input document:</p> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.setDocumentLocator"> +<code>ContentHandler.setDocumentLocator(locator)</code> </dt> <dd> +<p>Called by the parser to give the application a locator for locating the origin of document events.</p> <p>SAX parsers are strongly encouraged (though not absolutely required) to supply a locator: if it does so, it must supply the locator to the application by invoking this method before invoking any of the other methods in the DocumentHandler interface.</p> <p>The locator allows the application to determine the end position of any document-related event, even if the parser is not reporting an error. Typically, the application will use this information for reporting its own errors (such as character content that does not match an application’s business rules). The information returned by the locator is probably not sufficient for use with a search engine.</p> <p>Note that the locator will return correct information only during the invocation of the events in this interface. The application should not attempt to use it at any other time.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.startDocument"> +<code>ContentHandler.startDocument()</code> </dt> <dd> +<p>Receive notification of the beginning of a document.</p> <p>The SAX parser will invoke this method only once, before any other methods in this interface or in DTDHandler (except for <a class="reference internal" href="#xml.sax.handler.ContentHandler.setDocumentLocator" title="xml.sax.handler.ContentHandler.setDocumentLocator"><code>setDocumentLocator()</code></a>).</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.endDocument"> +<code>ContentHandler.endDocument()</code> </dt> <dd> +<p>Receive notification of the end of a document.</p> <p>The SAX parser will invoke this method only once, and it will be the last method invoked during the parse. The parser shall not invoke this method until it has either abandoned parsing (because of an unrecoverable error) or reached the end of input.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.startPrefixMapping"> +<code>ContentHandler.startPrefixMapping(prefix, uri)</code> </dt> <dd> +<p>Begin the scope of a prefix-URI Namespace mapping.</p> <p>The information from this event is not necessary for normal Namespace processing: the SAX XML reader will automatically replace prefixes for element and attribute names when the <code>feature_namespaces</code> feature is enabled (the default).</p> <p>There are cases, however, when applications need to use prefixes in character data or in attribute values, where they cannot safely be expanded automatically; the <a class="reference internal" href="#xml.sax.handler.ContentHandler.startPrefixMapping" title="xml.sax.handler.ContentHandler.startPrefixMapping"><code>startPrefixMapping()</code></a> and <a class="reference internal" href="#xml.sax.handler.ContentHandler.endPrefixMapping" title="xml.sax.handler.ContentHandler.endPrefixMapping"><code>endPrefixMapping()</code></a> events supply the information to the application to expand prefixes in those contexts itself, if necessary.</p> <p>Note that <a class="reference internal" href="#xml.sax.handler.ContentHandler.startPrefixMapping" title="xml.sax.handler.ContentHandler.startPrefixMapping"><code>startPrefixMapping()</code></a> and <a class="reference internal" href="#xml.sax.handler.ContentHandler.endPrefixMapping" title="xml.sax.handler.ContentHandler.endPrefixMapping"><code>endPrefixMapping()</code></a> events are not guaranteed to be properly nested relative to each-other: all <a class="reference internal" href="#xml.sax.handler.ContentHandler.startPrefixMapping" title="xml.sax.handler.ContentHandler.startPrefixMapping"><code>startPrefixMapping()</code></a> events will occur before the corresponding <a class="reference internal" href="#xml.sax.handler.ContentHandler.startElement" title="xml.sax.handler.ContentHandler.startElement"><code>startElement()</code></a> event, and all <a class="reference internal" href="#xml.sax.handler.ContentHandler.endPrefixMapping" title="xml.sax.handler.ContentHandler.endPrefixMapping"><code>endPrefixMapping()</code></a> events will occur after the corresponding <a class="reference internal" href="#xml.sax.handler.ContentHandler.endElement" title="xml.sax.handler.ContentHandler.endElement"><code>endElement()</code></a> event, but their order is not guaranteed.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.endPrefixMapping"> +<code>ContentHandler.endPrefixMapping(prefix)</code> </dt> <dd> +<p>End the scope of a prefix-URI mapping.</p> <p>See <a class="reference internal" href="#xml.sax.handler.ContentHandler.startPrefixMapping" title="xml.sax.handler.ContentHandler.startPrefixMapping"><code>startPrefixMapping()</code></a> for details. This event will always occur after the corresponding <a class="reference internal" href="#xml.sax.handler.ContentHandler.endElement" title="xml.sax.handler.ContentHandler.endElement"><code>endElement()</code></a> event, but the order of <a class="reference internal" href="#xml.sax.handler.ContentHandler.endPrefixMapping" title="xml.sax.handler.ContentHandler.endPrefixMapping"><code>endPrefixMapping()</code></a> events is not otherwise guaranteed.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.startElement"> +<code>ContentHandler.startElement(name, attrs)</code> </dt> <dd> +<p>Signals the start of an element in non-namespace mode.</p> <p>The <em>name</em> parameter contains the raw XML 1.0 name of the element type as a string and the <em>attrs</em> parameter holds an object of the <code>Attributes</code> interface (see <a class="reference internal" href="xml.sax.reader#attributes-objects"><span class="std std-ref">The Attributes Interface</span></a>) containing the attributes of the element. The object passed as <em>attrs</em> may be re-used by the parser; holding on to a reference to it is not a reliable way to keep a copy of the attributes. To keep a copy of the attributes, use the <a class="reference internal" href="copy#module-copy" title="copy: Shallow and deep copy operations."><code>copy()</code></a> method of the <em>attrs</em> object.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.endElement"> +<code>ContentHandler.endElement(name)</code> </dt> <dd> +<p>Signals the end of an element in non-namespace mode.</p> <p>The <em>name</em> parameter contains the name of the element type, just as with the <a class="reference internal" href="#xml.sax.handler.ContentHandler.startElement" title="xml.sax.handler.ContentHandler.startElement"><code>startElement()</code></a> event.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.startElementNS"> +<code>ContentHandler.startElementNS(name, qname, attrs)</code> </dt> <dd> +<p>Signals the start of an element in namespace mode.</p> <p>The <em>name</em> parameter contains the name of the element type as a <code>(uri, +localname)</code> tuple, the <em>qname</em> parameter contains the raw XML 1.0 name used in the source document, and the <em>attrs</em> parameter holds an instance of the <code>AttributesNS</code> interface (see <a class="reference internal" href="xml.sax.reader#attributes-ns-objects"><span class="std std-ref">The AttributesNS Interface</span></a>) containing the attributes of the element. If no namespace is associated with the element, the <em>uri</em> component of <em>name</em> will be <code>None</code>. The object passed as <em>attrs</em> may be re-used by the parser; holding on to a reference to it is not a reliable way to keep a copy of the attributes. To keep a copy of the attributes, use the <a class="reference internal" href="copy#module-copy" title="copy: Shallow and deep copy operations."><code>copy()</code></a> method of the <em>attrs</em> object.</p> <p>Parsers may set the <em>qname</em> parameter to <code>None</code>, unless the <code>feature_namespace_prefixes</code> feature is activated.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.endElementNS"> +<code>ContentHandler.endElementNS(name, qname)</code> </dt> <dd> +<p>Signals the end of an element in namespace mode.</p> <p>The <em>name</em> parameter contains the name of the element type, just as with the <a class="reference internal" href="#xml.sax.handler.ContentHandler.startElementNS" title="xml.sax.handler.ContentHandler.startElementNS"><code>startElementNS()</code></a> method, likewise the <em>qname</em> parameter.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.characters"> +<code>ContentHandler.characters(content)</code> </dt> <dd> +<p>Receive notification of character data.</p> <p>The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.</p> <p><em>content</em> may be a string or bytes instance; the <code>expat</code> reader module always produces strings.</p> <div class="admonition note"> <p class="admonition-title">Note</p> <p>The earlier SAX 1 interface provided by the Python XML Special Interest Group used a more Java-like interface for this method. Since most parsers used from Python did not take advantage of the older interface, the simpler signature was chosen to replace it. To convert old code to the new interface, use <em>content</em> instead of slicing content with the old <em>offset</em> and <em>length</em> parameters.</p> </div> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.ignorableWhitespace"> +<code>ContentHandler.ignorableWhitespace(whitespace)</code> </dt> <dd> +<p>Receive notification of ignorable whitespace in element content.</p> <p>Validating Parsers must use this method to report each chunk of ignorable whitespace (see the W3C XML 1.0 recommendation, section 2.10): non-validating parsers may also use this method if they are capable of parsing and using content models.</p> <p>SAX parsers may return all contiguous whitespace in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity, so that the Locator provides useful information.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.processingInstruction"> +<code>ContentHandler.processingInstruction(target, data)</code> </dt> <dd> +<p>Receive notification of a processing instruction.</p> <p>The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element.</p> <p>A SAX parser should never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ContentHandler.skippedEntity"> +<code>ContentHandler.skippedEntity(name)</code> </dt> <dd> +<p>Receive notification of a skipped entity.</p> <p>The Parser will invoke this method once for each entity skipped. Non-validating processors may skip entities if they have not seen the declarations (because, for example, the entity was declared in an external DTD subset). All processors may skip external entities, depending on the values of the <code>feature_external_ges</code> and the <code>feature_external_pes</code> properties.</p> </dd> +</dl> </section> <section id="dtdhandler-objects"> <span id="dtd-handler-objects"></span><h2>DTDHandler Objects</h2> <p><a class="reference internal" href="#xml.sax.handler.DTDHandler" title="xml.sax.handler.DTDHandler"><code>DTDHandler</code></a> instances provide the following methods:</p> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.DTDHandler.notationDecl"> +<code>DTDHandler.notationDecl(name, publicId, systemId)</code> </dt> <dd> +<p>Handle a notation declaration event.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.DTDHandler.unparsedEntityDecl"> +<code>DTDHandler.unparsedEntityDecl(name, publicId, systemId, ndata)</code> </dt> <dd> +<p>Handle an unparsed entity declaration event.</p> </dd> +</dl> </section> <section id="entityresolver-objects"> <span id="entity-resolver-objects"></span><h2>EntityResolver Objects</h2> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.EntityResolver.resolveEntity"> +<code>EntityResolver.resolveEntity(publicId, systemId)</code> </dt> <dd> +<p>Resolve the system identifier of an entity and return either the system identifier to read from as a string, or an InputSource to read from. The default implementation returns <em>systemId</em>.</p> </dd> +</dl> </section> <section id="errorhandler-objects"> <span id="sax-error-handler"></span><h2>ErrorHandler Objects</h2> <p>Objects with this interface are used to receive error and warning information from the <a class="reference internal" href="xml.sax.reader#xml.sax.xmlreader.XMLReader" title="xml.sax.xmlreader.XMLReader"><code>XMLReader</code></a>. If you create an object that implements this interface, then register the object with your <a class="reference internal" href="xml.sax.reader#xml.sax.xmlreader.XMLReader" title="xml.sax.xmlreader.XMLReader"><code>XMLReader</code></a>, the parser will call the methods in your object to report all warnings and errors. There are three levels of errors available: warnings, (possibly) recoverable errors, and unrecoverable errors. All methods take a <a class="reference internal" href="xml.sax#xml.sax.SAXParseException" title="xml.sax.SAXParseException"><code>SAXParseException</code></a> as the only parameter. Errors and warnings may be converted to an exception by raising the passed-in exception object.</p> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ErrorHandler.error"> +<code>ErrorHandler.error(exception)</code> </dt> <dd> +<p>Called when the parser encounters a recoverable error. If this method does not raise an exception, parsing may continue, but further document information should not be expected by the application. Allowing the parser to continue may allow additional errors to be discovered in the input document.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ErrorHandler.fatalError"> +<code>ErrorHandler.fatalError(exception)</code> </dt> <dd> +<p>Called when the parser encounters an error it cannot recover from; parsing is expected to terminate when this method returns.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.ErrorHandler.warning"> +<code>ErrorHandler.warning(exception)</code> </dt> <dd> +<p>Called when the parser presents minor warning information to the application. Parsing is expected to continue when this method returns, and document information will continue to be passed to the application. Raising an exception in this method will cause parsing to end.</p> </dd> +</dl> </section> <section id="lexicalhandler-objects"> <span id="lexical-handler-objects"></span><h2>LexicalHandler Objects</h2> <p>Optional SAX2 handler for lexical events.</p> <p>This handler is used to obtain lexical information about an XML document. Lexical information includes information describing the document encoding used and XML comments embedded in the document, as well as section boundaries for the DTD and for any CDATA sections. The lexical handlers are used in the same manner as content handlers.</p> <p>Set the LexicalHandler of an XMLReader by using the setProperty method with the property identifier <code>'http://xml.org/sax/properties/lexical-handler'</code>.</p> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler.comment"> +<code>LexicalHandler.comment(content)</code> </dt> <dd> +<p>Reports a comment anywhere in the document (including the DTD and outside the document element).</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler.startDTD"> +<code>LexicalHandler.startDTD(name, public_id, system_id)</code> </dt> <dd> +<p>Reports the start of the DTD declarations if the document has an associated DTD.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler.endDTD"> +<code>LexicalHandler.endDTD()</code> </dt> <dd> +<p>Reports the end of DTD declaration.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler.startCDATA"> +<code>LexicalHandler.startCDATA()</code> </dt> <dd> +<p>Reports the start of a CDATA marked section.</p> <p>The contents of the CDATA marked section will be reported through the characters handler.</p> </dd> +</dl> <dl class="py method"> <dt class="sig sig-object py" id="xml.sax.handler.LexicalHandler.endCDATA"> +<code>LexicalHandler.endCDATA()</code> </dt> <dd> +<p>Reports the end of a CDATA marked section.</p> </dd> +</dl> </section> <div class="_attribution"> + <p class="_attribution-p"> + © 2001–2023 Python Software Foundation<br>Licensed under the PSF License.<br> + <a href="https://docs.python.org/3.12/library/xml.sax.handler.html" class="_attribution-link">https://docs.python.org/3.12/library/xml.sax.handler.html</a> + </p> +</div> |
