o
    JAf£  ã                   @   sÒ   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mZ d dl	m
Z
 d dlmZmZ d dlmZ d dlmZ d d	lm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 e  e¡Z G dd„ deƒZ!dS )é    N)ÚValues)ÚList)Ú
WheelCache)Ú
cmdoptions)ÚRequirementCommandÚwith_cleanup)ÚSUCCESS)ÚCommandError)Úget_build_tracker)ÚInstallRequirement)Ú
ensure_dirÚnormalize_path)ÚTempDirectory)ÚbuildÚshould_build_for_wheel_commandc                   @   s<   e Zd ZdZdZddd„Zededee	 de
fd	d
„ƒZdS )ÚWheelCommanda‘  
    Build Wheel archives for your requirements and dependencies.

    Wheel is a built-package format, and offers the advantage of not
    recompiling your software during every install. For more details, see the
    wheel docs: https://wheel.readthedocs.io/en/latest/

    'pip wheel' uses the build system interface as described here:
    https://pip.pypa.io/en/stable/reference/build-system/

    zõ
      %prog [options] <requirement specifier> ...
      %prog [options] -r <requirements file> ...
      %prog [options] [-e] <vcs project url> ...
      %prog [options] [-e] <local project path> ...
      %prog [options] <archive url/path> ...ÚreturnNc                 C   s–  | j jddddtjdd | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t 	¡ ¡ | j  t 
¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j jddd	d
dd | j  t ¡ ¡ | j  t ¡ ¡ | j  t ¡ ¡ | j jdd	d
dd | j  t ¡ ¡ t tj| j¡}| j d|¡ | j d| j ¡ d S )Nz-wz--wheel-dirÚ	wheel_dirÚdirzLBuild wheels into <dir>, where the default is the current working directory.)ÚdestÚmetavarÚdefaultÚhelpz--no-verifyÚ	no_verifyÚ
store_trueFz%Don't verify if built wheel is valid.)r   Úactionr   r   z--prezYInclude pre-release and development versions. By default, pip only finds stable versions.)r   r   r   r   )Úcmd_optsÚ
add_optionÚosÚcurdirr   Ú	no_binaryÚonly_binaryÚprefer_binaryÚno_build_isolationÚ
use_pep517Úno_use_pep517Úcheck_build_depsÚconstraintsÚeditableÚrequirementsÚsrcÚignore_requires_pythonÚno_depsÚprogress_barÚconfig_settingsÚbuild_optionsÚglobal_optionsÚrequire_hashesÚmake_option_groupÚindex_groupÚparserÚinsert_option_group)ÚselfÚ
index_opts© r8   úA/usr/lib/python3.10/site-packages/pip/_internal/commands/wheel.pyÚadd_options)   sZ   ùûû
þzWheelCommand.add_optionsÚoptionsÚargsc                 C   s°  t  |¡ |  |¡}|  ||¡}t|j|jƒ}t|jƒ|_t	|jƒ |  
tƒ ¡}t|j ddd}|  ||||¡}| j||||||jd| jd}	| j|	||||j|jd}
|  |¡ |
j|dd}g }|j ¡ D ]}|jrs|	 |¡ qht|ƒr|| |¡ qht|||j |jp‡g |jp‹g d\}}|D ]9}|j r›|j jsJ ‚|j!s¢J ‚z
t" #|j!|j¡ W q’ t$yË } zt% &d	|j'|¡ | |¡ W Y d }~q’d }~ww t(|ƒd
krÖt)dƒ‚t*S )NÚwheelT)ÚdeleteÚkindÚglobally_managedF)Útemp_build_dirr;   Úbuild_trackerÚsessionÚfinderÚdownload_dirÚuse_user_siteÚ	verbosity)ÚpreparerrD   r;   Úwheel_cacher+   r$   )Úcheck_supported_wheels)rI   Úverifyr/   r0   z Building wheel for %s failed: %sr   z"Failed to build one or more wheels)+r   Úcheck_install_build_globalÚget_default_sessionÚ_build_package_finderr   Ú	cache_dirÚformat_controlr   r   r   Úenter_contextr
   r   Úno_cleanÚget_requirementsÚmake_requirement_preparerrG   Úmake_resolverr+   r$   Útrace_basic_infoÚresolver)   ÚvaluesÚis_wheelÚsave_linked_requirementr   Úappendr   r   r/   r0   ÚlinkÚlocal_file_pathÚshutilÚcopyÚOSErrorÚloggerÚwarningÚnameÚlenr	   r   )r6   r;   r<   rC   rD   rI   rB   Ú	directoryÚreqsrH   ÚresolverÚrequirement_setÚreqs_to_buildÚreqÚbuild_successesÚbuild_failuresÚer8   r8   r9   Úrune   s€   


ýøú
	
€
û
ý€úzWheelCommand.run)r   N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Úusager:   r   r   r   ÚstrÚintrn   r8   r8   r8   r9   r      s    
< r   )"Úloggingr   r^   Úoptparser   Útypingr   Úpip._internal.cacher   Zpip._internal.clir   Úpip._internal.cli.req_commandr   r   Úpip._internal.cli.status_codesr   Úpip._internal.exceptionsr	   Ú,pip._internal.operations.build.build_trackerr
   Zpip._internal.req.req_installr   Úpip._internal.utils.miscr   r   Úpip._internal.utils.temp_dirr   Úpip._internal.wheel_builderr   r   Ú	getLoggerro   ra   r   r8   r8   r8   r9   Ú<module>   s"    
