U
    hA                     @   s   d dl Z d dlZd dlZd dlZd dlZd dlZd dlmZ d dlm	Z	 d dl
Z
ddlmZmZ ddlmZmZ e dZG dd	 d	eZG d
d deZdS )    N)suppress)quote   )AbstractBufferedFileAbstractFileSystem)infer_storage_optionstokenizewebhdfsc                       s  e Zd ZdZee ZdZd= fdd	Z	e
d	d
 Zdd Zd>ddZd?ddZedd Zedd Zedd Zdd Zd@ddZdd Zdd  Zd!d" ZdAd#d$Zd%d& Zd'd( Zd)d* ZdBd+d,Zd-d. Zd/d0 ZdCd1d2Z d3d4 Z!dDd5d6Z"d7d8 Z#d9d: Z$d;d< Z%  Z&S )EWebHDFSa  
    Interface to HDFS over HTTP using the WebHDFS API. Supports also HttpFS gateways.

    Four auth mechanisms are supported:

    insecure: no auth is done, and the user is assumed to be whoever they
        say they are (parameter ``user``), or a predefined value such as
        "dr.who" if not given
    spnego: when kerberos authentication is enabled, auth is negotiated by
        requests_kerberos https://github.com/requests/requests-kerberos .
        This establishes a session based on existing kinit login and/or
        specified principal/password; parameters are passed with ``kerb_kwargs``
    token: uses an existing Hadoop delegation token from another secured
        service. Indeed, this client can also generate such tokens when
        not insecure. Note that tokens expire, but can be renewed (by a
        previously specified user) and may allow for proxying.
    basic-auth: used when both parameter ``user`` and parameter ``password``
        are provided.

    )r	   ZwebHDFS  FNTc                    s
  | j r
dS t jf | |
r dnd d| d| d| _|| _|pDi | _i | _|	pTi | _|dk	r|dk	sp|dk	rxtd|| jd< || _	|| _
|dk	r|dkrtd	n|dk	r|| jd
< |dk	r|| jd< |r|dk	rtd|| _|| _|   dt|| | _dS )a  
        Parameters
        ----------
        host: str
            Name-node address
        port: int
            Port for webHDFS
        kerberos: bool
            Whether to authenticate with kerberos for this connection
        token: str or None
            If given, use this token on every call to authenticate. A user
            and user-proxy may be encoded in the token and should not be also
            given
        user: str or None
            If given, assert the user name to connect with
        password: str or None
            If given, assert the password to use for basic auth. If password
            is provided, user must be provided also
        proxy_to: str or None
            If given, the user has the authority to proxy, and this value is
            the user in who's name actions are taken
        kerb_kwargs: dict
            Any extra arguments for HTTPKerberosAuth, see
            `<https://github.com/requests/requests-kerberos/blob/master/requests_kerberos/kerberos_.py>`_
        data_proxy: dict, callable or None
            If given, map data-node addresses. This can be necessary if the
            HDFS cluster is behind a proxy, running on Docker or otherwise has
            a mismatch between the host-names given by the name-node and the
            address by which to refer to them from the client. If a dict,
            maps host names ``host->data_proxy[host]``; if a callable, full
            URLs are passed, and function must conform to
            ``url->data_proxy(url)``.
        use_https: bool
            Whether to connect to the Name-node using HTTPS instead of HTTP
        session_cert: str or Tuple[str, str] or None
            Path to a certificate file, or tuple of (cert, key) files to use
            for the requests.Session
        session_verify: str, bool or None
            Path to a certificate file to use for verifying the requests.Session.
        kwargs
        Nhttpshttpz://:z/webhdfs/v1z_If passing a delegation token, must not set user or proxy_to, as these are encoded in the tokenZ
delegationzQIf passing a password, the user must also beset in order to set up the basic-authz	user.nameZdoaszJIf using Kerberos auth, do not specify the user, this is handled by kinit.Zwebhdfs_)_cachedsuper__init__urlkerbkerb_kwargsparsproxy
ValueErroruserpasswordsession_certsession_verify_connectr   _fsid)selfhostportZkerberostokenr   r   Zproxy_tor   Z
data_proxyZ	use_httpsr   r   kwargs	__class__ P/var/www/html/venv/lib/python3.8/site-packages/fsspec/implementations/webhdfs.pyr   -   sB    9 




zWebHDFS.__init__c                 C   s   | j S N)r   r   r%   r%   r&   fsid   s    zWebHDFS.fsidc                 C   s|   t  | _| jr| j| j_| j| j_| jrFddlm	} |f | j
| j_| jd k	rx| jd k	rxddlm} || j| j| j_d S )Nr   )HTTPKerberosAuth)HTTPBasicAuth)requestsSessionsessionr   certr   verifyr   Zrequests_kerberosr*   r   authr   r   Zrequests.authr+   )r   r*   r+   r%   r%   r&   r      s    


zWebHDFS._connectgetc              	   K   s  |d k	r|  |nd}| | jt|dd }| }|| j | |d< t	d|| | j
j| ||||d}	|	jdkrz$|	 }
|
d d	 }|
d d
 }W n ttfk
r   Y n@X |dkrt|n,|dkrt|n|dkrt|nt||	  |	S )N z/=)safeopzsending %s with %s)methodr   paramsdataallow_redirects)i  i  i  i  i  ZRemoteExceptionmessage	exception)ZIllegalArgumentExceptionZUnsupportedOperationException)ZSecurityExceptionZAccessControlException)ZFileNotFoundException)_strip_protocol_apply_proxyr   r   copyupdater   upperloggerdebugr.   requeststatus_codejsonr   KeyErrorPermissionErrorFileNotFoundErrorRuntimeErrorraise_for_status)r   r5   r6   pathr8   redirectr"   r   argsouterrmsgexpr%   r%   r&   _call   s:    



zWebHDFS._callrbc              
   K   s$   |p| j }t| |||| j|||dS )a^  

        Parameters
        ----------
        path: str
            File location
        mode: str
            'rb', 'wb', etc.
        block_size: int
            Client buffer size for read-ahead or write buffer
        autocommit: bool
            If False, writes to temporary file that only gets put in final
            location upon commit
        replication: int
            Number of copies of file on the cluster, write mode only
        permissions: str or int
            posix permissions, write mode only
        kwargs

        Returns
        -------
        WebHDFile instance
        )mode
block_sizetempdir
autocommitreplicationpermissions)	blocksize	WebHDFilerV   )r   rK   rT   rU   rW   rX   rY   r"   r%   r%   r&   _open   s    !
zWebHDFS._openc                 C   s    | d   | d< | d | d< | S )Ntypelengthsize)lower)infor%   r%   r&   _process_info   s    zWebHDFS._process_infoc                 C   s   t |d S )NrK   )r   )clsrK   r%   r%   r&   r<      s    zWebHDFS._strip_protocolc                 C   s:   t | }|dd  |dd  d|kr6|d|d< |S )NrK   protocolusernamer   )r   pop)ZurlpathrN   r%   r%   r&   _get_kwargs_from_urls   s    zWebHDFS._get_kwargs_from_urlsc                 C   s,   | j d|d}| d }||d< | |S )NZGETFILESTATUSrK   
FileStatusname)rR   rE   rb   )r   rK   rN   ra   r%   r%   r&   ra   	  s    zWebHDFS.infoc                 C   sv   | j d|d}| d d }|D ](}| | |dd |d  |d< q"|r`t|dd	 d
S tdd |D S d S )NZ
LISTSTATUSrh   ZFileStatusesri   /Z
pathSuffixrj   c                 S   s   | d S )Nrj   r%   )ir%   r%   r&   <lambda>      zWebHDFS.ls.<locals>.<lambda>)keyc                 s   s   | ]}|d  V  qdS )rj   Nr%   ).0ra   r%   r%   r&   	<genexpr>  s     zWebHDFS.ls.<locals>.<genexpr>)rR   rE   rb   rstripsorted)r   rK   detailrN   infosra   r%   r%   r&   ls  s    
z
WebHDFS.lsc                 C   s   | j d|d}| d S )z8Total numbers of files, directories and bytes under pathZGETCONTENTSUMMARYrh   ZContentSummaryrR   rE   )r   rK   rN   r%   r%   r&   content_summary  s    zWebHDFS.content_summaryc                 C   sb   | j d|dd}d|jkrJ| |jd }| j|}|  | d S |  | d S dS )z/Checksum info of file, giving method and resultZGETFILECHECKSUMF)rK   rL   LocationZFileChecksumN)rR   headersr=   r.   r2   rJ   rE   )r   rK   rN   locationout2r%   r%   r&   ukey  s    
zWebHDFS.ukeyc                 C   s   |  d}| d S )zGet user's home directoryZGETHOMEDIRECTORYPathrw   )r   rN   r%   r%   r&   home_directory+  s    
zWebHDFS.home_directoryc                 C   sB   |r| j d|d}n
|  d}| d }|dkr:td|d S )zRetrieve token which can give the same authority to other uses

        Parameters
        ----------
        renewer: str or None
            User who may use this token; if None, will be current user
        ZGETDELEGATIONTOKEN)renewerTokenNz1No token available for this user/security contextZ	urlString)rR   rE   r   )r   r   rN   tr%   r%   r&   get_delegation_token0  s    
zWebHDFS.get_delegation_tokenc                 C   s   | j dd|d}| d S )z/Make token live longer. Returns new expiry timeZRENEWDELEGATIONTOKENputr6   r!   longrw   )r   r!   rN   r%   r%   r&   renew_delegation_tokenA  s    zWebHDFS.renew_delegation_tokenc                 C   s   | j dd|d dS )z Stop the token from being usefulZCANCELDELEGATIONTOKENr   r   NrR   )r   r!   r%   r%   r&   cancel_delegation_tokenF  s    zWebHDFS.cancel_delegation_tokenc                 C   s   | j dd||d dS )a  Set the permission at path

        Parameters
        ----------
        path: str
            location to set (file or directory)
        mod: str or int
            posix epresentation or permission, give as oct string, e.g, '777'
            or 0o777
        ZSETPERMISSIONr   )r6   rK   Z
permissionNr   )r   rK   modr%   r%   r&   chmodJ  s    zWebHDFS.chmodc                 C   s>   i }|dk	r||d< |dk	r$||d< | j dd|d| dS )zChange owning user and/or groupNownergroupSETOWNERr   r6   rK   )r   r   )r   rK   r   r   r"   r%   r%   r&   chownW  s    zWebHDFS.chownc                 C   s   | j d|d|d dS )a9  
        Set file replication factor

        Parameters
        ----------
        path: str
            File location (not for directories)
        replication: int
            Number of copies of file on the cluster. Should be smaller than
            number of data nodes; normally 3 on most systems.
        ZSETREPLICATIONr   )rK   r6   rX   Nr   )r   rK   rX   r%   r%   r&   set_replication`  s    zWebHDFS.set_replicationc                 K   s   | j dd|d d S )NZMKDIRSr   r   r   r   rK   r"   r%   r%   r&   mkdirn  s    zWebHDFS.mkdirc                 C   s(   |dkr|  |rt|| | d S )NF)existsFileExistsErrorr   )r   rK   exist_okr%   r%   r&   makedirsq  s    zWebHDFS.makedirsc                 K   s   | j dd||d d S )NZRENAMEr   )r6   rK   Zdestinationr   )r   Zpath1Zpath2r"   r%   r%   r&   mvv  s    z
WebHDFS.mvc                 K   s   | j dd||rdndd d S )NDELETEdeletetruefalse)r6   rK   	recursiver   )r   rK   r   r"   r%   r%   r&   rmy  s    
z
WebHDFS.rmc                 K   s   |  | d S r'   )r   r   r%   r%   r&   rm_file  s    zWebHDFS.rm_filec                 K   s   |  |}d| |dtd g}z4|  |d}t|| W 5 Q R X | || W n4 tk
r   t	t
 | | W 5 Q R X  Y nX W 5 Q R X d S )Nrk   z.tmp.   wb)openjoinZ_parentsecretsZ	token_hexshutilcopyfileobjr   BaseExceptionr   rH   r   )r   ZlpathZrpathr"   ZlstreamZ	tmp_fnameZrstreamr%   r%   r&   cp_file  s     
zWebHDFS.cp_filec                 C   sH   | j rt| j r|  |}n(| j rD| j  D ]\}}|||d}q,|S )N   )r   callableitemsreplace)r   r{   kvr%   r%   r&   r=     s    zWebHDFS._apply_proxy)r   FNNNNNNFNT)r2   NNT)rS   NTNN)F)N)NN)F)F)'__name__
__module____qualname____doc__strtempfile
gettempdirrV   rd   r   propertyr)   r   rR   r\   staticmethodrb   classmethodr<   rg   ra   rv   rx   r}   r   r   r   r   r   r   r   r   r   r   r   r   r   r=   __classcell__r%   r%   r#   r&   r
      sb              e

$     
-





	

r
   c                       sJ   e Zd ZdZ fddZdddZdd Zd	d
 Zdd Zdd Z	  Z
S )r[   z"A file living in HDFS over webHDFSc                    s   t  j||f| | }|dd d kr6|dd  |dd d krR|dd  |dd| _|d}|dddkr| j| _tj	|t
t | _d S )NrY   rX   i  rV   rW   F)r   r   r>   r2   rf   rY   rK   targetosr   r   uuiduuid4)r   fsrK   r"   rV   r#   r%   r&   r     s    
zWebHDFile.__init__Fc                 C   s,   | j jj| j| j ddid}|  dS )zWrite one part of a multi-block file upload

        Parameters
        ==========
        final: bool
            This is the last block, so should complete file, if
            self.autocommit is True.
        content-typeapplication/octet-stream)r8   rz   T)r   r.   postr{   buffergetvaluerJ   )r   finalrN   r%   r%   r&   _upload_chunk  s    	zWebHDFile._upload_chunkc                 C   s   | j  }d| jkrd\}}nd\}}d|d< | jj||| jfddi|}| j|jd }d	| jkr| jjj	|d
did}|
  | jjdd| jfddi|}| j|jd | _dS )zCreate remote file/uploada)APPENDPOST)ZCREATEPUTr   	overwriterL   Fry   wr   r   )rz   r   r   N)r"   r>   rT   r   rR   rK   r=   rz   r.   r   rJ   r{   )r   r"   r5   r6   rN   r{   r|   r%   r%   r&   _initiate_upload  s    



 zWebHDFile._initiate_uploadc                 C   s   t |d}t| j|}||ks(|| jkr,dS | jjd| j||| dd}|  d|jkr|jd }| jj	| j
|}|jS |jS d S )Nr   rn   ZOPENF)rK   offsetr^   rL   ry   )maxminr_   r   rR   rK   rJ   rz   r.   r2   r=   content)r   startendrN   r{   r|   r%   r%   r&   _fetch_range  s"    
    

zWebHDFile._fetch_rangec                 C   s   | j | j| j d S r'   )r   r   rK   r   r(   r%   r%   r&   commit  s    zWebHDFile.commitc                 C   s   | j | j d S r'   )r   r   rK   r(   r%   r%   r&   discard  s    zWebHDFile.discard)F)r   r   r   r   r   r   r   r   r   r   r   r%   r%   r#   r&   r[     s   
r[   )loggingr   r   r   r   r   
contextlibr   urllib.parser   r,   specr   r   utilsr   r   	getLoggerrA   r
   r[   r%   r%   r%   r&   <module>   s    
   