blob: 16c3494689dd9ce44a4f985686532ed2eff349a4 [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
54import re
55import sys
56import 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
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020066def _settrace(func):
67 threading.settrace(func)
68 sys.settrace(func)
Alexander Belopolsky25b57412010-11-06 01:31:16 +000069
Antoine Pitroua6a4dc82017-09-07 18:56:24 +020070def _unsettrace():
71 sys.settrace(None)
72 threading.settrace(None)
Alexander Belopolsky25b57412010-11-06 01:31:16 +000073
Jeremy Hylton38732e12003-04-21 22:04:46 +000074PRAGMA_NOCOVER = "#pragma NO COVER"
75
Alexander Belopolsky44454af2010-11-20 18:21:07 +000076class _Ignore:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000077 def __init__(self, modules=None, dirs=None):
78 self._mods = set() if not modules else set(modules)
79 self._dirs = [] if not dirs else [os.path.normpath(d)
80 for d in dirs]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000081 self._ignore = { '<string>': 1 }
82
83 def names(self, filename, modulename):
Guido van Rossume2b70bc2006-08-18 22:13:04 +000084 if modulename in self._ignore:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000085 return self._ignore[modulename]
86
87 # haven't seen this one before, so see if the module name is
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000088 # on the ignore list.
89 if modulename in self._mods: # Identical names, so ignore
90 self._ignore[modulename] = 1
91 return 1
92
93 # check if the module is a proper submodule of something on
94 # the ignore list
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +000095 for mod in self._mods:
Alexander Belopolsky6672ea92010-11-08 18:32:40 +000096 # Need to take some care since ignoring
97 # "cmp" mustn't mean ignoring "cmpcache" but ignoring
98 # "Spam" must also mean ignoring "Spam.Eggs".
99 if modulename.startswith(mod + '.'):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000100 self._ignore[modulename] = 1
101 return 1
102
Alexander Belopolsky6672ea92010-11-08 18:32:40 +0000103 # Now check that filename isn't in one of the directories
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000104 if filename is None:
105 # must be a built-in, so we must ignore
106 self._ignore[modulename] = 1
107 return 1
108
109 # Ignore a file when it contains one of the ignorable paths
110 for d in self._dirs:
111 # The '+ os.sep' is to ensure that d is a parent directory,
112 # as compared to cases like:
113 # d = "/usr/local"
114 # filename = "/usr/local.py"
115 # or
116 # d = "/usr/local.py"
117 # filename = "/usr/local.py"
118 if filename.startswith(d + os.sep):
119 self._ignore[modulename] = 1
120 return 1
121
122 # Tried the different ways, so we don't ignore this module
123 self._ignore[modulename] = 0
124 return 0
125
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000126def _modname(path):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000127 """Return a plausible module name for the patch."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000128
Jeremy Hylton38732e12003-04-21 22:04:46 +0000129 base = os.path.basename(path)
130 filename, ext = os.path.splitext(base)
131 return filename
132
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000133def _fullmodname(path):
Jeremy Hyltonc8c8b942003-04-22 15:35:51 +0000134 """Return a plausible module name for the path."""
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000135
136 # If the file 'path' is part of a package, then the filename isn't
137 # enough to uniquely identify it. Try to do the right thing by
138 # looking in sys.path for the longest matching prefix. We'll
139 # assume that the rest is the package name.
140
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000141 comparepath = os.path.normcase(path)
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000142 longest = ""
143 for dir in sys.path:
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000144 dir = os.path.normcase(dir)
145 if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000146 if len(dir) > len(longest):
147 longest = dir
148
Guido van Rossumb427c002003-10-10 23:02:01 +0000149 if longest:
150 base = path[len(longest) + 1:]
151 else:
152 base = path
Georg Brandl120d6332010-08-01 14:38:17 +0000153 # the drive letter is never part of the module name
154 drive, base = os.path.splitdrive(base)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000155 base = base.replace(os.sep, ".")
156 if os.altsep:
157 base = base.replace(os.altsep, ".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000158 filename, ext = os.path.splitext(base)
Georg Brandl120d6332010-08-01 14:38:17 +0000159 return filename.lstrip(".")
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000160
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000161class CoverageResults:
162 def __init__(self, counts=None, calledfuncs=None, infile=None,
Skip Montanarocafc8112004-04-07 15:46:05 +0000163 callers=None, outfile=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000164 self.counts = counts
165 if self.counts is None:
166 self.counts = {}
167 self.counter = self.counts.copy() # map (filename, lineno) to count
168 self.calledfuncs = calledfuncs
169 if self.calledfuncs is None:
170 self.calledfuncs = {}
171 self.calledfuncs = self.calledfuncs.copy()
Skip Montanarocafc8112004-04-07 15:46:05 +0000172 self.callers = callers
173 if self.callers is None:
174 self.callers = {}
175 self.callers = self.callers.copy()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000176 self.infile = infile
177 self.outfile = outfile
178 if self.infile:
Jeremy Hyltond7ce86d2003-07-07 16:08:47 +0000179 # Try to merge existing counts file.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000180 try:
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300181 with open(self.infile, 'rb') as f:
182 counts, calledfuncs, callers = pickle.load(f)
Skip Montanarocafc8112004-04-07 15:46:05 +0000183 self.update(self.__class__(counts, calledfuncs, callers))
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200184 except (OSError, EOFError, ValueError) as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000185 print(("Skipping counts file %r: %s"
186 % (self.infile, err)), file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000187
Georg Brandl33c28812009-04-01 23:07:29 +0000188 def is_ignored_filename(self, filename):
189 """Return True if the filename does not refer to a file
190 we want to have reported.
191 """
Brett Cannon9fe92d12012-04-10 21:05:53 -0400192 return filename.startswith('<') and filename.endswith('>')
Georg Brandl33c28812009-04-01 23:07:29 +0000193
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000194 def update(self, other):
195 """Merge in the data from another CoverageResults"""
196 counts = self.counts
197 calledfuncs = self.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000198 callers = self.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000199 other_counts = other.counts
200 other_calledfuncs = other.calledfuncs
Skip Montanarocafc8112004-04-07 15:46:05 +0000201 other_callers = other.callers
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000202
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000203 for key in other_counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000204 counts[key] = counts.get(key, 0) + other_counts[key]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000205
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000206 for key in other_calledfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000207 calledfuncs[key] = 1
208
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000209 for key in other_callers:
Skip Montanarocafc8112004-04-07 15:46:05 +0000210 callers[key] = 1
211
Jeremy Hylton38732e12003-04-21 22:04:46 +0000212 def write_results(self, show_missing=True, summary=False, coverdir=None):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000213 """
Senthil Kumaran436831d2016-01-13 07:46:54 -0800214 Write the coverage results.
215
216 :param show_missing: Show lines that had no hits.
217 :param summary: Include coverage summary per module.
Martin Panter0f29ad12016-06-04 05:06:25 +0000218 :param coverdir: If None, the results of each module are placed in its
Senthil Kumaran436831d2016-01-13 07:46:54 -0800219 directory, otherwise it is included in the directory
220 specified.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000221 """
Skip Montanarocafc8112004-04-07 15:46:05 +0000222 if self.calledfuncs:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000223 print()
224 print("functions called:")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000225 calls = self.calledfuncs
Alexander Belopolsky533a1672010-07-20 19:55:18 +0000226 for filename, modulename, funcname in sorted(calls):
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000227 print(("filename: %s, modulename: %s, funcname: %s"
228 % (filename, modulename, funcname)))
Skip Montanarocafc8112004-04-07 15:46:05 +0000229
230 if self.callers:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000231 print()
232 print("calling relationships:")
Skip Montanarocafc8112004-04-07 15:46:05 +0000233 lastfile = lastcfile = ""
Georg Brandl33c28812009-04-01 23:07:29 +0000234 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000235 in sorted(self.callers):
Skip Montanarocafc8112004-04-07 15:46:05 +0000236 if pfile != lastfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000237 print()
238 print("***", pfile, "***")
Skip Montanarocafc8112004-04-07 15:46:05 +0000239 lastfile = pfile
240 lastcfile = ""
241 if cfile != pfile and lastcfile != cfile:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000242 print(" -->", cfile)
Skip Montanarocafc8112004-04-07 15:46:05 +0000243 lastcfile = cfile
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000244 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000245
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000246 # turn the counts data ("(filename, lineno) = count") into something
247 # accessible on a per-file basis
248 per_file = {}
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000249 for filename, lineno in self.counts:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000250 lines_hit = per_file[filename] = per_file.get(filename, {})
251 lines_hit[lineno] = self.counts[(filename, lineno)]
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000252
253 # accumulate summary info, if needed
254 sums = {}
255
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000256 for filename, count in per_file.items():
Georg Brandl33c28812009-04-01 23:07:29 +0000257 if self.is_ignored_filename(filename):
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000258 continue
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000259
Brett Cannonf299abd2015-04-13 14:21:02 -0400260 if filename.endswith(".pyc"):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000261 filename = filename[:-1]
262
Jeremy Hylton38732e12003-04-21 22:04:46 +0000263 if coverdir is None:
264 dir = os.path.dirname(os.path.abspath(filename))
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000265 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000266 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000267 dir = coverdir
268 if not os.path.exists(dir):
269 os.makedirs(dir)
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000270 modulename = _fullmodname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000271
272 # If desired, get a list of the line numbers which represent
273 # executable content (returned as a dict for better lookup speed)
274 if show_missing:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000275 lnotab = _find_executable_linenos(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000276 else:
Jeremy Hylton38732e12003-04-21 22:04:46 +0000277 lnotab = {}
Michael Selik47ab1542018-04-30 20:46:52 -0700278 source = linecache.getlines(filename)
279 coverpath = os.path.join(dir, modulename + ".cover")
280 with open(filename, 'rb') as fp:
281 encoding, _ = tokenize.detect_encoding(fp.readline)
282 n_hits, n_lines = self.write_results_file(coverpath, source,
283 lnotab, count, encoding)
284 if summary and n_lines:
285 percent = int(100 * n_hits / n_lines)
286 sums[modulename] = n_lines, percent, modulename, filename
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000287
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000288
289 if summary and sums:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000290 print("lines cov% module (path)")
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000291 for m in sorted(sums):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000292 n_lines, percent, modulename, filename = sums[m]
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000293 print("%5d %3d%% %s (%s)" % sums[m])
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000294
295 if self.outfile:
296 # try and store counts and module info into self.outfile
297 try:
Skip Montanarocafc8112004-04-07 15:46:05 +0000298 pickle.dump((self.counts, self.calledfuncs, self.callers),
Jeremy Hyltond0e27052003-10-14 20:12:06 +0000299 open(self.outfile, 'wb'), 1)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200300 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000301 print("Can't save counts files because %s" % err, file=sys.stderr)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000302
Victor Stinner64bc3b22010-11-07 15:47:36 +0000303 def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000304 """Return a coverage results file in path."""
Michael Selik47ab1542018-04-30 20:46:52 -0700305 # ``lnotab`` is a dict of executable lines, or a line number "table"
Jeremy Hylton38732e12003-04-21 22:04:46 +0000306
307 try:
Victor Stinner64bc3b22010-11-07 15:47:36 +0000308 outfile = open(path, "w", encoding=encoding)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200309 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000310 print(("trace: Could not open %r for writing: %s"
311 "- skipping" % (path, err)), file=sys.stderr)
Guido van Rossumbbca8da2004-02-19 19:16:50 +0000312 return 0, 0
Jeremy Hylton38732e12003-04-21 22:04:46 +0000313
314 n_lines = 0
315 n_hits = 0
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300316 with outfile:
317 for lineno, line in enumerate(lines, 1):
318 # do the blank/comment match to try to mark more lines
319 # (help the reader find stuff that hasn't been covered)
320 if lineno in lines_hit:
321 outfile.write("%5d: " % lines_hit[lineno])
322 n_hits += 1
Jeremy Hylton546e34b2003-06-26 14:56:17 +0000323 n_lines += 1
Michael Selik47ab1542018-04-30 20:46:52 -0700324 elif lineno in lnotab and not PRAGMA_NOCOVER in line:
325 # Highlight never-executed lines, unless the line contains
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300326 # #pragma: NO COVER
Michael Selik47ab1542018-04-30 20:46:52 -0700327 outfile.write(">>>>>> ")
328 n_lines += 1
329 else:
330 outfile.write(" ")
Serhiy Storchaka46ba6c82015-04-04 11:01:02 +0300331 outfile.write(line.expandtabs(8))
Jeremy Hylton38732e12003-04-21 22:04:46 +0000332
333 return n_hits, n_lines
334
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000335def _find_lines_from_code(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000336 """Return dict where keys are lines in the line number table."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000337 linenos = {}
338
Alexander Belopolskyff09ce22010-09-24 18:03:12 +0000339 for _, lineno in dis.findlinestarts(code):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000340 if lineno not in strs:
341 linenos[lineno] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000342
343 return linenos
344
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000345def _find_lines(code, strs):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000346 """Return lineno dict for all code objects reachable from code."""
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000347 # get all of the lineno information from the code of this scope level
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000348 linenos = _find_lines_from_code(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000349
350 # and check the constants for references to other code objects
351 for c in code.co_consts:
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000352 if inspect.iscode(c):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000353 # find another code object, so recurse into it
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000354 linenos.update(_find_lines(c, strs))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000355 return linenos
356
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000357def _find_strings(filename, encoding=None):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000358 """Return a dict of possible docstring positions.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000359
Jeremy Hylton38732e12003-04-21 22:04:46 +0000360 The dict maps line numbers to strings. There is an entry for
361 line that contains only a string or a part of a triple-quoted
362 string.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000363 """
Jeremy Hylton38732e12003-04-21 22:04:46 +0000364 d = {}
365 # If the first token is a string, then it's the module docstring.
366 # Add this special case so that the test in the loop passes.
367 prev_ttype = token.INDENT
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000368 with open(filename, encoding=encoding) as f:
369 tok = tokenize.generate_tokens(f.readline)
370 for ttype, tstr, start, end, line in tok:
371 if ttype == token.STRING:
372 if prev_ttype == token.INDENT:
373 sline, scol = start
374 eline, ecol = end
375 for i in range(sline, eline + 1):
376 d[i] = 1
377 prev_ttype = ttype
Jeremy Hylton38732e12003-04-21 22:04:46 +0000378 return d
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000379
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000380def _find_executable_linenos(filename):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000381 """Return dict where keys are line numbers in the line number table."""
Jeremy Hylton38732e12003-04-21 22:04:46 +0000382 try:
Victor Stinner58c07522010-11-09 01:08:59 +0000383 with tokenize.open(filename) as f:
Benjamin Petersonb2fda232010-10-30 23:51:34 +0000384 prog = f.read()
Victor Stinner58c07522010-11-09 01:08:59 +0000385 encoding = f.encoding
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200386 except OSError as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000387 print(("Not printing coverage data for %r: %s"
388 % (filename, err)), file=sys.stderr)
Jeremy Hylton38732e12003-04-21 22:04:46 +0000389 return {}
390 code = compile(prog, filename, "exec")
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000391 strs = _find_strings(filename, encoding)
392 return _find_lines(code, strs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000393
394class Trace:
Skip Montanarocafc8112004-04-07 15:46:05 +0000395 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,
Christian Heimes380f7f22008-02-28 11:19:05 +0000396 ignoremods=(), ignoredirs=(), infile=None, outfile=None,
397 timing=False):
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000398 """
399 @param count true iff it should count number of times each
Tim Petersf2715e02003-02-19 02:35:07 +0000400 line is executed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000401 @param trace true iff it should print out each line that is
Tim Petersf2715e02003-02-19 02:35:07 +0000402 being counted
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000403 @param countfuncs true iff it should just output a list of
404 (filename, modulename, funcname,) for functions
405 that were called at least once; This overrides
Tim Petersf2715e02003-02-19 02:35:07 +0000406 `count' and `trace'
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000407 @param ignoremods a list of the names of modules to ignore
408 @param ignoredirs a list of the names of directories to ignore
Tim Petersf2715e02003-02-19 02:35:07 +0000409 all of the (recursive) contents of
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000410 @param infile file from which to read stored counts to be
Tim Petersf2715e02003-02-19 02:35:07 +0000411 added into the results
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000412 @param outfile file in which to write the results
Christian Heimes380f7f22008-02-28 11:19:05 +0000413 @param timing true iff timing information be displayed
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000414 """
415 self.infile = infile
416 self.outfile = outfile
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000417 self.ignore = _Ignore(ignoremods, ignoredirs)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000418 self.counts = {} # keys are (filename, linenumber)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000419 self.pathtobasename = {} # for memoizing os.path.basename
420 self.donothing = 0
421 self.trace = trace
422 self._calledfuncs = {}
Skip Montanarocafc8112004-04-07 15:46:05 +0000423 self._callers = {}
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000424 self._caller_cache = {}
Christian Heimes380f7f22008-02-28 11:19:05 +0000425 self.start_time = None
426 if timing:
Victor Stinner949d8c92012-05-30 13:30:32 +0200427 self.start_time = _time()
Skip Montanarocafc8112004-04-07 15:46:05 +0000428 if countcallers:
429 self.globaltrace = self.globaltrace_trackcallers
430 elif countfuncs:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000431 self.globaltrace = self.globaltrace_countfuncs
432 elif trace and count:
433 self.globaltrace = self.globaltrace_lt
434 self.localtrace = self.localtrace_trace_and_count
435 elif trace:
436 self.globaltrace = self.globaltrace_lt
437 self.localtrace = self.localtrace_trace
438 elif count:
439 self.globaltrace = self.globaltrace_lt
440 self.localtrace = self.localtrace_count
441 else:
442 # Ahem -- do nothing? Okay.
443 self.donothing = 1
444
445 def run(self, cmd):
446 import __main__
447 dict = __main__.__dict__
Alexander Belopolsky0ae33612010-09-27 15:49:20 +0000448 self.runctx(cmd, dict, dict)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000449
450 def runctx(self, cmd, globals=None, locals=None):
451 if globals is None: globals = {}
452 if locals is None: locals = {}
453 if not self.donothing:
Alexander Belopolsky25b57412010-11-06 01:31:16 +0000454 _settrace(self.globaltrace)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000455 try:
Georg Brandl7cae87c2006-09-06 06:51:57 +0000456 exec(cmd, globals, locals)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000457 finally:
458 if not self.donothing:
Alexander Belopolsky25b57412010-11-06 01:31:16 +0000459 _unsettrace()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000460
461 def runfunc(self, func, *args, **kw):
462 result = None
463 if not self.donothing:
464 sys.settrace(self.globaltrace)
465 try:
Guido van Rossum68468eb2003-02-27 20:14:51 +0000466 result = func(*args, **kw)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000467 finally:
468 if not self.donothing:
469 sys.settrace(None)
470 return result
471
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000472 def file_module_function_of(self, frame):
473 code = frame.f_code
474 filename = code.co_filename
475 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000476 modulename = _modname(filename)
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000477 else:
478 modulename = None
479
480 funcname = code.co_name
481 clsname = None
482 if code in self._caller_cache:
483 if self._caller_cache[code] is not None:
484 clsname = self._caller_cache[code]
485 else:
486 self._caller_cache[code] = None
487 ## use of gc.get_referrers() was suggested by Michael Hudson
488 # all functions which refer to this code object
489 funcs = [f for f in gc.get_referrers(code)
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000490 if inspect.isfunction(f)]
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000491 # require len(func) == 1 to avoid ambiguity caused by calls to
492 # new.function(): "In the face of ambiguity, refuse the
493 # temptation to guess."
494 if len(funcs) == 1:
495 dicts = [d for d in gc.get_referrers(funcs[0])
496 if isinstance(d, dict)]
497 if len(dicts) == 1:
498 classes = [c for c in gc.get_referrers(dicts[0])
499 if hasattr(c, "__bases__")]
500 if len(classes) == 1:
501 # ditto for new.classobj()
Alexander Belopolsky4d770172010-09-13 18:14:34 +0000502 clsname = classes[0].__name__
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000503 # cache the result - assumption is that new.* is
504 # not called later to disturb this relationship
505 # _caller_cache could be flushed if functions in
506 # the new module get called.
507 self._caller_cache[code] = clsname
508 if clsname is not None:
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000509 funcname = "%s.%s" % (clsname, funcname)
510
511 return filename, modulename, funcname
512
Skip Montanarocafc8112004-04-07 15:46:05 +0000513 def globaltrace_trackcallers(self, frame, why, arg):
514 """Handler for call events.
515
516 Adds information about who called who to the self._callers dict.
517 """
518 if why == 'call':
519 # XXX Should do a better job of identifying methods
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000520 this_func = self.file_module_function_of(frame)
521 parent_func = self.file_module_function_of(frame.f_back)
Skip Montanarocafc8112004-04-07 15:46:05 +0000522 self._callers[(parent_func, this_func)] = 1
523
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000524 def globaltrace_countfuncs(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000525 """Handler for call events.
Tim Peters0eadaac2003-04-24 16:02:54 +0000526
Jeremy Hylton38732e12003-04-21 22:04:46 +0000527 Adds (filename, modulename, funcname) to the self._calledfuncs dict.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000528 """
529 if why == 'call':
Skip Montanaro5bfd9842004-04-10 16:29:58 +0000530 this_func = self.file_module_function_of(frame)
531 self._calledfuncs[this_func] = 1
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000532
533 def globaltrace_lt(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000534 """Handler for call events.
535
536 If the code block being entered is to be ignored, returns `None',
537 else returns self.localtrace.
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000538 """
539 if why == 'call':
Jeremy Hylton38732e12003-04-21 22:04:46 +0000540 code = frame.f_code
Thomas Wouterscf297e42007-02-23 15:07:44 +0000541 filename = frame.f_globals.get('__file__', None)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000542 if filename:
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000543 # XXX _modname() doesn't work right for packages, so
Jeremy Hyltondfbfe732003-04-21 22:49:17 +0000544 # the ignore support won't work right for packages
Alexander Belopolsky44454af2010-11-20 18:21:07 +0000545 modulename = _modname(filename)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000546 if modulename is not None:
547 ignore_it = self.ignore.names(filename, modulename)
548 if not ignore_it:
549 if self.trace:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000550 print((" --- modulename: %s, funcname: %s"
551 % (modulename, code.co_name)))
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000552 return self.localtrace
553 else:
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000554 return None
555
556 def localtrace_trace_and_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000557 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000558 # record the file name and line number of every trace
Jeremy Hylton38732e12003-04-21 22:04:46 +0000559 filename = frame.f_code.co_filename
560 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000561 key = filename, lineno
562 self.counts[key] = self.counts.get(key, 0) + 1
Tim Petersf2715e02003-02-19 02:35:07 +0000563
Christian Heimes380f7f22008-02-28 11:19:05 +0000564 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200565 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000566 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000567 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000568 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000569 return self.localtrace
570
571 def localtrace_trace(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000572 if why == "line":
573 # record the file name and line number of every trace
574 filename = frame.f_code.co_filename
575 lineno = frame.f_lineno
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000576
Christian Heimes380f7f22008-02-28 11:19:05 +0000577 if self.start_time:
Victor Stinner949d8c92012-05-30 13:30:32 +0200578 print('%.2f' % (_time() - self.start_time), end=' ')
Jeremy Hylton38732e12003-04-21 22:04:46 +0000579 bname = os.path.basename(filename)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000580 print("%s(%d): %s" % (bname, lineno,
Georg Brandldc50c692010-08-02 12:40:22 +0000581 linecache.getline(filename, lineno)), end='')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000582 return self.localtrace
583
584 def localtrace_count(self, frame, why, arg):
Jeremy Hylton38732e12003-04-21 22:04:46 +0000585 if why == "line":
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000586 filename = frame.f_code.co_filename
587 lineno = frame.f_lineno
588 key = filename, lineno
589 self.counts[key] = self.counts.get(key, 0) + 1
590 return self.localtrace
591
592 def results(self):
593 return CoverageResults(self.counts, infile=self.infile,
594 outfile=self.outfile,
Skip Montanarocafc8112004-04-07 15:46:05 +0000595 calledfuncs=self._calledfuncs,
596 callers=self._callers)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000597
Senthil Kumaran436831d2016-01-13 07:46:54 -0800598def main():
Serhiy Storchaka7e4db2f2017-05-04 08:17:47 +0300599 import argparse
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000600
Senthil Kumaran436831d2016-01-13 07:46:54 -0800601 parser = argparse.ArgumentParser()
602 parser.add_argument('--version', action='version', version='trace 2.0')
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000603
Senthil Kumaran436831d2016-01-13 07:46:54 -0800604 grp = parser.add_argument_group('Main options',
605 'One of these (or --report) must be given')
606
607 grp.add_argument('-c', '--count', action='store_true',
608 help='Count the number of times each line is executed and write '
609 'the counts to <module>.cover for each module executed, in '
610 'the module\'s directory. See also --coverdir, --file, '
611 '--no-report below.')
612 grp.add_argument('-t', '--trace', action='store_true',
613 help='Print each line to sys.stdout before it is executed')
614 grp.add_argument('-l', '--listfuncs', action='store_true',
615 help='Keep track of which functions are executed at least once '
616 'and write the results to sys.stdout after the program exits. '
617 'Cannot be specified alongside --trace or --count.')
618 grp.add_argument('-T', '--trackcalls', action='store_true',
619 help='Keep track of caller/called pairs and write the results to '
620 'sys.stdout after the program exits.')
621
622 grp = parser.add_argument_group('Modifiers')
623
624 _grp = grp.add_mutually_exclusive_group()
625 _grp.add_argument('-r', '--report', action='store_true',
626 help='Generate a report from a counts file; does not execute any '
627 'code. --file must specify the results file to read, which '
628 'must have been created in a previous run with --count '
629 '--file=FILE')
630 _grp.add_argument('-R', '--no-report', action='store_true',
631 help='Do not generate the coverage report files. '
632 'Useful if you want to accumulate over several runs.')
633
634 grp.add_argument('-f', '--file',
635 help='File to accumulate counts over several runs')
636 grp.add_argument('-C', '--coverdir',
637 help='Directory where the report files go. The coverage report '
638 'for <package>.<module> will be written to file '
639 '<dir>/<package>/<module>.cover')
640 grp.add_argument('-m', '--missing', action='store_true',
641 help='Annotate executable lines that were not executed with '
642 '">>>>>> "')
643 grp.add_argument('-s', '--summary', action='store_true',
644 help='Write a brief summary for each file to sys.stdout. '
645 'Can only be used with --count or --report')
646 grp.add_argument('-g', '--timing', action='store_true',
647 help='Prefix each line with the time since the program started. '
648 'Only used while tracing')
649
650 grp = parser.add_argument_group('Filters',
651 'Can be specified multiple times')
652 grp.add_argument('--ignore-module', action='append', default=[],
653 help='Ignore the given module(s) and its submodules'
654 '(if it is a package). Accepts comma separated list of '
655 'module names.')
656 grp.add_argument('--ignore-dir', action='append', default=[],
657 help='Ignore files in the given directory '
658 '(multiple directories can be joined by os.pathsep).')
659
660 parser.add_argument('filename', nargs='?',
661 help='file to run as main program')
662 parser.add_argument('arguments', nargs=argparse.REMAINDER,
663 help='arguments to the program')
664
665 opts = parser.parse_args()
666
667 if opts.ignore_dir:
668 rel_path = 'lib', 'python{0.major}.{0.minor}'.format(sys.version_info)
669 _prefix = os.path.join(sys.base_prefix, *rel_path)
670 _exec_prefix = os.path.join(sys.base_exec_prefix, *rel_path)
671
672 def parse_ignore_dir(s):
673 s = os.path.expanduser(os.path.expandvars(s))
674 s = s.replace('$prefix', _prefix).replace('$exec_prefix', _exec_prefix)
675 return os.path.normpath(s)
676
677 opts.ignore_module = [mod.strip()
678 for i in opts.ignore_module for mod in i.split(',')]
679 opts.ignore_dir = [parse_ignore_dir(s)
680 for i in opts.ignore_dir for s in i.split(os.pathsep)]
681
682 if opts.report:
683 if not opts.file:
684 parser.error('-r/--report requires -f/--file')
685 results = CoverageResults(infile=opts.file, outfile=opts.file)
686 return results.write_results(opts.missing, opts.summary, opts.coverdir)
687
688 if not any([opts.trace, opts.count, opts.listfuncs, opts.trackcalls]):
689 parser.error('must specify one of --trace, --count, --report, '
690 '--listfuncs, or --trackcalls')
691
692 if opts.listfuncs and (opts.count or opts.trace):
693 parser.error('cannot specify both --listfuncs and (--trace or --count)')
694
695 if opts.summary and not opts.count:
696 parser.error('--summary can only be used with --count or --report')
697
698 if opts.filename is None:
699 parser.error('filename is missing: required with the main options')
700
Kyle Altendorf9f422322018-02-16 22:32:37 -0800701 sys.argv = [opts.filename, *opts.arguments]
Senthil Kumaran436831d2016-01-13 07:46:54 -0800702 sys.path[0] = os.path.dirname(opts.filename)
703
704 t = Trace(opts.count, opts.trace, countfuncs=opts.listfuncs,
705 countcallers=opts.trackcalls, ignoremods=opts.ignore_module,
706 ignoredirs=opts.ignore_dir, infile=opts.file,
707 outfile=opts.file, timing=opts.timing)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000708 try:
Senthil Kumaran436831d2016-01-13 07:46:54 -0800709 with open(opts.filename) as fp:
710 code = compile(fp.read(), opts.filename, 'exec')
711 # try to emulate __main__ namespace as much as possible
712 globs = {
713 '__file__': opts.filename,
714 '__name__': '__main__',
715 '__package__': None,
716 '__cached__': None,
717 }
718 t.runctx(code, globs, globs)
719 except OSError as err:
720 sys.exit("Cannot run file %r because: %s" % (sys.argv[0], err))
721 except SystemExit:
722 pass
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000723
Senthil Kumaran436831d2016-01-13 07:46:54 -0800724 results = t.results()
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000725
Senthil Kumaran436831d2016-01-13 07:46:54 -0800726 if not opts.no_report:
727 results.write_results(opts.missing, opts.summary, opts.coverdir)
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000728
Jeremy Hylton4edaa0d2003-02-18 15:06:17 +0000729if __name__=='__main__':
730 main()