3 ]#j @s\ddlmZddlmZddlZddlZddlZddlmZ ddlm Z y ddl Z Wne k rldZ YnXddlmZddlmZmZmZmZmZmZmZdd lmZmZdd lmZdd lm Z m!Z!dd l"m#Z#m$Z$ej%e&Z'Gd dde(Z)Gddde(Z*Gddde(Z+e dk r.Gddde(Z,Gddde(Z-ddZ.Gdddej/Z0dS))absolute_import)contextmanagerN)timeout)error)HTTPHeaderDict)BodyNotHttplibCompatible ProtocolError DecodeErrorReadTimeoutErrorResponseNotChunkedIncompleteRead InvalidHeader) string_typesPY3) http_client) HTTPException BaseSSLError) is_fp_closedis_response_to_headc@s$eZdZddZddZddZdS)DeflateDecodercCsd|_d|_tj|_dS)NT) _first_try_datazlib decompressobj_obj)selfr3/tmp/pip-build-el9acr48/urllib3/urllib3/response.py__init__szDeflateDecoder.__init__cCs t|j|S)N)getattrr)rnamerrr __getattr__"szDeflateDecoder.__getattr__cCs|s|S|js|jj|S|j|7_y |jj|}|rFd|_d|_|Stjk rd|_tjtj |_z |j|jSd|_XYnXdS)NF)rr decompressrrrr MAX_WBITS)rdata decompressedrrrr$%s"   zDeflateDecoder.decompressN)__name__ __module__ __qualname__r r#r$rrrrrsrc@seZdZdZdZdZdS)GzipDecoderStaterrN)r(r)r* FIRST_MEMBER OTHER_MEMBERS SWALLOW_DATArrrrr+<sr+c@s$eZdZddZddZddZdS) GzipDecodercCstjdtj|_tj|_dS)N)rrr%rr+r-_state)rrrrr EszGzipDecoder.__init__cCs t|j|S)N)r!r)rr"rrrr#IszGzipDecoder.__getattr__c Cst}|jtjks| r t|Sxy||jj|7}Wn8tjk rn|j}tj|_|tj krht|SYnX|jj }|st|Stj |_tj dtj |_q"WdS)Nr1) bytearrayr2r+r/bytesrr$rrr. unused_datarr%)rr&retZprevious_staterrrr$Ls" zGzipDecoder.decompressN)r(r)r*r r#r$rrrrr0Csr0c@s$eZdZddZddZddZdS) BrotliDecodercCstj|_dS)N)brotliZ Decompressorr)rrrrr gszBrotliDecoder.__init__cCs$t|jdr|jj|S|jj|S)Nr$)hasattrrr$process)rr&rrrr$js  zBrotliDecoder.decompresscCst|jdr|jjSdS)Nflushr)r9rr;)rrrrr;os  zBrotliDecoder.flushN)r(r)r*r r$r;rrrrr7csr7c@s(eZdZdZddZddZddZdS) MultiDecodera From RFC7231: If one or more encodings have been applied to a representation, the sender that applied the encodings MUST generate a Content-Encoding header field that lists the content codings in the order in which they were applied. cCsdd|jdD|_dS)NcSsg|]}t|jqSr) _get_decoderstrip).0mrrr sz)MultiDecoder.__init__..,)split _decoders)rmodesrrrr ~szMultiDecoder.__init__cCs|jdjS)Nr)rDr;)rrrrr;szMultiDecoder.flushcCs"xt|jD]}|j|}q W|S)N)reversedrDr$)rr&drrrr$szMultiDecoder.decompressN)r(r)r*__doc__r r;r$rrrrr<usr<cCs:d|krt|S|dkrtStdk r4|dkr4tStS)NrBgzipbr)r<r0r8r7r)moderrrr=sr=c@sdeZdZdZddgZedk r&edg7Zdddd d gZdMddZddZddZ e ddZ e ddZ ddZ ddZddZdd ZeejfZedk reejf7Zd!d"Zd#d$Zed%d&ZdNd'd(ZdPd+d,Zed-d.Zd/d0ZdQd1d2Zd3d4Zd5d6Z e d7d8Z!d9d:Z"d;d<Z#d=d>Z$d?d@Z%dAdBZ&dCdDZ'dEdFZ(dRdGdHZ)dIdJZ*dKdLZ+dS)S HTTPResponsea HTTP Response container. Backwards-compatible to httplib's HTTPResponse but the response ``body`` is loaded and decoded on-demand when the ``data`` property is accessed. This class is also compatible with the Python standard library's :mod:`io` module, and can hence be treated as a readable object in the context of that framework. Extra parameters for behaviour not present in httplib.HTTPResponse: :param preload_content: If True, the response's body will be preloaded during construction. :param decode_content: If True, will attempt to decode the body based on the 'content-encoding' header. :param original_response: When this HTTPResponse wrapper is generated from an httplib.HTTPResponse object, it's convenient to include the original for debug purposes. It's otherwise unused. :param retries: The retries contains the last :class:`~urllib3.util.retry.Retry` that was used during the request. :param enforce_content_length: Enforce content length checking. Body returned by server must match value of Content-Length header, if present. Otherwise, raise error. rIdeflateNrJi-i.i/i3i4rTFcCst|tr||_n t||_||_||_||_||_||_| |_||_ d|_ d|_ d|_ | |_ d|_| |_||_|rt|ttfr||_ | |_| |_t|dr||_ d|_d|_|jjddj}dd|jdD}d |krd |_|j||_|o|j r |j|d |_ dS) NrreadFztransfer-encodingrNcss|]}|jVqdS)N)r>)r?encrrr sz(HTTPResponse.__init__..rBchunkedT)decode_content) isinstancerheadersstatusversionreasonstrictrSretriesenforce_content_length_decoder_body_fp_original_response_fp_bytes_readmsg _request_url basestringr4_pool _connectionr9rR chunk_leftgetlowerrC _init_lengthlength_remainingrO)rbodyrUrVrWrXrYpreload_contentrSoriginal_responsepool connectionrarZr[request_method request_urltr_enc encodingsrrrr s@    zHTTPResponse.__init__cCs|j|jkr|jjdSdS)a Should we redirect and where to? :returns: Truthy redirect location string if we got a redirect status code and valid location. ``None`` if redirect status and no location. ``False`` if not a redirect status code. locationF)rVREDIRECT_STATUSESrUrg)rrrrget_redirect_locations  z"HTTPResponse.get_redirect_locationcCs,|j s|j rdS|jj|jd|_dS)N)rdre _put_conn)rrrr release_connszHTTPResponse.release_conncCs"|jr |jS|jr|jddSdS)NT) cache_content)r]r^rO)rrrrr&szHTTPResponse.datacCs|jS)N)re)rrrrro szHTTPResponse.connectioncCs t|jS)N)rr^)rrrrisclosedszHTTPResponse.isclosedcCs|jS)z Obtain the number of bytes pulled over the wire so far. May differ from the amount of content returned by :meth:``HTTPResponse.read`` if bytes are encoded on the wire (e.g, compressed). )r`)rrrrtellszHTTPResponse.tellcCs|jjd}|dk r|jr(tjddSy.rBrz8Content-Length contained multiple unmatching values (%s)r0dHEAD)r~r) rUrgrRlogwarningsetrClenrpop ValueErrorr|rV)rrplengthlengthsrVrrrris,      (zHTTPResponse._init_lengthcshjjddj}jdkrd|jkr2t|_n2d|krdfdd|jdD}t|rdt|_dS)z= Set-up the _decoder attribute if necessary. zcontent-encodingrNNrBcs"g|]}|jjkr|jqSr)r>CONTENT_DECODERS)r?e)rrrrAXsz.HTTPResponse._init_decoder..)rUrgrhr\rr=rCr)rcontent_encodingrsr)rr _init_decoderLs   zHTTPResponse._init_decodercCsx|s|Sy|jr|jj|}WnD|jk rb}z&|jjddj}td||WYdd}~XnX|rt||j7}|S)zN Decode the data passed in and potentially flush the decoder. zcontent-encodingrNzEReceived response with content-encoding: %s, but failed to decode it.N)r\r$DECODER_ERROR_CLASSESrUrgrhr _flush_decoder)rr&rS flush_decoderrrrrr_decodeas zHTTPResponse._decodecCs$|jr |jjd}||jjSdS)zk Flushes the decoder. Should only be called if the decoder is actually being used. r)r\r$r;)rbufrrrrus zHTTPResponse._flush_decoderccsd}zy dVWntk r2t|jddYnptk rn}z"dt|krPt|jddWYdd}~Xn4ttfk r}ztd||WYdd}~XnXd}Wd|s|jr|jj |j r|j j |jr|jj r|j XdS)z Catch low-level python exceptions, instead re-raising urllib3 variants, so that low-level exceptions are not leaked in the high-level api. On exit, release the connection back to the pool. FNzRead timed out.zread operation timed outzConnection broken: %rT) SocketTimeoutr rdrstrr SocketErrorr r_closererzrx)r clean_exitrrrr_error_catchers(      zHTTPResponse._error_catcherc Cs|j|dkr|j}|jdkr$dSd}d}|jh|dkrN|jj}d}nJd}|jj|}|dkr| r|jjd}|jr|jdkrt|j |jWdQRX|r|j t |7_ |jdk r|jt |8_|j |||}|r||_ |S)aP Similar to :meth:`httplib.HTTPResponse.read`, but with two additional parameters: ``decode_content`` and ``cache_content``. :param amt: How much of the content to read. If specified, caching is skipped because it doesn't make sense to cache partial content as the full response. :param decode_content: If True, will attempt to decode the body based on the 'content-encoding' header. :param cache_content: If True, will save the returned data such that the same result is returned despite of the state of the underlying file object. This is useful if you want the ``.data`` property to continue working after having ``.read()`` the file object. (Overridden if ``amt`` is set.) NFTr)rN) rrSr^rrOrr[rjr r`rrr])ramtrSryrr&rrrrOs4      zHTTPResponse.readr,r1ccsZ|jr.|jr.xF|j||dD] }|VqWn(x&t|jsT|j||d}|r0|Vq0WdS)a_ A generator wrapper for the read() method. A call will block until ``amt`` bytes have been read from the connection or until the connection is closed. :param amt: How much of the content to read. The generator will return up to much data per iteration, but may return less. This is particularly likely when using compressed data. However, the empty string will never be returned. :param decode_content: If True, will attempt to decode the body based on the 'content-encoding' header. )rS)rrSN)rRsupports_chunked_reads read_chunkedrr^rO)rrrSliner&rrrstreams  zHTTPResponse.streamc Ks`|j}t|ts,tr"t|j}n tj|}t|dd}|f|||j|j|j ||d|}|S)a  Given an :class:`httplib.HTTPResponse` instance ``r``, return a corresponding :class:`urllib3.response.HTTPResponse` object. Remaining parameters are passed to the HTTPResponse constructor, along with ``original_response=r``. rYr)rkrUrVrWrXrYrm) rarTrritems from_httplibr!rVrWrX) ResponseClsr response_kwrUrYresprrrrs    zHTTPResponse.from_httplibcCs|jS)N)rU)rrrr getheaders7szHTTPResponse.getheaderscCs|jj||S)N)rUrg)rr"defaultrrr getheader:szHTTPResponse.getheadercCs|jS)N)rU)rrrrinfo>szHTTPResponse.infocCs$|js|jj|jr |jjdS)N)closedr^rre)rrrrrBs zHTTPResponse.closecCs@|jdkrdSt|jdr$|jjSt|jdr8|jjSdSdS)NTrzr)r^r9rzr)rrrrrIs    zHTTPResponse.closedcCs6|jdkrtdnt|jdr*|jjStddS)Nz-HTTPResponse has no file to get a fileno fromfilenozOThe file-like object this HTTPResponse is wrapped around has no file descriptor)r^IOErrorr9r)rrrrrTs     zHTTPResponse.filenocCs$|jdk r t|jdr |jjSdS)Nr;)r^r9r;)rrrrr;]szHTTPResponse.flushcCsdS)NTr)rrrrreadableaszHTTPResponse.readablecCs:|jt|}t|dkrdS||dt|<t|SdS)Nr)rOr)rbtemprrrreadintoes  zHTTPResponse.readintocCs t|jdS)z Checks if the underlying file-like object looks like a httplib.HTTPResponse object. We do this by testing for the fp attribute. If it is present we assume it returns raw chunks as processed by read_chunked(). fp)r9r^)rrrrrnsz#HTTPResponse.supports_chunked_readsc Csf|jdk rdS|jjj}|jddd}yt|d|_Wn&tk r`|jtj |YnXdS)N;rrr1) rfr^rreadlinerCr|rrhttplibr )rrrrr_update_chunk_lengthws  z!HTTPResponse._update_chunk_lengthcCsd}|dkr2|jj|j}|}|jjdd|_nv||jkrZ|jj|}|j||_|}nN||jkr|jj|}|jjdd|_|}n |jj|j}|jjdd|_|S)Nr,)r^ _safe_readrf)rrreturned_chunkchunkvaluerrr _handle_chunks&        zHTTPResponse._handle_chunkc cs|j|jstd|js&td|j|jrNt|jrN|jjdS|j j dkr^dSx<|j |j dkrtP|j |}|j||dd}|r`|Vq`W|r|j}|r|Vx |j j j}|sP|dkrPqW|jr|jjWdQRXdS)a Similar to :meth:`HTTPResponse.read`, but with an additional parameter: ``decode_content``. :param amt: How much of the content to read. If specified, caching is skipped because it doesn't make sense to cache partial content as the full response. :param decode_content: If True, will attempt to decode the body based on the 'content-encoding' header. zHResponse is not chunked. Header 'transfer-encoding: chunked' is missing.zgBody should be httplib.HTTPResponse like. It should have have an fp attribute which returns raw chunks.NrF)rSrs )rrRr rrrr_rrr^rrrfrrrr)rrrSrdecodedrrrrrsD       zHTTPResponse.read_chunkedcCs.|jdk r$t|jjr$|jjdjS|jSdS)z Returns the URL that was the source of this response. If the request that generated this response redirected, this method will return the final redirect location. Nr)rZrhistoryredirect_locationrb)rrrrgeturlszHTTPResponse.geturlccsdg}x|jddD]r}d|kr||jd}dj||ddVx|ddD]}|dVqPW|drv|d g}qg}q|j|qW|rdj|VdS) NrT)rS rrrrr)rrCjoinappend)rbufferrxrrr__iter__s  zHTTPResponse.__iter__)rNNrrNrTTNNNNNFNN)NNF)rN)N)NN),r(r)r*rHrr8rur rvrxpropertyr&rorzr{rirrrrrrrrrrOr classmethodrrrrrrrr;rrrrrrrrrrrrrLsT  /  0   9 E        C rL)1 __future__r contextlibrriologgingsocketrrrrr8 ImportError _collectionsr exceptionsrr r r r r rZ packages.sixrrcrZpackages.six.movesrrrorrZ util.responserr getLoggerr(robjectrr+r0r7r<r=IOBaserLrrrrs2       $  !