1996-11-27 15:52:01 -04:00
|
|
|
#! /usr/bin/env python
|
1991-12-26 08:58:17 -04:00
|
|
|
|
1996-09-11 20:34:32 -03:00
|
|
|
# This script is obsolete -- it is kept for historical purposes only.
|
|
|
|
#
|
1992-01-01 15:22:09 -04:00
|
|
|
# Fix Python source files to use the new class definition syntax, i.e.,
|
1996-09-11 20:34:32 -03:00
|
|
|
# the syntax used in Python versions before 0.9.8:
|
2001-01-17 04:48:39 -04:00
|
|
|
# class C() = base(), base(), ...: ...
|
1996-09-11 20:34:32 -03:00
|
|
|
# is changed to the current syntax:
|
2001-01-17 04:48:39 -04:00
|
|
|
# class C(base, base, ...): ...
|
1996-09-11 20:34:32 -03:00
|
|
|
#
|
1992-01-01 15:22:09 -04:00
|
|
|
# The script uses heuristics to find class definitions that usually
|
|
|
|
# work but occasionally can fail; carefully check the output!
|
1991-12-26 08:58:17 -04:00
|
|
|
#
|
|
|
|
# Command line arguments are files or directories to be processed.
|
|
|
|
# Directories are searched recursively for files whose name looks
|
|
|
|
# like a python module.
|
|
|
|
# Symbolic links are always ignored (except as explicit directory
|
|
|
|
# arguments). Of course, the original file is kept as a back-up
|
|
|
|
# (with a "~" attached to its name).
|
|
|
|
#
|
1992-01-01 14:38:09 -04:00
|
|
|
# Changes made are reported to stdout in a diff-like format.
|
|
|
|
#
|
|
|
|
# Undoubtedly you can do this using find and sed or perl, but this is
|
1991-12-26 08:58:17 -04:00
|
|
|
# a nice example of Python code that recurses down a directory tree
|
|
|
|
# and uses regular expressions. Also note several subtleties like
|
|
|
|
# preserving the file's mode and avoiding to even write a temp file
|
|
|
|
# when no changes are needed for a file.
|
|
|
|
#
|
1992-01-01 14:38:09 -04:00
|
|
|
# NB: by changing only the function fixline() you can turn this
|
|
|
|
# into a program for a different change to Python programs...
|
1991-12-26 08:58:17 -04:00
|
|
|
|
|
|
|
import sys
|
2006-03-16 02:50:13 -04:00
|
|
|
import re
|
1992-03-30 07:12:23 -04:00
|
|
|
import os
|
1991-12-26 08:58:17 -04:00
|
|
|
from stat import *
|
|
|
|
|
|
|
|
err = sys.stderr.write
|
|
|
|
dbg = err
|
|
|
|
rep = sys.stdout.write
|
|
|
|
|
|
|
|
def main():
|
2001-01-17 04:48:39 -04:00
|
|
|
bad = 0
|
|
|
|
if not sys.argv[1:]: # No arguments
|
|
|
|
err('usage: ' + sys.argv[0] + ' file-or-directory ...\n')
|
|
|
|
sys.exit(2)
|
|
|
|
for arg in sys.argv[1:]:
|
|
|
|
if os.path.isdir(arg):
|
|
|
|
if recursedown(arg): bad = 1
|
|
|
|
elif os.path.islink(arg):
|
|
|
|
err(arg + ': will not process symbolic links\n')
|
|
|
|
bad = 1
|
|
|
|
else:
|
|
|
|
if fix(arg): bad = 1
|
|
|
|
sys.exit(bad)
|
1991-12-26 08:58:17 -04:00
|
|
|
|
2006-03-16 02:50:13 -04:00
|
|
|
ispythonprog = re.compile('^[a-zA-Z0-9_]+\.py$')
|
1992-01-01 14:38:09 -04:00
|
|
|
def ispython(name):
|
2001-01-17 04:48:39 -04:00
|
|
|
return ispythonprog.match(name) >= 0
|
1991-12-26 08:58:17 -04:00
|
|
|
|
|
|
|
def recursedown(dirname):
|
2004-02-12 13:35:32 -04:00
|
|
|
dbg('recursedown(%r)\n' % (dirname,))
|
2001-01-17 04:48:39 -04:00
|
|
|
bad = 0
|
|
|
|
try:
|
|
|
|
names = os.listdir(dirname)
|
|
|
|
except os.error, msg:
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: cannot list directory: %r\n' % (dirname, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
return 1
|
|
|
|
names.sort()
|
|
|
|
subdirs = []
|
|
|
|
for name in names:
|
|
|
|
if name in (os.curdir, os.pardir): continue
|
|
|
|
fullname = os.path.join(dirname, name)
|
|
|
|
if os.path.islink(fullname): pass
|
|
|
|
elif os.path.isdir(fullname):
|
|
|
|
subdirs.append(fullname)
|
|
|
|
elif ispython(name):
|
|
|
|
if fix(fullname): bad = 1
|
|
|
|
for fullname in subdirs:
|
|
|
|
if recursedown(fullname): bad = 1
|
|
|
|
return bad
|
1991-12-26 08:58:17 -04:00
|
|
|
|
|
|
|
def fix(filename):
|
2004-02-12 13:35:32 -04:00
|
|
|
## dbg('fix(%r)\n' % (filename,))
|
2001-01-17 04:48:39 -04:00
|
|
|
try:
|
|
|
|
f = open(filename, 'r')
|
|
|
|
except IOError, msg:
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: cannot open: %r\n' % (filename, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
return 1
|
|
|
|
head, tail = os.path.split(filename)
|
|
|
|
tempname = os.path.join(head, '@' + tail)
|
|
|
|
g = None
|
|
|
|
# If we find a match, we rewind the file and start over but
|
|
|
|
# now copy everything to a temp file.
|
|
|
|
lineno = 0
|
|
|
|
while 1:
|
|
|
|
line = f.readline()
|
|
|
|
if not line: break
|
|
|
|
lineno = lineno + 1
|
|
|
|
while line[-2:] == '\\\n':
|
|
|
|
nextline = f.readline()
|
|
|
|
if not nextline: break
|
|
|
|
line = line + nextline
|
|
|
|
lineno = lineno + 1
|
|
|
|
newline = fixline(line)
|
|
|
|
if newline != line:
|
|
|
|
if g is None:
|
|
|
|
try:
|
|
|
|
g = open(tempname, 'w')
|
|
|
|
except IOError, msg:
|
|
|
|
f.close()
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: cannot create: %r\n' % (tempname, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
return 1
|
|
|
|
f.seek(0)
|
|
|
|
lineno = 0
|
|
|
|
rep(filename + ':\n')
|
|
|
|
continue # restart from the beginning
|
2004-02-12 13:35:32 -04:00
|
|
|
rep(repr(lineno) + '\n')
|
2001-01-17 04:48:39 -04:00
|
|
|
rep('< ' + line)
|
|
|
|
rep('> ' + newline)
|
|
|
|
if g is not None:
|
|
|
|
g.write(newline)
|
|
|
|
|
|
|
|
# End of file
|
|
|
|
f.close()
|
|
|
|
if not g: return 0 # No changes
|
|
|
|
|
|
|
|
# Finishing touch -- move files
|
|
|
|
|
|
|
|
# First copy the file's mode to the temp file
|
|
|
|
try:
|
|
|
|
statbuf = os.stat(filename)
|
|
|
|
os.chmod(tempname, statbuf[ST_MODE] & 07777)
|
|
|
|
except os.error, msg:
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: warning: chmod failed (%r)\n' % (tempname, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
# Then make a backup of the original file as filename~
|
|
|
|
try:
|
|
|
|
os.rename(filename, filename + '~')
|
|
|
|
except os.error, msg:
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: warning: backup failed (%r)\n' % (filename, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
# Now move the temp file to the original file
|
|
|
|
try:
|
|
|
|
os.rename(tempname, filename)
|
|
|
|
except os.error, msg:
|
2004-02-12 13:35:32 -04:00
|
|
|
err('%s: rename failed (%r)\n' % (filename, msg))
|
2001-01-17 04:48:39 -04:00
|
|
|
return 1
|
|
|
|
# Return succes
|
|
|
|
return 0
|
1991-12-26 08:58:17 -04:00
|
|
|
|
1992-01-01 14:38:09 -04:00
|
|
|
# This expression doesn't catch *all* class definition headers,
|
|
|
|
# but it's pretty darn close.
|
2006-03-16 02:50:13 -04:00
|
|
|
classexpr = '^([ \t]*class +[a-zA-Z0-9_]+) *( *) *((=.*)?):'
|
|
|
|
classprog = re.compile(classexpr)
|
1992-01-01 14:38:09 -04:00
|
|
|
|
|
|
|
# Expressions for finding base class expressions.
|
2006-03-16 02:50:13 -04:00
|
|
|
baseexpr = '^ *(.*) *( *) *$'
|
|
|
|
baseprog = re.compile(baseexpr)
|
1992-01-01 14:38:09 -04:00
|
|
|
|
|
|
|
def fixline(line):
|
2001-01-17 04:48:39 -04:00
|
|
|
if classprog.match(line) < 0: # No 'class' keyword -- no change
|
|
|
|
return line
|
|
|
|
|
|
|
|
(a0, b0), (a1, b1), (a2, b2) = classprog.regs[:3]
|
|
|
|
# a0, b0 = Whole match (up to ':')
|
|
|
|
# a1, b1 = First subexpression (up to classname)
|
|
|
|
# a2, b2 = Second subexpression (=.*)
|
|
|
|
head = line[:b1]
|
|
|
|
tail = line[b0:] # Unmatched rest of line
|
|
|
|
|
|
|
|
if a2 == b2: # No base classes -- easy case
|
|
|
|
return head + ':' + tail
|
|
|
|
|
|
|
|
# Get rid of leading '='
|
|
|
|
basepart = line[a2+1:b2]
|
|
|
|
|
|
|
|
# Extract list of base expressions
|
2002-09-11 17:36:02 -03:00
|
|
|
bases = basepart.split(',')
|
2001-01-17 04:48:39 -04:00
|
|
|
|
|
|
|
# Strip trailing '()' from each base expression
|
|
|
|
for i in range(len(bases)):
|
|
|
|
if baseprog.match(bases[i]) >= 0:
|
|
|
|
x1, y1 = baseprog.regs[1]
|
|
|
|
bases[i] = bases[i][x1:y1]
|
|
|
|
|
|
|
|
# Join the bases back again and build the new line
|
2002-09-11 17:36:02 -03:00
|
|
|
basepart = ', '.join(bases)
|
2001-01-17 04:48:39 -04:00
|
|
|
|
|
|
|
return head + '(' + basepart + '):' + tail
|
1992-01-01 14:38:09 -04:00
|
|
|
|
2004-08-09 14:27:55 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|