@@ -25,19 +25,65 @@ def diff_texts(a, b, filename):
2525
2626class StdoutRefactoringTool (refactor .MultiprocessRefactoringTool ):
2727 """
28+ A refactoring tool that can avoid overwriting its input files.
2829 Prints output to stdout.
30+
31+ Output files can optionally be written to a different directory and or
32+ have an extra file suffix appended to their name for use in situations
33+ where you do not want to replace the input files.
2934 """
3035
31- def __init__ (self , fixers , options , explicit , nobackups , show_diffs ):
36+ def __init__ (self , fixers , options , explicit , nobackups , show_diffs ,
37+ input_base_dir = '' , output_dir = '' , append_suffix = '' ):
38+ """
39+ Args:
40+ fixers: A list of fixers to import.
41+ options: A dict with RefactoringTool configuration.
42+ explicit: A list of fixers to run even if they are explicit.
43+ nobackups: If true no backup '.bak' files will be created for those
44+ files that are being refactored.
45+ show_diffs: Should diffs of the refactoring be printed to stdout?
46+ input_base_dir: The base directory for all input files. This class
47+ will strip this path prefix off of filenames before substituting
48+ it with output_dir. Only meaningful if output_dir is supplied.
49+ All files processed by refactor() must start with this path.
50+ output_dir: If supplied, all converted files will be written into
51+ this directory tree instead of input_base_dir.
52+ append_suffix: If supplied, all files output by this tool will have
53+ this appended to their filename. Useful for changing .py to
54+ .py3 for example by passing append_suffix='3'.
55+ """
3256 self .nobackups = nobackups
3357 self .show_diffs = show_diffs
58+ if input_base_dir and not input_base_dir .endswith (os .sep ):
59+ input_base_dir += os .sep
60+ self ._input_base_dir = input_base_dir
61+ self ._output_dir = output_dir
62+ self ._append_suffix = append_suffix
3463 super (StdoutRefactoringTool , self ).__init__ (fixers , options , explicit )
3564
3665 def log_error (self , msg , * args , ** kwargs ):
3766 self .errors .append ((msg , args , kwargs ))
3867 self .logger .error (msg , * args , ** kwargs )
3968
4069 def write_file (self , new_text , filename , old_text , encoding ):
70+ orig_filename = filename
71+ if self ._output_dir :
72+ if filename .startswith (self ._input_base_dir ):
73+ filename = os .path .join (self ._output_dir ,
74+ filename [len (self ._input_base_dir ):])
75+ else :
76+ raise ValueError ('filename %s does not start with the '
77+ 'input_base_dir %s' % (
78+ filename , self ._input_base_dir ))
79+ if self ._append_suffix :
80+ filename += self ._append_suffix
81+ if orig_filename != filename :
82+ output_dir = os .path .dirname (filename )
83+ if not os .path .isdir (output_dir ):
84+ os .makedirs (output_dir )
85+ self .log_message ('Writing converted %s to %s.' , orig_filename ,
86+ filename )
4187 if not self .nobackups :
4288 # Make backup
4389 backup = filename + ".bak"
@@ -55,6 +101,9 @@ def write_file(self, new_text, filename, old_text, encoding):
55101 write (new_text , filename , old_text , encoding )
56102 if not self .nobackups :
57103 shutil .copymode (backup , filename )
104+ if orig_filename != filename :
105+ # Preserve the file mode in the new output directory.
106+ shutil .copymode (orig_filename , filename )
58107
59108 def print_output (self , old , new , filename , equal ):
60109 if equal :
@@ -113,11 +162,33 @@ def main(fixer_pkg, args=None):
113162 help = "Write back modified files" )
114163 parser .add_option ("-n" , "--nobackups" , action = "store_true" , default = False ,
115164 help = "Don't write backups for modified files" )
165+ parser .add_option ("-o" , "--output-dir" , action = "store" , type = "str" ,
166+ default = "" , help = "Put output files in this directory "
167+ "instead of overwriting the input files. Requires -n." )
168+ parser .add_option ("-W" , "--write-unchanged-files" , action = "store_true" ,
169+ help = "Also write files even if no changes were required"
170+ " (useful with --output-dir); implies -w." )
171+ parser .add_option ("--add-suffix" , action = "store" , type = "str" , default = "" ,
172+ help = "Append this string to all output filenames."
173+ " Requires -n if non-empty. "
174+ "ex: --add-suffix='3' will generate .py3 files." )
116175
117176 # Parse command line arguments
118177 refactor_stdin = False
119178 flags = {}
120179 options , args = parser .parse_args (args )
180+ if options .write_unchanged_files :
181+ flags ["write_unchanged_files" ] = True
182+ if not options .write :
183+ warn ("--write-unchanged-files/-W implies -w." )
184+ options .write = True
185+ # If we allowed these, the original files would be renamed to backup names
186+ # but not replaced.
187+ if options .output_dir and not options .nobackups :
188+ parser .error ("Can't use --output-dir/-o without -n." )
189+ if options .add_suffix and not options .nobackups :
190+ parser .error ("Can't use --add-suffix without -n." )
191+
121192 if not options .write and options .no_diffs :
122193 warn ("not writing files and not printing diffs; that's not very useful" )
123194 if not options .write and options .nobackups :
@@ -143,6 +214,7 @@ def main(fixer_pkg, args=None):
143214 # Set up logging handler
144215 level = logging .DEBUG if options .verbose else logging .INFO
145216 logging .basicConfig (format = '%(name)s: %(message)s' , level = level )
217+ logger = logging .getLogger ('lib2to3.main' )
146218
147219 # Initialize the refactoring tool
148220 avail_fixes = set (refactor .get_fixers_from_package (fixer_pkg ))
@@ -159,8 +231,23 @@ def main(fixer_pkg, args=None):
159231 else :
160232 requested = avail_fixes .union (explicit )
161233 fixer_names = requested .difference (unwanted_fixes )
162- rt = StdoutRefactoringTool (sorted (fixer_names ), flags , sorted (explicit ),
163- options .nobackups , not options .no_diffs )
234+ input_base_dir = os .path .commonprefix (args )
235+ if (input_base_dir and not input_base_dir .endswith (os .sep )
236+ and not os .path .isdir (input_base_dir )):
237+ # One or more similar names were passed, their directory is the base.
238+ # os.path.commonprefix() is ignorant of path elements, this corrects
239+ # for that weird API.
240+ input_base_dir = os .path .dirname (input_base_dir )
241+ if options .output_dir :
242+ input_base_dir = input_base_dir .rstrip (os .sep )
243+ logger .info ('Output in %r will mirror the input directory %r layout.' ,
244+ options .output_dir , input_base_dir )
245+ rt = StdoutRefactoringTool (
246+ sorted (fixer_names ), flags , sorted (explicit ),
247+ options .nobackups , not options .no_diffs ,
248+ input_base_dir = input_base_dir ,
249+ output_dir = options .output_dir ,
250+ append_suffix = options .add_suffix )
164251
165252 # Refactor all files and directories passed as arguments
166253 if not rt .errors :
0 commit comments