�`^c@s�dZddlZddlmZmZddd��YZdefd��YZddd ��YZd
dd��YZddd
��YZ de fd��YZ
d�Zedkr�e�ndS(s]An XML Reader is the SAX 2 name for an XML parser. XML Parsers
should be based on this code. i�N(tSAXNotSupportedExceptiontSAXNotRecognizedExceptiont XMLReadercBs�eZdZd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Zd
�Zd�Z
d�Zd
�Zd�Zd�ZRS(s%Interface for reading an XML document using callbacks.
XMLReader is the interface that an XML parser's SAX2 driver must
implement. This interface allows an application to set and query
features and properties in the parser, to register event handlers
for document processing, and to initiate a document parse.
All SAX interfaces are assumed to be synchronous: the parse
methods must not return until parsing is complete, and readers
must wait for an event-handler callback to return before reporting
the next event.cCs@tj�|_tj�|_tj�|_tj�|_dS(N( thandlertContentHandlert
_cont_handlert
DTDHandlert_dtd_handlertEntityResolvert_ent_handlertErrorHandlert_err_handler(tself((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt__init__scCstd��dS(sAParse an XML document from a system identifier or an InputSource.s This method must be implemented!N(tNotImplementedError(Rtsource((s'/sys/lib/python2.7/xml/sax/xmlreader.pytparsescCs|jS(s#Returns the current ContentHandler.(R(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetContentHandler"scCs
||_dS(s:Registers a new object to receive document content events.N(R(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetContentHandler&scCs|jS(s Returns the current DTD handler.(R(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
getDTDHandler*scCs
||_dS(s7Register an object to receive basic DTD-related events.N(R(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
setDTDHandler.scCs|jS(s#Returns the current EntityResolver.(R (R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetEntityResolver2scCs
||_dS(s0Register an object to resolve external entities.N(R (Rtresolver((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetEntityResolver6scCs|jS(s!Returns the current ErrorHandler.(R(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetErrorHandler:scCs
||_dS(s3Register an object to receive error-message events.N(R(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetErrorHandler>scCstd��dS(sHAllow an application to set the locale for errors and warnings.
SAX parsers are not required to provide localization for errors
and warnings; if they cannot support the requested locale,
however, they must raise a SAX exception. Applications may
request a locale change in the middle of a parse.sLocale support not implementedN(R(Rtlocale((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt setLocaleBscCstd|��dS(s1Looks up and returns the state of a SAX2 feature.sFeature '%s' not recognizedN(R(Rtname((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
getFeatureKscCstd|��dS(s!Sets the state of a SAX2 feature.sFeature '%s' not recognizedN(R(RRtstate((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
setFeatureOscCstd|��dS(s2Looks up and returns the value of a SAX2 property.sProperty '%s' not recognizedN(R(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetPropertySscCstd|��dS(s"Sets the value of a SAX2 property.sProperty '%s' not recognizedN(R(RRtvalue((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetPropertyWs(t__name__t
__module__t__doc__R
RRRRRRRRRRRRR R"(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRs tIncrementalParsercBsGeZdZd d�Zd�Zd�Zd�Zd�Zd�ZRS(
ssThis interface adds three extra methods to the XMLReader
interface that allow XML parsers to support incremental
parsing. Support for this interface is optional, since not all
underlying XML parsers support this functionality.
When the parser is instantiated it is ready to begin accepting
data from the feed method immediately. After parsing has been
finished with a call to close the reset method must be called to
make the parser ready to accept new data, either from feed or
using the parse method.
Note that these methods must _not_ be called during parsing, that
is, after parse has been called and before it returns.
By default, the class also implements the parse method of the XMLReader
interface using the feed, close and reset methods of the
IncrementalParser interface as a convenience to SAX 2.0 driver
writers.iicCs||_tj|�dS(N(t_bufsizeRR
(Rtbufsize((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR
os cCs�ddl}|j|�}|j|�|j�}|j|j�}x/|dkrw|j|�|j|j�}qIW|j�dS(Ni�t(tsaxutilstprepare_input_sourcet
prepareParsert
getByteStreamtreadR'tfeedtclose(RRR*tfiletbuffer((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRss
cCstd��dS(sThis method gives the raw XML data in the data parameter to
the parser and makes it parse the data, emitting the
corresponding events. It is allowed for XML constructs to be
split across several calls to feed.
feed may raise SAXException.s This method must be implemented!N(R(Rtdata((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR/scCstd��dS(stThis method is called by the parse implementation to allow
the SAX 2.0 driver to prepare itself for parsing.s!prepareParser must be overridden!N(R(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR,�scCstd��dS(s�This method is called when the entire XML document has been
passed to the parser through the feed method, to notify the
parser that there are no more data. This allows the parser to
do the final checks on the document and empty the internal
data buffer.
The parser will not be ready to parse another document until
the reset method has been called.
close may raise SAXException.s This method must be implemented!N(R(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR0�scCstd��dS(s�This method is called after close has been called to reset
the parser so that it is ready to parse new documents. The
results of calling parse or feed after close without calling
reset are undefined.s This method must be implemented!N(R(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytreset�si( R#R$R%R
RR/R,R0R4(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR&[s
tLocatorcBs2eZdZd�Zd�Zd�Zd�ZRS(s�Interface for associating a SAX event with a document
location. A locator object will return valid results only during
calls to DocumentHandler methods; at any other time, the
results are unpredictable.cCsdS(s6Return the column number where the current event ends.i�((R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetColumnNumber�scCsdS(s4Return the line number where the current event ends.i�((R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
getLineNumber�scCsdS(s3Return the public identifier for the current event.N(tNone(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetPublicId�scCsdS(s3Return the system identifier for the current event.N(R8(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetSystemId�s(R#R$R%R6R7R9R:(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR5�s
tInputSourcecBsteZdZdd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d�Zd �Zd
�Z
d�ZRS(
snEncapsulation of the information needed by the XMLReader to
read entities.
This class may include information about the public identifier,
system identifier, byte stream (possibly with character encoding
information) and/or the character stream of an entity.
Applications will create objects of this class for use in the
XMLReader.parse method and for returning from
EntityResolver.resolveEntity.
An InputSource belongs to the application, the XMLReader is not
allowed to modify InputSource objects passed to it from the
application, although it may make copies and modify those.cCs1||_d|_d|_d|_d|_dS(N(t_InputSource__system_idR8t_InputSource__public_idt_InputSource__encodingt_InputSource__bytefilet_InputSource__charfile(Rt system_id((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR
�s
cCs
||_dS(s/Sets the public identifier of this InputSource.N(R=(Rt public_id((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetPublicId�scCs|jS(s2Returns the public identifier of this InputSource.(R=(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR9�scCs
||_dS(s/Sets the system identifier of this InputSource.N(R<(RRA((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetSystemId�scCs|jS(s2Returns the system identifier of this InputSource.(R<(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR:�scCs
||_dS(s4Sets the character encoding of this InputSource.
The encoding must be a string acceptable for an XML encoding
declaration (see section 4.3.3 of the XML recommendation).
The encoding attribute of the InputSource is ignored if the
InputSource also contains a character stream.N(R>(Rtencoding((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetEncoding�scCs|jS(s/Get the character encoding of this InputSource.(R>(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetEncoding�scCs
||_dS(s�Set the byte stream (a Python file-like object which does
not perform byte-to-character conversion) for this input
source.
The SAX parser will ignore this if there is also a character
stream specified, but it will use a byte stream in preference
to opening a URI connection itself.
If the application knows the character encoding of the byte
stream, it should set it with the setEncoding method.N(R?(Rtbytefile((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt
setByteStream�scCs|jS(s�Get the byte stream for this input source.
The getEncoding method will return the character encoding for
this byte stream, or None if unknown.(R?(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR-�scCs
||_dS(s^Set the character stream for this input source. (The stream
must be a Python 2.0 Unicode-wrapped file-like that performs
conversion to Unicode strings.)
If there is a character stream specified, the SAX parser will
ignore any byte stream and will not attempt to open a URI
connection to the system identifier.N(R@(Rtcharfile((s'/sys/lib/python2.7/xml/sax/xmlreader.pytsetCharacterStreamscCs|jS(s/Get the character stream for this input source.(R@(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetCharacterStreamsN(R#R$R%R8R
RCR9RDR:RFRGRIR-RKRL(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR;�s
tAttributesImplcBs�eZd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d�Z
d �Zd
�Zd�Z
d�Zd
�Zdd�Zd�Zd�Zd�ZRS(cCs
||_dS(sQNon-NS-aware implementation.
attrs should be of the form {name : value}.N(t_attrs(Rtattrs((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR
scCs
t|j�S(N(tlenRN(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt getLengthscCsdS(NtCDATA((RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetTypescCs|j|S(N(RN(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetValue"scCs|j|S(N(RN(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetValueByQName%scCs||jkrt|�n|S(N(RNtKeyError(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetNameByQName(scCs||jkrt|�n|S(N(RNRV(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetQNameByName-scCs
|jj�S(N(RNtkeys(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytgetNames2scCs
|jj�S(N(RNRY(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt getQNames5scCs
t|j�S(N(RPRN(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt__len__8scCs|j|S(N(RN(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt__getitem__;scCs
|jj�S(N(RNRY(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRY>scCs
||jkS(N(RN(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pythas_keyAscCs
||jkS(N(RN(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt__contains__DscCs|jj||�S(N(RNtget(RRtalternative((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR`GscCs|j|j�S(N(t __class__RN(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pytcopyJscCs
|jj�S(N(RNtitems(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRdMscCs
|jj�S(N(RNtvalues(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRePsN(R#R$R
RQRSRTRURWRXRZR[R\R]RYR^R_R8R`RcRdRe(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRMs$ tAttributesNSImplcBs>eZd�Zd�Zd�Zd�Zd�Zd�ZRS(cCs||_||_dS(s�NS-aware implementation.
attrs should be of the form {(ns_uri, lname): value, ...}.
qnames of the form {(ns_uri, lname): qname, ...}.N(RNt_qnames(RROtqnames((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR
Ws cCsDx4|jj�D]#\}}||kr|j|SqWt|�dS(N(RgRdRNRV(RRtnsnametqname((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRU_scCs=x-|jj�D]\}}||kr|SqWt|�dS(N(RgRdRV(RRRiRj((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRWfscCs|j|S(N(Rg(RR((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRXmscCs
|jj�S(N(RgRe(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyR[pscCs|j|j|j�S(N(RbRNRg(R((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRcss(R#R$R
RURWRXR[Rc(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyRfUs cCst�t�t�dS(N(RR&R5(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt_testwst__main__(((((
R%Rt_exceptionsRRRR&R5R;RMRfRkR#(((s'/sys/lib/python2.7/xml/sax/xmlreader.pyt<module>sPHYA"
|