trace.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  1. #!/usr/bin/env python3
  2. # portions copyright 2001, Autonomous Zones Industries, Inc., all rights...
  3. # err... reserved and offered to the public under the terms of the
  4. # Python 2.2 license.
  5. # Author: Zooko O'Whielacronx
  6. # http://zooko.com/
  7. # mailto:zooko@zooko.com
  8. #
  9. # Copyright 2000, Mojam Media, Inc., all rights reserved.
  10. # Author: Skip Montanaro
  11. #
  12. # Copyright 1999, Bioreason, Inc., all rights reserved.
  13. # Author: Andrew Dalke
  14. #
  15. # Copyright 1995-1997, Automatrix, Inc., all rights reserved.
  16. # Author: Skip Montanaro
  17. #
  18. # Copyright 1991-1995, Stichting Mathematisch Centrum, all rights reserved.
  19. #
  20. #
  21. # Permission to use, copy, modify, and distribute this Python software and
  22. # its associated documentation for any purpose without fee is hereby
  23. # granted, provided that the above copyright notice appears in all copies,
  24. # and that both that copyright notice and this permission notice appear in
  25. # supporting documentation, and that the name of neither Automatrix,
  26. # Bioreason or Mojam Media be used in advertising or publicity pertaining to
  27. # distribution of the software without specific, written prior permission.
  28. #
  29. """program/module to trace Python program or function execution
  30. Sample use, command line:
  31. trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs
  32. trace.py -t --ignore-dir '$prefix' spam.py eggs
  33. trace.py --trackcalls spam.py eggs
  34. Sample use, programmatically
  35. import sys
  36. # create a Trace object, telling it what to ignore, and whether to
  37. # do tracing or line-counting or both.
  38. tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
  39. trace=0, count=1)
  40. # run the new command using the given tracer
  41. tracer.run('main()')
  42. # make a report, placing output in /tmp
  43. r = tracer.results()
  44. r.write_results(show_missing=True, coverdir="/tmp")
  45. """
  46. __all__ = ['Trace', 'CoverageResults']
  47. import linecache
  48. import os
  49. import re
  50. import sys
  51. import token
  52. import tokenize
  53. import inspect
  54. import gc
  55. import dis
  56. import pickle
  57. from warnings import warn as _warn
  58. from time import monotonic as _time
  59. try:
  60. import threading
  61. except ImportError:
  62. _settrace = sys.settrace
  63. def _unsettrace():
  64. sys.settrace(None)
  65. else:
  66. def _settrace(func):
  67. threading.settrace(func)
  68. sys.settrace(func)
  69. def _unsettrace():
  70. sys.settrace(None)
  71. threading.settrace(None)
  72. def _usage(outfile):
  73. outfile.write("""Usage: %s [OPTIONS] <file> [ARGS]
  74. Meta-options:
  75. --help Display this help then exit.
  76. --version Output version information then exit.
  77. Otherwise, exactly one of the following three options must be given:
  78. -t, --trace Print each line to sys.stdout before it is executed.
  79. -c, --count Count the number of times each line is executed
  80. and write the counts to <module>.cover for each
  81. module executed, in the module's directory.
  82. See also `--coverdir', `--file', `--no-report' below.
  83. -l, --listfuncs Keep track of which functions are executed at least
  84. once and write the results to sys.stdout after the
  85. program exits.
  86. -T, --trackcalls Keep track of caller/called pairs and write the
  87. results to sys.stdout after the program exits.
  88. -r, --report Generate a report from a counts file; do not execute
  89. any code. `--file' must specify the results file to
  90. read, which must have been created in a previous run
  91. with `--count --file=FILE'.
  92. Modifiers:
  93. -f, --file=<file> File to accumulate counts over several runs.
  94. -R, --no-report Do not generate the coverage report files.
  95. Useful if you want to accumulate over several runs.
  96. -C, --coverdir=<dir> Directory where the report files. The coverage
  97. report for <package>.<module> is written to file
  98. <dir>/<package>/<module>.cover.
  99. -m, --missing Annotate executable lines that were not executed
  100. with '>>>>>> '.
  101. -s, --summary Write a brief summary on stdout for each file.
  102. (Can only be used with --count or --report.)
  103. -g, --timing Prefix each line with the time since the program started.
  104. Only used while tracing.
  105. Filters, may be repeated multiple times:
  106. --ignore-module=<mod> Ignore the given module(s) and its submodules
  107. (if it is a package). Accepts comma separated
  108. list of module names
  109. --ignore-dir=<dir> Ignore files in the given directory (multiple
  110. directories can be joined by os.pathsep).
  111. """ % sys.argv[0])
  112. PRAGMA_NOCOVER = "#pragma NO COVER"
  113. # Simple rx to find lines with no code.
  114. rx_blank = re.compile(r'^\s*(#.*)?$')
  115. class _Ignore:
  116. def __init__(self, modules=None, dirs=None):
  117. self._mods = set() if not modules else set(modules)
  118. self._dirs = [] if not dirs else [os.path.normpath(d)
  119. for d in dirs]
  120. self._ignore = { '<string>': 1 }
  121. def names(self, filename, modulename):
  122. if modulename in self._ignore:
  123. return self._ignore[modulename]
  124. # haven't seen this one before, so see if the module name is
  125. # on the ignore list.
  126. if modulename in self._mods: # Identical names, so ignore
  127. self._ignore[modulename] = 1
  128. return 1
  129. # check if the module is a proper submodule of something on
  130. # the ignore list
  131. for mod in self._mods:
  132. # Need to take some care since ignoring
  133. # "cmp" mustn't mean ignoring "cmpcache" but ignoring
  134. # "Spam" must also mean ignoring "Spam.Eggs".
  135. if modulename.startswith(mod + '.'):
  136. self._ignore[modulename] = 1
  137. return 1
  138. # Now check that filename isn't in one of the directories
  139. if filename is None:
  140. # must be a built-in, so we must ignore
  141. self._ignore[modulename] = 1
  142. return 1
  143. # Ignore a file when it contains one of the ignorable paths
  144. for d in self._dirs:
  145. # The '+ os.sep' is to ensure that d is a parent directory,
  146. # as compared to cases like:
  147. # d = "/usr/local"
  148. # filename = "/usr/local.py"
  149. # or
  150. # d = "/usr/local.py"
  151. # filename = "/usr/local.py"
  152. if filename.startswith(d + os.sep):
  153. self._ignore[modulename] = 1
  154. return 1
  155. # Tried the different ways, so we don't ignore this module
  156. self._ignore[modulename] = 0
  157. return 0
  158. def _modname(path):
  159. """Return a plausible module name for the patch."""
  160. base = os.path.basename(path)
  161. filename, ext = os.path.splitext(base)
  162. return filename
  163. def _fullmodname(path):
  164. """Return a plausible module name for the path."""
  165. # If the file 'path' is part of a package, then the filename isn't
  166. # enough to uniquely identify it. Try to do the right thing by
  167. # looking in sys.path for the longest matching prefix. We'll
  168. # assume that the rest is the package name.
  169. comparepath = os.path.normcase(path)
  170. longest = ""
  171. for dir in sys.path:
  172. dir = os.path.normcase(dir)
  173. if comparepath.startswith(dir) and comparepath[len(dir)] == os.sep:
  174. if len(dir) > len(longest):
  175. longest = dir
  176. if longest:
  177. base = path[len(longest) + 1:]
  178. else:
  179. base = path
  180. # the drive letter is never part of the module name
  181. drive, base = os.path.splitdrive(base)
  182. base = base.replace(os.sep, ".")
  183. if os.altsep:
  184. base = base.replace(os.altsep, ".")
  185. filename, ext = os.path.splitext(base)
  186. return filename.lstrip(".")
  187. class CoverageResults:
  188. def __init__(self, counts=None, calledfuncs=None, infile=None,
  189. callers=None, outfile=None):
  190. self.counts = counts
  191. if self.counts is None:
  192. self.counts = {}
  193. self.counter = self.counts.copy() # map (filename, lineno) to count
  194. self.calledfuncs = calledfuncs
  195. if self.calledfuncs is None:
  196. self.calledfuncs = {}
  197. self.calledfuncs = self.calledfuncs.copy()
  198. self.callers = callers
  199. if self.callers is None:
  200. self.callers = {}
  201. self.callers = self.callers.copy()
  202. self.infile = infile
  203. self.outfile = outfile
  204. if self.infile:
  205. # Try to merge existing counts file.
  206. try:
  207. with open(self.infile, 'rb') as f:
  208. counts, calledfuncs, callers = pickle.load(f)
  209. self.update(self.__class__(counts, calledfuncs, callers))
  210. except (OSError, EOFError, ValueError) as err:
  211. print(("Skipping counts file %r: %s"
  212. % (self.infile, err)), file=sys.stderr)
  213. def is_ignored_filename(self, filename):
  214. """Return True if the filename does not refer to a file
  215. we want to have reported.
  216. """
  217. return filename.startswith('<') and filename.endswith('>')
  218. def update(self, other):
  219. """Merge in the data from another CoverageResults"""
  220. counts = self.counts
  221. calledfuncs = self.calledfuncs
  222. callers = self.callers
  223. other_counts = other.counts
  224. other_calledfuncs = other.calledfuncs
  225. other_callers = other.callers
  226. for key in other_counts:
  227. counts[key] = counts.get(key, 0) + other_counts[key]
  228. for key in other_calledfuncs:
  229. calledfuncs[key] = 1
  230. for key in other_callers:
  231. callers[key] = 1
  232. def write_results(self, show_missing=True, summary=False, coverdir=None):
  233. """
  234. @param coverdir
  235. """
  236. if self.calledfuncs:
  237. print()
  238. print("functions called:")
  239. calls = self.calledfuncs
  240. for filename, modulename, funcname in sorted(calls):
  241. print(("filename: %s, modulename: %s, funcname: %s"
  242. % (filename, modulename, funcname)))
  243. if self.callers:
  244. print()
  245. print("calling relationships:")
  246. lastfile = lastcfile = ""
  247. for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
  248. in sorted(self.callers):
  249. if pfile != lastfile:
  250. print()
  251. print("***", pfile, "***")
  252. lastfile = pfile
  253. lastcfile = ""
  254. if cfile != pfile and lastcfile != cfile:
  255. print(" -->", cfile)
  256. lastcfile = cfile
  257. print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
  258. # turn the counts data ("(filename, lineno) = count") into something
  259. # accessible on a per-file basis
  260. per_file = {}
  261. for filename, lineno in self.counts:
  262. lines_hit = per_file[filename] = per_file.get(filename, {})
  263. lines_hit[lineno] = self.counts[(filename, lineno)]
  264. # accumulate summary info, if needed
  265. sums = {}
  266. for filename, count in per_file.items():
  267. if self.is_ignored_filename(filename):
  268. continue
  269. if filename.endswith(".pyc"):
  270. filename = filename[:-1]
  271. if coverdir is None:
  272. dir = os.path.dirname(os.path.abspath(filename))
  273. modulename = _modname(filename)
  274. else:
  275. dir = coverdir
  276. if not os.path.exists(dir):
  277. os.makedirs(dir)
  278. modulename = _fullmodname(filename)
  279. # If desired, get a list of the line numbers which represent
  280. # executable content (returned as a dict for better lookup speed)
  281. if show_missing:
  282. lnotab = _find_executable_linenos(filename)
  283. else:
  284. lnotab = {}
  285. if lnotab:
  286. source = linecache.getlines(filename)
  287. coverpath = os.path.join(dir, modulename + ".cover")
  288. with open(filename, 'rb') as fp:
  289. encoding, _ = tokenize.detect_encoding(fp.readline)
  290. n_hits, n_lines = self.write_results_file(coverpath, source,
  291. lnotab, count, encoding)
  292. if summary and n_lines:
  293. percent = int(100 * n_hits / n_lines)
  294. sums[modulename] = n_lines, percent, modulename, filename
  295. if summary and sums:
  296. print("lines cov% module (path)")
  297. for m in sorted(sums):
  298. n_lines, percent, modulename, filename = sums[m]
  299. print("%5d %3d%% %s (%s)" % sums[m])
  300. if self.outfile:
  301. # try and store counts and module info into self.outfile
  302. try:
  303. pickle.dump((self.counts, self.calledfuncs, self.callers),
  304. open(self.outfile, 'wb'), 1)
  305. except OSError as err:
  306. print("Can't save counts files because %s" % err, file=sys.stderr)
  307. def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None):
  308. """Return a coverage results file in path."""
  309. try:
  310. outfile = open(path, "w", encoding=encoding)
  311. except OSError as err:
  312. print(("trace: Could not open %r for writing: %s"
  313. "- skipping" % (path, err)), file=sys.stderr)
  314. return 0, 0
  315. n_lines = 0
  316. n_hits = 0
  317. with outfile:
  318. for lineno, line in enumerate(lines, 1):
  319. # do the blank/comment match to try to mark more lines
  320. # (help the reader find stuff that hasn't been covered)
  321. if lineno in lines_hit:
  322. outfile.write("%5d: " % lines_hit[lineno])
  323. n_hits += 1
  324. n_lines += 1
  325. elif rx_blank.match(line):
  326. outfile.write(" ")
  327. else:
  328. # lines preceded by no marks weren't hit
  329. # Highlight them if so indicated, unless the line contains
  330. # #pragma: NO COVER
  331. if lineno in lnotab and not PRAGMA_NOCOVER in line:
  332. outfile.write(">>>>>> ")
  333. n_lines += 1
  334. else:
  335. outfile.write(" ")
  336. outfile.write(line.expandtabs(8))
  337. return n_hits, n_lines
  338. def _find_lines_from_code(code, strs):
  339. """Return dict where keys are lines in the line number table."""
  340. linenos = {}
  341. for _, lineno in dis.findlinestarts(code):
  342. if lineno not in strs:
  343. linenos[lineno] = 1
  344. return linenos
  345. def _find_lines(code, strs):
  346. """Return lineno dict for all code objects reachable from code."""
  347. # get all of the lineno information from the code of this scope level
  348. linenos = _find_lines_from_code(code, strs)
  349. # and check the constants for references to other code objects
  350. for c in code.co_consts:
  351. if inspect.iscode(c):
  352. # find another code object, so recurse into it
  353. linenos.update(_find_lines(c, strs))
  354. return linenos
  355. def _find_strings(filename, encoding=None):
  356. """Return a dict of possible docstring positions.
  357. The dict maps line numbers to strings. There is an entry for
  358. line that contains only a string or a part of a triple-quoted
  359. string.
  360. """
  361. d = {}
  362. # If the first token is a string, then it's the module docstring.
  363. # Add this special case so that the test in the loop passes.
  364. prev_ttype = token.INDENT
  365. with open(filename, encoding=encoding) as f:
  366. tok = tokenize.generate_tokens(f.readline)
  367. for ttype, tstr, start, end, line in tok:
  368. if ttype == token.STRING:
  369. if prev_ttype == token.INDENT:
  370. sline, scol = start
  371. eline, ecol = end
  372. for i in range(sline, eline + 1):
  373. d[i] = 1
  374. prev_ttype = ttype
  375. return d
  376. def _find_executable_linenos(filename):
  377. """Return dict where keys are line numbers in the line number table."""
  378. try:
  379. with tokenize.open(filename) as f:
  380. prog = f.read()
  381. encoding = f.encoding
  382. except OSError as err:
  383. print(("Not printing coverage data for %r: %s"
  384. % (filename, err)), file=sys.stderr)
  385. return {}
  386. code = compile(prog, filename, "exec")
  387. strs = _find_strings(filename, encoding)
  388. return _find_lines(code, strs)
  389. class Trace:
  390. def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,
  391. ignoremods=(), ignoredirs=(), infile=None, outfile=None,
  392. timing=False):
  393. """
  394. @param count true iff it should count number of times each
  395. line is executed
  396. @param trace true iff it should print out each line that is
  397. being counted
  398. @param countfuncs true iff it should just output a list of
  399. (filename, modulename, funcname,) for functions
  400. that were called at least once; This overrides
  401. `count' and `trace'
  402. @param ignoremods a list of the names of modules to ignore
  403. @param ignoredirs a list of the names of directories to ignore
  404. all of the (recursive) contents of
  405. @param infile file from which to read stored counts to be
  406. added into the results
  407. @param outfile file in which to write the results
  408. @param timing true iff timing information be displayed
  409. """
  410. self.infile = infile
  411. self.outfile = outfile
  412. self.ignore = _Ignore(ignoremods, ignoredirs)
  413. self.counts = {} # keys are (filename, linenumber)
  414. self.pathtobasename = {} # for memoizing os.path.basename
  415. self.donothing = 0
  416. self.trace = trace
  417. self._calledfuncs = {}
  418. self._callers = {}
  419. self._caller_cache = {}
  420. self.start_time = None
  421. if timing:
  422. self.start_time = _time()
  423. if countcallers:
  424. self.globaltrace = self.globaltrace_trackcallers
  425. elif countfuncs:
  426. self.globaltrace = self.globaltrace_countfuncs
  427. elif trace and count:
  428. self.globaltrace = self.globaltrace_lt
  429. self.localtrace = self.localtrace_trace_and_count
  430. elif trace:
  431. self.globaltrace = self.globaltrace_lt
  432. self.localtrace = self.localtrace_trace
  433. elif count:
  434. self.globaltrace = self.globaltrace_lt
  435. self.localtrace = self.localtrace_count
  436. else:
  437. # Ahem -- do nothing? Okay.
  438. self.donothing = 1
  439. def run(self, cmd):
  440. import __main__
  441. dict = __main__.__dict__
  442. self.runctx(cmd, dict, dict)
  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:
  447. _settrace(self.globaltrace)
  448. try:
  449. exec(cmd, globals, locals)
  450. finally:
  451. if not self.donothing:
  452. _unsettrace()
  453. def runfunc(self, func, *args, **kw):
  454. result = None
  455. if not self.donothing:
  456. sys.settrace(self.globaltrace)
  457. try:
  458. result = func(*args, **kw)
  459. finally:
  460. if not self.donothing:
  461. sys.settrace(None)
  462. return result
  463. def file_module_function_of(self, frame):
  464. code = frame.f_code
  465. filename = code.co_filename
  466. if filename:
  467. modulename = _modname(filename)
  468. else:
  469. modulename = None
  470. funcname = code.co_name
  471. clsname = None
  472. if code in self._caller_cache:
  473. if self._caller_cache[code] is not None:
  474. clsname = self._caller_cache[code]
  475. else:
  476. self._caller_cache[code] = None
  477. ## use of gc.get_referrers() was suggested by Michael Hudson
  478. # all functions which refer to this code object
  479. funcs = [f for f in gc.get_referrers(code)
  480. if inspect.isfunction(f)]
  481. # require len(func) == 1 to avoid ambiguity caused by calls to
  482. # new.function(): "In the face of ambiguity, refuse the
  483. # temptation to guess."
  484. if len(funcs) == 1:
  485. dicts = [d for d in gc.get_referrers(funcs[0])
  486. if isinstance(d, dict)]
  487. if len(dicts) == 1:
  488. classes = [c for c in gc.get_referrers(dicts[0])
  489. if hasattr(c, "__bases__")]
  490. if len(classes) == 1:
  491. # ditto for new.classobj()
  492. clsname = classes[0].__name__
  493. # cache the result - assumption is that new.* is
  494. # not called later to disturb this relationship
  495. # _caller_cache could be flushed if functions in
  496. # the new module get called.
  497. self._caller_cache[code] = clsname
  498. if clsname is not None:
  499. funcname = "%s.%s" % (clsname, funcname)
  500. return filename, modulename, funcname
  501. def globaltrace_trackcallers(self, frame, why, arg):
  502. """Handler for call events.
  503. Adds information about who called who to the self._callers dict.
  504. """
  505. if why == 'call':
  506. # XXX Should do a better job of identifying methods
  507. this_func = self.file_module_function_of(frame)
  508. parent_func = self.file_module_function_of(frame.f_back)
  509. self._callers[(parent_func, this_func)] = 1
  510. def globaltrace_countfuncs(self, frame, why, arg):
  511. """Handler for call events.
  512. Adds (filename, modulename, funcname) to the self._calledfuncs dict.
  513. """
  514. if why == 'call':
  515. this_func = self.file_module_function_of(frame)
  516. self._calledfuncs[this_func] = 1
  517. def globaltrace_lt(self, frame, why, arg):
  518. """Handler for call events.
  519. If the code block being entered is to be ignored, returns `None',
  520. else returns self.localtrace.
  521. """
  522. if why == 'call':
  523. code = frame.f_code
  524. filename = frame.f_globals.get('__file__', None)
  525. if filename:
  526. # XXX _modname() doesn't work right for packages, so
  527. # the ignore support won't work right for packages
  528. modulename = _modname(filename)
  529. if modulename is not None:
  530. ignore_it = self.ignore.names(filename, modulename)
  531. if not ignore_it:
  532. if self.trace:
  533. print((" --- modulename: %s, funcname: %s"
  534. % (modulename, code.co_name)))
  535. return self.localtrace
  536. else:
  537. return None
  538. def localtrace_trace_and_count(self, frame, why, arg):
  539. if why == "line":
  540. # record the file name and line number of every trace
  541. filename = frame.f_code.co_filename
  542. lineno = frame.f_lineno
  543. key = filename, lineno
  544. self.counts[key] = self.counts.get(key, 0) + 1
  545. if self.start_time:
  546. print('%.2f' % (_time() - self.start_time), end=' ')
  547. bname = os.path.basename(filename)
  548. print("%s(%d): %s" % (bname, lineno,
  549. linecache.getline(filename, lineno)), end='')
  550. return self.localtrace
  551. def localtrace_trace(self, frame, why, arg):
  552. if why == "line":
  553. # record the file name and line number of every trace
  554. filename = frame.f_code.co_filename
  555. lineno = frame.f_lineno
  556. if self.start_time:
  557. print('%.2f' % (_time() - self.start_time), end=' ')
  558. bname = os.path.basename(filename)
  559. print("%s(%d): %s" % (bname, lineno,
  560. linecache.getline(filename, lineno)), end='')
  561. return self.localtrace
  562. def localtrace_count(self, frame, why, arg):
  563. if why == "line":
  564. filename = frame.f_code.co_filename
  565. lineno = frame.f_lineno
  566. key = filename, lineno
  567. self.counts[key] = self.counts.get(key, 0) + 1
  568. return self.localtrace
  569. def results(self):
  570. return CoverageResults(self.counts, infile=self.infile,
  571. outfile=self.outfile,
  572. calledfuncs=self._calledfuncs,
  573. callers=self._callers)
  574. def _err_exit(msg):
  575. sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
  576. sys.exit(1)
  577. def main(argv=None):
  578. import getopt
  579. if argv is None:
  580. argv = sys.argv
  581. try:
  582. opts, prog_argv = getopt.getopt(argv[1:], "tcrRf:d:msC:lTg",
  583. ["help", "version", "trace", "count",
  584. "report", "no-report", "summary",
  585. "file=", "missing",
  586. "ignore-module=", "ignore-dir=",
  587. "coverdir=", "listfuncs",
  588. "trackcalls", "timing"])
  589. except getopt.error as msg:
  590. sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
  591. sys.stderr.write("Try `%s --help' for more information\n"
  592. % sys.argv[0])
  593. sys.exit(1)
  594. trace = 0
  595. count = 0
  596. report = 0
  597. no_report = 0
  598. counts_file = None
  599. missing = 0
  600. ignore_modules = []
  601. ignore_dirs = []
  602. coverdir = None
  603. summary = 0
  604. listfuncs = False
  605. countcallers = False
  606. timing = False
  607. for opt, val in opts:
  608. if opt == "--help":
  609. _usage(sys.stdout)
  610. sys.exit(0)
  611. if opt == "--version":
  612. sys.stdout.write("trace 2.0\n")
  613. sys.exit(0)
  614. if opt == "-T" or opt == "--trackcalls":
  615. countcallers = True
  616. continue
  617. if opt == "-l" or opt == "--listfuncs":
  618. listfuncs = True
  619. continue
  620. if opt == "-g" or opt == "--timing":
  621. timing = True
  622. continue
  623. if opt == "-t" or opt == "--trace":
  624. trace = 1
  625. continue
  626. if opt == "-c" or opt == "--count":
  627. count = 1
  628. continue
  629. if opt == "-r" or opt == "--report":
  630. report = 1
  631. continue
  632. if opt == "-R" or opt == "--no-report":
  633. no_report = 1
  634. continue
  635. if opt == "-f" or opt == "--file":
  636. counts_file = val
  637. continue
  638. if opt == "-m" or opt == "--missing":
  639. missing = 1
  640. continue
  641. if opt == "-C" or opt == "--coverdir":
  642. coverdir = val
  643. continue
  644. if opt == "-s" or opt == "--summary":
  645. summary = 1
  646. continue
  647. if opt == "--ignore-module":
  648. for mod in val.split(","):
  649. ignore_modules.append(mod.strip())
  650. continue
  651. if opt == "--ignore-dir":
  652. for s in val.split(os.pathsep):
  653. s = os.path.expandvars(s)
  654. # should I also call expanduser? (after all, could use $HOME)
  655. s = s.replace("$prefix",
  656. os.path.join(sys.base_prefix, sys.lib,
  657. "python" + sys.version[:3]))
  658. s = s.replace("$exec_prefix",
  659. os.path.join(sys.base_exec_prefix, sys.lib,
  660. "python" + sys.version[:3]))
  661. s = os.path.normpath(s)
  662. ignore_dirs.append(s)
  663. continue
  664. assert 0, "Should never get here"
  665. if listfuncs and (count or trace):
  666. _err_exit("cannot specify both --listfuncs and (--trace or --count)")
  667. if not (count or trace or report or listfuncs or countcallers):
  668. _err_exit("must specify one of --trace, --count, --report, "
  669. "--listfuncs, or --trackcalls")
  670. if report and no_report:
  671. _err_exit("cannot specify both --report and --no-report")
  672. if report and not counts_file:
  673. _err_exit("--report requires a --file")
  674. if no_report and len(prog_argv) == 0:
  675. _err_exit("missing name of file to run")
  676. # everything is ready
  677. if report:
  678. results = CoverageResults(infile=counts_file, outfile=counts_file)
  679. results.write_results(missing, summary=summary, coverdir=coverdir)
  680. else:
  681. sys.argv = prog_argv
  682. progname = prog_argv[0]
  683. sys.path[0] = os.path.split(progname)[0]
  684. t = Trace(count, trace, countfuncs=listfuncs,
  685. countcallers=countcallers, ignoremods=ignore_modules,
  686. ignoredirs=ignore_dirs, infile=counts_file,
  687. outfile=counts_file, timing=timing)
  688. try:
  689. with open(progname) as fp:
  690. code = compile(fp.read(), progname, 'exec')
  691. # try to emulate __main__ namespace as much as possible
  692. globs = {
  693. '__file__': progname,
  694. '__name__': '__main__',
  695. '__package__': None,
  696. '__cached__': None,
  697. }
  698. t.runctx(code, globs, globs)
  699. except OSError as err:
  700. _err_exit("Cannot run file %r because: %s" % (sys.argv[0], err))
  701. except SystemExit:
  702. pass
  703. results = t.results()
  704. if not no_report:
  705. results.write_results(missing, summary=summary, coverdir=coverdir)
  706. # Deprecated API
  707. def usage(outfile):
  708. _warn("The trace.usage() function is deprecated",
  709. DeprecationWarning, 2)
  710. _usage(outfile)
  711. class Ignore(_Ignore):
  712. def __init__(self, modules=None, dirs=None):
  713. _warn("The class trace.Ignore is deprecated",
  714. DeprecationWarning, 2)
  715. _Ignore.__init__(self, modules, dirs)
  716. def modname(path):
  717. _warn("The trace.modname() function is deprecated",
  718. DeprecationWarning, 2)
  719. return _modname(path)
  720. def fullmodname(path):
  721. _warn("The trace.fullmodname() function is deprecated",
  722. DeprecationWarning, 2)
  723. return _fullmodname(path)
  724. def find_lines_from_code(code, strs):
  725. _warn("The trace.find_lines_from_code() function is deprecated",
  726. DeprecationWarning, 2)
  727. return _find_lines_from_code(code, strs)
  728. def find_lines(code, strs):
  729. _warn("The trace.find_lines() function is deprecated",
  730. DeprecationWarning, 2)
  731. return _find_lines(code, strs)
  732. def find_strings(filename, encoding=None):
  733. _warn("The trace.find_strings() function is deprecated",
  734. DeprecationWarning, 2)
  735. return _find_strings(filename, encoding=None)
  736. def find_executable_linenos(filename):
  737. _warn("The trace.find_executable_linenos() function is deprecated",
  738. DeprecationWarning, 2)
  739. return _find_executable_linenos(filename)
  740. if __name__=='__main__':
  741. main()