forked from havenwood/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pantsbuild_migration.py
276 lines (231 loc) · 9.73 KB
/
pantsbuild_migration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# coding=utf-8
# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
from __future__ import (nested_scopes, generators, division, absolute_import, with_statement,
print_function, unicode_literals)
import os
import re
import sys
PANTS_ROOT = os.path.dirname(os.path.realpath(__file__))
SRC_ROOT = os.path.join(PANTS_ROOT, 'src', 'python')
TESTS_ROOT = os.path.join(PANTS_ROOT, 'tests', 'python')
KNOWN_STD_LIBS = set(["abc", "anydbm", "argparse", "array", "asynchat", "asyncore", "atexit", "base64",
"BaseHTTPServer", "bisect", "bz2", "calendar", "cgitb", "cmd", "codecs",
"collections", "commands", "compileall", "ConfigParser", "contextlib", "Cookie",
"copy", "cPickle", "cProfile", "cStringIO", "csv", "datetime", "dbhash", "dbm",
"decimal", "difflib", "dircache", "dis", "doctest", "dumbdbm", "EasyDialogs",
"errno", "exceptions", "filecmp", "fileinput", "fnmatch", "fractions",
"functools", "gc", "gdbm", "getopt", "getpass", "gettext", "glob", "grp", "gzip",
"hashlib", "heapq", "hmac", "imaplib", "imp", "inspect", "itertools", "json",
"linecache", "locale", "logging", "mailbox", "math", "mhlib", "mmap",
"multiprocessing", "operator", "optparse", "os", "pdb", "pickle", "pipes",
"pkgutil", "platform", "plistlib", "pprint", "profile", "pstats", "pwd", "pyclbr",
"pydoc", "Queue", "random", "re", "readline", "resource", "rlcompleter",
"robotparser", "sched", "select", "shelve", "shlex", "shutil", "signal",
"SimpleXMLRPCServer", "site", "sitecustomize", "smtpd", "smtplib", "socket",
"SocketServer", "sqlite3", "string", "StringIO", "struct", "subprocess", "sys",
"sysconfig", "tabnanny", "tarfile", "tempfile", "textwrap", "threading", "time",
"timeit", "trace", "traceback", "unittest", "urllib", "urllib2", "urlparse",
"usercustomize", "uuid", "warnings", "weakref", "webbrowser", "whichdb", "xml",
"xmlrpclib", "zipfile", "zipimport", "zlib", 'builtins', '__builtin__'])
OLD_PANTS_PACKAGE = 'twitter.pants'
NEW_PANTS_PACKAGE = 'pants'
IMPORT_RE = re.compile(r'import\s+(.*)')
FROM_IMPORT_RE = re.compile(r'from\s+(.*)\s+import\s+(.*)')
AUTHOR_RE = re.compile(r'__author__\s*=\s*.+')
def has_continuation(line):
return line.endswith('\\')
HEADER_COMMENT = [
'# Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).',
'# Licensed under the Apache License, Version 2.0 (see LICENSE).'
]
FUTURE_IMPORTS = [
'from __future__ import (nested_scopes, generators, division, absolute_import, with_statement,',
' print_function, unicode_literals)'
]
class Import(object):
def __init__(self, symbol):
self._symbol = symbol.strip()
if self._symbol.startswith(OLD_PANTS_PACKAGE):
self._symbol = self._symbol[8:]
def package(self):
return self._symbol
def sort_key(self):
return 'AAA' + self._symbol
def __str__(self):
return 'import %s' % self._symbol
class FromImport(object):
def __init__(self, frm, symbols):
self._from = frm.strip()
if self._from.startswith(OLD_PANTS_PACKAGE):
self._from = NEW_PANTS_PACKAGE + self._from[len(OLD_PANTS_PACKAGE):]
self._symbols = filter(None, [filter(lambda c: c not in '()', s.strip()).strip() for s in symbols])
def package(self):
return self._from
def sort_key(self):
return 'ZZZ' + self._from
def __str__(self):
return 'from %s import %s' % (self._from, ', '.join(sorted(self._symbols)))
class BuildFile(object):
def __init__(self, path):
self._path = path
self._body = []
def process(self):
self.load()
self.parse_header()
self.save()
def load(self):
with open(self._path, 'r') as infile:
self._old_lines = [line.rstrip() for line in infile.read().splitlines()]
def parse_header(self):
# Find first non-header-comment line.
try:
p = next(i for i, line in enumerate(self._old_lines) if line and not line.startswith('#'))
except StopIteration:
return # File is empty (possibly except for a comment).
def _translate(line):
return line.replace('twitter/pants', 'pants').replace('twitter.pants', 'pants').replace(
'src/python/twitter/common/', '3rdparty/python:twitter.common.'
)
self._body = map(_translate, self._old_lines[p:])
# Remove any trailing empty lines.
while not self._body[-1]:
self._body = self._body[0:-1]
def save(self):
with open(self._path, 'w') as outfile:
if self._body:
for line in HEADER_COMMENT:
outfile.write(line)
outfile.write('\n')
outfile.write('\n')
for line in self._body:
outfile.write(line)
outfile.write('\n')
class PantsSourceFile(object):
def __init__(self, path):
self._path = path
absdir = os.path.dirname(os.path.abspath(path))
if absdir.startswith(SRC_ROOT):
root = SRC_ROOT
elif absdir.startswith(TESTS_ROOT):
root = TESTS_ROOT
else:
raise Exception('File not in src or tests roots: %s' % path)
self._package = os.path.relpath(absdir, root).replace(os.path.sep, '.')
self._old_lines = []
self._stdlib_imports = []
self._thirdparty_imports = []
self._pants_imports = []
self._body = []
def process(self):
self.load()
self.parse_header()
self.save()
def is_empty(self):
return not (self._stdlib_imports or self._thirdparty_imports or self._pants_imports or self._body)
def load(self):
with open(self._path, 'r') as infile:
self._old_lines = [line.rstrip() for line in infile.read().splitlines()]
def parse_header(self):
# Strip __author__.
lines = filter(lambda x: not AUTHOR_RE.match(x), self._old_lines)
# Find first non-header-comment line.
try:
p = next(i for i, line in enumerate(lines) if line and not line.startswith('#'))
except StopIteration:
return # File is empty (possibly except for a comment).
content_lines = lines[p:]
def add_import(imp):
s = imp.package()
if s.split('.', 1)[0] in KNOWN_STD_LIBS:
self._stdlib_imports.append(imp)
elif s.startswith(NEW_PANTS_PACKAGE):
self._pants_imports.append(imp)
else:
self._thirdparty_imports.append(imp)
def is_import(line):
m = IMPORT_RE.match(line)
if m:
add_import(Import(m.group(1)))
return True
else:
return False
def is_from_import(line):
def absify(imp):
if imp == '.':
return self._package
elif imp.startswith('.'):
return '%s.' % self._package + imp[1:]
else:
return imp
m = FROM_IMPORT_RE.match(line)
if m:
if not m.group(1) == '__future__':
add_import(FromImport(absify(m.group(1)), m.group(2).split(',')))
return True
else:
return False
# Parse imports.
lines_iter = iter(content_lines)
line = ''
line_parts = []
try:
while not line or is_import(line) or is_from_import(line):
line_parts = [lines_iter.next()]
while has_continuation(line_parts[-1]):
line_parts.append(lines_iter.next())
line = ' '.join([x[:-1].strip() for x in line_parts[:-1]] + [line_parts[-1].strip()])
if line.startswith('from ') and '(' in line:
line_parts = [line]
next_line = ''
while not ')' in next_line:
next_line = lines_iter.next().strip()
line_parts.append(next_line)
line = ' '.join(line_parts)
except StopIteration:
line_parts = []
def _translate(line):
return line.replace('twitter/pants', 'pants').replace('twitter.pants', 'pants')
self._body = map(_translate, [''] + line_parts + list(lines_iter))
# Remove any trailing empty lines.
while self._body and not self._body[-1]:
self._body = self._body[0:-1]
def save(self):
sorted_stdlib_imports = map(str, sorted(self._stdlib_imports, key=lambda x: x.sort_key()))
sorted_thirdparty_imports = map(str, sorted(self._thirdparty_imports, key=lambda x: x.sort_key()))
sorted_pants_imports = map(str, sorted(self._pants_imports, key=lambda x: x.sort_key()))
with open(self._path, 'w') as outfile:
if not self.is_empty():
for lines in [HEADER_COMMENT, FUTURE_IMPORTS, sorted_stdlib_imports,
sorted_thirdparty_imports, sorted_pants_imports]:
for line in lines:
outfile.write(line)
outfile.write('\n')
if lines:
outfile.write('\n')
for line in self._body:
outfile.write(line)
outfile.write('\n')
def handle_path(path):
if os.path.isfile(path):
if path.endswith('.py') and not path.endswith('pantsbuild_migration.py'):
print('PROCESSING: %s' % path)
srcfile = PantsSourceFile(path)
srcfile.process()
elif os.path.basename(path).startswith('BUILD'):
print('PROCESSING: %s' % path)
srcfile = BuildFile(path)
srcfile.process()
elif path.endswith('.rst') or path.endswith('.sh') or path.endswith('pants.bootstrap'):
print('PROCESSING: %s' % path)
with open(path, 'r') as infile:
content = infile.read()
new_content = content.replace('twitter.pants', 'pants').replace('twitter/pants', 'pants')
with open(path, 'w') as outfile:
outfile.write(new_content)
elif os.path.isdir(path):
for p in os.listdir(path):
handle_path(os.path.join(path, p))
if __name__ == '__main__':
path = sys.argv[1]
handle_path(path)