a
    0f                     @   s   d dl Z d dlZd dlmZ d dlmZmZ d dlmZ d dl	m
Z
mZ d dlmZmZ d dlmZ d dlmZ eeZG d	d
 d
eZdS )    N)Values)AnyList)Command)ERRORSUCCESS)CommandErrorPipError)
filesystem)	getLoggerc                   @   s  e Zd ZdZdZdZddddZeee	 e
dd	d
Zeee ddddZeee ddddZeee ddddZee	 ddddZee	 ddddZeee ddddZeee ddddZee	e	dddZeee	 dddZee	ee	 d d!d"ZdS )#CacheCommandaw  
    Inspect and manage pip's wheel cache.

    Subcommands:

    - dir: Show the cache directory.
    - info: Show information about the cache.
    - list: List filenames of packages stored in the cache.
    - remove: Remove one or more package from the cache.
    - purge: Remove all items from the cache.

    ``<pattern>`` can be a glob expression or a package name.
    Tz
        %prog dir
        %prog info
        %prog list [<pattern>] [--format=[human, abspath]]
        %prog remove <pattern>
        %prog purge
    N)returnc                 C   s,   | j jddddddd | jd| j  d S )	Nz--formatstorelist_formathuman)r   abspathz:Select the output format among: human (default) or abspath)actiondestdefaultchoiceshelpr   )cmd_opts
add_optionparserinsert_option_group)self r   U/var/www/ai-form-bot/venv/lib/python3.9/site-packages/pip/_internal/commands/cache.pyadd_options'   s    	zCacheCommand.add_options)optionsargsr   c              
   C   s   | j | j| j| j| jd}|js.td tS |r>|d |vrXtdd	t
| tS |d }z|| ||dd   W n8 ty } z t|jd  tW  Y d }~S d }~0 0 tS )N)dirinfolistremovepurgez<pip cache commands can not function since cache is disabled.r   zNeed an action (%s) to perform.z,    )get_cache_dirget_cache_infolist_cache_itemsremove_cache_itemspurge_cache	cache_dirloggererrorr   joinsortedr	   r    r   )r   r   r    handlersr   er   r   r   run3   s,    
zCacheCommand.runc                 C   s   |rt dt|j d S )NToo many arguments)r   r-   r"   r,   r   r   r    r   r   r   r'   S   s    zCacheCommand.get_cache_dirc              	   C   s   |rt dt| |}t| |d}| |d}| |d}| |d}tt|t| }t|}	t	
dj|||||||	d }
t|
 d S )Nr4   *http-v2httpwheelsa  
                    Package index page cache location (pip v23.3+): {http_cache_location}
                    Package index page cache location (older pips): {old_http_cache_location}
                    Package index page cache size: {http_cache_size}
                    Number of HTTP files: {num_http_files}
                    Locally built wheels location: {wheels_cache_location}
                    Locally built wheels size: {wheels_cache_size}
                    Number of locally built wheels: {package_count}
                )http_cache_locationold_http_cache_locationhttp_cache_sizenum_http_fileswheels_cache_locationZpackage_countwheels_cache_size)r   len_find_http_files_find_wheels
_cache_dirr
   format_sizedirectory_sizeformat_directory_sizetextwrapdedentformatstripr-   r"   )r   r   r    r=   Znum_packagesr:   r;   r>   r<   r?   messager   r   r   r(   Y   s4    
zCacheCommand.get_cache_infoc                 C   sV   t |dkrtd|r"|d }nd}| ||}|jdkrH| | n
| | d S )Nr&   r4   r   r6   r   )r@   r   rB   r   format_for_humanformat_for_abspath)r   r   r    patternfilesr   r   r   r)      s    

zCacheCommand.list_cache_items)rO   r   c                 C   sp   |st d d S g }|D ]2}tj|}t|}|d| d| d qt d t dt	| d S )NzNo locally built wheels cached.z - z ()zCache contents:

)
r-   r"   ospathbasenamer
   format_file_sizeappendr/   r0   )r   rO   resultsfilenamewheelsizer   r   r   rL      s    


zCacheCommand.format_for_humanc                 C   s   |rt dt| d S )NrQ   )r-   r"   r/   r0   )r   rO   r   r   r   rM      s    zCacheCommand.format_for_abspathc                 C   s   t |dkrtd|s td| ||d }d}|d dkrP|| |7 }n|d|d  d7 }|srt| |D ]}t| td	| qvt	d
t | d S )Nr&   r4   zPlease provide a patternr   zNo matching packagesr6   z for pattern ""z
Removed %szFiles removed: %s)
r@   r   rB   rA   r-   warningrR   unlinkverboser"   )r   r   r    rO   Zno_matching_msgrX   r   r   r   r*      s    

zCacheCommand.remove_cache_itemsc                 C   s   |rt d| |dgS )Nr4   r6   )r   r*   r5   r   r   r   r+      s    zCacheCommand.purge_cache)r   subdirr   c                 C   s   t j|j|S )N)rR   rS   r/   r,   )r   r   r_   r   r   r   rC      s    zCacheCommand._cache_dir)r   r   c                 C   s0   |  |d}|  |d}t|dt|d S )Nr8   r7   r6   rC   r
   
find_files)r   r   Zold_http_dirZnew_http_dirr   r   r   rA      s
    zCacheCommand._find_http_files)r   rN   r   c                 C   s,   |  |d}|d|v rdnd }t||S )Nr9   -z*.whlz-*.whlr`   )r   r   rN   	wheel_dirr   r   r   rB      s    zCacheCommand._find_wheels)__name__
__module____qualname____doc__ignore_require_venvusager   r   r   strintr3   r   r'   r(   r)   rL   rM   r*   r+   rC   rA   rB   r   r   r   r   r      s    *r   )rR   rG   optparser   typingr   r   pip._internal.cli.base_commandr   pip._internal.cli.status_codesr   r   pip._internal.exceptionsr   r	   Zpip._internal.utilsr
   pip._internal.utils.loggingr   rd   r-   r   r   r   r   r   <module>   s   