blob: b0ac81271c5c183e0670ac88ef4444acb6dbab9c [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`trace` --- Trace or track Python statement execution
2==========================================================
3
4.. module:: trace
5 :synopsis: Trace or track Python statement execution.
6
Raymond Hettinger10480942011-01-10 03:26:08 +00007**Source code:** :source:`Lib/trace.py`
Georg Brandl116aa622007-08-15 14:28:22 +00008
Raymond Hettinger4f707fd2011-01-10 19:54:11 +00009--------------
10
Georg Brandl116aa622007-08-15 14:28:22 +000011The :mod:`trace` module allows you to trace program execution, generate
12annotated statement coverage listings, print caller/callee relationships and
13list functions executed during a program run. It can be used in another program
14or from the command line.
15
Georg Brandl116aa622007-08-15 14:28:22 +000016.. _trace-cli:
17
Éric Araujod00862a2010-12-15 19:09:58 +000018Command-Line Usage
Georg Brandl116aa622007-08-15 14:28:22 +000019------------------
20
21The :mod:`trace` module can be invoked from the command line. It can be as
22simple as ::
23
Éric Araujod00862a2010-12-15 19:09:58 +000024 python -m trace --count -C . somefile.py ...
Georg Brandl116aa622007-08-15 14:28:22 +000025
Éric Araujo67f0b6c2010-12-15 19:30:15 +000026The above will execute :file:`somefile.py` and generate annotated listings of
27all Python modules imported during the execution into the current directory.
Georg Brandl116aa622007-08-15 14:28:22 +000028
Éric Araujod00862a2010-12-15 19:09:58 +000029.. program:: trace
Georg Brandl116aa622007-08-15 14:28:22 +000030
Éric Araujod00862a2010-12-15 19:09:58 +000031.. cmdoption:: --help
32
33 Display usage and exit.
34
35.. cmdoption:: --version
36
37 Display the version of the module and exit.
38
39Main options
40^^^^^^^^^^^^
41
Éric Araujo67f0b6c2010-12-15 19:30:15 +000042At least one of the following options must be specified when invoking
43:mod:`trace`. The :option:`--listfuncs <-l>` option is mutually exclusive with
Senthil Kumaranf5c34052014-04-06 10:59:47 -070044the :option:`--trace <-t>` and :option:`--count <-c>` options. When
45:option:`--listfuncs <-l>` is provided, neither :option:`--count <-c>` nor
Éric Araujo67f0b6c2010-12-15 19:30:15 +000046:option:`--trace <-t>` are accepted, and vice versa.
Éric Araujod00862a2010-12-15 19:09:58 +000047
48.. program:: trace
49
50.. cmdoption:: -c, --count
51
52 Produce a set of annotated listing files upon program completion that shows
Éric Araujo67f0b6c2010-12-15 19:30:15 +000053 how many times each statement was executed. See also
54 :option:`--coverdir <-C>`, :option:`--file <-f>` and
Éric Araujod00862a2010-12-15 19:09:58 +000055 :option:`--no-report <-R>` below.
56
57.. cmdoption:: -t, --trace
58
Georg Brandl116aa622007-08-15 14:28:22 +000059 Display lines as they are executed.
60
Éric Araujod00862a2010-12-15 19:09:58 +000061.. cmdoption:: -l, --listfuncs
Georg Brandl116aa622007-08-15 14:28:22 +000062
Éric Araujod00862a2010-12-15 19:09:58 +000063 Display the functions executed by running the program.
64
65.. cmdoption:: -r, --report
66
Georg Brandl116aa622007-08-15 14:28:22 +000067 Produce an annotated list from an earlier program run that used the
Éric Araujo67f0b6c2010-12-15 19:30:15 +000068 :option:`--count <-c>` and :option:`--file <-f>` option. This does not
69 execute any code.
Georg Brandl116aa622007-08-15 14:28:22 +000070
Éric Araujod00862a2010-12-15 19:09:58 +000071.. cmdoption:: -T, --trackcalls
Georg Brandl116aa622007-08-15 14:28:22 +000072
Éric Araujod00862a2010-12-15 19:09:58 +000073 Display the calling relationships exposed by running the program.
Georg Brandl116aa622007-08-15 14:28:22 +000074
Éric Araujod00862a2010-12-15 19:09:58 +000075Modifiers
76^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +000077
Éric Araujod00862a2010-12-15 19:09:58 +000078.. program:: trace
Georg Brandl116aa622007-08-15 14:28:22 +000079
Éric Araujod00862a2010-12-15 19:09:58 +000080.. cmdoption:: -f, --file=<file>
Georg Brandl116aa622007-08-15 14:28:22 +000081
Éric Araujo67f0b6c2010-12-15 19:30:15 +000082 Name of a file to accumulate counts over several tracing runs. Should be
83 used with the :option:`--count <-c>` option.
Éric Araujod00862a2010-12-15 19:09:58 +000084
85.. cmdoption:: -C, --coverdir=<dir>
86
Éric Araujo67f0b6c2010-12-15 19:30:15 +000087 Directory where the report files go. The coverage report for
Éric Araujod00862a2010-12-15 19:09:58 +000088 ``package.module`` is written to file :file:`{dir}/{package}/{module}.cover`.
89
90.. cmdoption:: -m, --missing
91
Georg Brandl116aa622007-08-15 14:28:22 +000092 When generating annotated listings, mark lines which were not executed with
Éric Araujod00862a2010-12-15 19:09:58 +000093 ``>>>>>>``.
Georg Brandl116aa622007-08-15 14:28:22 +000094
Éric Araujod00862a2010-12-15 19:09:58 +000095.. cmdoption:: -s, --summary
Georg Brandl116aa622007-08-15 14:28:22 +000096
Éric Araujod00862a2010-12-15 19:09:58 +000097 When using :option:`--count <-c>` or :option:`--report <-r>`, write a brief
98 summary to stdout for each file processed.
Georg Brandl116aa622007-08-15 14:28:22 +000099
Éric Araujod00862a2010-12-15 19:09:58 +0000100.. cmdoption:: -R, --no-report
Georg Brandl116aa622007-08-15 14:28:22 +0000101
Éric Araujod00862a2010-12-15 19:09:58 +0000102 Do not generate annotated listings. This is useful if you intend to make
103 several runs with :option:`--count <-c>`, and then produce a single set of
104 annotated listings at the end.
105
106.. cmdoption:: -g, --timing
107
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000108 Prefix each line with the time since the program started. Only used while
Éric Araujod00862a2010-12-15 19:09:58 +0000109 tracing.
110
111Filters
112^^^^^^^
113
114These options may be repeated multiple times.
115
116.. program:: trace
117
118.. cmdoption:: --ignore-module=<mod>
119
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000120 Ignore each of the given module names and its submodules (if it is a
121 package). The argument can be a list of names separated by a comma.
Éric Araujod00862a2010-12-15 19:09:58 +0000122
123.. cmdoption:: --ignore-dir=<dir>
124
125 Ignore all modules and packages in the named directory and subdirectories.
126 The argument can be a list of directories separated by :data:`os.pathsep`.
Georg Brandl116aa622007-08-15 14:28:22 +0000127
128.. _trace-api:
129
Éric Araujod00862a2010-12-15 19:09:58 +0000130Programmatic Interface
131----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000132
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000133.. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\
134 ignoredirs=(), infile=None, outfile=None, timing=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000135
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000136 Create an object to trace execution of a single statement or expression. All
137 parameters are optional. *count* enables counting of line numbers. *trace*
138 enables line execution tracing. *countfuncs* enables listing of the
139 functions called during the run. *countcallers* enables call relationship
140 tracking. *ignoremods* is a list of modules or packages to ignore.
141 *ignoredirs* is a list of directories whose modules or packages should be
142 ignored. *infile* is the name of the file from which to read stored count
143 information. *outfile* is the name of the file in which to write updated
144 count information. *timing* enables a timestamp relative to when tracing was
145 started to be displayed.
Georg Brandl116aa622007-08-15 14:28:22 +0000146
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000147 .. method:: run(cmd)
Georg Brandl116aa622007-08-15 14:28:22 +0000148
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000149 Execute the command and gather statistics from the execution with
150 the current tracing parameters. *cmd* must be a string or code object,
151 suitable for passing into :func:`exec`.
Georg Brandl116aa622007-08-15 14:28:22 +0000152
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000153 .. method:: runctx(cmd, globals=None, locals=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000154
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000155 Execute the command and gather statistics from the execution with the
156 current tracing parameters, in the defined global and local
157 environments. If not defined, *globals* and *locals* default to empty
158 dictionaries.
Georg Brandl116aa622007-08-15 14:28:22 +0000159
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000160 .. method:: runfunc(func, *args, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000161
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000162 Call *func* with the given arguments under control of the :class:`Trace`
163 object with the current tracing parameters.
Georg Brandl116aa622007-08-15 14:28:22 +0000164
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000165 .. method:: results()
Éric Araujod00862a2010-12-15 19:09:58 +0000166
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000167 Return a :class:`CoverageResults` object that contains the cumulative
168 results of all previous calls to ``run``, ``runctx`` and ``runfunc``
169 for the given :class:`Trace` instance. Does not reset the accumulated
170 trace results.
Éric Araujod00862a2010-12-15 19:09:58 +0000171
172.. class:: CoverageResults
173
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000174 A container for coverage results, created by :meth:`Trace.results`. Should
175 not be created directly by the user.
Éric Araujod00862a2010-12-15 19:09:58 +0000176
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000177 .. method:: update(other)
Éric Araujod00862a2010-12-15 19:09:58 +0000178
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000179 Merge in data from another :class:`CoverageResults` object.
Éric Araujod00862a2010-12-15 19:09:58 +0000180
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000181 .. method:: write_results(show_missing=True, summary=False, coverdir=None)
Éric Araujod00862a2010-12-15 19:09:58 +0000182
Éric Araujo67f0b6c2010-12-15 19:30:15 +0000183 Write coverage results. Set *show_missing* to show lines that had no
184 hits. Set *summary* to include in the output the coverage summary per
185 module. *coverdir* specifies the directory into which the coverage
186 result files will be output. If ``None``, the results for each source
187 file are placed in its directory.
Éric Araujod00862a2010-12-15 19:09:58 +0000188
189A simple example demonstrating the use of the programmatic interface::
Georg Brandl116aa622007-08-15 14:28:22 +0000190
191 import sys
192 import trace
193
194 # create a Trace object, telling it what to ignore, and whether to
195 # do tracing or line-counting or both.
196 tracer = trace.Trace(
197 ignoredirs=[sys.prefix, sys.exec_prefix],
198 trace=0,
199 count=1)
200
201 # run the new command using the given tracer
202 tracer.run('main()')
203
Petri Lehtinen9f74c6c2013-02-23 19:26:56 +0100204 # make a report, placing output in the current directory
Georg Brandl116aa622007-08-15 14:28:22 +0000205 r = tracer.results()
Petri Lehtinen9f74c6c2013-02-23 19:26:56 +0100206 r.write_results(show_missing=True, coverdir=".")
Georg Brandl116aa622007-08-15 14:28:22 +0000207