a oeF@s8dZddlZddlZddlZddlZddlZddlZddlZddl Z ddl m Z m Z ddl mZddlmZddlmZdd Zd d Zejd krdad ZddZddZddZddZddZddZe ddZddZddZ d/d!d"Z!da"a#a$d#d$Z%d%d&Z&d0d'd(Z'd)d*Z(d1d+d,Z)d-d.Z*dS)2zudistutils.util Miscellaneous utility functions -- anything that doesn't fit into one of the other *util.py modules. N)DistutilsPlatformErrorDistutilsByteCompileError)newer)spawn)logcCstjdkr8tjdkr8dtjvr&dSdtjvr8dStjdkrtjdkrttd rt\}}}}}|d d d krd dlm }||||St S)z Return a string that identifies the current platform. Use this function to distinguish platform-specific build directories and platform-specific built distributions. )ntz(arm) win-arm32z(arm64) win-arm64)r posixunameNrZaixr) aix_platform) sys version_infoosnameversionlowerhasattrrZ py38compatr sysconfig get_platform)Zosnamehostreleasermachinerr;C:\Program Files\Certbot\pkgs\setuptools\_distutils\util.pyget_host_platforms     rcCs:tjdkr4ddddd}tjd}||p2tStS)Nr win32z win-amd64r r )Zx86Zx64ZarmZarm64ZVSCMD_ARG_TGT_ARCH)rrenvirongetr)ZTARGET_TO_PLATtargetrrrr3s  rdarwinZMACOSX_DEPLOYMENT_TARGETcCsdadS)zFor testing only. Do not call.N)_syscfg_macosx_verrrrr_clear_cached_macosx_verEsr&cCs.tdur*ddlm}|tp d}|r*|atS)zGet the version of macOS latched in the Python interpreter configuration. Returns the version as a string or None if can't obtain one. Cached.Nr)r)r%Z distutilsrZget_config_varMACOSX_VERSION_VAR)rZverrrr!get_macosx_target_ver_from_syscfgKs  r)cCs^t}tjt}|rZ|rVt|ddgkrVt|ddgkrVdtd||f}t||S|S)aReturn the version of macOS for which we are building. The target version defaults to the version in sysconfig latched at time the Python interpreter was built, unless overridden by an environment variable. If neither source has a value, then None is returned r$zE mismatch: now "%s" but "%s" during configure; must use 10.3 or later)r)rr!r"r( split_versionr)Z syscfg_verZenv_verZmy_msgrrrget_macosx_target_verXs  r-cCsdd|dDS)zEConvert a dot-separated string into a list of numbers for comparisonscSsg|] }t|qSr)int).0nrrr zz!split_version...)split)srrrr,xsr,cCsztjdkr|S|s|S|ddkr.td||ddkrFtd||d}d|vrd|dqP|sntjStjj|S)aReturn 'pathname' as a name that will work on the native filesystem, i.e. split it on '/' and put it back together again using the current directory separator. Needed because filenames in the setup script are always supplied in Unix style, and have to be converted to the local convention before we can actually use them in the filesystem. Raises ValueError on non-Unix-ish systems if 'pathname' either starts or ends with a slash. /rzpath '%s' cannot be absolutezpath '%s' cannot end with '/'r3)rsep ValueErrorr4removecurdirpathjoin)pathnamepathsrrr convert_path}s       r@cCstjdkrdriver<rrr change_roots     rGc CsjtjdkrPdtjvrPz$ddl}|tdtjd<WnttfyNYn0dtjvrfttjd<dS)aLEnsure that 'os.environ' has all the environment variables we guarantee that users can use in config files, command-line options, etc. Currently this includes: HOME - user's home directory (Unix only) PLAT - description of the current platform, including hardware and OS (see 'get_platform()') rHOMErNZPLAT) rrr!pwdgetpwuidgetuid ImportErrorKeyErrorr)rJrrr check_environs  rOc Csptttj}|dd|Dzt||WStyj}zt d|WYd}~n d}~00dS)a Perform variable substitution on 'string'. Variables are indicated by format-style braces ("{var}"). Variable is substituted by the value found in the 'local_vars' dictionary or in 'os.environ' if it's not in 'local_vars'. 'os.environ' is first checked/augmented to guarantee that it contains certain values: see 'check_environ()'. Raise ValueError for any variables not found in either 'local_vars' or 'os.environ'. css|]\}}|t|fVqdSNstr)r/rvaluerrr r2zsubst_vars..zinvalid variable N) rOdictrr!updateitems _subst_compat format_maprNr9)r5Z local_varslookupvarrrr subst_varss  r\cCs6dd}td||}||kr2ddl}|dt|S)zb Replace shell/Perl-style variable substitution with format-style. For compatibility. cSsd|ddS)N{r})group)matchrrr_substsz_subst_compat.._substz\$([a-zA-Z_][a-zA-Z_0-9]*)rNz-shell/Perl-style substitutions are deprecated)resubwarningswarnDeprecationWarning)r5rareplrdrrrrXsrXerror: cCs |t|SrPrQ)excprefixrrrgrok_environment_errorsrkcCs(tdtjatdatdadS)Nz [^\\\'\"%s ]*z'(?:[^'\\]|\\.)*'z"(?:[^"\\]|\\.)*")rbcompilestring whitespace _wordchars_re _squote_re _dquote_rerrrr _init_regexs rrcCstdurt|}g}d}|rt||}|}|t|krZ||d|q||tjvr||d|||d }d}n||dkr|d|||dd}|d}n||dkrt ||}n*||dkrt ||}nt d|||dur t d|||\}}|d|||d|d||d}|d }|t|kr||qq|S) aSplit a string up according to Unix shell-like rules for quotes and backslashes. In short: words are delimited by spaces, as long as those spaces are not escaped by a backslash, or inside a quoted string. Single and double quotes are equivalent, and the quote characters can be backslash-escaped. The backslash is stripped from any two-character escape sequence, leaving only the escaped character. The quote characters are stripped from any quoted string. Returns a list of words. NrrArrB"z!this can't happen (bad char '%c')z"bad string (mismatched %s quotes?))rorrstripr`endlenappendrmrnlstriprprq RuntimeErrorr9span)r5wordsposmrvZbegrrr split_quoteds@        ,   rcCsP|dur6d|j|}|dddkr6|ddd}t||sL||dS)aPerform some action that affects the outside world (eg. by writing to the filesystem). Such actions are special because they are disabled by the 'dry_run' flag. This method takes care of all that bureaucracy for you; all you have to do is supply the function to call and an argument tuple for it (to embody the "external action" being performed), and an optional message to print. Nz{}{!r}z,)r))format__name__rinfo)funcargsmsgverbosedry_runrrrexecuteAs  rcCs2|}|dvrdS|dvr dStd|dS)zConvert a string representation of truth to true (1) or false (0). True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if 'val' is anything else. )yZyesttrueZon1r)r0nofZfalseZoff0rzinvalid truth value {!r}N)rr9r)valrrr strtoboolTs rc Cs`tjrtd|dur"do |dk}|sLzddlm}|d\} } Wn,typddlm} d| d} } Yn0td| |s| durt | d } n t | d } | L| d | d tt|d | d |||||fWdn1s0Ytjg} | t| | t| |dtt j| fd| |dnddlm}|D]}|dddkrvq\|dkr|dkrdn|}tjj||d}n tj|}|}|r|dt||krtd||f|t|d}|rt j ||}t j |}|r\|s(t!||rJtd|||sX||||nt"d||q\dS)a~Byte-compile a collection of Python source files to .pyc files in a __pycache__ subdirectory. 'py_files' is a list of files to compile; any files that don't end in ".py" are silently skipped. 'optimize' must be one of the following: 0 - don't optimize 1 - normal optimization (like "python -O") 2 - extra optimization (like "python -OO") If 'force' is true, all files are recompiled regardless of timestamps. The source filename encoded in each bytecode file defaults to the filenames listed in 'py_files'; you can modify these with 'prefix' and 'basedir'. 'prefix' is a string that will be stripped off of each source filename, and 'base_dir' is a directory name that will be prepended (after 'prefix' is stripped). You can supply either or both (or neither) of 'prefix' and 'base_dir', as you wish. If 'dry_run' is true, doesn't actually do anything that would affect the filesystem. Byte-compilation is either done directly in this interpreter process with the standard py_compile module, or indirectly by writing a temporary script and executing it. Normally, you should let 'byte_compile()' figure out to use direct compilation or not (see the source for details). The 'direct' flag is used by the script generated in indirect mode; unless you know what you're doing, leave it set to None. zbyte-compiling is disabled.NTr)mkstempz.py)mktempz$writing byte-compilation script '%s'wz2from distutils.util import byte_compile files = [ z, z] z byte_compile(files, optimize=%r, force=%r, prefix=%r, base_dir=%r, verbose=%r, dry_run=0, direct=1) )rz removing %s)rlr') optimizationz1invalid prefix: filename %r doesn't start with %rzbyte-compiling %s to %sz%skipping byte-compilation of %s to %s)#rdont_write_bytecoderZtempfilerrMrrrrfdopenopenwriter=maprepr executableextend subprocessZ"_optim_args_from_interpreter_flagsrxrrr: py_compilerl importlibutilcache_from_sourcerwr9r<basenamerdebug)Zpy_filesoptimizeforcerjbase_dirrrZdirectrZ script_fd script_namerZscriptcmdrlfileoptcfiledfileZ cfile_baserrr byte_compiledsr(        "       rcCs|d}d}||S)zReturn a version of the string escaped for inclusion in an RFC-822 header, by ensuring there are 8 spaces space after each newline.  z )r4r=)headerlinesr8rrr rfc822_escapes r)rh)Nrr)rrNNrrN)+__doc__importlib.utilrrrbrmrrr functoolserrorsrrZ _modifiedrrZ_logrrrplatformr%r(r&r)r-r,r@rG lru_cacherOr\rXrkrorprqrrrrrrrrrrrsV         B