blob: 0f89c157e83cfd4ba34cd317c89c5b31cd1bea24 [file] [log] [blame]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +00001#!/usr/bin/env python
2
3# portions copyright 2001, Autonomous Zones Industries, Inc., all rights...
4# err... reserved and offered to the public under the terms of the
5# Python 2.2 license.
6# Author: Zooko O'Whielacronx
7# http://zooko.com/
8# mailto:zooko@zooko.com
9#
10# Copyright 2000, Mojam Media, Inc., all rights reserved.
11# Author: Skip Montanaro
12#
13# Copyright 1999, Bioreason, Inc., all rights reserved.
14# Author: Andrew Dalke
15#
16# Copyright 1995-1997, Automatrix, Inc., all rights reserved.
17# Author: Skip Montanaro
18#
19# Copyright 1991-1995, Stichting Mathematisch Centrum, all rights reserved.
20#
21#
22# Permission to use, copy, modify, and distribute this Python software and
23# its associated documentation for any purpose without fee is hereby
24# granted, provided that the above copyright notice appears in all copies,
25# and that both that copyright notice and this permission notice appear in
26# supporting documentation, and that the name of neither Automatrix,
27# Bioreason or Mojam Media be used in advertising or publicity pertaining to
28# distribution of the software without specific, written prior permission.
29#
30"""program/module to trace Python program or function execution
31
32Sample use, command line:
33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs
34 trace.py -t --ignore-dir '$prefix' spam.py eggs
Skip Montanaro5bfd9842004-04-10 16:29:58 +000035 trace.py --trackcalls spam.py eggs
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000036
37Sample use, programmatically
Thomas Wouters477c8d52006-05-27 19:21:47 +000038 import sys
39
40 # create a Trace object, telling it what to ignore, and whether to
41 # do tracing or line-counting or both.
42 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0,
43 count=1)
44 # run the new command using the given tracer
45 tracer.run('main()')
46 # make a report, placing output in /tmp
47 r = tracer.results()
48 r.write_results(show_missing=True, coverdir="/tmp")
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000049"""
50
Jeremy Hylton38732e12003-04-21 22:04:46 +000051import linecache
Jeremy Hylton38732e12003-04-21 22:04:46 +000052import os
53import re
54import sys
Jeremy Hylton546e34b2003-06-26 14:56:17 +000055import threading
Jeremy Hylton38732e12003-04-21 22:04:46 +000056import token
57import tokenize
58import types
Skip Montanaro5bfd9842004-04-10 16:29:58 +000059import gc
Jeremy Hylton38732e12003-04-21 22:04:46 +000060
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000061try:
62 import cPickle
63 pickle = cPickle
64except ImportError:
65 import pickle
66
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000067def usage(outfile):
68 outfile.write("""Usage: %s [OPTIONS] <file> [ARGS]
69
70Meta-options:
71--help Display this help then exit.
72--version Output version information then exit.
73
74Otherwise, exactly one of the following three options must be given:
75-t, --trace Print each line to sys.stdout before it is executed.
76-c, --count Count the number of times each line is executed
77 and write the counts to <module>.cover for each
78 module executed, in the module's directory.
79 See also `--coverdir', `--file', `--no-report' below.
Skip Montanaroa7b8ac62003-06-27 19:09:33 +000080-l, --listfuncs Keep track of which functions are executed at least
Fred Drake01c623b2003-06-27 19:22:11 +000081 once and write the results to sys.stdout after the
Skip Montanaroa7b8ac62003-06-27 19:09:33 +000082 program exits.
Skip Montanarocafc8112004-04-07 15:46:05 +000083-T, --trackcalls Keep track of caller/called pairs and write the
84 results to sys.stdout after the program exits.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000085-r, --report Generate a report from a counts file; do not execute
86 any code. `--file' must specify the results file to
87 read, which must have been created in a previous run
88 with `--count --file=FILE'.
89
90Modifiers:
91-f, --file=<file> File to accumulate counts over several runs.
92-R, --no-report Do not generate the coverage report files.
93 Useful if you want to accumulate over several runs.
94-C, --coverdir=<dir> Directory where the report files. The coverage
95 report for <package>.<module> is written to file
96 <dir>/<package>/<module>.cover.
97-m, --missing Annotate executable lines that were not executed
98 with '>>>>>> '.
99-s, --summary Write a brief summary on stdout for each file.
100 (Can only be used with --count or --report.)
101
102Filters, may be repeated multiple times:
103--ignore-module=<mod> Ignore the given module and its submodules
104 (if it is a package).
105--ignore-dir=<dir> Ignore files in the given directory (multiple
106 directories can be joined by os.pathsep).
107""" % sys.argv[0])
108
Jeremy Hylton38732e12003-04-21 22:04:46 +0000109PRAGMA_NOCOVER = "#pragma NO COVER"
110
111# Simple rx to find lines with no code.
112rx_blank = re.compile(r'^\s*(#.*)?$')
113
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000114class Ignore:
115 def __init__(self, modules = None, dirs = None):
116 self._mods = modules or []
117 self._dirs = dirs or []
118
119 self._dirs = map(os.path.normpath, self._dirs)
120 self._ignore = { '<string>': 1 }
121
122 def names(self, filename, modulename):
Guido van Rossume2b70bc2006-08-18 22:13:04 +0000123 if modulename in self._ignore:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000124 return self._ignore[modulename]
125
126 # haven't seen this one before, so see if the module name is
127 # on the ignore list. Need to take some care since ignoring
128 # "cmp" musn't mean ignoring "cmpcache" but ignoring
129 # "Spam" must also mean ignoring "Spam.Eggs".
130 for mod in self._mods:
131 if mod == modulename: # Identical names, so ignore
132 self._ignore[modulename] = 1
133 return 1
134 # check if the module is a proper submodule of something on
135 # the ignore list
136 n = len(mod)
137 # (will not overflow since if the first n characters are the
Fred Drakedb390c12005-10-28 14:39:47 +0000138 # same and the name has not already occurred, then the size
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000139 # of "name" is greater than that of "mod")
140 if mod == modulename[:n] and modulename[n] == '.':
141 self._ignore[modulename] = 1
142 return 1
143
144 # Now check that __file__ isn't in one of the directories
145 if filename is None:
146 # must be a built-in, so we must ignore
147 self._ignore[modulename] = 1
148 return 1
149
150 # Ignore a file when it contains one of the ignorable paths
151 for d in self._dirs:
152 # The '+ os.sep' is to ensure that d is a parent directory,
153 # as compared to cases like:
154 # d = "/usr/local"
155 # filename = "/usr/local.py"
156 # or
157 # d = "/usr/local.py"
158 # filename = "/usr/local.py"
159 if filename.startswith(d + os.sep):
160 self._ignore[modulename] = 1
161 return 1
162
163 # Tried the different ways, so we don't ignore this module
164 self._ignore[modulename] = 0
165 return 0
166
Jeremy Hylton38732e12003-04-21 22:04:46 +0000167def modname(path):
168 """Return a plausible module name for the patch."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000169
Jeremy Hylton38732e12003-04-21 22:04:46 +0000170 base = os.path.basename(path)
171 filename, ext = os.path.splitext(base)
172 return filename
173
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000174def fullmodname(path):
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000175 """Return a plausible module name for the path."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000176
177 # If the file 'path' is part of a package, then the filename isn't
178 # enough to uniquely identify it. Try to do the right thing by
179 # looking in sys.path for the longest matching prefix. We'll
180 # assume that the rest is the package name.
181
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000182 comparepath = os.path.normcase(path)
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000183 longest = ""
184 for dir in sys.path:
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000185 dir = os.path.normcase(dir)
186 if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000187 if len(dir) > len(longest):
188 longest = dir
189
Guido van Rossumb427c002003-10-10 23:02:01 +0000190 if longest:
191 base = path[len(longest) + 1:]
192 else:
193 base = path
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000194 base = base.replace(os.sep, ".")
195 if os.altsep:
196 base = base.replace(os.altsep, ".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000197 filename, ext = os.path.splitext(base)
198 return filename
199
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000200class CoverageResults:
201 def __init__(self, counts=None, calledfuncs=None, infile=None,
Skip Montanarocafc8112004-04-07 15:46:05 +0000202 callers=None, outfile=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000203 self.counts = counts
204 if self.counts is None:
205 self.counts = {}
206 self.counter = self.counts.copy() # map (filename, lineno) to count
207 self.calledfuncs = calledfuncs
208 if self.calledfuncs is None:
209 self.calledfuncs = {}
210 self.calledfuncs = self.calledfuncs.copy()
Skip Montanarocafc8112004-04-07 15:46:05 +0000211 self.callers = callers
212 if self.callers is None:
213 self.callers = {}
214 self.callers = self.callers.copy()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000215 self.infile = infile
216 self.outfile = outfile
217 if self.infile:
Jeremy Hyltond7ce86d2003-07-07 16:08:47 +0000218 # Try to merge existing counts file.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000219 try:
Skip Montanarocafc8112004-04-07 15:46:05 +0000220 counts, calledfuncs, callers = \
221 pickle.load(open(self.infile, 'rb'))
222 self.update(self.__class__(counts, calledfuncs, callers))
Guido van Rossumb940e112007-01-10 16:19:56 +0000223 except (IOError, EOFError, ValueError) as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000224 print(("Skipping counts file %r: %s"
225 % (self.infile, err)), file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000226
227 def update(self, other):
228 """Merge in the data from another CoverageResults"""
229 counts = self.counts
230 calledfuncs = self.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000231 callers = self.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000232 other_counts = other.counts
233 other_calledfuncs = other.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000234 other_callers = other.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000235
236 for key in other_counts.keys():
Jeremy Hylton38732e12003-04-21 22:04:46 +0000237 counts[key] = counts.get(key, 0) + other_counts[key]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000238
239 for key in other_calledfuncs.keys():
240 calledfuncs[key] = 1
241
Skip Montanarocafc8112004-04-07 15:46:05 +0000242 for key in other_callers.keys():
243 callers[key] = 1
244
Jeremy Hylton38732e12003-04-21 22:04:46 +0000245 def write_results(self, show_missing=True, summary=False, coverdir=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000246 """
247 @param coverdir
248 """
Skip Montanarocafc8112004-04-07 15:46:05 +0000249 if self.calledfuncs:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000250 print()
251 print("functions called:")
Skip Montanarocafc8112004-04-07 15:46:05 +0000252 calls = self.calledfuncs.keys()
253 calls.sort()
254 for filename, modulename, funcname in calls:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000255 print(("filename: %s, modulename: %s, funcname: %s"
256 % (filename, modulename, funcname)))
Skip Montanarocafc8112004-04-07 15:46:05 +0000257
258 if self.callers:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000259 print()
260 print("calling relationships:")
Skip Montanarocafc8112004-04-07 15:46:05 +0000261 calls = self.callers.keys()
262 calls.sort()
263 lastfile = lastcfile = ""
264 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
265 if pfile != lastfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000266 print()
267 print("***", pfile, "***")
Skip Montanarocafc8112004-04-07 15:46:05 +0000268 lastfile = pfile
269 lastcfile = ""
270 if cfile != pfile and lastcfile != cfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000271 print(" -->", cfile)
Skip Montanarocafc8112004-04-07 15:46:05 +0000272 lastcfile = cfile
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000273 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000274
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000275 # turn the counts data ("(filename, lineno) = count") into something
276 # accessible on a per-file basis
277 per_file = {}
Jeremy Hylton38732e12003-04-21 22:04:46 +0000278 for filename, lineno in self.counts.keys():
279 lines_hit = per_file[filename] = per_file.get(filename, {})
280 lines_hit[lineno] = self.counts[(filename, lineno)]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000281
282 # accumulate summary info, if needed
283 sums = {}
284
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000285 for filename, count in per_file.items():
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000286 # skip some "files" we don't care about...
287 if filename == "<string>":
288 continue
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000289
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000290 if filename.endswith((".pyc", ".pyo")):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000291 filename = filename[:-1]
292
Jeremy Hylton38732e12003-04-21 22:04:46 +0000293 if coverdir is None:
294 dir = os.path.dirname(os.path.abspath(filename))
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000295 modulename = modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000296 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000297 dir = coverdir
298 if not os.path.exists(dir):
299 os.makedirs(dir)
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000300 modulename = fullmodname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000301
302 # If desired, get a list of the line numbers which represent
303 # executable content (returned as a dict for better lookup speed)
304 if show_missing:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000305 lnotab = find_executable_linenos(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000306 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000307 lnotab = {}
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000308
Jeremy Hylton38732e12003-04-21 22:04:46 +0000309 source = linecache.getlines(filename)
310 coverpath = os.path.join(dir, modulename + ".cover")
311 n_hits, n_lines = self.write_results_file(coverpath, source,
312 lnotab, count)
Tim Peters0eadaac2003-04-24 16:02:54 +0000313
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000314 if summary and n_lines:
315 percent = int(100 * n_hits / n_lines)
316 sums[modulename] = n_lines, percent, modulename, filename
317
318 if summary and sums:
319 mods = sums.keys()
320 mods.sort()
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000321 print("lines cov% module (path)")
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000322 for m in mods:
323 n_lines, percent, modulename, filename = sums[m]
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000324 print("%5d %3d%% %s (%s)" % sums[m])
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000325
326 if self.outfile:
327 # try and store counts and module info into self.outfile
328 try:
Skip Montanarocafc8112004-04-07 15:46:05 +0000329 pickle.dump((self.counts, self.calledfuncs, self.callers),
Jeremy Hyltond0e27052003-10-14 20:12:06 +0000330 open(self.outfile, 'wb'), 1)
Guido van Rossumb940e112007-01-10 16:19:56 +0000331 except IOError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000332 print("Can't save counts files because %s" % err, file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000333
Jeremy Hylton38732e12003-04-21 22:04:46 +0000334 def write_results_file(self, path, lines, lnotab, lines_hit):
335 """Return a coverage results file in path."""
336
337 try:
338 outfile = open(path, "w")
Guido van Rossumb940e112007-01-10 16:19:56 +0000339 except IOError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000340 print(("trace: Could not open %r for writing: %s"
341 "- skipping" % (path, err)), file=sys.stderr)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000342 return 0, 0
Jeremy Hylton38732e12003-04-21 22:04:46 +0000343
344 n_lines = 0
345 n_hits = 0
346 for i, line in enumerate(lines):
347 lineno = i + 1
348 # do the blank/comment match to try to mark more lines
349 # (help the reader find stuff that hasn't been covered)
350 if lineno in lines_hit:
351 outfile.write("%5d: " % lines_hit[lineno])
352 n_hits += 1
353 n_lines += 1
354 elif rx_blank.match(line):
Walter Dörwaldc1711722003-07-15 10:34:02 +0000355 outfile.write(" ")
Jeremy Hylton38732e12003-04-21 22:04:46 +0000356 else:
357 # lines preceded by no marks weren't hit
358 # Highlight them if so indicated, unless the line contains
359 # #pragma: NO COVER
360 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]:
361 outfile.write(">>>>>> ")
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000362 n_lines += 1
Jeremy Hylton38732e12003-04-21 22:04:46 +0000363 else:
364 outfile.write(" ")
Jeremy Hylton38732e12003-04-21 22:04:46 +0000365 outfile.write(lines[i].expandtabs(8))
366 outfile.close()
367
368 return n_hits, n_lines
369
370def find_lines_from_code(code, strs):
371 """Return dict where keys are lines in the line number table."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000372 linenos = {}
373
374 line_increments = [ord(c) for c in code.co_lnotab[1::2]]
375 table_length = len(line_increments)
Jeremy Hylton38732e12003-04-21 22:04:46 +0000376 docstring = False
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000377
378 lineno = code.co_firstlineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000379 for li in line_increments:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000380 lineno += li
Jeremy Hylton38732e12003-04-21 22:04:46 +0000381 if lineno not in strs:
382 linenos[lineno] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000383
384 return linenos
385
Jeremy Hylton38732e12003-04-21 22:04:46 +0000386def find_lines(code, strs):
387 """Return lineno dict for all code objects reachable from code."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000388 # get all of the lineno information from the code of this scope level
Jeremy Hylton38732e12003-04-21 22:04:46 +0000389 linenos = find_lines_from_code(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000390
391 # and check the constants for references to other code objects
392 for c in code.co_consts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000393 if isinstance(c, types.CodeType):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000394 # find another code object, so recurse into it
Jeremy Hylton38732e12003-04-21 22:04:46 +0000395 linenos.update(find_lines(c, strs))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000396 return linenos
397
Jeremy Hylton38732e12003-04-21 22:04:46 +0000398def find_strings(filename):
399 """Return a dict of possible docstring positions.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000400
Jeremy Hylton38732e12003-04-21 22:04:46 +0000401 The dict maps line numbers to strings. There is an entry for
402 line that contains only a string or a part of a triple-quoted
403 string.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000404 """
Jeremy Hylton38732e12003-04-21 22:04:46 +0000405 d = {}
406 # If the first token is a string, then it's the module docstring.
407 # Add this special case so that the test in the loop passes.
408 prev_ttype = token.INDENT
409 f = open(filename)
410 for ttype, tstr, start, end, line in tokenize.generate_tokens(f.readline):
411 if ttype == token.STRING:
412 if prev_ttype == token.INDENT:
413 sline, scol = start
414 eline, ecol = end
415 for i in range(sline, eline + 1):
416 d[i] = 1
417 prev_ttype = ttype
418 f.close()
419 return d
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000420
Jeremy Hylton38732e12003-04-21 22:04:46 +0000421def find_executable_linenos(filename):
422 """Return dict where keys are line numbers in the line number table."""
Jeremy Hylton38732e12003-04-21 22:04:46 +0000423 try:
Skip Montanaroc00fc842004-04-16 03:28:19 +0000424 prog = open(filename, "rU").read()
Guido van Rossumb940e112007-01-10 16:19:56 +0000425 except IOError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000426 print(("Not printing coverage data for %r: %s"
427 % (filename, err)), file=sys.stderr)
Jeremy Hylton38732e12003-04-21 22:04:46 +0000428 return {}
429 code = compile(prog, filename, "exec")
430 strs = find_strings(filename)
431 return find_lines(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000432
433class Trace:
Skip Montanarocafc8112004-04-07 15:46:05 +0000434 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,
435 ignoremods=(), ignoredirs=(), infile=None, outfile=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000436 """
437 @param count true iff it should count number of times each
Tim Petersf2715e02003-02-19 02:35:07 +0000438 line is executed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000439 @param trace true iff it should print out each line that is
Tim Petersf2715e02003-02-19 02:35:07 +0000440 being counted
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000441 @param countfuncs true iff it should just output a list of
442 (filename, modulename, funcname,) for functions
443 that were called at least once; This overrides
Tim Petersf2715e02003-02-19 02:35:07 +0000444 `count' and `trace'
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000445 @param ignoremods a list of the names of modules to ignore
446 @param ignoredirs a list of the names of directories to ignore
Tim Petersf2715e02003-02-19 02:35:07 +0000447 all of the (recursive) contents of
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000448 @param infile file from which to read stored counts to be
Tim Petersf2715e02003-02-19 02:35:07 +0000449 added into the results
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000450 @param outfile file in which to write the results
451 """
452 self.infile = infile
453 self.outfile = outfile
454 self.ignore = Ignore(ignoremods, ignoredirs)
455 self.counts = {} # keys are (filename, linenumber)
456 self.blabbed = {} # for debugging
457 self.pathtobasename = {} # for memoizing os.path.basename
458 self.donothing = 0
459 self.trace = trace
460 self._calledfuncs = {}
Skip Montanarocafc8112004-04-07 15:46:05 +0000461 self._callers = {}
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000462 self._caller_cache = {}
Skip Montanarocafc8112004-04-07 15:46:05 +0000463 if countcallers:
464 self.globaltrace = self.globaltrace_trackcallers
465 elif countfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000466 self.globaltrace = self.globaltrace_countfuncs
467 elif trace and count:
468 self.globaltrace = self.globaltrace_lt
469 self.localtrace = self.localtrace_trace_and_count
470 elif trace:
471 self.globaltrace = self.globaltrace_lt
472 self.localtrace = self.localtrace_trace
473 elif count:
474 self.globaltrace = self.globaltrace_lt
475 self.localtrace = self.localtrace_count
476 else:
477 # Ahem -- do nothing? Okay.
478 self.donothing = 1
479
480 def run(self, cmd):
481 import __main__
482 dict = __main__.__dict__
483 if not self.donothing:
484 sys.settrace(self.globaltrace)
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000485 threading.settrace(self.globaltrace)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000486 try:
Georg Brandl7cae87c2006-09-06 06:51:57 +0000487 exec(cmd, dict, dict)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000488 finally:
489 if not self.donothing:
490 sys.settrace(None)
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000491 threading.settrace(None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000492
493 def runctx(self, cmd, globals=None, locals=None):
494 if globals is None: globals = {}
495 if locals is None: locals = {}
496 if not self.donothing:
497 sys.settrace(self.globaltrace)
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000498 threading.settrace(self.globaltrace)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000499 try:
Georg Brandl7cae87c2006-09-06 06:51:57 +0000500 exec(cmd, globals, locals)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000501 finally:
502 if not self.donothing:
503 sys.settrace(None)
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000504 threading.settrace(None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000505
506 def runfunc(self, func, *args, **kw):
507 result = None
508 if not self.donothing:
509 sys.settrace(self.globaltrace)
510 try:
Guido van Rossum68468eb2003-02-27 20:14:51 +0000511 result = func(*args, **kw)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000512 finally:
513 if not self.donothing:
514 sys.settrace(None)
515 return result
516
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000517 def file_module_function_of(self, frame):
518 code = frame.f_code
519 filename = code.co_filename
520 if filename:
521 modulename = modname(filename)
522 else:
523 modulename = None
524
525 funcname = code.co_name
526 clsname = None
527 if code in self._caller_cache:
528 if self._caller_cache[code] is not None:
529 clsname = self._caller_cache[code]
530 else:
531 self._caller_cache[code] = None
532 ## use of gc.get_referrers() was suggested by Michael Hudson
533 # all functions which refer to this code object
534 funcs = [f for f in gc.get_referrers(code)
535 if hasattr(f, "func_doc")]
536 # require len(func) == 1 to avoid ambiguity caused by calls to
537 # new.function(): "In the face of ambiguity, refuse the
538 # temptation to guess."
539 if len(funcs) == 1:
540 dicts = [d for d in gc.get_referrers(funcs[0])
541 if isinstance(d, dict)]
542 if len(dicts) == 1:
543 classes = [c for c in gc.get_referrers(dicts[0])
544 if hasattr(c, "__bases__")]
545 if len(classes) == 1:
546 # ditto for new.classobj()
547 clsname = str(classes[0])
548 # cache the result - assumption is that new.* is
549 # not called later to disturb this relationship
550 # _caller_cache could be flushed if functions in
551 # the new module get called.
552 self._caller_cache[code] = clsname
553 if clsname is not None:
554 # final hack - module name shows up in str(cls), but we've already
555 # computed module name, so remove it
556 clsname = clsname.split(".")[1:]
557 clsname = ".".join(clsname)
558 funcname = "%s.%s" % (clsname, funcname)
559
560 return filename, modulename, funcname
561
Skip Montanarocafc8112004-04-07 15:46:05 +0000562 def globaltrace_trackcallers(self, frame, why, arg):
563 """Handler for call events.
564
565 Adds information about who called who to the self._callers dict.
566 """
567 if why == 'call':
568 # XXX Should do a better job of identifying methods
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000569 this_func = self.file_module_function_of(frame)
570 parent_func = self.file_module_function_of(frame.f_back)
Skip Montanarocafc8112004-04-07 15:46:05 +0000571 self._callers[(parent_func, this_func)] = 1
572
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000573 def globaltrace_countfuncs(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000574 """Handler for call events.
Tim Peters0eadaac2003-04-24 16:02:54 +0000575
Jeremy Hylton38732e12003-04-21 22:04:46 +0000576 Adds (filename, modulename, funcname) to the self._calledfuncs dict.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000577 """
578 if why == 'call':
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000579 this_func = self.file_module_function_of(frame)
580 self._calledfuncs[this_func] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000581
582 def globaltrace_lt(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000583 """Handler for call events.
584
585 If the code block being entered is to be ignored, returns `None',
586 else returns self.localtrace.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000587 """
588 if why == 'call':
Jeremy Hylton38732e12003-04-21 22:04:46 +0000589 code = frame.f_code
590 filename = code.co_filename
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000591 if filename:
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000592 # XXX modname() doesn't work right for packages, so
593 # the ignore support won't work right for packages
Jeremy Hylton38732e12003-04-21 22:04:46 +0000594 modulename = modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000595 if modulename is not None:
596 ignore_it = self.ignore.names(filename, modulename)
597 if not ignore_it:
598 if self.trace:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000599 print((" --- modulename: %s, funcname: %s"
600 % (modulename, code.co_name)))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000601 return self.localtrace
602 else:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000603 return None
604
605 def localtrace_trace_and_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000606 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000607 # record the file name and line number of every trace
Jeremy Hylton38732e12003-04-21 22:04:46 +0000608 filename = frame.f_code.co_filename
609 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000610 key = filename, lineno
611 self.counts[key] = self.counts.get(key, 0) + 1
Tim Petersf2715e02003-02-19 02:35:07 +0000612
Jeremy Hylton38732e12003-04-21 22:04:46 +0000613 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000614 print("%s(%d): %s" % (bname, lineno,
615 linecache.getline(filename, lineno)), end=' ')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000616 return self.localtrace
617
618 def localtrace_trace(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000619 if why == "line":
620 # record the file name and line number of every trace
621 filename = frame.f_code.co_filename
622 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000623
Jeremy Hylton38732e12003-04-21 22:04:46 +0000624 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000625 print("%s(%d): %s" % (bname, lineno,
626 linecache.getline(filename, lineno)), end=' ')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000627 return self.localtrace
628
629 def localtrace_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000630 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000631 filename = frame.f_code.co_filename
632 lineno = frame.f_lineno
633 key = filename, lineno
634 self.counts[key] = self.counts.get(key, 0) + 1
635 return self.localtrace
636
637 def results(self):
638 return CoverageResults(self.counts, infile=self.infile,
639 outfile=self.outfile,
Skip Montanarocafc8112004-04-07 15:46:05 +0000640 calledfuncs=self._calledfuncs,
641 callers=self._callers)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000642
643def _err_exit(msg):
644 sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
645 sys.exit(1)
646
647def main(argv=None):
648 import getopt
649
650 if argv is None:
651 argv = sys.argv
652 try:
Skip Montanarocafc8112004-04-07 15:46:05 +0000653 opts, prog_argv = getopt.getopt(argv[1:], "tcrRf:d:msC:lT",
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000654 ["help", "version", "trace", "count",
655 "report", "no-report", "summary",
656 "file=", "missing",
657 "ignore-module=", "ignore-dir=",
Skip Montanarocafc8112004-04-07 15:46:05 +0000658 "coverdir=", "listfuncs",
659 "trackcalls"])
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000660
Guido van Rossumb940e112007-01-10 16:19:56 +0000661 except getopt.error as msg:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000662 sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
663 sys.stderr.write("Try `%s --help' for more information\n"
664 % sys.argv[0])
665 sys.exit(1)
666
667 trace = 0
668 count = 0
669 report = 0
670 no_report = 0
671 counts_file = None
672 missing = 0
673 ignore_modules = []
674 ignore_dirs = []
675 coverdir = None
676 summary = 0
677 listfuncs = False
Skip Montanarocafc8112004-04-07 15:46:05 +0000678 countcallers = False
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000679
680 for opt, val in opts:
681 if opt == "--help":
682 usage(sys.stdout)
683 sys.exit(0)
684
685 if opt == "--version":
686 sys.stdout.write("trace 2.0\n")
687 sys.exit(0)
688
Skip Montanarocafc8112004-04-07 15:46:05 +0000689 if opt == "-T" or opt == "--trackcalls":
690 countcallers = True
691 continue
692
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000693 if opt == "-l" or opt == "--listfuncs":
694 listfuncs = True
695 continue
696
697 if opt == "-t" or opt == "--trace":
698 trace = 1
699 continue
700
701 if opt == "-c" or opt == "--count":
702 count = 1
703 continue
704
705 if opt == "-r" or opt == "--report":
706 report = 1
707 continue
708
709 if opt == "-R" or opt == "--no-report":
710 no_report = 1
711 continue
712
713 if opt == "-f" or opt == "--file":
714 counts_file = val
715 continue
716
717 if opt == "-m" or opt == "--missing":
718 missing = 1
719 continue
720
721 if opt == "-C" or opt == "--coverdir":
722 coverdir = val
723 continue
724
725 if opt == "-s" or opt == "--summary":
726 summary = 1
727 continue
728
729 if opt == "--ignore-module":
730 ignore_modules.append(val)
731 continue
732
733 if opt == "--ignore-dir":
734 for s in val.split(os.pathsep):
735 s = os.path.expandvars(s)
736 # should I also call expanduser? (after all, could use $HOME)
737
738 s = s.replace("$prefix",
739 os.path.join(sys.prefix, "lib",
740 "python" + sys.version[:3]))
741 s = s.replace("$exec_prefix",
742 os.path.join(sys.exec_prefix, "lib",
743 "python" + sys.version[:3]))
744 s = os.path.normpath(s)
745 ignore_dirs.append(s)
746 continue
747
748 assert 0, "Should never get here"
749
750 if listfuncs and (count or trace):
751 _err_exit("cannot specify both --listfuncs and (--trace or --count)")
752
Skip Montanarocafc8112004-04-07 15:46:05 +0000753 if not (count or trace or report or listfuncs or countcallers):
754 _err_exit("must specify one of --trace, --count, --report, "
755 "--listfuncs, or --trackcalls")
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000756
757 if report and no_report:
758 _err_exit("cannot specify both --report and --no-report")
759
760 if report and not counts_file:
761 _err_exit("--report requires a --file")
762
763 if no_report and len(prog_argv) == 0:
764 _err_exit("missing name of file to run")
765
766 # everything is ready
767 if report:
768 results = CoverageResults(infile=counts_file, outfile=counts_file)
769 results.write_results(missing, summary=summary, coverdir=coverdir)
770 else:
771 sys.argv = prog_argv
772 progname = prog_argv[0]
773 sys.path[0] = os.path.split(progname)[0]
774
775 t = Trace(count, trace, countfuncs=listfuncs,
Skip Montanarocafc8112004-04-07 15:46:05 +0000776 countcallers=countcallers, ignoremods=ignore_modules,
777 ignoredirs=ignore_dirs, infile=counts_file,
778 outfile=counts_file)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000779 try:
Walter Dörwald70a6b492004-02-12 17:35:32 +0000780 t.run('execfile(%r)' % (progname,))
Guido van Rossumb940e112007-01-10 16:19:56 +0000781 except IOError as err:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000782 _err_exit("Cannot run file %r because: %s" % (sys.argv[0], err))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000783 except SystemExit:
784 pass
785
786 results = t.results()
787
788 if not no_report:
789 results.write_results(missing, summary=summary, coverdir=coverdir)
790
791if __name__=='__main__':
792 main()