blob: 2cf3643878d4b8d57aba74d7fffa49a12f1ffc38 [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
Victor Stinner4fac7ed2020-02-12 13:02:29 +010055import sysconfig
Jeremy Hylton38732e12003-04-21 22:04:46 +000056import token
57import tokenize
Alexander Belopolsky4d770172010-09-13 18:14:34 +000058import inspect
Skip Montanaro5bfd9842004-04-10 16:29:58 +000059import gc
Alexander Belopolskyff09ce22010-09-24 18:03:12 +000060import dis
Guido van Rossum99603b02007-07-20 00:22:32 +000061import pickle
Victor Stinnerae586492014-09-02 23:18:25 +020062from time import monotonic as _time
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000063
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020064import threading
Alexander Belopolsky25b57412010-11-06 01:31:16 +000065
Jeremy Hylton38732e12003-04-21 22:04:46 +000066PRAGMA_NOCOVER = "#pragma NO COVER"
67
Alexander Belopolsky44454af2010-11-20 18:21:07 +000068class _Ignore:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000069 def __init__(self, modules=None, dirs=None):
70 self._mods = set() if not modules else set(modules)
71 self._dirs = [] if not dirs else [os.path.normpath(d)
72 for d in dirs]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000073 self._ignore = { '<string>': 1 }
74
75 def names(self, filename, modulename):
Guido van Rossume2b70bc2006-08-18 22:13:04 +000076 if modulename in self._ignore:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000077 return self._ignore[modulename]
78
79 # haven't seen this one before, so see if the module name is
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000080 # on the ignore list.
81 if modulename in self._mods: # Identical names, so ignore
82 self._ignore[modulename] = 1
83 return 1
84
85 # check if the module is a proper submodule of something on
86 # the ignore list
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000087 for mod in self._mods:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000088 # Need to take some care since ignoring
89 # "cmp" mustn't mean ignoring "cmpcache" but ignoring
90 # "Spam" must also mean ignoring "Spam.Eggs".
91 if modulename.startswith(mod + '.'):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000092 self._ignore[modulename] = 1
93 return 1
94
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000095 # Now check that filename isn't in one of the directories
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000096 if filename is None:
97 # must be a built-in, so we must ignore
98 self._ignore[modulename] = 1
99 return 1
100
101 # Ignore a file when it contains one of the ignorable paths
102 for d in self._dirs:
103 # The '+ os.sep' is to ensure that d is a parent directory,
104 # as compared to cases like:
105 # d = "/usr/local"
106 # filename = "/usr/local.py"
107 # or
108 # d = "/usr/local.py"
109 # filename = "/usr/local.py"
110 if filename.startswith(d + os.sep):
111 self._ignore[modulename] = 1
112 return 1
113
114 # Tried the different ways, so we don't ignore this module
115 self._ignore[modulename] = 0
116 return 0
117
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000118def _modname(path):
Yonatan Goldschmidt574aed12021-02-01 17:46:38 +0200119 """Return a plausible module name for the path."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000120
Jeremy Hylton38732e12003-04-21 22:04:46 +0000121 base = os.path.basename(path)
122 filename, ext = os.path.splitext(base)
123 return filename
124
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000125def _fullmodname(path):
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000126 """Return a plausible module name for the path."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000127
128 # If the file 'path' is part of a package, then the filename isn't
129 # enough to uniquely identify it. Try to do the right thing by
130 # looking in sys.path for the longest matching prefix. We'll
131 # assume that the rest is the package name.
132
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000133 comparepath = os.path.normcase(path)
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000134 longest = ""
135 for dir in sys.path:
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000136 dir = os.path.normcase(dir)
137 if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000138 if len(dir) > len(longest):
139 longest = dir
140
Guido van Rossumb427c002003-10-10 23:02:01 +0000141 if longest:
142 base = path[len(longest) + 1:]
143 else:
144 base = path
Georg Brandl120d6332010-08-01 14:38:17 +0000145 # the drive letter is never part of the module name
146 drive, base = os.path.splitdrive(base)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000147 base = base.replace(os.sep, ".")
148 if os.altsep:
149 base = base.replace(os.altsep, ".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000150 filename, ext = os.path.splitext(base)
Georg Brandl120d6332010-08-01 14:38:17 +0000151 return filename.lstrip(".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000152
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000153class CoverageResults:
154 def __init__(self, counts=None, calledfuncs=None, infile=None,
Skip Montanarocafc8112004-04-07 15:46:05 +0000155 callers=None, outfile=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000156 self.counts = counts
157 if self.counts is None:
158 self.counts = {}
159 self.counter = self.counts.copy() # map (filename, lineno) to count
160 self.calledfuncs = calledfuncs
161 if self.calledfuncs is None:
162 self.calledfuncs = {}
163 self.calledfuncs = self.calledfuncs.copy()
Skip Montanarocafc8112004-04-07 15:46:05 +0000164 self.callers = callers
165 if self.callers is None:
166 self.callers = {}
167 self.callers = self.callers.copy()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000168 self.infile = infile
169 self.outfile = outfile
170 if self.infile:
Jeremy Hyltond7ce86d2003-07-07 16:08:47 +0000171 # Try to merge existing counts file.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000172 try:
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300173 with open(self.infile, 'rb') as f:
174 counts, calledfuncs, callers = pickle.load(f)
Skip Montanarocafc8112004-04-07 15:46:05 +0000175 self.update(self.__class__(counts, calledfuncs, callers))
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200176 except (OSError, EOFError, ValueError) as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000177 print(("Skipping counts file %r: %s"
178 % (self.infile, err)), file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000179
Georg Brandl33c28812009-04-01 23:07:29 +0000180 def is_ignored_filename(self, filename):
181 """Return True if the filename does not refer to a file
182 we want to have reported.
183 """
Brett Cannon9fe92d12012-04-10 21:05:53 -0400184 return filename.startswith('<') and filename.endswith('>')
Georg Brandl33c28812009-04-01 23:07:29 +0000185
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000186 def update(self, other):
187 """Merge in the data from another CoverageResults"""
188 counts = self.counts
189 calledfuncs = self.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000190 callers = self.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000191 other_counts = other.counts
192 other_calledfuncs = other.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000193 other_callers = other.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000194
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000195 for key in other_counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000196 counts[key] = counts.get(key, 0) + other_counts[key]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000197
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000198 for key in other_calledfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000199 calledfuncs[key] = 1
200
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000201 for key in other_callers:
Skip Montanarocafc8112004-04-07 15:46:05 +0000202 callers[key] = 1
203
Jeremy Hylton38732e12003-04-21 22:04:46 +0000204 def write_results(self, show_missing=True, summary=False, coverdir=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000205 """
Senthil Kumaran436831d2016-01-13 07:46:54 -0800206 Write the coverage results.
207
208 :param show_missing: Show lines that had no hits.
209 :param summary: Include coverage summary per module.
Martin Panter0f29ad12016-06-04 05:06:25 +0000210 :param coverdir: If None, the results of each module are placed in its
Senthil Kumaran436831d2016-01-13 07:46:54 -0800211 directory, otherwise it is included in the directory
212 specified.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000213 """
Skip Montanarocafc8112004-04-07 15:46:05 +0000214 if self.calledfuncs:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000215 print()
216 print("functions called:")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000217 calls = self.calledfuncs
Alexander Belopolsky533a1672010-07-20 19:55:18 +0000218 for filename, modulename, funcname in sorted(calls):
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000219 print(("filename: %s, modulename: %s, funcname: %s"
220 % (filename, modulename, funcname)))
Skip Montanarocafc8112004-04-07 15:46:05 +0000221
222 if self.callers:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000223 print()
224 print("calling relationships:")
Skip Montanarocafc8112004-04-07 15:46:05 +0000225 lastfile = lastcfile = ""
Georg Brandl33c28812009-04-01 23:07:29 +0000226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000227 in sorted(self.callers):
Skip Montanarocafc8112004-04-07 15:46:05 +0000228 if pfile != lastfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000229 print()
230 print("***", pfile, "***")
Skip Montanarocafc8112004-04-07 15:46:05 +0000231 lastfile = pfile
232 lastcfile = ""
233 if cfile != pfile and lastcfile != cfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000234 print(" -->", cfile)
Skip Montanarocafc8112004-04-07 15:46:05 +0000235 lastcfile = cfile
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000237
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000238 # turn the counts data ("(filename, lineno) = count") into something
239 # accessible on a per-file basis
240 per_file = {}
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000241 for filename, lineno in self.counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000242 lines_hit = per_file[filename] = per_file.get(filename, {})
243 lines_hit[lineno] = self.counts[(filename, lineno)]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000244
245 # accumulate summary info, if needed
246 sums = {}
247
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000248 for filename, count in per_file.items():
Georg Brandl33c28812009-04-01 23:07:29 +0000249 if self.is_ignored_filename(filename):
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000250 continue
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000251
Brett Cannonf299abd2015-04-13 14:21:02 -0400252 if filename.endswith(".pyc"):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000253 filename = filename[:-1]
254
Jeremy Hylton38732e12003-04-21 22:04:46 +0000255 if coverdir is None:
256 dir = os.path.dirname(os.path.abspath(filename))
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000257 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000258 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000259 dir = coverdir
260 if not os.path.exists(dir):
261 os.makedirs(dir)
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000262 modulename = _fullmodname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000263
264 # If desired, get a list of the line numbers which represent
265 # executable content (returned as a dict for better lookup speed)
266 if show_missing:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000267 lnotab = _find_executable_linenos(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000268 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000269 lnotab = {}
Michael Selik47ab1542018-04-30 20:46:52 -0700270 source = linecache.getlines(filename)
271 coverpath = os.path.join(dir, modulename + ".cover")
272 with open(filename, 'rb') as fp:
273 encoding, _ = tokenize.detect_encoding(fp.readline)
274 n_hits, n_lines = self.write_results_file(coverpath, source,
275 lnotab, count, encoding)
276 if summary and n_lines:
277 percent = int(100 * n_hits / n_lines)
278 sums[modulename] = n_lines, percent, modulename, filename
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000279
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000280
281 if summary and sums:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000282 print("lines cov% module (path)")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000283 for m in sorted(sums):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000284 n_lines, percent, modulename, filename = sums[m]
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000285 print("%5d %3d%% %s (%s)" % sums[m])
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000286
287 if self.outfile:
288 # try and store counts and module info into self.outfile
289 try:
Serhiy Storchaka04cdeb72020-06-28 13:34:22 +0300290 with open(self.outfile, 'wb') as f:
291 pickle.dump((self.counts, self.calledfuncs, self.callers),
292 f, 1)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200293 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000294 print("Can't save counts files because %s" % err, file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000295
Victor Stinner64bc3b22010-11-07 15:47:36 +0000296 def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000297 """Return a coverage results file in path."""
Michael Selik47ab1542018-04-30 20:46:52 -0700298 # ``lnotab`` is a dict of executable lines, or a line number "table"
Jeremy Hylton38732e12003-04-21 22:04:46 +0000299
300 try:
Victor Stinner64bc3b22010-11-07 15:47:36 +0000301 outfile = open(path, "w", encoding=encoding)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200302 except OSError as err:
Serhiy Storchaka34fd4c22018-11-05 16:20:25 +0200303 print(("trace: Could not open %r for writing: %s "
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000304 "- skipping" % (path, err)), file=sys.stderr)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000305 return 0, 0
Jeremy Hylton38732e12003-04-21 22:04:46 +0000306
307 n_lines = 0
308 n_hits = 0
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300309 with outfile:
310 for lineno, line in enumerate(lines, 1):
311 # do the blank/comment match to try to mark more lines
312 # (help the reader find stuff that hasn't been covered)
313 if lineno in lines_hit:
314 outfile.write("%5d: " % lines_hit[lineno])
315 n_hits += 1
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000316 n_lines += 1
Michael Selik47ab1542018-04-30 20:46:52 -0700317 elif lineno in lnotab and not PRAGMA_NOCOVER in line:
318 # Highlight never-executed lines, unless the line contains
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300319 # #pragma: NO COVER
Michael Selik47ab1542018-04-30 20:46:52 -0700320 outfile.write(">>>>>> ")
321 n_lines += 1
322 else:
323 outfile.write(" ")
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300324 outfile.write(line.expandtabs(8))
Jeremy Hylton38732e12003-04-21 22:04:46 +0000325
326 return n_hits, n_lines
327
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000328def _find_lines_from_code(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000329 """Return dict where keys are lines in the line number table."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000330 linenos = {}
331
Alexander Belopolskyff09ce22010-09-24 18:03:12 +0000332 for _, lineno in dis.findlinestarts(code):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000333 if lineno not in strs:
334 linenos[lineno] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000335
336 return linenos
337
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000338def _find_lines(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000339 """Return lineno dict for all code objects reachable from code."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000340 # get all of the lineno information from the code of this scope level
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000341 linenos = _find_lines_from_code(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000342
343 # and check the constants for references to other code objects
344 for c in code.co_consts:
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000345 if inspect.iscode(c):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000346 # find another code object, so recurse into it
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000347 linenos.update(_find_lines(c, strs))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000348 return linenos
349
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000350def _find_strings(filename, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000351 """Return a dict of possible docstring positions.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000352
Jeremy Hylton38732e12003-04-21 22:04:46 +0000353 The dict maps line numbers to strings. There is an entry for
354 line that contains only a string or a part of a triple-quoted
355 string.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000356 """
Jeremy Hylton38732e12003-04-21 22:04:46 +0000357 d = {}
358 # If the first token is a string, then it's the module docstring.
359 # Add this special case so that the test in the loop passes.
360 prev_ttype = token.INDENT
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000361 with open(filename, encoding=encoding) as f:
362 tok = tokenize.generate_tokens(f.readline)
363 for ttype, tstr, start, end, line in tok:
364 if ttype == token.STRING:
365 if prev_ttype == token.INDENT:
366 sline, scol = start
367 eline, ecol = end
368 for i in range(sline, eline + 1):
369 d[i] = 1
370 prev_ttype = ttype
Jeremy Hylton38732e12003-04-21 22:04:46 +0000371 return d
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000372
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000373def _find_executable_linenos(filename):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000374 """Return dict where keys are line numbers in the line number table."""
Jeremy Hylton38732e12003-04-21 22:04:46 +0000375 try:
Victor Stinner58c07522010-11-09 01:08:59 +0000376 with tokenize.open(filename) as f:
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000377 prog = f.read()
Victor Stinner58c07522010-11-09 01:08:59 +0000378 encoding = f.encoding
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200379 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000380 print(("Not printing coverage data for %r: %s"
381 % (filename, err)), file=sys.stderr)
Jeremy Hylton38732e12003-04-21 22:04:46 +0000382 return {}
383 code = compile(prog, filename, "exec")
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000384 strs = _find_strings(filename, encoding)
385 return _find_lines(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000386
387class Trace:
Skip Montanarocafc8112004-04-07 15:46:05 +0000388 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,
Christian Heimes380f7f22008-02-28 11:19:05 +0000389 ignoremods=(), ignoredirs=(), infile=None, outfile=None,
390 timing=False):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000391 """
392 @param count true iff it should count number of times each
Tim Petersf2715e02003-02-19 02:35:07 +0000393 line is executed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000394 @param trace true iff it should print out each line that is
Tim Petersf2715e02003-02-19 02:35:07 +0000395 being counted
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000396 @param countfuncs true iff it should just output a list of
397 (filename, modulename, funcname,) for functions
398 that were called at least once; This overrides
Tim Petersf2715e02003-02-19 02:35:07 +0000399 `count' and `trace'
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000400 @param ignoremods a list of the names of modules to ignore
401 @param ignoredirs a list of the names of directories to ignore
Tim Petersf2715e02003-02-19 02:35:07 +0000402 all of the (recursive) contents of
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000403 @param infile file from which to read stored counts to be
Tim Petersf2715e02003-02-19 02:35:07 +0000404 added into the results
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000405 @param outfile file in which to write the results
Christian Heimes380f7f22008-02-28 11:19:05 +0000406 @param timing true iff timing information be displayed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000407 """
408 self.infile = infile
409 self.outfile = outfile
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000410 self.ignore = _Ignore(ignoremods, ignoredirs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000411 self.counts = {} # keys are (filename, linenumber)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000412 self.pathtobasename = {} # for memoizing os.path.basename
413 self.donothing = 0
414 self.trace = trace
415 self._calledfuncs = {}
Skip Montanarocafc8112004-04-07 15:46:05 +0000416 self._callers = {}
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000417 self._caller_cache = {}
Christian Heimes380f7f22008-02-28 11:19:05 +0000418 self.start_time = None
419 if timing:
Victor Stinner949d8c92012-05-30 13:30:32 +0200420 self.start_time = _time()
Skip Montanarocafc8112004-04-07 15:46:05 +0000421 if countcallers:
422 self.globaltrace = self.globaltrace_trackcallers
423 elif countfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000424 self.globaltrace = self.globaltrace_countfuncs
425 elif trace and count:
426 self.globaltrace = self.globaltrace_lt
427 self.localtrace = self.localtrace_trace_and_count
428 elif trace:
429 self.globaltrace = self.globaltrace_lt
430 self.localtrace = self.localtrace_trace
431 elif count:
432 self.globaltrace = self.globaltrace_lt
433 self.localtrace = self.localtrace_count
434 else:
435 # Ahem -- do nothing? Okay.
436 self.donothing = 1
437
438 def run(self, cmd):
439 import __main__
440 dict = __main__.__dict__
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000441 self.runctx(cmd, dict, dict)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000442
443 def runctx(self, cmd, globals=None, locals=None):
444 if globals is None: globals = {}
445 if locals is None: locals = {}
446 if not self.donothing:
Serhiy Storchakac406d5c2018-08-25 10:27:55 +0300447 threading.settrace(self.globaltrace)
448 sys.settrace(self.globaltrace)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000449 try:
Georg Brandl7cae87c2006-09-06 06:51:57 +0000450 exec(cmd, globals, locals)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000451 finally:
452 if not self.donothing:
Serhiy Storchakac406d5c2018-08-25 10:27:55 +0300453 sys.settrace(None)
454 threading.settrace(None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000455
Serhiy Storchaka142566c2019-06-05 18:22:31 +0300456 def runfunc(self, func, /, *args, **kw):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000457 result = None
458 if not self.donothing:
459 sys.settrace(self.globaltrace)
460 try:
Guido van Rossum68468eb2003-02-27 20:14:51 +0000461 result = func(*args, **kw)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000462 finally:
463 if not self.donothing:
464 sys.settrace(None)
465 return result
466
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000467 def file_module_function_of(self, frame):
468 code = frame.f_code
469 filename = code.co_filename
470 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000471 modulename = _modname(filename)
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000472 else:
473 modulename = None
474
475 funcname = code.co_name
476 clsname = None
477 if code in self._caller_cache:
478 if self._caller_cache[code] is not None:
479 clsname = self._caller_cache[code]
480 else:
481 self._caller_cache[code] = None
482 ## use of gc.get_referrers() was suggested by Michael Hudson
483 # all functions which refer to this code object
484 funcs = [f for f in gc.get_referrers(code)
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000485 if inspect.isfunction(f)]
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000486 # require len(func) == 1 to avoid ambiguity caused by calls to
487 # new.function(): "In the face of ambiguity, refuse the
488 # temptation to guess."
489 if len(funcs) == 1:
490 dicts = [d for d in gc.get_referrers(funcs[0])
491 if isinstance(d, dict)]
492 if len(dicts) == 1:
493 classes = [c for c in gc.get_referrers(dicts[0])
494 if hasattr(c, "__bases__")]
495 if len(classes) == 1:
496 # ditto for new.classobj()
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000497 clsname = classes[0].__name__
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000498 # cache the result - assumption is that new.* is
499 # not called later to disturb this relationship
500 # _caller_cache could be flushed if functions in
501 # the new module get called.
502 self._caller_cache[code] = clsname
503 if clsname is not None:
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000504 funcname = "%s.%s" % (clsname, funcname)
505
506 return filename, modulename, funcname
507
Skip Montanarocafc8112004-04-07 15:46:05 +0000508 def globaltrace_trackcallers(self, frame, why, arg):
509 """Handler for call events.
510
511 Adds information about who called who to the self._callers dict.
512 """
513 if why == 'call':
514 # XXX Should do a better job of identifying methods
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000515 this_func = self.file_module_function_of(frame)
516 parent_func = self.file_module_function_of(frame.f_back)
Skip Montanarocafc8112004-04-07 15:46:05 +0000517 self._callers[(parent_func, this_func)] = 1
518
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000519 def globaltrace_countfuncs(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000520 """Handler for call events.
Tim Peters0eadaac2003-04-24 16:02:54 +0000521
Jeremy Hylton38732e12003-04-21 22:04:46 +0000522 Adds (filename, modulename, funcname) to the self._calledfuncs dict.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000523 """
524 if why == 'call':
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000525 this_func = self.file_module_function_of(frame)
526 self._calledfuncs[this_func] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000527
528 def globaltrace_lt(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000529 """Handler for call events.
530
531 If the code block being entered is to be ignored, returns `None',
532 else returns self.localtrace.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000533 """
534 if why == 'call':
Jeremy Hylton38732e12003-04-21 22:04:46 +0000535 code = frame.f_code
Thomas Wouterscf297e42007-02-23 15:07:44 +0000536 filename = frame.f_globals.get('__file__', None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000537 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000538 # XXX _modname() doesn't work right for packages, so
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000539 # the ignore support won't work right for packages
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000540 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000541 if modulename is not None:
542 ignore_it = self.ignore.names(filename, modulename)
543 if not ignore_it:
544 if self.trace:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000545 print((" --- modulename: %s, funcname: %s"
546 % (modulename, code.co_name)))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000547 return self.localtrace
548 else:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000549 return None
550
551 def localtrace_trace_and_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000552 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000553 # record the file name and line number of every trace
Jeremy Hylton38732e12003-04-21 22:04:46 +0000554 filename = frame.f_code.co_filename
555 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000556 key = filename, lineno
557 self.counts[key] = self.counts.get(key, 0) + 1
Tim Petersf2715e02003-02-19 02:35:07 +0000558
Christian Heimes380f7f22008-02-28 11:19:05 +0000559 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200560 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000561 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000562 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000563 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000564 return self.localtrace
565
566 def localtrace_trace(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000567 if why == "line":
568 # record the file name and line number of every trace
569 filename = frame.f_code.co_filename
570 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000571
Christian Heimes380f7f22008-02-28 11:19:05 +0000572 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200573 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000574 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000575 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000576 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000577 return self.localtrace
578
579 def localtrace_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000580 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000581 filename = frame.f_code.co_filename
582 lineno = frame.f_lineno
583 key = filename, lineno
584 self.counts[key] = self.counts.get(key, 0) + 1
585 return self.localtrace
586
587 def results(self):
588 return CoverageResults(self.counts, infile=self.infile,
589 outfile=self.outfile,
Skip Montanarocafc8112004-04-07 15:46:05 +0000590 calledfuncs=self._calledfuncs,
591 callers=self._callers)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000592
Senthil Kumaran436831d2016-01-13 07:46:54 -0800593def main():
Serhiy Storchaka7e4db2f2017-05-04 08:17:47 +0300594 import argparse
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000595
Senthil Kumaran436831d2016-01-13 07:46:54 -0800596 parser = argparse.ArgumentParser()
597 parser.add_argument('--version', action='version', version='trace 2.0')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000598
Senthil Kumaran436831d2016-01-13 07:46:54 -0800599 grp = parser.add_argument_group('Main options',
600 'One of these (or --report) must be given')
601
602 grp.add_argument('-c', '--count', action='store_true',
603 help='Count the number of times each line is executed and write '
604 'the counts to <module>.cover for each module executed, in '
605 'the module\'s directory. See also --coverdir, --file, '
606 '--no-report below.')
607 grp.add_argument('-t', '--trace', action='store_true',
608 help='Print each line to sys.stdout before it is executed')
609 grp.add_argument('-l', '--listfuncs', action='store_true',
610 help='Keep track of which functions are executed at least once '
611 'and write the results to sys.stdout after the program exits. '
612 'Cannot be specified alongside --trace or --count.')
613 grp.add_argument('-T', '--trackcalls', action='store_true',
614 help='Keep track of caller/called pairs and write the results to '
615 'sys.stdout after the program exits.')
616
617 grp = parser.add_argument_group('Modifiers')
618
619 _grp = grp.add_mutually_exclusive_group()
620 _grp.add_argument('-r', '--report', action='store_true',
621 help='Generate a report from a counts file; does not execute any '
622 'code. --file must specify the results file to read, which '
623 'must have been created in a previous run with --count '
624 '--file=FILE')
625 _grp.add_argument('-R', '--no-report', action='store_true',
626 help='Do not generate the coverage report files. '
627 'Useful if you want to accumulate over several runs.')
628
629 grp.add_argument('-f', '--file',
630 help='File to accumulate counts over several runs')
631 grp.add_argument('-C', '--coverdir',
632 help='Directory where the report files go. The coverage report '
633 'for <package>.<module> will be written to file '
634 '<dir>/<package>/<module>.cover')
635 grp.add_argument('-m', '--missing', action='store_true',
636 help='Annotate executable lines that were not executed with '
637 '">>>>>> "')
638 grp.add_argument('-s', '--summary', action='store_true',
639 help='Write a brief summary for each file to sys.stdout. '
640 'Can only be used with --count or --report')
641 grp.add_argument('-g', '--timing', action='store_true',
642 help='Prefix each line with the time since the program started. '
643 'Only used while tracing')
644
645 grp = parser.add_argument_group('Filters',
646 'Can be specified multiple times')
647 grp.add_argument('--ignore-module', action='append', default=[],
Serhiy Storchaka34fd4c22018-11-05 16:20:25 +0200648 help='Ignore the given module(s) and its submodules '
Senthil Kumaran436831d2016-01-13 07:46:54 -0800649 '(if it is a package). Accepts comma separated list of '
650 'module names.')
651 grp.add_argument('--ignore-dir', action='append', default=[],
652 help='Ignore files in the given directory '
653 '(multiple directories can be joined by os.pathsep).')
654
Mario Corchero354227a2019-06-01 05:49:10 +0100655 parser.add_argument('--module', action='store_true', default=False,
656 help='Trace a module. ')
657 parser.add_argument('progname', nargs='?',
Senthil Kumaran436831d2016-01-13 07:46:54 -0800658 help='file to run as main program')
659 parser.add_argument('arguments', nargs=argparse.REMAINDER,
660 help='arguments to the program')
661
662 opts = parser.parse_args()
663
664 if opts.ignore_dir:
Victor Stinner4fac7ed2020-02-12 13:02:29 +0100665 _prefix = sysconfig.get_path("stdlib")
666 _exec_prefix = sysconfig.get_path("platstdlib")
Senthil Kumaran436831d2016-01-13 07:46:54 -0800667
668 def parse_ignore_dir(s):
669 s = os.path.expanduser(os.path.expandvars(s))
670 s = s.replace('$prefix', _prefix).replace('$exec_prefix', _exec_prefix)
671 return os.path.normpath(s)
672
673 opts.ignore_module = [mod.strip()
674 for i in opts.ignore_module for mod in i.split(',')]
675 opts.ignore_dir = [parse_ignore_dir(s)
676 for i in opts.ignore_dir for s in i.split(os.pathsep)]
677
678 if opts.report:
679 if not opts.file:
680 parser.error('-r/--report requires -f/--file')
681 results = CoverageResults(infile=opts.file, outfile=opts.file)
682 return results.write_results(opts.missing, opts.summary, opts.coverdir)
683
684 if not any([opts.trace, opts.count, opts.listfuncs, opts.trackcalls]):
685 parser.error('must specify one of --trace, --count, --report, '
686 '--listfuncs, or --trackcalls')
687
688 if opts.listfuncs and (opts.count or opts.trace):
689 parser.error('cannot specify both --listfuncs and (--trace or --count)')
690
691 if opts.summary and not opts.count:
692 parser.error('--summary can only be used with --count or --report')
693
Mario Corchero354227a2019-06-01 05:49:10 +0100694 if opts.progname is None:
695 parser.error('progname is missing: required with the main options')
Senthil Kumaran436831d2016-01-13 07:46:54 -0800696
697 t = Trace(opts.count, opts.trace, countfuncs=opts.listfuncs,
698 countcallers=opts.trackcalls, ignoremods=opts.ignore_module,
699 ignoredirs=opts.ignore_dir, infile=opts.file,
700 outfile=opts.file, timing=opts.timing)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000701 try:
Mario Corchero354227a2019-06-01 05:49:10 +0100702 if opts.module:
703 import runpy
704 module_name = opts.progname
705 mod_name, mod_spec, code = runpy._get_module_details(module_name)
706 sys.argv = [code.co_filename, *opts.arguments]
707 globs = {
708 '__name__': '__main__',
709 '__file__': code.co_filename,
710 '__package__': mod_spec.parent,
711 '__loader__': mod_spec.loader,
712 '__spec__': mod_spec,
713 '__cached__': None,
714 }
715 else:
716 sys.argv = [opts.progname, *opts.arguments]
717 sys.path[0] = os.path.dirname(opts.progname)
718
Serhiy Storchaka04cdeb72020-06-28 13:34:22 +0300719 with open(opts.progname, 'rb') as fp:
Mario Corchero354227a2019-06-01 05:49:10 +0100720 code = compile(fp.read(), opts.progname, 'exec')
721 # try to emulate __main__ namespace as much as possible
722 globs = {
723 '__file__': opts.progname,
724 '__name__': '__main__',
725 '__package__': None,
726 '__cached__': None,
727 }
Senthil Kumaran436831d2016-01-13 07:46:54 -0800728 t.runctx(code, globs, globs)
729 except OSError as err:
730 sys.exit("Cannot run file %r because: %s" % (sys.argv[0], err))
731 except SystemExit:
732 pass
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000733
Senthil Kumaran436831d2016-01-13 07:46:54 -0800734 results = t.results()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000735
Senthil Kumaran436831d2016-01-13 07:46:54 -0800736 if not opts.no_report:
737 results.write_results(opts.missing, opts.summary, opts.coverdir)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000738
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000739if __name__=='__main__':
740 main()