trace.py 23.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
#!/usr/bin/env python

# Copyright 2000, Mojam Media, Inc., all rights reserved.
# Author: Skip Montanaro
#
# Copyright 1999, Bioreason, Inc., all rights reserved.
# Author: Andrew Dalke
#
# Copyright 1995-1997, Automatrix, Inc., all rights reserved.
# Author: Skip Montanaro
#
# Copyright 1991-1995, Stichting Mathematisch Centrum, all rights reserved.
#
#
# Permission to use, copy, modify, and distribute this Python software and
# its associated documentation for any purpose without fee is hereby
# granted, provided that the above copyright notice appears in all copies,
# and that both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of neither Automatrix,
# Bioreason or Mojam Media be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior permission.
#
#
# Summary of recent changes:
#   Support for files with the same basename (submodules in packages)
#   Expanded the idea of how to ignore files or modules
#   Split tracing and counting into different classes
#   Extracted count information and reporting from the count class
#   Added some ability to detect which missing lines could be executed
#   Added pseudo-pragma to prohibit complaining about unexecuted lines
#   Rewrote the main program

# Summary of older changes:
#   Added run-time display of statements being executed
#   Incorporated portability and performance fixes from Greg Stein
#   Incorporated main program from Michael Scharf

"""
program/module to trace Python program or function execution

Sample use, command line:
  trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs
  trace.py -t --ignore-dir '$prefix' spam.py eggs

Sample use, programmatically (still more complicated than it should be)
   # create an Ignore option, telling it what you want to ignore
   ignore = trace.Ignore(dirs = [sys.prefix, sys.exec_prefix])
   # create a Coverage object, telling it what to ignore
   coverage = trace.Coverage(ignore)
   # run the new command using the given trace
   trace.run(coverage.trace, 'main()')

   # make a report, telling it where you want output
   t = trace.create_results_log(coverage.results(),
                                '/usr/local/Automatrix/concerts/coverage')
                                show_missing = 1)

   The Trace class can be instantited instead of the Coverage class if
   runtime display of executable lines is desired instead of statement
   converage measurement.
"""

import sys, os, string, marshal, tempfile, copy, operator

def usage(outfile):
    outfile.write("""Usage: %s [OPTIONS] <file> [ARGS]

Execution:
      --help           Display this help then exit.
      --version        Output version information then exit.
   -t,--trace          Print the line to be executed to sys.stdout.
   -c,--count          Count the number of times a line is executed.
                         Results are written in the results file, if given.
   -r,--report         Generate a report from a results file; do not
                         execute any code.
        (One of `-t', `-c' or `-r' must be specified)

I/O:
   -f,--file=          File name for accumulating results over several runs.
                         (No file name means do not archive results)
   -d,--logdir=        Directory to use when writing annotated log files.
                         Log files are the module __name__ with `.` replaced
                         by os.sep and with '.pyl' added.
   -m,--missing        Annotate all executable lines which were not executed
                         with a '>>>>>> '.
   -R,--no-report      Do not generate the annotated reports.  Useful if
                         you want to accumulate several over tests.

Selection:                 Do not trace or log lines from ...
  --ignore-module=[string]   modules with the given __name__, and submodules
                              of that module
  --ignore-dir=[string]      files in the stated directory (multiple
                              directories can be joined by os.pathsep)

  The selection options can be listed multiple times to ignore different
modules.
""" % sys.argv[0])


class Ignore:
    def __init__(self, modules = None, dirs = None):
Jeremy Hylton's avatar
Jeremy Hylton committed
102 103
        self._mods = modules or []
        self._dirs = dirs or []
104

Jeremy Hylton's avatar
Jeremy Hylton committed
105
        self._ignore = { '<string>': 1 }
106 107 108


    def names(self, filename, modulename):
Jeremy Hylton's avatar
Jeremy Hylton committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
        if self._ignore.has_key(modulename):
            return self._ignore[modulename]

        # haven't seen this one before, so see if the module name is
        # on the ignore list.  Need to take some care since ignoring
        # "cmp" musn't mean ignoring "cmpcache" but ignoring
        # "Spam" must also mean ignoring "Spam.Eggs".
        for mod in self._mods:
            if mod == modulename:  # Identical names, so ignore
                self._ignore[modulename] = 1
                return 1
            # check if the module is a proper submodule of something on
            # the ignore list
            n = len(mod)
            # (will not overflow since if the first n characters are the
            # same and the name has not already occured, then the size
            # of "name" is greater than that of "mod")
            if mod == modulename[:n] and modulename[n] == '.':
                self._ignore[modulename] = 1
                return 1

        # Now check that __file__ isn't in one of the directories
        if filename is None:
            # must be a built-in, so we must ignore
            self._ignore[modulename] = 1
            return 1

        # Ignore a file when it contains one of the ignorable paths
        for d in self._dirs:
            # The '+ os.sep' is to ensure that d is a parent directory,
            # as compared to cases like:
            #  d = "/usr/local"
            #  filename = "/usr/local.py"
            # or
            #  d = "/usr/local.py"
            #  filename = "/usr/local.py"
            if string.find(filename, d + os.sep) == 0:
                self._ignore[modulename] = 1
                return 1

        # Tried the different ways, so we don't ignore this module
        self._ignore[modulename] = 0
        return 0
152 153 154 155 156 157

def run(trace, cmd):
    import __main__
    dict = __main__.__dict__
    sys.settrace(trace)
    try:
Jeremy Hylton's avatar
Jeremy Hylton committed
158
        exec cmd in dict, dict
159
    finally:
Jeremy Hylton's avatar
Jeremy Hylton committed
160
        sys.settrace(None)
161 162 163 164 165 166

def runctx(trace, cmd, globals=None, locals=None):
    if globals is None: globals = {}
    if locals is None: locals = {}
    sys.settrace(trace)
    try:
Jeremy Hylton's avatar
Jeremy Hylton committed
167
        exec cmd in dict, dict
168
    finally:
Jeremy Hylton's avatar
Jeremy Hylton committed
169
        sys.settrace(None)
170 171 172 173 174

def runfunc(trace, func, *args, **kw):
    result = None
    sys.settrace(trace)
    try:
Jeremy Hylton's avatar
Jeremy Hylton committed
175
        result = apply(func, args, kw)
176
    finally:
Jeremy Hylton's avatar
Jeremy Hylton committed
177
        sys.settrace(None)
178 179 180 181 182
    return result


class CoverageResults:
    def __init__(self, counts = {}, modules = {}):
Jeremy Hylton's avatar
Jeremy Hylton committed
183 184
        self.counts = counts.copy()    # map (filename, lineno) to count
        self.modules = modules.copy()  # map filenames to modules
185 186

    def update(self, other):
Jeremy Hylton's avatar
Jeremy Hylton committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
        """Merge in the data from another CoverageResults"""
        counts = self.counts
        other_counts = other.counts
        modules = self.modules
        other_modules = other.modules

        for key in other_counts.keys():
            counts[key] = counts.get(key, 0) + other_counts[key]

        for key in other_modules.keys():
            if modules.has_key(key):
                # make sure they point to the same file
                assert modules[key] == other_modules[key], \
                      "Strange! filename %s has two different module names" % \
                      (key, modules[key], other_module[key])
            else:
                modules[key] = other_modules[key]
204 205 206 207 208 209 210 211 212 213 214 215 216

# Given a code string, return the SET_LINENO information
def _find_LINENO_from_string(co_code):
    """return all of the SET_LINENO information from a code string"""
    import dis
    linenos = {}

    # This code was filched from the `dis' module then modified
    n = len(co_code)
    i = 0
    prev_op = None
    prev_lineno = 0
    while i < n:
Jeremy Hylton's avatar
Jeremy Hylton committed
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
        c = co_code[i]
        op = ord(c)
        if op == dis.SET_LINENO:
            if prev_op == op:
                # two SET_LINENO in a row, so the previous didn't
                # indicate anything.  This occurs with triple
                # quoted strings (?).  Remove the old one.
                del linenos[prev_lineno]
            prev_lineno = ord(co_code[i+1]) + ord(co_code[i+2])*256
            linenos[prev_lineno] = 1
        if op >= dis.HAVE_ARGUMENT:
            i = i + 3
        else:
            i = i + 1
        prev_op = op
232 233 234 235 236 237 238 239 240 241 242
    return linenos

def _find_LINENO(code):
    """return all of the SET_LINENO information from a code object"""
    import types

    # get all of the lineno information from the code of this scope level
    linenos = _find_LINENO_from_string(code.co_code)

    # and check the constants for references to other code objects
    for c in code.co_consts:
Jeremy Hylton's avatar
Jeremy Hylton committed
243 244 245
        if type(c) == types.CodeType:
            # find another code object, so recurse into it
            linenos.update(_find_LINENO(c))
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    return linenos

def find_executable_linenos(filename):
    """return a dict of the line numbers from executable statements in a file

    Works by finding all of the code-like objects in the module then searching
    the byte code for 'SET_LINENO' terms (so this won't work one -O files).

    """
    import parser

    prog = open(filename).read()
    ast = parser.suite(prog)
    code = parser.compileast(ast, filename)

    # The only way I know to find line numbers is to look for the
    # SET_LINENO instructions.  Isn't there some way to get it from
    # the AST?
Tim Peters's avatar
Tim Peters committed
264

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    return _find_LINENO(code)

### XXX because os.path.commonprefix seems broken by my way of thinking...
def commonprefix(dirs):
    "Given a list of pathnames, returns the longest common leading component"
    if not dirs: return ''
    n = copy.copy(dirs)
    for i in range(len(n)):
        n[i] = n[i].split(os.sep)
    prefix = n[0]
    for item in n:
        for i in range(len(prefix)):
            if prefix[:i+1] <> item[:i+1]:
                prefix = prefix[:i]
                if i == 0: return ''
                break
    return os.sep.join(prefix)
Tim Peters's avatar
Tim Peters committed
282

283 284 285 286 287 288 289 290
def create_results_log(results, dirname = ".", show_missing = 1,
                       save_counts = 0):
    import re
    # turn the counts data ("(filename, lineno) = count") into something
    # accessible on a per-file basis
    per_file = {}
    for filename, lineno in results.counts.keys():
        lines_hit = per_file[filename] = per_file.get(filename, {})
Jeremy Hylton's avatar
Jeremy Hylton committed
291
        lines_hit[lineno] = results.counts[(filename, lineno)]
292 293 294 295 296 297 298 299

    # try and merge existing counts and modules file from dirname
    try:
        counts = marshal.load(open(os.path.join(dirname, "counts")))
        modules = marshal.load(open(os.path.join(dirname, "modules")))
        results.update(results.__class__(counts, modules))
    except IOError:
        pass
Tim Peters's avatar
Tim Peters committed
300

301 302 303 304 305 306 307 308 309
    # there are many places where this is insufficient, like a blank
    # line embedded in a multiline string.
    blank = re.compile(r'^\s*(#.*)?$')

    # generate file paths for the coverage files we are going to write...
    fnlist = []
    tfdir = tempfile.gettempdir()
    for key in per_file.keys():
        filename = key
Tim Peters's avatar
Tim Peters committed
310

311 312 313 314 315 316 317 318 319 320 321 322 323 324
        # skip some "files" we don't care about...
        if filename == "<string>":
            continue
        # are these caused by code compiled using exec or something?
        if filename.startswith(tfdir):
            continue

        # XXX this is almost certainly not portable!!!
        fndir = os.path.dirname(filename)
        if filename[:1] == os.sep:
            coverpath = os.path.join(dirname, "."+fndir)
        else:
            coverpath = os.path.join(dirname, fndir)

Jeremy Hylton's avatar
Jeremy Hylton committed
325
        if filename.endswith(".pyc") or filename.endswith(".pyo"):
326 327
            filename = filename[:-1]

Jeremy Hylton's avatar
Jeremy Hylton committed
328 329 330 331 332 333 334 335
        # Get the original lines from the .py file
        try:
            lines = open(filename, 'r').readlines()
        except IOError, err:
            sys.stderr.write("%s: Could not open %s for reading " \
                             "because: %s - skipping\n" % \
                             ("trace", `filename`, err.strerror))
            continue
336

Jeremy Hylton's avatar
Jeremy Hylton committed
337
        modulename = os.path.split(results.modules[key])[1]
338

Jeremy Hylton's avatar
Jeremy Hylton committed
339 340 341
        # build list file name by appending a ".cover" to the module name
        # and sticking it into the specified directory
        listfilename = os.path.join(coverpath, modulename + ".cover")
342 343 344 345 346 347
        #sys.stderr.write("modulename: %(modulename)s\n"
        #                 "filename: %(filename)s\n"
        #                 "coverpath: %(coverpath)s\n"
        #                 "listfilename: %(listfilename)s\n"
        #                 "dirname: %(dirname)s\n"
        #                 % locals())
Jeremy Hylton's avatar
Jeremy Hylton committed
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
        try:
            outfile = open(listfilename, 'w')
        except IOError, err:
            sys.stderr.write(
                '%s: Could not open %s for writing because: %s" \
                "- skipping\n' % ("trace", `listfilename`, err.strerror))
            continue

        # If desired, get a list of the line numbers which represent
        # executable content (returned as a dict for better lookup speed)
        if show_missing:
            executable_linenos = find_executable_linenos(filename)
        else:
            executable_linenos = {}

        lines_hit = per_file[key]
        for i in range(len(lines)):
            line = lines[i]

            # do the blank/comment match to try to mark more lines
            # (help the reader find stuff that hasn't been covered)
            if lines_hit.has_key(i+1):
                # count precedes the lines that we captured
                outfile.write('%5d: ' % lines_hit[i+1])
            elif blank.match(line):
                # blank lines and comments are preceded by dots
                outfile.write('    . ')
            else:
                # lines preceded by no marks weren't hit
                # Highlight them if so indicated, unless the line contains
                # '#pragma: NO COVER' (it is possible to embed this into
                # the text as a non-comment; no easy fix)
                if executable_linenos.has_key(i+1) and \
                   string.find(lines[i],
382
                               string.join(['#pragma', 'NO COVER'])) == -1:
Jeremy Hylton's avatar
Jeremy Hylton committed
383 384 385 386
                    outfile.write('>>>>>> ')
                else:
                    outfile.write(' '*7)
            outfile.write(string.expandtabs(lines[i], 8))
387

Jeremy Hylton's avatar
Jeremy Hylton committed
388
        outfile.close()
389 390 391 392 393 394 395 396 397

        if save_counts:
            # try and store counts and module info into dirname
            try:
                marshal.dump(results.counts,
                             open(os.path.join(dirname, "counts"), "w"))
                marshal.dump(results.modules,
                             open(os.path.join(dirname, "modules"), "w"))
            except IOError, err:
Jeremy Hylton's avatar
Jeremy Hylton committed
398 399
                sys.stderr.write("cannot save counts/modules " \
                                 "files because %s" % err.strerror)
400 401 402 403 404 405 406 407 408 409

# There is a lot of code shared between these two classes even though
# it is straightforward to make a super class to share code.  However,
# for performance reasons (remember, this is called at every step) I
# wanted to keep everything to a single function call.  Also, by
# staying within a single scope, I don't have to temporarily nullify
# sys.settrace, which would slow things down even more.

class Coverage:
    def __init__(self, ignore = Ignore()):
Jeremy Hylton's avatar
Jeremy Hylton committed
410 411
        self.ignore = ignore
        self.ignore_names = ignore._ignore # access ignore's cache (speed hack)
412

Jeremy Hylton's avatar
Jeremy Hylton committed
413 414
        self.counts = {}   # keys are (filename, linenumber)
        self.modules = {}  # maps filename -> module name
415 416

    def trace(self, frame, why, arg):
Jeremy Hylton's avatar
Jeremy Hylton committed
417 418 419 420 421 422
        if why == 'line':
            # something is fishy about getting the file name
            filename = frame.f_globals.get("__file__", None)
            if filename is None:
                filename = frame.f_code.co_filename
            modulename = frame.f_globals["__name__"]
423

Jeremy Hylton's avatar
Jeremy Hylton committed
424 425 426 427 428 429 430
            # We do this next block to keep from having to make methods
            # calls, which also requires resetting the trace
            ignore_it = self.ignore_names.get(modulename, -1)
            if ignore_it == -1:  # unknown filename
                sys.settrace(None)
                ignore_it = self.ignore.names(filename, modulename)
                sys.settrace(self.trace)
431

Jeremy Hylton's avatar
Jeremy Hylton committed
432 433
                # record the module name for every file
                self.modules[filename] = modulename
434

Jeremy Hylton's avatar
Jeremy Hylton committed
435 436
            if not ignore_it:
                lineno = frame.f_lineno
437

Jeremy Hylton's avatar
Jeremy Hylton committed
438 439 440
                # record the file name and line number of every trace
                key = (filename, lineno)
                self.counts[key] = self.counts.get(key, 0) + 1
441

Jeremy Hylton's avatar
Jeremy Hylton committed
442
        return self.trace
443 444

    def results(self):
Jeremy Hylton's avatar
Jeremy Hylton committed
445
        return CoverageResults(self.counts, self.modules)
446 447 448

class Trace:
    def __init__(self, ignore = Ignore()):
Jeremy Hylton's avatar
Jeremy Hylton committed
449 450
        self.ignore = ignore
        self.ignore_names = ignore._ignore # access ignore's cache (speed hack)
451

Jeremy Hylton's avatar
Jeremy Hylton committed
452
        self.files = {'<string>': None}  # stores lines from the .py file, or None
453 454

    def trace(self, frame, why, arg):
Jeremy Hylton's avatar
Jeremy Hylton committed
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
        if why == 'line':
            filename = frame.f_code.co_filename
            modulename = frame.f_globals["__name__"]

            # We do this next block to keep from having to make methods
            # calls, which also requires resetting the trace
            ignore_it = self.ignore_names.get(modulename, -1)
            if ignore_it == -1:  # unknown filename
                sys.settrace(None)
                ignore_it = self.ignore.names(filename, modulename)
                sys.settrace(self.trace)

            if not ignore_it:
                lineno = frame.f_lineno
                files = self.files

                if filename != '<string>' and not files.has_key(filename):
472 473 474
                    files[filename] = map(string.rstrip,
                                          open(filename).readlines())

Jeremy Hylton's avatar
Jeremy Hylton committed
475 476 477 478
                # If you want to see filenames (the original behaviour), try:
                #   modulename = filename
                # or, prettier but confusing when several files have the same name
                #   modulename = os.path.basename(filename)
479

Jeremy Hylton's avatar
Jeremy Hylton committed
480 481 482 483 484
                if files[filename] != None:
                    print '%s(%d): %s' % (os.path.basename(filename), lineno,
                                          files[filename][lineno-1])
                else:
                    print '%s(%d): ??' % (modulename, lineno)
485

Jeremy Hylton's avatar
Jeremy Hylton committed
486
        return self.trace
Tim Peters's avatar
Tim Peters committed
487

488 489

def _err_exit(msg):
Jeremy Hylton's avatar
Jeremy Hylton committed
490 491
    sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
    sys.exit(1)
492 493 494 495 496

def main(argv = None):
    import getopt

    if argv is None:
Jeremy Hylton's avatar
Jeremy Hylton committed
497
        argv = sys.argv
498
    try:
Jeremy Hylton's avatar
Jeremy Hylton committed
499 500 501 502 503
        opts, prog_argv = getopt.getopt(argv[1:], "tcrRf:d:m",
                                        ["help", "version", "trace", "count",
                                         "report", "no-report",
                                         "file=", "logdir=", "missing",
                                         "ignore-module=", "ignore-dir="])
504 505

    except getopt.error, msg:
Jeremy Hylton's avatar
Jeremy Hylton committed
506 507 508
        sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
        sys.stderr.write("Try `%s --help' for more information\n" % sys.argv[0])
        sys.exit(1)
509 510 511 512 513 514 515 516 517 518 519 520

    trace = 0
    count = 0
    report = 0
    no_report = 0
    counts_file = None
    logdir = "."
    missing = 0
    ignore_modules = []
    ignore_dirs = []

    for opt, val in opts:
Jeremy Hylton's avatar
Jeremy Hylton committed
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
        if opt == "--help":
            usage(sys.stdout)
            sys.exit(0)

        if opt == "--version":
            sys.stdout.write("trace 2.0\n")
            sys.exit(0)

        if opt == "-t" or opt == "--trace":
            trace = 1
            continue

        if opt == "-c" or opt == "--count":
            count = 1
            continue

        if opt == "-r" or opt == "--report":
            report = 1
            continue

        if opt == "-R" or opt == "--no-report":
            no_report = 1
            continue

        if opt == "-f" or opt == "--file":
            counts_file = val
            continue

        if opt == "-d" or opt == "--logdir":
            logdir = val
            continue

        if opt == "-m" or opt == "--missing":
            missing = 1
            continue

        if opt == "--ignore-module":
            ignore_modules.append(val)
            continue

        if opt == "--ignore-dir":
            for s in string.split(val, os.pathsep):
                s = os.path.expandvars(s)
                # should I also call expanduser? (after all, could use $HOME)

                s = string.replace(s, "$prefix",
                                   os.path.join(sys.prefix, "lib",
                                                "python" + sys.version[:3]))
                s = string.replace(s, "$exec_prefix",
                                   os.path.join(sys.exec_prefix, "lib",
                                                "python" + sys.version[:3]))
                s = os.path.normpath(s)
                ignore_dirs.append(s)
            continue

        assert 0, "Should never get here"
577 578

    if len(prog_argv) == 0:
Jeremy Hylton's avatar
Jeremy Hylton committed
579
        _err_exit("missing name of file to run")
580 581

    if count + trace + report > 1:
Jeremy Hylton's avatar
Jeremy Hylton committed
582
        _err_exit("can only specify one of --trace, --count or --report")
583 584

    if count + trace + report == 0:
Jeremy Hylton's avatar
Jeremy Hylton committed
585
        _err_exit("must specify one of --trace, --count or --report")
586 587

    if report and counts_file is None:
Jeremy Hylton's avatar
Jeremy Hylton committed
588
        _err_exit("--report requires a --file")
589 590

    if report and no_report:
Jeremy Hylton's avatar
Jeremy Hylton committed
591
        _err_exit("cannot specify both --report and --no-report")
592 593

    if logdir is not None:
Jeremy Hylton's avatar
Jeremy Hylton committed
594 595 596 597 598 599
        # warn if the directory doesn't exist, but keep on going
        # (is this the correct behaviour?)
        if not os.path.isdir(logdir):
            sys.stderr.write(
                "trace: WARNING, --logdir directory %s is not available\n" %
                       `logdir`)
600 601 602 603

    sys.argv = prog_argv
    progname = prog_argv[0]
    if eval(sys.version[:3])>1.3:
Jeremy Hylton's avatar
Jeremy Hylton committed
604
        sys.path[0] = os.path.split(progname)[0] # ???
605 606 607 608

    # everything is ready
    ignore = Ignore(ignore_modules, ignore_dirs)
    if trace:
Jeremy Hylton's avatar
Jeremy Hylton committed
609 610 611 612 613 614
        t = Trace(ignore)
        try:
            run(t.trace, 'execfile(' + `progname` + ')')
        except IOError, err:
            _err_exit("Cannot run file %s because: %s" % \
                      (`sys.argv[0]`, err.strerror))
615 616

    elif count:
Jeremy Hylton's avatar
Jeremy Hylton committed
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
        t = Coverage(ignore)
        try:
            run(t.trace, 'execfile(' + `progname` + ')')
        except IOError, err:
            _err_exit("Cannot run file %s because: %s" % \
                      (`sys.argv[0]`, err.strerror))
        except SystemExit:
            pass

        results = t.results()
        # Add another lookup from the program's file name to its import name
        # This give the right results, but I'm not sure why ...
        results.modules[progname] = os.path.splitext(progname)[0]

        if counts_file:
            # add in archived data, if available
            try:
                old_counts, old_modules = marshal.load(open(counts_file, 'rb'))
            except IOError:
                pass
            else:
                results.update(CoverageResults(old_counts, old_modules))

        if not no_report:
            create_results_log(results, logdir, missing)

        if counts_file:
            try:
                marshal.dump( (results.counts, results.modules),
                              open(counts_file, 'wb'))
            except IOError, err:
                _err_exit("Cannot save counts file %s because: %s" % \
                          (`counts_file`, err.strerror))
650 651

    elif report:
Jeremy Hylton's avatar
Jeremy Hylton committed
652 653 654
        old_counts, old_modules = marshal.load(open(counts_file, 'rb'))
        results = CoverageResults(old_counts, old_modules)
        create_results_log(results, logdir, missing)
655 656

    else:
Jeremy Hylton's avatar
Jeremy Hylton committed
657
        assert 0, "Should never get here"
658 659 660

if __name__=='__main__':
    main()