Viewing File: /usr/lib/python3.6/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-36.pyc

3

ajA@sddlmZddlZddlZddlZddlmZddlmZm	Z	ddlm
Z
ddlmZm
Z
mZddlmZdd	lmZdd
lmZddlmZdd
dgZejeZd4Zd5Zejd-eZd.d/Zej eeej eed0Z!ee	d0Z"Gd1ddeZ#Gd2d
d
e#Z$d3dZ%dS)6)absolute_importN)RecentlyUsedContainer)HTTPConnectionPoolHTTPSConnectionPool)port_by_scheme)LocationValueError
MaxRetryErrorProxySchemeUnknown)urljoin)RequestMethods)	parse_url)RetryPoolManagerProxyManagerproxy_from_urlkey_file	cert_file	cert_reqsca_certsssl_versionca_cert_dirssl_context
key_schemekey_hostkey_portkey_timeoutkey_retries
key_strict	key_blockkey_source_addresskey_key_file
key_cert_file
key_cert_reqskey_ca_certskey_ssl_versionkey_ca_cert_dirkey_ssl_contextkey_maxsizekey_headers
key__proxykey__proxy_headerskey_socket_optionskey__socks_optionskey_assert_hostnamekey_assert_fingerprintPoolKeycCs|j}|dj|d<|dj|d<x4d	D],}||kr.||dk	r.t||j||<q.W|jd}|dk	r|t||d<x&t|jD]}|j||d|<qWx|j	D]}||krd||<qW|f|S)
a
    Create a pool key out of a request context dictionary.

    According to RFC 3986, both the scheme and host are case-insensitive.
    Therefore, this function normalizes both before constructing the pool
    key for an HTTPS request. If you wish to change this behaviour, provide
    alternate callables to ``key_fn_by_scheme``.

    :param key_class:
        The class to use when constructing the key. This should be a namedtuple
        with the ``scheme`` and ``host`` keys at a minimum.
    :type  key_class: namedtuple
    :param request_context:
        A dictionary-like object that contain the context for a request.
    :type  request_context: dict

    :return: A namedtuple that can be used as a connection pool key.
    :rtype:  PoolKey
    schemehostheaders_proxy_headers_socks_optionsNZsocket_optionsZkey_)r3r4r5)
copylower	frozensetitemsgettuplelistkeyspop_fields)Z	key_classrequest_contextcontextkeyZsocket_optsZfieldrC!/usr/lib/python3.6/poolmanager.py_default_key_normalizer9s

rE)httphttpsc@sxeZdZdZdZdddZddZdd	Zdd
dZdd
Z	dddZ
ddZdddZd ddZ
ddZd!ddZdS)"ra$
    Allows for arbitrary requests while transparently keeping track of
    necessary connection pools for you.

    :param num_pools:
        Number of connection pools to cache before discarding the least
        recently used pool.

    :param headers:
        Headers to include with all requests, unless other headers are given
        explicitly.

    :param \**connection_pool_kw:
        Additional parameters are used to create fresh
        :class:`urllib3.connectionpool.ConnectionPool` instances.

    Example::

        >>> manager = PoolManager(num_pools=2)
        >>> r = manager.request('GET', 'http://google.com/')
        >>> r = manager.request('GET', 'http://google.com/mail')
        >>> r = manager.request('GET', 'http://yahoo.com/')
        >>> len(manager.pools)
        2

    N
cKs8tj||||_t|ddd|_t|_tj|_dS)NcSs|jS)N)close)prCrCrD<lambda>sz&PoolManager.__init__.<locals>.<lambda>)Zdispose_func)r__init__connection_pool_kwrpoolspool_classes_by_schemekey_fn_by_schemer6)self	num_poolsr3rMrCrCrDrLszPoolManager.__init__cCs|S)NrC)rQrCrCrD	__enter__szPoolManager.__enter__cCs|jdS)NF)clear)rQexc_typeZexc_valZexc_tbrCrCrD__exit__szPoolManager.__exit__cCsf|j|}|dkr|jj}xdD]}|j|dq"W|dkrXxtD]}|j|dqDW|||f|S)a
        Create a new :class:`ConnectionPool` based on host, port, scheme, and
        any additional pool keyword arguments.

        If ``request_context`` is provided, it is provided as keyword arguments
        to the pool class used. This method is used to actually create the
        connection pools handed out by :meth:`connection_from_url` and
        companion methods. It is intended to be overridden for customization.
        Nr1r2portrF)r1r2rW)rOrMr6r>SSL_KEYWORDS)rQr1r2rWr@Zpool_clsrBkwrCrCrD	_new_pools




zPoolManager._new_poolcCs|jjdS)z
        Empty our store of pools and direct them all to close.

        This will not affect in-flight connections, but they will not be
        re-used after completion.
        N)rNrT)rQrCrCrDrTszPoolManager.clearrFcCsT|std|j|}|pd|d<|s:tj|djd}||d<||d<|j|S)a
        Get a :class:`ConnectionPool` based on the host, port, and scheme.

        If ``port`` isn't given, it will be derived from the ``scheme`` using
        ``urllib3.connectionpool.port_by_scheme``. If ``pool_kwargs`` is
        provided, it is merged with the instance's ``connection_pool_kw``
        variable and used to create the new connection pool, if one is
        needed.
        zNo host specified.rFr1PrWr2)r_merge_pool_kwargsrr:r7connection_from_context)rQr2rWr1pool_kwargsr@rCrCrDconnection_from_hosts
z PoolManager.connection_from_hostcCs,|dj}|j|}||}|j||dS)z
        Get a :class:`ConnectionPool` based on the request context.

        ``request_context`` must at least contain the ``scheme`` key and its
        value must be a key in ``key_fn_by_scheme`` instance variable.
        r1)r@)r7rPconnection_from_pool_key)rQr@r1Zpool_key_constructorpool_keyrCrCrDr]s
z#PoolManager.connection_from_contextc
Cs`|jjN|jj|}|r|S|d}|d}|d}|j||||d}||j|<WdQRX|S)z
        Get a :class:`ConnectionPool` based on the provided pool key.

        ``pool_key`` should be a namedtuple that only contains immutable
        objects. At a minimum it must have the ``scheme``, ``host``, and
        ``port`` fields.
        r1r2rW)r@N)rNlockr:rZ)rQrar@Zpoolr1r2rWrCrCrDr`s
z$PoolManager.connection_from_pool_keycCs t|}|j|j|j|j|dS)a
        Similar to :func:`urllib3.connectionpool.connection_from_url`.

        If ``pool_kwargs`` is not provided and a new pool needs to be
        constructed, ``self.connection_pool_kw`` is used to initialize
        the :class:`urllib3.connectionpool.ConnectionPool`. If ``pool_kwargs``
        is provided, it is used instead. Note that if a new pool does not
        need to be created for the request, the provided ``pool_kwargs`` are
        not used.
        )rWr1r^)r
r_r2rWr1)rQurlr^urCrCrDconnection_from_url
szPoolManager.connection_from_urlcCsZ|jj}|rVxF|jD]:\}}|dkrJy
||=WqRtk
rFYqRXq|||<qW|S)a
        Merge a dictionary of override values for self.connection_pool_kw.

        This does not modify self.connection_pool_kw and returns a new dict.
        Any keys in the override dictionary with a value of ``None`` are
        removed from the merged dictionary.
        N)rMr6r9KeyError)rQoverrideZbase_pool_kwargsrBvaluerCrCrDr\s

zPoolManager._merge_pool_kwargsTcKsdt|}|j|j|j|jd}d|d<d|d<d|krD|jj|d<|jdk	rj|jdkrj|j||f|}n|j||j	f|}|o|j
}|s|St||}|jdkrd	}|j
d
}	t|	tstj|	|d}	|	jo|j|rx|	jD]}
|dj|
dqWy|	j||||d}	Wn tk
r4|	jr0|SX|	|d
<||d<tjd
|||j||f|S)a]
        Same as :meth:`urllib3.connectionpool.HTTPConnectionPool.urlopen`
        with custom cross-host redirect logic and only sends the request-uri
        portion of the ``url``.

        The given ``url`` parameter must be absolute, such that an appropriate
        :class:`urllib3.connectionpool.ConnectionPool` can be chosen for it.
        )rWr1FZassert_same_hostredirectr3NrFi/ZGETretries)ri)responseZ_poolzRedirecting %s -> %s)r
r_r2rWr1r3r6proxyurlopenZrequest_uriZget_redirect_locationrZstatusr:
isinstancerZfrom_intZremove_headers_on_redirectZis_same_hostr>Z	incrementr	Zraise_on_redirectloginfo)rQmethodrcrirYrdZconnrkZredirect_locationrjheaderrCrCrDrm-s@	



zPoolManager.urlopen)rHN)N)NrFN)N)N)T)__name__
__module____qualname____doc__rlrLrSrVrZrTr_r]r`rer\rmrCrCrCrDrys

	


csHeZdZdZdfdd	Zdfdd	Zdd	d
Zdfdd
	ZZS)raw
    Behaves just like :class:`PoolManager`, but sends all requests through
    the defined proxy, using the CONNECT method for HTTPS URLs.

    :param proxy_url:
        The URL of the proxy to be used.

    :param proxy_headers:
        A dictionary contaning headers that will be sent to the proxy. In case
        of HTTP they are being sent with each request, while in the
        HTTPS/CONNECT case they are sent only once. Could be used for proxy
        authentication.

    Example:
        >>> proxy = urllib3.ProxyManager('http://localhost:3128/')
        >>> r1 = proxy.request('GET', 'http://google.com/')
        >>> r2 = proxy.request('GET', 'http://httpbin.org/')
        >>> len(proxy.pools)
        1
        >>> r3 = proxy.request('GET', 'https://httpbin.org/')
        >>> r4 = proxy.request('GET', 'https://twitter.com/')
        >>> len(proxy.pools)
        3

    rHNcst|trd|j|j|jf}t|}|jsFtj|jd}|j|d}|jdkrZt	|j||_
|pfi|_|j
|d<|j|d<tt
|j||f|dS)	Nz
%s://%s:%ir[)rWrFrG_proxyr4)rFrG)rnrr1r2rWr
rr:_replacer
rl
proxy_headerssuperrrL)rQ	proxy_urlrRr3ryrMrlrW)	__class__rCrDrLs








zProxyManager.__init__rFcsD|dkr tt|j||||dStt|j|jj|jj|jj|dS)NrG)r^)rzrr_rlr2rWr1)rQr2rWr1r^)r|rCrDr_s


z!ProxyManager.connection_from_hostcCs0ddi}t|j}|r||d<|r,|j||S)z
        Sets headers needed by proxies: specifically, the Accept and Host
        headers. Only sets headers not provided by the user.
        ZAcceptz*/*ZHost)r
netlocupdate)rQrcr3Zheaders_r}rCrCrD_set_proxy_headerss

zProxyManager._set_proxy_headersTcsNt|}|jdkr0|jd|j}|j|||d<tt|j||fd|i|S)z@Same as HTTP(S)ConnectionPool.urlopen, ``url`` must be absolute.rFr3ri)r
r1r:r3rrzrrm)rQrqrcrirYrdr3)r|rCrDrms

zProxyManager.urlopen)rHNN)NrFN)N)T)	rsrtrurvrLr_rrm
__classcell__rCrC)r|rDris
cKstfd|i|S)Nr{)r)rcrYrCrCrDrs)rrrrrrr)rrrrrrrr r!r"r#r$r%r&r'r(r)r*r+r,r-r.r/)&Z
__future__rcollections	functoolsZlogging_collectionsrZconnectionpoolrrr
exceptionsrr	r
Zpackages.six.moves.urllib.parserZrequestrZutil.urlr
Z
util.retryr__all__Z	getLoggerrsrorXZ_key_fields
namedtupler0rEpartialrPrOrrrrCrCrCrD<module>s`

6
qW
Back to Directory File Manager