
    5h                       d Z ddlm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ddl	m
Z
mZ ddlmZmZmZ ddlmZ ddlmZ dd	lmZ erdd
lmZ  ede
          Zd Zd(dZed)d            Zed*d            Zd+dZ	 	 	 	 d,d-d"Zd.d/d'ZdS )0zdistutils.spawn

Provides the 'spawn()' function, a front-end to various platform-
specific functions for launching another program in a sub-process.
    )annotationsN)MappingMutableSequence)TYPE_CHECKINGTypeVaroverload   )logDEBUG)DistutilsExecError)_ENV	_MappingT)boundc                $    t           r| n| d         S )zE
    Render a subprocess command differently depending on DEBUG.
    r   r   )cmds    ;lib/python3.11/site-packages/setuptools/_distutils/spawn.py_debugr      s     #33SV#    env_MappingT | Nonereturn'_MappingT | dict[str, str | int] | Nonec                    t          j                    dk    r| S ddlm}m}  |            }|r||ini }i t          |           |S )NDarwinr	   )MACOSX_VERSION_VARget_macosx_target_ver)platformsystemutilr   r   _resolve)r   r   r   
target_verupdates        r   _inject_macos_verr$   $   sk    H$$
????????&&((J1;C *--F&hsmm&v&&r   Noneos._Environ[str]c                    d S N r   s    r   r!   r!   /   s    -0Sr   c                    d S r(   r)   r*   s    r   r!   r!   1   s    +.3r   _MappingT | os._Environ[str]c                "    | t           j        n| S r(   )osenvironr*   s    r   r!   r!   3   s    2::#-r   TFr   /MutableSequence[bytes | str | os.PathLike[str]]search_pathboolverbosedry_run_ENV | Nonec                   t          j        t          j        |                      |rdS |r!t	          j        | d                   }||| d<   	 t          j        | t          |                     dS # t          $ r3}t          dt          |           d|j        d                    |d}~wt          j        $ r-}t          dt          |           d|j                   |d}~ww xY w)a  Run another program, specified as a command list 'cmd', in a new process.

    'cmd' is just the argument list for the new process, ie.
    cmd[0] is the program to run and cmd[1:] are the rest of its arguments.
    There is no way to run a program with a name different from that of its
    executable.

    If 'search_path' is true (the default), the system's executable
    search path will be used to find the program; otherwise, cmd[0]
    must be the exact path to the executable.  If 'dry_run' is true,
    the command will not actually be run.

    Raise DistutilsExecError if running the program fails in any way; just
    return on success.
    Nr   r*   zcommand z	 failed: z failed with exit code )r
   info
subprocesslist2cmdlineshutilwhich
check_callr$   OSErrorr   r   argsCalledProcessError
returncode)r   r1   r3   r4   r   
executableexcerrs           r   spawnrE   7   s   , HZ$S))***   \#a&))
!CF	c'8'='=>>>>>>    =vc{{==sx|==
 
	 (    Mvc{{MMS^MM
 
	s$   #A4 4
C+>.B,,C+>(C&&C+rB   strpath
str | Nonec                   t          j        dt          d           t          j                            |           \  }}t          j        dk    r|dk    r| dz   } t          j                            |           r| S |[t          j	        
                    dd          }|9	 t          j        d          }n## t          t          f$ r t          j        }Y nw xY w|sdS |                    t          j                  }|D ]E}t          j                            ||           }t          j                            |          r|c S FdS )	zTries to find 'executable' in the directories listed in 'path'.

    A string listing directories separated by 'os.pathsep'; defaults to
    os.environ['PATH'].  Returns the complete filename or None if not found.
    z+Use shutil.which instead of find_executable   )
stacklevelwin32z.exeNPATHCS_PATH)warningswarnDeprecationWarningr.   rG   splitextsysr   isfiler/   getconfstrAttributeError
ValueErrordefpathsplitpathsepjoin)rB   rG   _extpathspfs          r   find_executablerb   b   sM    M57IVW    Wj))FAscVmm&(
	w~~j!! |z~~fd++<"z),,"J/ " " "z"
  tJJrz""E  GLLJ''7>>! 	HHH	 4s    B5 5CC)r   r   r   r   )r   r%   r   r&   )r   r   r   r   )r   r   r   r,   )TFFN)r   r0   r1   r2   r3   r2   r4   r2   r   r5   r   r%   r(   )rB   rF   rG   rH   r   rH   )__doc__
__future__r   r.   r   r;   r9   rS   rO   collections.abcr   r   typingr   r   r   _logr
   debugr   errorsr   r   r   r   r$   r!   rE   rb   r)   r   r   <module>rj      s    # " " " " " 				       



  4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3             & & & & & &   GKw///	$ $ $' ' ' ' 
 0 0 0 
 0	 . . . 
 .. . . . ( ( ( ( (V$ $ $ $ $ $ $r   