Skip Montanaro | 4aba6f5 | 2004-01-26 19:44:48 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: iso-8859-1 -*- |
| 3 | |
| 4 | """ |
| 5 | Run a Python script under hotshot's control. |
| 6 | |
| 7 | Adapted from a posting on python-dev by Walter Dörwald |
| 8 | |
| 9 | usage %prog [ %prog args ] filename [ filename args ] |
| 10 | |
| 11 | Any arguments after the filename are used as sys.argv for the filename. |
| 12 | """ |
| 13 | |
| 14 | import sys |
| 15 | import optparse |
| 16 | import os |
| 17 | import hotshot |
| 18 | import hotshot.stats |
| 19 | |
| 20 | PROFILE = "hotshot.prof" |
| 21 | |
| 22 | def run_hotshot(filename, profile, args): |
| 23 | prof = hotshot.Profile(profile) |
| 24 | sys.path.insert(0, os.path.dirname(filename)) |
| 25 | sys.argv = [filename] + args |
Neal Norwitz | 0168802 | 2007-08-12 00:43:29 +0000 | [diff] [blame] | 26 | fp = open(filename) |
| 27 | try: |
| 28 | script = fp.read() |
| 29 | finally: |
| 30 | fp.close() |
| 31 | prof.run("exec(%r)" % script) |
Skip Montanaro | 4aba6f5 | 2004-01-26 19:44:48 +0000 | [diff] [blame] | 32 | prof.close() |
| 33 | stats = hotshot.stats.load(profile) |
| 34 | stats.sort_stats("time", "calls") |
| 35 | |
| 36 | # print_stats uses unadorned print statements, so the only way |
| 37 | # to force output to stderr is to reassign sys.stdout temporarily |
| 38 | save_stdout = sys.stdout |
| 39 | sys.stdout = sys.stderr |
| 40 | stats.print_stats() |
| 41 | sys.stdout = save_stdout |
| 42 | |
| 43 | return 0 |
| 44 | |
| 45 | def main(args): |
| 46 | parser = optparse.OptionParser(__doc__) |
Skip Montanaro | 8107ca4 | 2004-08-24 14:26:43 +0000 | [diff] [blame] | 47 | parser.disable_interspersed_args() |
Skip Montanaro | 4aba6f5 | 2004-01-26 19:44:48 +0000 | [diff] [blame] | 48 | parser.add_option("-p", "--profile", action="store", default=PROFILE, |
| 49 | dest="profile", help='Specify profile file to use') |
| 50 | (options, args) = parser.parse_args(args) |
| 51 | |
| 52 | if len(args) == 0: |
| 53 | parser.print_help("missing script to execute") |
| 54 | return 1 |
| 55 | |
| 56 | filename = args[0] |
| 57 | return run_hotshot(filename, options.profile, args[1:]) |
| 58 | |
| 59 | if __name__ == "__main__": |
| 60 | sys.exit(main(sys.argv[1:])) |