comparison upmana/mercurial/lsprof.py @ 28:ff154cf3350c ornery-orc

Traipse 'OpenRPG' {100203-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Stable) New Features: New Bookmarks Feature New 'boot' command to remote admin New confirmation window for sent nodes Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG New Zoom Mouse plugin added New Images added to Plugin UI Switching to Element Tree New Map efficiency, from FlexiRPG New Status Bar to Update Manager New TrueDebug Class in orpg_log (See documentation for usage) New Portable Mercurial New Tip of the Day, from Core and community New Reference Syntax added for custom PC sheets New Child Reference for gametree New Parent Reference for gametree New Gametree Recursion method, mapping, context sensitivity, and effeciency.. New Features node with bonus nodes and Node Referencing help added New Dieroller structure from Core New DieRoller portability for odd Dice New 7th Sea die roller; ie [7k3] = [7d10.takeHighest(3).open(10)] New 'Mythos' System die roller added New vs. die roller method for WoD; ie [3v3] = [3d10.vs(3)]. Included for Mythos roller also New Warhammer FRPG Die Roller (Special thanks to Puu-san for the support) New EZ_Tree Reference system. Push a button, Traipse the tree, get a reference (Beta!) New Grids act more like Spreadsheets in Use mode, with Auto Calc Fixes: Fix to allow for portability to an OpenSUSE linux OS Fix to mplay_client for Fedora and OpenSUSE Fix to Text based Server Fix to Remote Admin Commands Fix to Pretty Print, from Core Fix to Splitter Nodes not being created Fix to massive amounts of images loading, from Core Fix to Map from gametree not showing to all clients Fix to gametree about menus Fix to Password Manager check on startup Fix to PC Sheets from tool nodes. They now use the tabber_panel Fix to Whiteboard ID to prevent random line or text deleting. Fixes to Server, Remote Server, and Server GUI Fix to Update Manager; cleaner clode for saved repositories Fixes made to Settings Panel and now reactive settings when Ok is pressed Fixes to Alternity roller's attack roll. Uses a simple Tuple instead of a Splice Fix to Use panel of Forms and Tabbers. Now longer enters design mode Fix made Image Fetching. New fetching image and new failed image Fix to whiteboard ID's to prevent non updated clients from ruining the fix. default_manifest.xml renamed to default_upmana.xml
author sirebral
date Wed, 03 Feb 2010 22:16:49 -0600
parents
children
comparison
equal deleted inserted replaced
27:51428d30c59e 28:ff154cf3350c
1 #! /usr/bin/env python
2
3 import sys
4 from _lsprof import Profiler, profiler_entry
5
6 __all__ = ['profile', 'Stats']
7
8 def profile(f, *args, **kwds):
9 """XXX docstring"""
10 p = Profiler()
11 p.enable(subcalls=True, builtins=True)
12 try:
13 f(*args, **kwds)
14 finally:
15 p.disable()
16 return Stats(p.getstats())
17
18
19 class Stats(object):
20 """XXX docstring"""
21
22 def __init__(self, data):
23 self.data = data
24
25 def sort(self, crit="inlinetime"):
26 """XXX docstring"""
27 if crit not in profiler_entry.__dict__:
28 raise ValueError("Can't sort by %s" % crit)
29 self.data.sort(lambda b, a: cmp(getattr(a, crit),
30 getattr(b, crit)))
31 for e in self.data:
32 if e.calls:
33 e.calls.sort(lambda b, a: cmp(getattr(a, crit),
34 getattr(b, crit)))
35
36 def pprint(self, top=None, file=None, limit=None, climit=None):
37 """XXX docstring"""
38 if file is None:
39 file = sys.stdout
40 d = self.data
41 if top is not None:
42 d = d[:top]
43 cols = "% 12s %12s %11.4f %11.4f %s\n"
44 hcols = "% 12s %12s %12s %12s %s\n"
45 file.write(hcols % ("CallCount", "Recursive", "Total(ms)",
46 "Inline(ms)", "module:lineno(function)"))
47 count = 0
48 for e in d:
49 file.write(cols % (e.callcount, e.reccallcount, e.totaltime,
50 e.inlinetime, label(e.code)))
51 count += 1
52 if limit is not None and count == limit:
53 return
54 ccount = 0
55 if e.calls:
56 for se in e.calls:
57 file.write(cols % ("+%s" % se.callcount, se.reccallcount,
58 se.totaltime, se.inlinetime,
59 "+%s" % label(se.code)))
60 count += 1
61 ccount += 1
62 if limit is not None and count == limit:
63 return
64 if climit is not None and ccount == climit:
65 break
66
67 def freeze(self):
68 """Replace all references to code objects with string
69 descriptions; this makes it possible to pickle the instance."""
70
71 # this code is probably rather ickier than it needs to be!
72 for i in range(len(self.data)):
73 e = self.data[i]
74 if not isinstance(e.code, str):
75 self.data[i] = type(e)((label(e.code),) + e[1:])
76 if e.calls:
77 for j in range(len(e.calls)):
78 se = e.calls[j]
79 if not isinstance(se.code, str):
80 e.calls[j] = type(se)((label(se.code),) + se[1:])
81
82 _fn2mod = {}
83
84 def label(code):
85 if isinstance(code, str):
86 return code
87 try:
88 mname = _fn2mod[code.co_filename]
89 except KeyError:
90 for k, v in sys.modules.iteritems():
91 if v is None:
92 continue
93 if not hasattr(v, '__file__'):
94 continue
95 if not isinstance(v.__file__, str):
96 continue
97 if v.__file__.startswith(code.co_filename):
98 mname = _fn2mod[code.co_filename] = k
99 break
100 else:
101 mname = _fn2mod[code.co_filename] = '<%s>'%code.co_filename
102
103 return '%s:%d(%s)' % (mname, code.co_firstlineno, code.co_name)
104
105
106 if __name__ == '__main__':
107 import os
108 sys.argv = sys.argv[1:]
109 if not sys.argv:
110 print >> sys.stderr, "usage: lsprof.py <script> <arguments...>"
111 sys.exit(2)
112 sys.path.insert(0, os.path.abspath(os.path.dirname(sys.argv[0])))
113 stats = profile(execfile, sys.argv[0], globals(), locals())
114 stats.sort()
115 stats.pprint()