author | Augie Fackler <raf@durin42.com> |
Tue, 24 Dec 2013 19:10:04 -0500 | |
changeset 20200 | 532fa12033e1 |
parent 20198 | f5393a9dc4e5 |
child 20201 | bc3b48b0f5c8 |
permissions | -rw-r--r-- |
20036 | 1 |
import ast |
2 |
import os |
|
3 |
import sys |
|
4 |
||
20198
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
5 |
# Import a minimal set of stdlib modules needed for list_stdlib_modules() |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
6 |
# to work when run from a virtualenv. The modules were chosen empirically |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
7 |
# so that the return value matches the return value without virtualenv. |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
8 |
import BaseHTTPServer |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
9 |
import zlib |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
10 |
|
20036 | 11 |
def dotted_name_of_path(path): |
12 |
"""Given a relative path to a source file, return its dotted module name. |
|
13 |
||
14 |
||
15 |
>>> dotted_name_of_path('mercurial/error.py') |
|
16 |
'mercurial.error' |
|
17 |
""" |
|
18 |
parts = path.split('/') |
|
19 |
parts[-1] = parts[-1][:-3] # remove .py |
|
20 |
return '.'.join(parts) |
|
21 |
||
22 |
||
23 |
def list_stdlib_modules(): |
|
24 |
"""List the modules present in the stdlib. |
|
25 |
||
26 |
>>> mods = set(list_stdlib_modules()) |
|
27 |
>>> 'BaseHTTPServer' in mods |
|
28 |
True |
|
29 |
||
30 |
os.path isn't really a module, so it's missing: |
|
31 |
||
32 |
>>> 'os.path' in mods |
|
33 |
False |
|
34 |
||
35 |
sys requires special treatment, because it's baked into the |
|
36 |
interpreter, but it should still appear: |
|
37 |
||
38 |
>>> 'sys' in mods |
|
39 |
True |
|
40 |
||
41 |
>>> 'collections' in mods |
|
42 |
True |
|
43 |
||
44 |
>>> 'cStringIO' in mods |
|
45 |
True |
|
46 |
""" |
|
47 |
for m in sys.builtin_module_names: |
|
48 |
yield m |
|
49 |
# These modules only exist on windows, but we should always |
|
50 |
# consider them stdlib. |
|
51 |
for m in ['msvcrt', '_winreg']: |
|
52 |
yield m |
|
53 |
# These get missed too |
|
54 |
for m in 'ctypes', 'email': |
|
55 |
yield m |
|
56 |
yield 'builtins' # python3 only |
|
20197
761f2929a6ad
import-checker: refactor sys.path prefix check (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20038
diff
changeset
|
57 |
stdlib_prefixes = set([sys.prefix, sys.exec_prefix]) |
20198
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
58 |
# We need to supplement the list of prefixes for the search to work |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
59 |
# when run from within a virtualenv. |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
60 |
for mod in (BaseHTTPServer, zlib): |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
61 |
try: |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
62 |
# Not all module objects have a __file__ attribute. |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
63 |
filename = mod.__file__ |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
64 |
except AttributeError: |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
65 |
continue |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
66 |
dirname = os.path.dirname(filename) |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
67 |
for prefix in stdlib_prefixes: |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
68 |
if dirname.startswith(prefix): |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
69 |
# Then this directory is redundant. |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
70 |
break |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
71 |
else: |
f5393a9dc4e5
import-checker: make test-module-imports.t work using virtualenv (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20197
diff
changeset
|
72 |
stdlib_prefixes.add(dirname) |
20036 | 73 |
for libpath in sys.path: |
20197
761f2929a6ad
import-checker: refactor sys.path prefix check (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20038
diff
changeset
|
74 |
# We want to walk everything in sys.path that starts with something |
761f2929a6ad
import-checker: refactor sys.path prefix check (issue4129)
Chris Jerdonek <chris.jerdonek@gmail.com>
parents:
20038
diff
changeset
|
75 |
# in stdlib_prefixes. |
20200
532fa12033e1
import-checker: use any() and a genexp to avoid awkward for/else construction
Augie Fackler <raf@durin42.com>
parents:
20198
diff
changeset
|
76 |
if not any(libpath.startswith(p) for p in stdlib_prefixes): |
20036 | 77 |
continue |
78 |
if 'site-packages' in libpath: |
|
79 |
continue |
|
80 |
for top, dirs, files in os.walk(libpath): |
|
81 |
for name in files: |
|
82 |
if name == '__init__.py': |
|
83 |
continue |
|
84 |
if not (name.endswith('.py') or name.endswith('.so')): |
|
85 |
continue |
|
86 |
full_path = os.path.join(top, name) |
|
87 |
if 'site-packages' in full_path: |
|
88 |
continue |
|
89 |
rel_path = full_path[len(libpath) + 1:] |
|
90 |
mod = dotted_name_of_path(rel_path) |
|
91 |
yield mod |
|
92 |
||
93 |
stdlib_modules = set(list_stdlib_modules()) |
|
94 |
||
20037
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
95 |
def imported_modules(source, ignore_nested=False): |
20036 | 96 |
"""Given the source of a file as a string, yield the names |
97 |
imported by that file. |
|
98 |
||
20037
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
99 |
Args: |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
100 |
source: The python source to examine as a string. |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
101 |
ignore_nested: If true, import statements that do not start in |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
102 |
column zero will be ignored. |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
103 |
|
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
104 |
Returns: |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
105 |
A list of module names imported by the given source. |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
106 |
|
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
107 |
>>> sorted(imported_modules( |
20036 | 108 |
... 'import foo ; from baz import bar; import foo.qux')) |
20037
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
109 |
['baz.bar', 'foo', 'foo.qux'] |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
110 |
>>> sorted(imported_modules( |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
111 |
... '''import foo |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
112 |
... def wat(): |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
113 |
... import bar |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
114 |
... ''', ignore_nested=True)) |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
115 |
['foo'] |
20036 | 116 |
""" |
117 |
for node in ast.walk(ast.parse(source)): |
|
20037
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
118 |
if ignore_nested and getattr(node, 'col_offset', 0) > 0: |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
119 |
continue |
20036 | 120 |
if isinstance(node, ast.Import): |
121 |
for n in node.names: |
|
122 |
yield n.name |
|
123 |
elif isinstance(node, ast.ImportFrom): |
|
124 |
prefix = node.module + '.' |
|
125 |
for n in node.names: |
|
126 |
yield prefix + n.name |
|
127 |
||
128 |
def verify_stdlib_on_own_line(source): |
|
129 |
"""Given some python source, verify that stdlib imports are done |
|
130 |
in separate statements from relative local module imports. |
|
131 |
||
132 |
Observing this limitation is important as it works around an |
|
133 |
annoying lib2to3 bug in relative import rewrites: |
|
134 |
http://bugs.python.org/issue19510. |
|
135 |
||
136 |
>>> list(verify_stdlib_on_own_line('import sys, foo')) |
|
137 |
['mixed stdlib and relative imports:\\n foo, sys'] |
|
138 |
>>> list(verify_stdlib_on_own_line('import sys, os')) |
|
139 |
[] |
|
140 |
>>> list(verify_stdlib_on_own_line('import foo, bar')) |
|
141 |
[] |
|
142 |
""" |
|
143 |
for node in ast.walk(ast.parse(source)): |
|
144 |
if isinstance(node, ast.Import): |
|
145 |
from_stdlib = {} |
|
146 |
for n in node.names: |
|
147 |
from_stdlib[n.name] = n.name in stdlib_modules |
|
148 |
num_std = len([x for x in from_stdlib.values() if x]) |
|
149 |
if num_std not in (len(from_stdlib.values()), 0): |
|
150 |
yield ('mixed stdlib and relative imports:\n %s' % |
|
151 |
', '.join(sorted(from_stdlib.iterkeys()))) |
|
152 |
||
153 |
class CircularImport(Exception): |
|
154 |
pass |
|
155 |
||
156 |
||
157 |
def cyclekey(names): |
|
158 |
return tuple(sorted(set(names))) |
|
159 |
||
160 |
def check_one_mod(mod, imports, path=None, ignore=None): |
|
161 |
if path is None: |
|
162 |
path = [] |
|
163 |
if ignore is None: |
|
164 |
ignore = [] |
|
165 |
path = path + [mod] |
|
166 |
for i in sorted(imports.get(mod, [])): |
|
167 |
if i not in stdlib_modules: |
|
168 |
i = mod.rsplit('.', 1)[0] + '.' + i |
|
169 |
if i in path: |
|
170 |
firstspot = path.index(i) |
|
171 |
cycle = path[firstspot:] + [i] |
|
172 |
if cyclekey(cycle) not in ignore: |
|
173 |
raise CircularImport(cycle) |
|
174 |
continue |
|
175 |
check_one_mod(i, imports, path=path, ignore=ignore) |
|
176 |
||
20038
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
177 |
def rotatecycle(cycle): |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
178 |
"""arrange a cycle so that the lexicographically first module listed first |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
179 |
|
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
180 |
>>> rotatecycle(['foo', 'bar', 'foo']) |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
181 |
['bar', 'foo', 'bar'] |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
182 |
""" |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
183 |
lowest = min(cycle) |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
184 |
idx = cycle.index(lowest) |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
185 |
return cycle[idx:] + cycle[1:idx] + [lowest] |
20036 | 186 |
|
187 |
def find_cycles(imports): |
|
188 |
"""Find cycles in an already-loaded import graph. |
|
189 |
||
190 |
>>> imports = {'top.foo': ['bar', 'os.path', 'qux'], |
|
191 |
... 'top.bar': ['baz', 'sys'], |
|
192 |
... 'top.baz': ['foo'], |
|
193 |
... 'top.qux': ['foo']} |
|
194 |
>>> print '\\n'.join(sorted(find_cycles(imports))) |
|
20038
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
195 |
top.bar -> top.baz -> top.foo -> top.bar -> top.bar |
c65a6937b828
import-checker: try a little harder to show fewer cycles
Augie Fackler <raf@durin42.com>
parents:
20037
diff
changeset
|
196 |
top.foo -> top.qux -> top.foo -> top.foo |
20036 | 197 |
""" |
198 |
cycles = {} |
|
199 |
for mod in sorted(imports.iterkeys()): |
|
200 |
try: |
|
201 |
check_one_mod(mod, imports, ignore=cycles) |
|
202 |
except CircularImport, e: |
|
203 |
cycle = e.args[0] |
|
204 |
cycles[cyclekey(cycle)] = ' -> '.join(rotatecycle(cycle)) |
|
205 |
return cycles.values() |
|
206 |
||
207 |
def _cycle_sortkey(c): |
|
208 |
return len(c), c |
|
209 |
||
210 |
def main(argv): |
|
211 |
if len(argv) < 2: |
|
212 |
print 'Usage: %s file [file] [file] ...' |
|
213 |
return 1 |
|
214 |
used_imports = {} |
|
215 |
any_errors = False |
|
216 |
for source_path in argv[1:]: |
|
217 |
f = open(source_path) |
|
218 |
modname = dotted_name_of_path(source_path) |
|
219 |
src = f.read() |
|
20037
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
220 |
used_imports[modname] = sorted( |
957b43371928
import-checker: ignore nested imports
Augie Fackler <raf@durin42.com>
parents:
20036
diff
changeset
|
221 |
imported_modules(src, ignore_nested=True)) |
20036 | 222 |
for error in verify_stdlib_on_own_line(src): |
223 |
any_errors = True |
|
224 |
print source_path, error |
|
225 |
f.close() |
|
226 |
cycles = find_cycles(used_imports) |
|
227 |
if cycles: |
|
228 |
firstmods = set() |
|
229 |
for c in sorted(cycles, key=_cycle_sortkey): |
|
230 |
first = c.split()[0] |
|
231 |
# As a rough cut, ignore any cycle that starts with the |
|
232 |
# same module as some other cycle. Otherwise we see lots |
|
233 |
# of cycles that are effectively duplicates. |
|
234 |
if first in firstmods: |
|
235 |
continue |
|
236 |
print 'Import cycle:', c |
|
237 |
firstmods.add(first) |
|
238 |
any_errors = True |
|
239 |
return not any_errors |
|
240 |
||
241 |
if __name__ == '__main__': |
|
242 |
sys.exit(int(main(sys.argv))) |