U
    %%eé   ã                   @   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Zejdk rPd dlm	Z	 ne
Z	dgZdd„ Zdd„ Ze	jZd	d
„ ZG dd„ dejƒZG dd„ deƒZdd„ ZG dd„ dƒZdS )é    N)é   é   )ÚOrderedDictÚPathc                 C   s   t  t| ƒdd¡S )a2  
    Given a path with elements separated by
    posixpath.sep, generate all parents of that path.

    >>> list(_parents('b/d'))
    ['b']
    >>> list(_parents('/b/d/'))
    ['/b']
    >>> list(_parents('b/d/f/'))
    ['b/d', 'b']
    >>> list(_parents('b'))
    []
    >>> list(_parents(''))
    []
    é   N)Ú	itertoolsÚisliceÚ	_ancestry©Úpath© r   úY/var/www/html/Darija-Ai-API/env/lib/python3.8/site-packages/pkg_resources/_vendor/zipp.pyÚ_parents   s    r   c                 c   s4   |   tj¡} | r0| tjkr0| V  t | ¡\} }qdS )aR  
    Given a path with elements separated by
    posixpath.sep, generate all elements of that path

    >>> list(_ancestry('b/d'))
    ['b/d', 'b']
    >>> list(_ancestry('/b/d/'))
    ['/b/d', '/b']
    >>> list(_ancestry('b/d/f/'))
    ['b/d/f', 'b/d', 'b']
    >>> list(_ancestry('b'))
    ['b']
    >>> list(_ancestry(''))
    []
    N)ÚrstripÚ	posixpathÚsepÚsplit)r   Útailr   r   r   r	   %   s    r	   c                 C   s   t  t|ƒj| ¡S )zZ
    Return items in minuend not in subtrahend, retaining order
    with O(1) lookup.
    )r   ÚfilterfalseÚsetÚ__contains__)ÚminuendÚ
subtrahendr   r   r   Ú_difference?   s    r   c                       sH   e Zd ZdZedd„ ƒZ‡ fdd„Zdd„ Zdd	„ Ze	d
d„ ƒZ
‡  ZS )ÚCompleteDirszk
    A ZipFile subclass that ensures that implied directories
    are always included in the namelist.
    c                 C   s.   t j tt| ƒ¡}dd„ |D ƒ}tt|| ƒƒS )Nc                 s   s   | ]}|t j V  qd S ©N)r   r   )Ú.0Úpr   r   r   Ú	<genexpr>P   s     z-CompleteDirs._implied_dirs.<locals>.<genexpr>)r   ÚchainÚfrom_iterableÚmapr   Ú_deduper   )ÚnamesÚparentsÚas_dirsr   r   r   Ú_implied_dirsM   s    zCompleteDirs._implied_dirsc                    s    t t| ƒ ¡ }|t|  |¡ƒ S r   )Úsuperr   ÚnamelistÚlistr&   )Úselfr#   ©Ú	__class__r   r   r(   S   s    zCompleteDirs.namelistc                 C   s   t |  ¡ ƒS r   )r   r(   ©r*   r   r   r   Ú	_name_setW   s    zCompleteDirs._name_setc                 C   s,   |   ¡ }|d }||ko||k}|r(|S |S )zx
        If the name represents a directory, return that name
        as a directory (with the trailing slash).
        ú/)r.   )r*   Únamer#   ÚdirnameÚ	dir_matchr   r   r   Úresolve_dirZ   s    zCompleteDirs.resolve_dirc                 C   s>   t |tƒr|S t |tjƒs&| t|ƒƒS d|jkr4t} | |_|S )zl
        Given a source (filename or zipfile), return an
        appropriate CompleteDirs subclass.
        Úr)Ú
isinstancer   ÚzipfileÚZipFileÚ_pathlib_compatÚmoder,   )ÚclsÚsourcer   r   r   Úmaked   s    

zCompleteDirs.make)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ústaticmethodr&   r(   r.   r3   Úclassmethodr<   Ú__classcell__r   r   r+   r   r   G   s   

r   c                       s,   e Zd ZdZ‡ fdd„Z‡ fdd„Z‡  ZS )Ú
FastLookupzV
    ZipFile subclass to ensure implicit
    dirs exist and are resolved rapidly.
    c              
      s:   t  t¡ | jW  5 Q R £ S Q R X tt| ƒ ¡ | _| jS r   )Ú
contextlibÚsuppressÚAttributeErrorÚ_FastLookup__namesr'   rD   r(   r-   r+   r   r   r(   ~   s    zFastLookup.namelistc              
      s:   t  t¡ | jW  5 Q R £ S Q R X tt| ƒ ¡ | _| jS r   )rE   rF   rG   Ú_FastLookup__lookupr'   rD   r.   r-   r+   r   r   r.   „   s    zFastLookup._name_set)r=   r>   r?   r@   r(   r.   rC   r   r   r+   r   rD   x   s   rD   c                 C   s,   z
|   ¡ W S  tk
r&   t| ƒ Y S X dS )zi
    For path-like objects, convert to a filename for compatibility
    on Python 3.6.1 and earlier.
    N)Ú
__fspath__rG   Ústrr
   r   r   r   r8   ‹   s    
r8   c                   @   sÒ   e Zd ZdZdZd-dd„Zd.ddœd	d
„Zedd„ ƒZedd„ ƒZ	edd„ ƒZ
edd„ ƒZedd„ ƒZdd„ Zdd„ Zdd„ Zdd„ Zdd„ Zdd „ Zd!d"„ Zd#d$„ Zd%d&„ Zd'd(„ Zd)d*„ ZeZed+d,„ ƒZdS )/r   u4  
    A pathlib-compatible interface for zip files.

    Consider a zip file with this structure::

        .
        â”œâ”€â”€ a.txt
        â””â”€â”€ b
            â”œâ”€â”€ c.txt
            â””â”€â”€ d
                â””â”€â”€ e.txt

    >>> data = io.BytesIO()
    >>> zf = zipfile.ZipFile(data, 'w')
    >>> zf.writestr('a.txt', 'content of a')
    >>> zf.writestr('b/c.txt', 'content of c')
    >>> zf.writestr('b/d/e.txt', 'content of e')
    >>> zf.filename = 'mem/abcde.zip'

    Path accepts the zipfile object itself or a filename

    >>> root = Path(zf)

    From there, several path operations are available.

    Directory iteration (including the zip file itself):

    >>> a, b = root.iterdir()
    >>> a
    Path('mem/abcde.zip', 'a.txt')
    >>> b
    Path('mem/abcde.zip', 'b/')

    name property:

    >>> b.name
    'b'

    join with divide operator:

    >>> c = b / 'c.txt'
    >>> c
    Path('mem/abcde.zip', 'b/c.txt')
    >>> c.name
    'c.txt'

    Read text:

    >>> c.read_text()
    'content of c'

    existence:

    >>> c.exists()
    True
    >>> (b / 'missing.txt').exists()
    False

    Coercion to string:

    >>> import os
    >>> str(c).replace(os.sep, posixpath.sep)
    'mem/abcde.zip/b/c.txt'

    At the root, ``name``, ``filename``, and ``parent``
    resolve to the zipfile. Note these attributes are not
    valid and will raise a ``ValueError`` if the zipfile
    has no filename.

    >>> root.name
    'abcde.zip'
    >>> str(root.filename).replace(os.sep, posixpath.sep)
    'mem/abcde.zip'
    >>> str(root.parent)
    'mem'
    z>{self.__class__.__name__}({self.root.filename!r}, {self.at!r})Ú c                 C   s   t  |¡| _|| _dS )aX  
        Construct a Path from a ZipFile or filename.

        Note: When the source is an existing ZipFile object,
        its type (__class__) will be mutated to a
        specialized type. If the caller wishes to retain the
        original type, the caller should either create a
        separate ZipFile object or pass a filename.
        N)rD   r<   ÚrootÚat)r*   rM   rN   r   r   r   Ú__init__æ   s    
zPath.__init__r4   N©Úpwdc                O   sr   |   ¡ rt| ƒ‚|d }|  ¡ s0|dkr0t| ƒ‚| jj| j||d}d|kr`|sT|r\tdƒ‚|S tj	|f|ž|ŽS )zª
        Open this entry as text or binary following the semantics
        of ``pathlib.Path.open()`` by passing arguments through
        to io.TextIOWrapper().
        r   r4   rP   Úbz*encoding args invalid for binary operation)
Úis_dirÚIsADirectoryErrorÚexistsÚFileNotFoundErrorrM   ÚopenrN   Ú
ValueErrorÚioÚTextIOWrapper)r*   r9   rQ   ÚargsÚkwargsÚzip_modeÚstreamr   r   r   rW   ó   s    z	Path.openc                 C   s   t  | j¡jp| jjS r   )Úpathlibr   rN   r0   Úfilenamer-   r   r   r   r0     s    z	Path.namec                 C   s   t  | j¡jp| jjS r   )r_   r   rN   Úsuffixr`   r-   r   r   r   ra   	  s    zPath.suffixc                 C   s   t  | j¡jp| jjS r   )r_   r   rN   Úsuffixesr`   r-   r   r   r   rb     s    zPath.suffixesc                 C   s   t  | j¡jp| jjS r   )r_   r   rN   Ústemr`   r-   r   r   r   rc     s    z	Path.stemc                 C   s   t  | jj¡ | j¡S r   )r_   r   rM   r`   ÚjoinpathrN   r-   r   r   r   r`     s    zPath.filenamec              
   O   s0   | j d|ž|Ž}| ¡ W  5 Q R £ S Q R X d S )Nr4   )r4   ©rW   Úread)r*   r[   r\   Ústrmr   r   r   Ú	read_text  s    zPath.read_textc              
   C   s*   |   d¡}| ¡ W  5 Q R £ S Q R X d S )NÚrbre   )r*   rg   r   r   r   Ú
read_bytes  s    zPath.read_bytesc                 C   s   t  |j d¡¡| j d¡kS ©Nr/   )r   r1   rN   r   )r*   r   r   r   r   Ú	_is_child!  s    zPath._is_childc                 C   s   |   | j|¡S r   )r,   rM   )r*   rN   r   r   r   Ú_next$  s    z
Path._nextc                 C   s   | j  p| j  d¡S rk   )rN   Úendswithr-   r   r   r   rS   '  s    zPath.is_dirc                 C   s   |   ¡ o|  ¡  S r   )rU   rS   r-   r   r   r   Úis_file*  s    zPath.is_filec                 C   s   | j | j ¡ kS r   )rN   rM   r.   r-   r   r   r   rU   -  s    zPath.existsc                 C   s.   |   ¡ stdƒ‚t| j| j ¡ ƒ}t| j|ƒS )NzCan't listdir a file)rS   rX   r!   rm   rM   r(   Úfilterrl   )r*   Úsubsr   r   r   Úiterdir0  s    zPath.iterdirc                 C   s   t  | jj| j¡S r   )r   ÚjoinrM   r`   rN   r-   r   r   r   Ú__str__6  s    zPath.__str__c                 C   s   | j j| dS )Nr-   )Ú_Path__reprÚformatr-   r   r   r   Ú__repr__9  s    zPath.__repr__c                 G   s*   t j| jftt|ƒžŽ }|  | j |¡¡S r   )r   rs   rN   r!   r8   rm   rM   r3   )r*   ÚotherÚnextr   r   r   rd   <  s    zPath.joinpathc                 C   s6   | j s| jjS t | j  d¡¡}|r,|d7 }|  |¡S rk   )rN   r`   Úparentr   r1   r   rm   )r*   Ú	parent_atr   r   r   rz   B  s    zPath.parent)rL   )r4   )r=   r>   r?   r@   ru   rO   rW   Úpropertyr0   ra   rb   rc   r`   rh   rj   rl   rm   rS   ro   rU   rr   rt   rw   rd   Ú__truediv__rz   r   r   r   r   r   –   s8   M





)rY   r   r6   r   rE   Úsysr_   Úversion_infoÚcollectionsr   ÚdictÚ__all__r   r	   Úfromkeysr"   r   r7   r   rD   r8   r   r   r   r   r   Ú<module>   s$   
1