blob: 62325d3f238ad61fff6984a10da9aa58e146db67 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#!/usr/bin/env python3
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +00002
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.
Vinay Sajip7ded1f02012-05-26 03:45:29 +010042 tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
43 trace=0, count=1)
Thomas Wouters477c8d52006-05-27 19:21:47 +000044 # 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"""
Alexander Belopolsky44454af2010-11-20 18:21:07 +000050__all__ = ['Trace', 'CoverageResults']
Serhiy Storchaka7e4db2f2017-05-04 08:17:47 +030051
Jeremy Hylton38732e12003-04-21 22:04:46 +000052import linecache
Jeremy Hylton38732e12003-04-21 22:04:46 +000053import os
Jeremy Hylton38732e12003-04-21 22:04:46 +000054import sys
55import token
56import tokenize
Alexander Belopolsky4d770172010-09-13 18:14:34 +000057import inspect
Skip Montanaro5bfd9842004-04-10 16:29:58 +000058import gc
Alexander Belopolskyff09ce22010-09-24 18:03:12 +000059import dis
Guido van Rossum99603b02007-07-20 00:22:32 +000060import pickle
Victor Stinnerae586492014-09-02 23:18:25 +020061from time import monotonic as _time
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000062
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020063import threading
Alexander Belopolsky25b57412010-11-06 01:31:16 +000064
Jeremy Hylton38732e12003-04-21 22:04:46 +000065PRAGMA_NOCOVER = "#pragma NO COVER"
66
Alexander Belopolsky44454af2010-11-20 18:21:07 +000067class _Ignore:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000068 def __init__(self, modules=None, dirs=None):
69 self._mods = set() if not modules else set(modules)
70 self._dirs = [] if not dirs else [os.path.normpath(d)
71 for d in dirs]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000072 self._ignore = { '<string>': 1 }
73
74 def names(self, filename, modulename):
Guido van Rossume2b70bc2006-08-18 22:13:04 +000075 if modulename in self._ignore:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000076 return self._ignore[modulename]
77
78 # haven't seen this one before, so see if the module name is
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000079 # on the ignore list.
80 if modulename in self._mods: # Identical names, so ignore
81 self._ignore[modulename] = 1
82 return 1
83
84 # check if the module is a proper submodule of something on
85 # the ignore list
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000086 for mod in self._mods:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000087 # Need to take some care since ignoring
88 # "cmp" mustn't mean ignoring "cmpcache" but ignoring
89 # "Spam" must also mean ignoring "Spam.Eggs".
90 if modulename.startswith(mod + '.'):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000091 self._ignore[modulename] = 1
92 return 1
93
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000094 # Now check that filename isn't in one of the directories
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000095 if filename is None:
96 # must be a built-in, so we must ignore
97 self._ignore[modulename] = 1
98 return 1
99
100 # Ignore a file when it contains one of the ignorable paths
101 for d in self._dirs:
102 # The '+ os.sep' is to ensure that d is a parent directory,
103 # as compared to cases like:
104 # d = "/usr/local"
105 # filename = "/usr/local.py"
106 # or
107 # d = "/usr/local.py"
108 # filename = "/usr/local.py"
109 if filename.startswith(d + os.sep):
110 self._ignore[modulename] = 1
111 return 1
112
113 # Tried the different ways, so we don't ignore this module
114 self._ignore[modulename] = 0
115 return 0
116
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000117def _modname(path):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000118 """Return a plausible module name for the patch."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000119
Jeremy Hylton38732e12003-04-21 22:04:46 +0000120 base = os.path.basename(path)
121 filename, ext = os.path.splitext(base)
122 return filename
123
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000124def _fullmodname(path):
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000125 """Return a plausible module name for the path."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000126
127 # If the file 'path' is part of a package, then the filename isn't
128 # enough to uniquely identify it. Try to do the right thing by
129 # looking in sys.path for the longest matching prefix. We'll
130 # assume that the rest is the package name.
131
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000132 comparepath = os.path.normcase(path)
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000133 longest = ""
134 for dir in sys.path:
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000135 dir = os.path.normcase(dir)
136 if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000137 if len(dir) > len(longest):
138 longest = dir
139
Guido van Rossumb427c002003-10-10 23:02:01 +0000140 if longest:
141 base = path[len(longest) + 1:]
142 else:
143 base = path
Georg Brandl120d6332010-08-01 14:38:17 +0000144 # the drive letter is never part of the module name
145 drive, base = os.path.splitdrive(base)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000146 base = base.replace(os.sep, ".")
147 if os.altsep:
148 base = base.replace(os.altsep, ".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000149 filename, ext = os.path.splitext(base)
Georg Brandl120d6332010-08-01 14:38:17 +0000150 return filename.lstrip(".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000151
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000152class CoverageResults:
153 def __init__(self, counts=None, calledfuncs=None, infile=None,
Skip Montanarocafc8112004-04-07 15:46:05 +0000154 callers=None, outfile=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000155 self.counts = counts
156 if self.counts is None:
157 self.counts = {}
158 self.counter = self.counts.copy() # map (filename, lineno) to count
159 self.calledfuncs = calledfuncs
160 if self.calledfuncs is None:
161 self.calledfuncs = {}
162 self.calledfuncs = self.calledfuncs.copy()
Skip Montanarocafc8112004-04-07 15:46:05 +0000163 self.callers = callers
164 if self.callers is None:
165 self.callers = {}
166 self.callers = self.callers.copy()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000167 self.infile = infile
168 self.outfile = outfile
169 if self.infile:
Jeremy Hyltond7ce86d2003-07-07 16:08:47 +0000170 # Try to merge existing counts file.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000171 try:
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300172 with open(self.infile, 'rb') as f:
173 counts, calledfuncs, callers = pickle.load(f)
Skip Montanarocafc8112004-04-07 15:46:05 +0000174 self.update(self.__class__(counts, calledfuncs, callers))
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200175 except (OSError, EOFError, ValueError) as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000176 print(("Skipping counts file %r: %s"
177 % (self.infile, err)), file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000178
Georg Brandl33c28812009-04-01 23:07:29 +0000179 def is_ignored_filename(self, filename):
180 """Return True if the filename does not refer to a file
181 we want to have reported.
182 """
Brett Cannon9fe92d12012-04-10 21:05:53 -0400183 return filename.startswith('<') and filename.endswith('>')
Georg Brandl33c28812009-04-01 23:07:29 +0000184
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000185 def update(self, other):
186 """Merge in the data from another CoverageResults"""
187 counts = self.counts
188 calledfuncs = self.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000189 callers = self.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000190 other_counts = other.counts
191 other_calledfuncs = other.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000192 other_callers = other.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000193
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000194 for key in other_counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000195 counts[key] = counts.get(key, 0) + other_counts[key]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000196
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000197 for key in other_calledfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000198 calledfuncs[key] = 1
199
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000200 for key in other_callers:
Skip Montanarocafc8112004-04-07 15:46:05 +0000201 callers[key] = 1
202
Jeremy Hylton38732e12003-04-21 22:04:46 +0000203 def write_results(self, show_missing=True, summary=False, coverdir=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000204 """
Senthil Kumaran436831d2016-01-13 07:46:54 -0800205 Write the coverage results.
206
207 :param show_missing: Show lines that had no hits.
208 :param summary: Include coverage summary per module.
Martin Panter0f29ad12016-06-04 05:06:25 +0000209 :param coverdir: If None, the results of each module are placed in its
Senthil Kumaran436831d2016-01-13 07:46:54 -0800210 directory, otherwise it is included in the directory
211 specified.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000212 """
Skip Montanarocafc8112004-04-07 15:46:05 +0000213 if self.calledfuncs:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000214 print()
215 print("functions called:")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000216 calls = self.calledfuncs
Alexander Belopolsky533a1672010-07-20 19:55:18 +0000217 for filename, modulename, funcname in sorted(calls):
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000218 print(("filename: %s, modulename: %s, funcname: %s"
219 % (filename, modulename, funcname)))
Skip Montanarocafc8112004-04-07 15:46:05 +0000220
221 if self.callers:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000222 print()
223 print("calling relationships:")
Skip Montanarocafc8112004-04-07 15:46:05 +0000224 lastfile = lastcfile = ""
Georg Brandl33c28812009-04-01 23:07:29 +0000225 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000226 in sorted(self.callers):
Skip Montanarocafc8112004-04-07 15:46:05 +0000227 if pfile != lastfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000228 print()
229 print("***", pfile, "***")
Skip Montanarocafc8112004-04-07 15:46:05 +0000230 lastfile = pfile
231 lastcfile = ""
232 if cfile != pfile and lastcfile != cfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000233 print(" -->", cfile)
Skip Montanarocafc8112004-04-07 15:46:05 +0000234 lastcfile = cfile
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000235 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000236
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000237 # turn the counts data ("(filename, lineno) = count") into something
238 # accessible on a per-file basis
239 per_file = {}
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000240 for filename, lineno in self.counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000241 lines_hit = per_file[filename] = per_file.get(filename, {})
242 lines_hit[lineno] = self.counts[(filename, lineno)]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000243
244 # accumulate summary info, if needed
245 sums = {}
246
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000247 for filename, count in per_file.items():
Georg Brandl33c28812009-04-01 23:07:29 +0000248 if self.is_ignored_filename(filename):
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000249 continue
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000250
Brett Cannonf299abd2015-04-13 14:21:02 -0400251 if filename.endswith(".pyc"):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000252 filename = filename[:-1]
253
Jeremy Hylton38732e12003-04-21 22:04:46 +0000254 if coverdir is None:
255 dir = os.path.dirname(os.path.abspath(filename))
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000256 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000257 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000258 dir = coverdir
259 if not os.path.exists(dir):
260 os.makedirs(dir)
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000261 modulename = _fullmodname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000262
263 # If desired, get a list of the line numbers which represent
264 # executable content (returned as a dict for better lookup speed)
265 if show_missing:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000266 lnotab = _find_executable_linenos(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000267 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000268 lnotab = {}
Michael Selik47ab1542018-04-30 20:46:52 -0700269 source = linecache.getlines(filename)
270 coverpath = os.path.join(dir, modulename + ".cover")
271 with open(filename, 'rb') as fp:
272 encoding, _ = tokenize.detect_encoding(fp.readline)
273 n_hits, n_lines = self.write_results_file(coverpath, source,
274 lnotab, count, encoding)
275 if summary and n_lines:
276 percent = int(100 * n_hits / n_lines)
277 sums[modulename] = n_lines, percent, modulename, filename
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000278
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000279
280 if summary and sums:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000281 print("lines cov% module (path)")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000282 for m in sorted(sums):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000283 n_lines, percent, modulename, filename = sums[m]
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000284 print("%5d %3d%% %s (%s)" % sums[m])
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000285
286 if self.outfile:
287 # try and store counts and module info into self.outfile
288 try:
Skip Montanarocafc8112004-04-07 15:46:05 +0000289 pickle.dump((self.counts, self.calledfuncs, self.callers),
Jeremy Hyltond0e27052003-10-14 20:12:06 +0000290 open(self.outfile, 'wb'), 1)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200291 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000292 print("Can't save counts files because %s" % err, file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000293
Victor Stinner64bc3b22010-11-07 15:47:36 +0000294 def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000295 """Return a coverage results file in path."""
Michael Selik47ab1542018-04-30 20:46:52 -0700296 # ``lnotab`` is a dict of executable lines, or a line number "table"
Jeremy Hylton38732e12003-04-21 22:04:46 +0000297
298 try:
Victor Stinner64bc3b22010-11-07 15:47:36 +0000299 outfile = open(path, "w", encoding=encoding)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200300 except OSError as err:
Serhiy Storchaka34fd4c22018-11-05 16:20:25 +0200301 print(("trace: Could not open %r for writing: %s "
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000302 "- skipping" % (path, err)), file=sys.stderr)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000303 return 0, 0
Jeremy Hylton38732e12003-04-21 22:04:46 +0000304
305 n_lines = 0
306 n_hits = 0
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300307 with outfile:
308 for lineno, line in enumerate(lines, 1):
309 # do the blank/comment match to try to mark more lines
310 # (help the reader find stuff that hasn't been covered)
311 if lineno in lines_hit:
312 outfile.write("%5d: " % lines_hit[lineno])
313 n_hits += 1
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000314 n_lines += 1
Michael Selik47ab1542018-04-30 20:46:52 -0700315 elif lineno in lnotab and not PRAGMA_NOCOVER in line:
316 # Highlight never-executed lines, unless the line contains
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300317 # #pragma: NO COVER
Michael Selik47ab1542018-04-30 20:46:52 -0700318 outfile.write(">>>>>> ")
319 n_lines += 1
320 else:
321 outfile.write(" ")
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300322 outfile.write(line.expandtabs(8))
Jeremy Hylton38732e12003-04-21 22:04:46 +0000323
324 return n_hits, n_lines
325
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000326def _find_lines_from_code(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000327 """Return dict where keys are lines in the line number table."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000328 linenos = {}
329
Alexander Belopolskyff09ce22010-09-24 18:03:12 +0000330 for _, lineno in dis.findlinestarts(code):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000331 if lineno not in strs:
332 linenos[lineno] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000333
334 return linenos
335
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000336def _find_lines(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000337 """Return lineno dict for all code objects reachable from code."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000338 # get all of the lineno information from the code of this scope level
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000339 linenos = _find_lines_from_code(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000340
341 # and check the constants for references to other code objects
342 for c in code.co_consts:
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000343 if inspect.iscode(c):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000344 # find another code object, so recurse into it
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000345 linenos.update(_find_lines(c, strs))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000346 return linenos
347
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000348def _find_strings(filename, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000349 """Return a dict of possible docstring positions.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000350
Jeremy Hylton38732e12003-04-21 22:04:46 +0000351 The dict maps line numbers to strings. There is an entry for
352 line that contains only a string or a part of a triple-quoted
353 string.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000354 """
Jeremy Hylton38732e12003-04-21 22:04:46 +0000355 d = {}
356 # If the first token is a string, then it's the module docstring.
357 # Add this special case so that the test in the loop passes.
358 prev_ttype = token.INDENT
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000359 with open(filename, encoding=encoding) as f:
360 tok = tokenize.generate_tokens(f.readline)
361 for ttype, tstr, start, end, line in tok:
362 if ttype == token.STRING:
363 if prev_ttype == token.INDENT:
364 sline, scol = start
365 eline, ecol = end
366 for i in range(sline, eline + 1):
367 d[i] = 1
368 prev_ttype = ttype
Jeremy Hylton38732e12003-04-21 22:04:46 +0000369 return d
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000370
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000371def _find_executable_linenos(filename):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000372 """Return dict where keys are line numbers in the line number table."""
Jeremy Hylton38732e12003-04-21 22:04:46 +0000373 try:
Victor Stinner58c07522010-11-09 01:08:59 +0000374 with tokenize.open(filename) as f:
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000375 prog = f.read()
Victor Stinner58c07522010-11-09 01:08:59 +0000376 encoding = f.encoding
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200377 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000378 print(("Not printing coverage data for %r: %s"
379 % (filename, err)), file=sys.stderr)
Jeremy Hylton38732e12003-04-21 22:04:46 +0000380 return {}
381 code = compile(prog, filename, "exec")
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000382 strs = _find_strings(filename, encoding)
383 return _find_lines(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000384
385class Trace:
Skip Montanarocafc8112004-04-07 15:46:05 +0000386 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,
Christian Heimes380f7f22008-02-28 11:19:05 +0000387 ignoremods=(), ignoredirs=(), infile=None, outfile=None,
388 timing=False):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000389 """
390 @param count true iff it should count number of times each
Tim Petersf2715e02003-02-19 02:35:07 +0000391 line is executed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000392 @param trace true iff it should print out each line that is
Tim Petersf2715e02003-02-19 02:35:07 +0000393 being counted
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000394 @param countfuncs true iff it should just output a list of
395 (filename, modulename, funcname,) for functions
396 that were called at least once; This overrides
Tim Petersf2715e02003-02-19 02:35:07 +0000397 `count' and `trace'
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000398 @param ignoremods a list of the names of modules to ignore
399 @param ignoredirs a list of the names of directories to ignore
Tim Petersf2715e02003-02-19 02:35:07 +0000400 all of the (recursive) contents of
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000401 @param infile file from which to read stored counts to be
Tim Petersf2715e02003-02-19 02:35:07 +0000402 added into the results
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000403 @param outfile file in which to write the results
Christian Heimes380f7f22008-02-28 11:19:05 +0000404 @param timing true iff timing information be displayed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000405 """
406 self.infile = infile
407 self.outfile = outfile
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000408 self.ignore = _Ignore(ignoremods, ignoredirs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000409 self.counts = {} # keys are (filename, linenumber)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000410 self.pathtobasename = {} # for memoizing os.path.basename
411 self.donothing = 0
412 self.trace = trace
413 self._calledfuncs = {}
Skip Montanarocafc8112004-04-07 15:46:05 +0000414 self._callers = {}
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000415 self._caller_cache = {}
Christian Heimes380f7f22008-02-28 11:19:05 +0000416 self.start_time = None
417 if timing:
Victor Stinner949d8c92012-05-30 13:30:32 +0200418 self.start_time = _time()
Skip Montanarocafc8112004-04-07 15:46:05 +0000419 if countcallers:
420 self.globaltrace = self.globaltrace_trackcallers
421 elif countfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000422 self.globaltrace = self.globaltrace_countfuncs
423 elif trace and count:
424 self.globaltrace = self.globaltrace_lt
425 self.localtrace = self.localtrace_trace_and_count
426 elif trace:
427 self.globaltrace = self.globaltrace_lt
428 self.localtrace = self.localtrace_trace
429 elif count:
430 self.globaltrace = self.globaltrace_lt
431 self.localtrace = self.localtrace_count
432 else:
433 # Ahem -- do nothing? Okay.
434 self.donothing = 1
435
436 def run(self, cmd):
437 import __main__
438 dict = __main__.__dict__
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000439 self.runctx(cmd, dict, dict)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000440
441 def runctx(self, cmd, globals=None, locals=None):
442 if globals is None: globals = {}
443 if locals is None: locals = {}
444 if not self.donothing:
Serhiy Storchakac406d5c2018-08-25 10:27:55 +0300445 threading.settrace(self.globaltrace)
446 sys.settrace(self.globaltrace)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000447 try:
Georg Brandl7cae87c2006-09-06 06:51:57 +0000448 exec(cmd, globals, locals)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000449 finally:
450 if not self.donothing:
Serhiy Storchakac406d5c2018-08-25 10:27:55 +0300451 sys.settrace(None)
452 threading.settrace(None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000453
Serhiy Storchaka42a139e2019-04-01 09:16:35 +0300454 def runfunc(*args, **kw):
455 if len(args) >= 2:
456 self, func, *args = args
457 elif not args:
458 raise TypeError("descriptor 'runfunc' of 'Trace' object "
459 "needs an argument")
460 elif 'func' in kw:
461 func = kw.pop('func')
462 self, *args = args
463 import warnings
464 warnings.warn("Passing 'func' as keyword argument is deprecated",
465 DeprecationWarning, stacklevel=2)
466 else:
467 raise TypeError('runfunc expected at least 1 positional argument, '
468 'got %d' % (len(args)-1))
469
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000470 result = None
471 if not self.donothing:
472 sys.settrace(self.globaltrace)
473 try:
Guido van Rossum68468eb2003-02-27 20:14:51 +0000474 result = func(*args, **kw)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000475 finally:
476 if not self.donothing:
477 sys.settrace(None)
478 return result
Serhiy Storchakad53cf992019-05-06 22:40:27 +0300479 runfunc.__text_signature__ = '($self, func, /, *args, **kw)'
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000480
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000481 def file_module_function_of(self, frame):
482 code = frame.f_code
483 filename = code.co_filename
484 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000485 modulename = _modname(filename)
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000486 else:
487 modulename = None
488
489 funcname = code.co_name
490 clsname = None
491 if code in self._caller_cache:
492 if self._caller_cache[code] is not None:
493 clsname = self._caller_cache[code]
494 else:
495 self._caller_cache[code] = None
496 ## use of gc.get_referrers() was suggested by Michael Hudson
497 # all functions which refer to this code object
498 funcs = [f for f in gc.get_referrers(code)
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000499 if inspect.isfunction(f)]
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000500 # require len(func) == 1 to avoid ambiguity caused by calls to
501 # new.function(): "In the face of ambiguity, refuse the
502 # temptation to guess."
503 if len(funcs) == 1:
504 dicts = [d for d in gc.get_referrers(funcs[0])
505 if isinstance(d, dict)]
506 if len(dicts) == 1:
507 classes = [c for c in gc.get_referrers(dicts[0])
508 if hasattr(c, "__bases__")]
509 if len(classes) == 1:
510 # ditto for new.classobj()
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000511 clsname = classes[0].__name__
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000512 # cache the result - assumption is that new.* is
513 # not called later to disturb this relationship
514 # _caller_cache could be flushed if functions in
515 # the new module get called.
516 self._caller_cache[code] = clsname
517 if clsname is not None:
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000518 funcname = "%s.%s" % (clsname, funcname)
519
520 return filename, modulename, funcname
521
Skip Montanarocafc8112004-04-07 15:46:05 +0000522 def globaltrace_trackcallers(self, frame, why, arg):
523 """Handler for call events.
524
525 Adds information about who called who to the self._callers dict.
526 """
527 if why == 'call':
528 # XXX Should do a better job of identifying methods
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000529 this_func = self.file_module_function_of(frame)
530 parent_func = self.file_module_function_of(frame.f_back)
Skip Montanarocafc8112004-04-07 15:46:05 +0000531 self._callers[(parent_func, this_func)] = 1
532
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000533 def globaltrace_countfuncs(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000534 """Handler for call events.
Tim Peters0eadaac2003-04-24 16:02:54 +0000535
Jeremy Hylton38732e12003-04-21 22:04:46 +0000536 Adds (filename, modulename, funcname) to the self._calledfuncs dict.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000537 """
538 if why == 'call':
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000539 this_func = self.file_module_function_of(frame)
540 self._calledfuncs[this_func] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000541
542 def globaltrace_lt(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000543 """Handler for call events.
544
545 If the code block being entered is to be ignored, returns `None',
546 else returns self.localtrace.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000547 """
548 if why == 'call':
Jeremy Hylton38732e12003-04-21 22:04:46 +0000549 code = frame.f_code
Thomas Wouterscf297e42007-02-23 15:07:44 +0000550 filename = frame.f_globals.get('__file__', None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000551 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000552 # XXX _modname() doesn't work right for packages, so
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000553 # the ignore support won't work right for packages
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000554 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000555 if modulename is not None:
556 ignore_it = self.ignore.names(filename, modulename)
557 if not ignore_it:
558 if self.trace:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000559 print((" --- modulename: %s, funcname: %s"
560 % (modulename, code.co_name)))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000561 return self.localtrace
562 else:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000563 return None
564
565 def localtrace_trace_and_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000566 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000567 # record the file name and line number of every trace
Jeremy Hylton38732e12003-04-21 22:04:46 +0000568 filename = frame.f_code.co_filename
569 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000570 key = filename, lineno
571 self.counts[key] = self.counts.get(key, 0) + 1
Tim Petersf2715e02003-02-19 02:35:07 +0000572
Christian Heimes380f7f22008-02-28 11:19:05 +0000573 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200574 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000575 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000576 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000577 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000578 return self.localtrace
579
580 def localtrace_trace(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000581 if why == "line":
582 # record the file name and line number of every trace
583 filename = frame.f_code.co_filename
584 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000585
Christian Heimes380f7f22008-02-28 11:19:05 +0000586 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200587 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000588 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000589 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000590 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000591 return self.localtrace
592
593 def localtrace_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000594 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000595 filename = frame.f_code.co_filename
596 lineno = frame.f_lineno
597 key = filename, lineno
598 self.counts[key] = self.counts.get(key, 0) + 1
599 return self.localtrace
600
601 def results(self):
602 return CoverageResults(self.counts, infile=self.infile,
603 outfile=self.outfile,
Skip Montanarocafc8112004-04-07 15:46:05 +0000604 calledfuncs=self._calledfuncs,
605 callers=self._callers)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000606
Senthil Kumaran436831d2016-01-13 07:46:54 -0800607def main():
Serhiy Storchaka7e4db2f2017-05-04 08:17:47 +0300608 import argparse
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000609
Senthil Kumaran436831d2016-01-13 07:46:54 -0800610 parser = argparse.ArgumentParser()
611 parser.add_argument('--version', action='version', version='trace 2.0')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000612
Senthil Kumaran436831d2016-01-13 07:46:54 -0800613 grp = parser.add_argument_group('Main options',
614 'One of these (or --report) must be given')
615
616 grp.add_argument('-c', '--count', action='store_true',
617 help='Count the number of times each line is executed and write '
618 'the counts to <module>.cover for each module executed, in '
619 'the module\'s directory. See also --coverdir, --file, '
620 '--no-report below.')
621 grp.add_argument('-t', '--trace', action='store_true',
622 help='Print each line to sys.stdout before it is executed')
623 grp.add_argument('-l', '--listfuncs', action='store_true',
624 help='Keep track of which functions are executed at least once '
625 'and write the results to sys.stdout after the program exits. '
626 'Cannot be specified alongside --trace or --count.')
627 grp.add_argument('-T', '--trackcalls', action='store_true',
628 help='Keep track of caller/called pairs and write the results to '
629 'sys.stdout after the program exits.')
630
631 grp = parser.add_argument_group('Modifiers')
632
633 _grp = grp.add_mutually_exclusive_group()
634 _grp.add_argument('-r', '--report', action='store_true',
635 help='Generate a report from a counts file; does not execute any '
636 'code. --file must specify the results file to read, which '
637 'must have been created in a previous run with --count '
638 '--file=FILE')
639 _grp.add_argument('-R', '--no-report', action='store_true',
640 help='Do not generate the coverage report files. '
641 'Useful if you want to accumulate over several runs.')
642
643 grp.add_argument('-f', '--file',
644 help='File to accumulate counts over several runs')
645 grp.add_argument('-C', '--coverdir',
646 help='Directory where the report files go. The coverage report '
647 'for <package>.<module> will be written to file '
648 '<dir>/<package>/<module>.cover')
649 grp.add_argument('-m', '--missing', action='store_true',
650 help='Annotate executable lines that were not executed with '
651 '">>>>>> "')
652 grp.add_argument('-s', '--summary', action='store_true',
653 help='Write a brief summary for each file to sys.stdout. '
654 'Can only be used with --count or --report')
655 grp.add_argument('-g', '--timing', action='store_true',
656 help='Prefix each line with the time since the program started. '
657 'Only used while tracing')
658
659 grp = parser.add_argument_group('Filters',
660 'Can be specified multiple times')
661 grp.add_argument('--ignore-module', action='append', default=[],
Serhiy Storchaka34fd4c22018-11-05 16:20:25 +0200662 help='Ignore the given module(s) and its submodules '
Senthil Kumaran436831d2016-01-13 07:46:54 -0800663 '(if it is a package). Accepts comma separated list of '
664 'module names.')
665 grp.add_argument('--ignore-dir', action='append', default=[],
666 help='Ignore files in the given directory '
667 '(multiple directories can be joined by os.pathsep).')
668
Mario Corchero354227a2019-06-01 05:49:10 +0100669 parser.add_argument('--module', action='store_true', default=False,
670 help='Trace a module. ')
671 parser.add_argument('progname', nargs='?',
Senthil Kumaran436831d2016-01-13 07:46:54 -0800672 help='file to run as main program')
673 parser.add_argument('arguments', nargs=argparse.REMAINDER,
674 help='arguments to the program')
675
676 opts = parser.parse_args()
677
678 if opts.ignore_dir:
679 rel_path = 'lib', 'python{0.major}.{0.minor}'.format(sys.version_info)
680 _prefix = os.path.join(sys.base_prefix, *rel_path)
681 _exec_prefix = os.path.join(sys.base_exec_prefix, *rel_path)
682
683 def parse_ignore_dir(s):
684 s = os.path.expanduser(os.path.expandvars(s))
685 s = s.replace('$prefix', _prefix).replace('$exec_prefix', _exec_prefix)
686 return os.path.normpath(s)
687
688 opts.ignore_module = [mod.strip()
689 for i in opts.ignore_module for mod in i.split(',')]
690 opts.ignore_dir = [parse_ignore_dir(s)
691 for i in opts.ignore_dir for s in i.split(os.pathsep)]
692
693 if opts.report:
694 if not opts.file:
695 parser.error('-r/--report requires -f/--file')
696 results = CoverageResults(infile=opts.file, outfile=opts.file)
697 return results.write_results(opts.missing, opts.summary, opts.coverdir)
698
699 if not any([opts.trace, opts.count, opts.listfuncs, opts.trackcalls]):
700 parser.error('must specify one of --trace, --count, --report, '
701 '--listfuncs, or --trackcalls')
702
703 if opts.listfuncs and (opts.count or opts.trace):
704 parser.error('cannot specify both --listfuncs and (--trace or --count)')
705
706 if opts.summary and not opts.count:
707 parser.error('--summary can only be used with --count or --report')
708
Mario Corchero354227a2019-06-01 05:49:10 +0100709 if opts.progname is None:
710 parser.error('progname is missing: required with the main options')
Senthil Kumaran436831d2016-01-13 07:46:54 -0800711
712 t = Trace(opts.count, opts.trace, countfuncs=opts.listfuncs,
713 countcallers=opts.trackcalls, ignoremods=opts.ignore_module,
714 ignoredirs=opts.ignore_dir, infile=opts.file,
715 outfile=opts.file, timing=opts.timing)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000716 try:
Mario Corchero354227a2019-06-01 05:49:10 +0100717 if opts.module:
718 import runpy
719 module_name = opts.progname
720 mod_name, mod_spec, code = runpy._get_module_details(module_name)
721 sys.argv = [code.co_filename, *opts.arguments]
722 globs = {
723 '__name__': '__main__',
724 '__file__': code.co_filename,
725 '__package__': mod_spec.parent,
726 '__loader__': mod_spec.loader,
727 '__spec__': mod_spec,
728 '__cached__': None,
729 }
730 else:
731 sys.argv = [opts.progname, *opts.arguments]
732 sys.path[0] = os.path.dirname(opts.progname)
733
734 with open(opts.progname) as fp:
735 code = compile(fp.read(), opts.progname, 'exec')
736 # try to emulate __main__ namespace as much as possible
737 globs = {
738 '__file__': opts.progname,
739 '__name__': '__main__',
740 '__package__': None,
741 '__cached__': None,
742 }
Senthil Kumaran436831d2016-01-13 07:46:54 -0800743 t.runctx(code, globs, globs)
744 except OSError as err:
745 sys.exit("Cannot run file %r because: %s" % (sys.argv[0], err))
746 except SystemExit:
747 pass
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000748
Senthil Kumaran436831d2016-01-13 07:46:54 -0800749 results = t.results()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000750
Senthil Kumaran436831d2016-01-13 07:46:54 -0800751 if not opts.no_report:
752 results.write_results(opts.missing, opts.summary, opts.coverdir)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000753
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000754if __name__=='__main__':
755 main()