Guido van Rossum | f06ee5f | 1996-11-27 19:52:01 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 2 | |
| 3 | # pdeps |
| 4 | # |
| 5 | # Find dependencies between a bunch of Python modules. |
| 6 | # |
| 7 | # Usage: |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 8 | # pdeps file1.py file2.py ... |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 9 | # |
| 10 | # Output: |
| 11 | # Four tables separated by lines like '--- Closure ---': |
| 12 | # 1) Direct dependencies, listing which module imports which other modules |
| 13 | # 2) The inverse of (1) |
| 14 | # 3) Indirect dependencies, or the closure of the above |
| 15 | # 4) The inverse of (3) |
| 16 | # |
| 17 | # To do: |
| 18 | # - command line options to select output type |
| 19 | # - option to automatically scan the Python library for referenced modules |
| 20 | # - option to limit output to particular modules |
| 21 | |
| 22 | |
| 23 | import sys |
Guido van Rossum | 15f27fb | 1992-12-10 00:00:58 +0000 | [diff] [blame] | 24 | import regex |
| 25 | import os |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 26 | |
| 27 | |
| 28 | # Main program |
| 29 | # |
| 30 | def main(): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 31 | args = sys.argv[1:] |
| 32 | if not args: |
| 33 | print 'usage: pdeps file.py file.py ...' |
| 34 | return 2 |
| 35 | # |
| 36 | table = {} |
| 37 | for arg in args: |
| 38 | process(arg, table) |
| 39 | # |
| 40 | print '--- Uses ---' |
| 41 | printresults(table) |
| 42 | # |
| 43 | print '--- Used By ---' |
| 44 | inv = inverse(table) |
| 45 | printresults(inv) |
| 46 | # |
| 47 | print '--- Closure of Uses ---' |
| 48 | reach = closure(table) |
| 49 | printresults(reach) |
| 50 | # |
| 51 | print '--- Closure of Used By ---' |
| 52 | invreach = inverse(reach) |
| 53 | printresults(invreach) |
| 54 | # |
| 55 | return 0 |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 56 | |
| 57 | |
| 58 | # Compiled regular expressions to search for import statements |
| 59 | # |
Guido van Rossum | 15f27fb | 1992-12-10 00:00:58 +0000 | [diff] [blame] | 60 | m_import = regex.compile('^[ \t]*from[ \t]+\([^ \t]+\)[ \t]+') |
| 61 | m_from = regex.compile('^[ \t]*import[ \t]+\([^#]+\)') |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 62 | |
| 63 | |
| 64 | # Collect data from one file |
| 65 | # |
| 66 | def process(filename, table): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 67 | fp = open(filename, 'r') |
| 68 | mod = os.path.basename(filename) |
| 69 | if mod[-3:] == '.py': |
| 70 | mod = mod[:-3] |
| 71 | table[mod] = list = [] |
| 72 | while 1: |
| 73 | line = fp.readline() |
| 74 | if not line: break |
| 75 | while line[-1:] == '\\': |
| 76 | nextline = fp.readline() |
| 77 | if not nextline: break |
| 78 | line = line[:-1] + nextline |
| 79 | if m_import.match(line) >= 0: |
| 80 | (a, b), (a1, b1) = m_import.regs[:2] |
| 81 | elif m_from.match(line) >= 0: |
| 82 | (a, b), (a1, b1) = m_from.regs[:2] |
| 83 | else: continue |
Walter Dörwald | aaab30e | 2002-09-11 20:36:02 +0000 | [diff] [blame] | 84 | words = line[a1:b1].split(',') |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 85 | # print '#', line, words |
| 86 | for word in words: |
Walter Dörwald | aaab30e | 2002-09-11 20:36:02 +0000 | [diff] [blame] | 87 | word = word.strip() |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 88 | if word not in list: |
| 89 | list.append(word) |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 90 | |
| 91 | |
| 92 | # Compute closure (this is in fact totally general) |
| 93 | # |
| 94 | def closure(table): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 95 | modules = table.keys() |
| 96 | # |
| 97 | # Initialize reach with a copy of table |
| 98 | # |
| 99 | reach = {} |
| 100 | for mod in modules: |
| 101 | reach[mod] = table[mod][:] |
| 102 | # |
| 103 | # Iterate until no more change |
| 104 | # |
| 105 | change = 1 |
| 106 | while change: |
| 107 | change = 0 |
| 108 | for mod in modules: |
| 109 | for mo in reach[mod]: |
| 110 | if mo in modules: |
| 111 | for m in reach[mo]: |
| 112 | if m not in reach[mod]: |
| 113 | reach[mod].append(m) |
| 114 | change = 1 |
| 115 | # |
| 116 | return reach |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 117 | |
| 118 | |
| 119 | # Invert a table (this is again totally general). |
| 120 | # All keys of the original table are made keys of the inverse, |
| 121 | # so there may be empty lists in the inverse. |
| 122 | # |
| 123 | def inverse(table): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 124 | inv = {} |
| 125 | for key in table.keys(): |
| 126 | if not inv.has_key(key): |
| 127 | inv[key] = [] |
| 128 | for item in table[key]: |
| 129 | store(inv, item, key) |
| 130 | return inv |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 131 | |
| 132 | |
| 133 | # Store "item" in "dict" under "key". |
| 134 | # The dictionary maps keys to lists of items. |
| 135 | # If there is no list for the key yet, it is created. |
| 136 | # |
| 137 | def store(dict, key, item): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 138 | if dict.has_key(key): |
| 139 | dict[key].append(item) |
| 140 | else: |
| 141 | dict[key] = [item] |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 142 | |
| 143 | |
| 144 | # Tabulate results neatly |
| 145 | # |
| 146 | def printresults(table): |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 147 | modules = table.keys() |
| 148 | maxlen = 0 |
| 149 | for mod in modules: maxlen = max(maxlen, len(mod)) |
| 150 | modules.sort() |
| 151 | for mod in modules: |
| 152 | list = table[mod] |
| 153 | list.sort() |
Walter Dörwald | aaab30e | 2002-09-11 20:36:02 +0000 | [diff] [blame] | 154 | print mod.ljust(maxlen), ':', |
Tim Peters | 70c4378 | 2001-01-17 08:48:39 +0000 | [diff] [blame] | 155 | if mod in list: |
| 156 | print '(*)', |
| 157 | for ref in list: |
| 158 | print ref, |
| 159 | print |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 160 | |
| 161 | |
| 162 | # Call main and honor exit status |
Andrew M. Kuchling | e236b38 | 2004-08-09 17:27:55 +0000 | [diff] [blame] | 163 | if __name__ == '__main__': |
| 164 | try: |
| 165 | sys.exit(main()) |
| 166 | except KeyboardInterrupt: |
| 167 | sys.exit(1) |