o
    bcN.                     @   s   d Z ddlmZ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 dd ZG dd	 d	ejZd
d ZdddZdS )z
Main program for 2to3.
    )with_statementprint_functionN   )refactorc              	   C   s(   |   } |  }tj| |||ddddS )z%Return a unified diff of two strings.z
(original)z(refactored) )lineterm)
splitlinesdifflibunified_diff)abfilename r   #/usr/lib/python3.10/lib2to3/main.py
diff_texts   s   r   c                       s@   e Zd ZdZ	d fdd	Zdd Z fddZd	d
 Z  ZS )StdoutRefactoringToola2  
    A refactoring tool that can avoid overwriting its input files.
    Prints output to stdout.

    Output files can optionally be written to a different directory and or
    have an extra file suffix appended to their name for use in situations
    where you do not want to replace the input files.
    r   c	           	         sP   || _ || _|r|tjs|tj7 }|| _|| _|| _tt	| 
||| dS )aF  
        Args:
            fixers: A list of fixers to import.
            options: A dict with RefactoringTool configuration.
            explicit: A list of fixers to run even if they are explicit.
            nobackups: If true no backup '.bak' files will be created for those
                files that are being refactored.
            show_diffs: Should diffs of the refactoring be printed to stdout?
            input_base_dir: The base directory for all input files.  This class
                will strip this path prefix off of filenames before substituting
                it with output_dir.  Only meaningful if output_dir is supplied.
                All files processed by refactor() must start with this path.
            output_dir: If supplied, all converted files will be written into
                this directory tree instead of input_base_dir.
            append_suffix: If supplied, all files output by this tool will have
                this appended to their filename.  Useful for changing .py to
                .py3 for example by passing append_suffix='3'.
        N)	nobackups
show_diffsendswithossep_input_base_dir_output_dir_append_suffixsuperr   __init__)	selffixersoptionsexplicitr   r   input_base_dir
output_dirappend_suffix	__class__r   r   r   $   s   
zStdoutRefactoringTool.__init__c                 O   s0   | j |||f | jj|g|R i | d S N)errorsappendloggererror)r   msgargskwargsr   r   r   	log_errorA   s   zStdoutRefactoringTool.log_errorc           	         sV  |}| j r$|| jrtj| j |t| jd  }n	td|| jf | jr,|| j7 }||krJtj	|}tj
|sC|rCt| | d|| | js|d }tj|rnzt| W n tym   | d| Y nw zt|| W n ty   | d|| Y nw tt| j}||||| | jst|| ||krt|| d S d S )Nz5filename %s does not start with the input_base_dir %szWriting converted %s to %s.z.bakzCan't remove backup %szCan't rename %s to %s)r   
startswithr   r   pathjoinlen
ValueErrorr   dirnameisdirmakedirslog_messager   lexistsremoveOSErrorrenamer   r   
write_fileshutilcopymode)	r   new_textr   old_textencodingorig_filenamer!   backupwriter#   r   r   r;   E   sN   


z StdoutRefactoringTool.write_filec                 C   s   |r
|  d| d S |  d| | jrct|||}z8| jd urF| j |D ]}t| q%tj  W d    n1 s;w   Y  W d S W d S |D ]}t| qHW d S  tyb   t	d|f  Y d S w d S )NzNo changes to %szRefactored %sz+couldn't encode %s's diff for your terminal)
r6   r   r   output_lockprintsysstdoutflushUnicodeEncodeErrorwarn)r   oldnewr   equal
diff_linesliner   r   r   print_outputl   s,   

(
z"StdoutRefactoringTool.print_output)r   r   r   )	__name__
__module____qualname____doc__r   r-   r;   rP   __classcell__r   r   r#   r   r      s    
'r   c                 C   s   t d| f tjd d S )NzWARNING: %sfile)rE   rF   stderr)r*   r   r   r   rJ      s   rJ   c              
      s  t jdd}|jddddd |jdd	d
g dd |jddddddd |jddd
g dd |jddddd |jddddd |jddddd |jd d!dd"d |jd#dd$d |jd%d&dd'd |jd(d)dd*d+d |jd,d-dd.d/d0d1 |jd2d3dd4d |jd5dd.d/d6d1 d*}i }||\}}|jrd7|d8< |jstd9 d7|_|jr|js|	d: |j
r|js|	d; |js|jrtd< |js|jr|	d= |jrtd> t D ]}t| q|sd?S |std@tjdA tdBtjdA dCS dD|v rd7}|jrtdEtjdA dCS |jrd7|dF< |jrd7|dG< |jr&tjntj}tjdH|dI tdJ}tt }	t fdKdL|jD }
t }|jrud*}|jD ]}|dMkr_d7}qT| dN |  qT|rr|	|n|}n|	|}| |
}t!j"#|}|r|$t!j%st!j"&|st!j"'|}|jr|(t!j%}|)dO|j| t*t+||t+||j|j ||j|j
dP}|j,s|r|-  n)z|||j|j.|j/ W n tj0y   |j/dksJ tdQtjdA Y dS w |1  t2t3|j,S )RzMain program.

    Args:
        fixer_pkg: the name of a package where the fixers are located.
        args: optional; a list of command line arguments. If omitted,
              sys.argv[1:] is used.

    Returns a suggested exit status (0, 1, 2).
    z2to3 [options] file|dir ...)usagez-dz--doctests_only
store_truezFix up doctests only)actionhelpz-fz--fixr'   z1Each FIX specifies a transformation; default: all)r[   defaultr\   z-jz--processesstorer   intzRun 2to3 concurrently)r[   r]   typer\   z-xz--nofixz'Prevent a transformation from being runz-lz--list-fixeszList available transformationsz-pz--print-functionz0Modify the grammar so that print() is a functionz-ez--exec-functionz/Modify the grammar so that exec() is a functionz-vz	--verbosezMore verbose loggingz
--no-diffsz#Don't show diffs of the refactoringz-wz--writezWrite back modified filesz-nz--nobackupsFz&Don't write backups for modified filesz-oz--output-dirstrr   zXPut output files in this directory instead of overwriting the input files.  Requires -n.)r[   r`   r]   r\   z-Wz--write-unchanged-fileszYAlso write files even if no changes were required (useful with --output-dir); implies -w.z--add-suffixzuAppend this string to all output filenames. Requires -n if non-empty.  ex: --add-suffix='3' will generate .py3 files.Twrite_unchanged_filesz&--write-unchanged-files/-W implies -w.z%Can't use --output-dir/-o without -n.z"Can't use --add-suffix without -n.z@not writing files and not printing diffs; that's not very usefulzCan't use -n without -wz2Available transformations for the -f/--fix option:r   z1At least one file or directory argument required.rV   zUse --help to show usage.   -zCan't write to stdin.r   exec_functionz%(name)s: %(message)s)formatlevelzlib2to3.mainc                 3   s    | ]	} d  | V  qdS ).fix_Nr   ).0fix	fixer_pkgr   r   	<genexpr>   s    zmain.<locals>.<genexpr>allrh   z7Output in %r will mirror the input directory %r layout.)r    r!   r"   z+Sorry, -j isn't supported on this platform.)4optparseOptionParser
add_option
parse_argsrb   rC   rJ   r!   r   r)   
add_suffixno_diffs
list_fixesrE   r   get_all_fix_namesrF   rX   r   re   verboseloggingDEBUGINFObasicConfig	getLoggersetget_fixers_from_packagenofixrj   addunion
differencer   r/   commonprefixr   r   r4   r3   rstripinfor   sortedr&   refactor_stdindoctests_only	processesMultiprocessingUnsupported	summarizer_   bool)rl   r+   parserr   flagsr   fixnamerg   r(   avail_fixesunwanted_fixesr   all_presentrj   	requestedfixer_namesr    rtr   rk   r   main   s   



















r   r%   )rT   
__future__r   r   rF   r   r	   rx   r<   ro   r   r   r   MultiprocessRefactoringToolr   rJ   r   r   r   r   r   <module>   s    	g