~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/lsprof.py

  • Committer: Jelmer Vernooij
  • Date: 2008-08-06 18:33:20 UTC
  • mto: (197.1.9 pathargs)
  • mto: This revision was merged to the branch mainline in revision 202.
  • Revision ID: jelmer@samba.org-20080806183320-6llann0k480dlb9y
add --log-folder option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
 
28
28
def profile(f, *args, **kwds):
29
 
    """FIXME: docstring"""
 
29
    """XXX docstring"""
30
30
    global _g_threadmap
31
31
    p = Profiler()
32
32
    p.enable(subcalls=True)
47
47
 
48
48
 
49
49
class Stats(object):
50
 
    """FIXME: docstring"""
 
50
    """XXX docstring"""
51
51
 
52
52
    def __init__(self, data, threads):
53
53
        self.data = data
54
54
        self.threads = threads
55
55
 
56
56
    def sort(self, crit="inlinetime"):
57
 
        """FIXME: docstring"""
 
57
        """XXX docstring"""
58
58
        if crit not in profiler_entry.__dict__:
59
 
            raise ValueError("Can't sort by %s" % crit)
 
59
            raise ValueError, "Can't sort by %s" % crit
60
60
        self.data.sort(lambda b, a: cmp(getattr(a, crit),
61
61
                                        getattr(b, crit)))
62
62
        for e in self.data:
65
65
                                              getattr(b, crit)))
66
66
 
67
67
    def pprint(self, top=None, file=None):
68
 
        """FIXME: docstring"""
 
68
        """XXX docstring"""
69
69
        if file is None:
70
70
            file = sys.stdout
71
71
        d = self.data
73
73
            d = d[:top]
74
74
        cols = "% 12s %12s %11.4f %11.4f   %s\n"
75
75
        hcols = "% 12s %12s %12s %12s %s\n"
 
76
        cols2 = "+%12s %12s %11.4f %11.4f +  %s\n"
76
77
        file.write(hcols % ("CallCount", "Recursive", "Total(ms)",
77
78
                            "Inline(ms)", "module:lineno(function)"))
78
79
        for e in d:
92
93
        for i in range(len(self.data)):
93
94
            e = self.data[i]
94
95
            if not isinstance(e.code, str):
95
 
                self.data[i] = type(e)((label(e.code)) + e[1:])
 
96
                self.data[i] = type(e)((label(e.code),) + e[1:])
96
97
            if e.calls:
97
98
                for j in range(len(e.calls)):
98
99
                    se = e.calls[j]
99
100
                    if not isinstance(se.code, str):
100
 
                        e.calls[j] = type(se)((label(se.code)) + se[1:])
 
101
                        e.calls[j] = type(se)((label(se.code),) + se[1:])
101
102
        for s in self.threads.values():
102
103
            s.freeze()
103
104
 
124
125
        for entry in self.data:
125
126
            totaltime = int(entry.totaltime * 1000)
126
127
            max_cost = max(max_cost, totaltime)
127
 
        print >> self.out_file, 'summary: %d' % (max_cost)
 
128
        print >> self.out_file, 'summary: %d' % (max_cost,)
128
129
 
129
130
    def _entry(self, entry):
130
131
        out_file = self.out_file
131
132
        code = entry.code
132
133
        inlinetime = int(entry.inlinetime * 1000)
133
134
        #print >> out_file, 'ob=%s' % (code.co_filename,)
134
 
        print >> out_file, 'fi=%s' % (code.co_filename)
135
 
        print >> out_file, 'fn=%s' % (label(code, True))
 
135
        print >> out_file, 'fi=%s' % (code.co_filename,)
 
136
        print >> out_file, 'fn=%s' % (label(code, True),)
136
137
        print >> out_file, '%d %d' % (code.co_firstlineno, inlinetime)
137
138
        # recursive calls are counted in entry.calls
138
139
        if entry.calls:
148
149
        code = subentry.code
149
150
        totaltime = int(subentry.totaltime * 1000)
150
151
        #print >> out_file, 'cob=%s' % (code.co_filename,)
151
 
        print >> out_file, 'cfn=%s' % (label(code, True))
152
 
        print >> out_file, 'cfi=%s' % (code.co_filename)
 
152
        print >> out_file, 'cfn=%s' % (label(code, True),)
 
153
        print >> out_file, 'cfi=%s' % (code.co_filename,)
153
154
        print >> out_file, 'calls=%d %d' % (
154
155
            subentry.callcount, code.co_firstlineno)
155
156
        print >> out_file, '%d %d' % (lineno, totaltime)
157
158
 
158
159
_fn2mod = {}
159
160
 
160
 
 
161
161
def label(code, calltree=False):
162
162
    if isinstance(code, str):
163
163
        return code