profiler.py
60 lines
| 1.6 KiB
| text/x-python
|
PythonLexer
r547 | from __future__ import with_statement | |||
r2215 | import gc | |||
import objgraph | ||||
r547 | import cProfile | |||
import pstats | ||||
import cgi | ||||
import pprint | ||||
import threading | ||||
from StringIO import StringIO | ||||
r1307 | ||||
r547 | class ProfilingMiddleware(object): | |||
def __init__(self, app): | ||||
self.lock = threading.Lock() | ||||
self.app = app | ||||
r1203 | ||||
r547 | def __call__(self, environ, start_response): | |||
with self.lock: | ||||
profiler = cProfile.Profile() | ||||
r1307 | ||||
r547 | def run_app(*a, **kw): | |||
self.response = self.app(environ, start_response) | ||||
profiler.runcall(run_app, environ, start_response) | ||||
profiler.snapshot_stats() | ||||
stats = pstats.Stats(profiler) | ||||
r2215 | stats.sort_stats('calls') #cummulative | |||
r547 | ||||
# Redirect output | ||||
out = StringIO() | ||||
stats.stream = out | ||||
stats.print_stats() | ||||
resp = ''.join(self.response) | ||||
# Lets at least only put this on html-like responses. | ||||
if resp.strip().startswith('<'): | ||||
## The profiling info is just appended to the response. | ||||
## Browsers don't mind this. | ||||
r1307 | resp += ('<pre style="text-align:left; ' | |||
'border-top: 4px dashed red; padding: 1em;">') | ||||
r547 | resp += cgi.escape(out.getvalue(), True) | |||
r1203 | ||||
r2215 | ct = objgraph.show_most_common_types() | |||
print ct | ||||
resp += ct if ct else '---' | ||||
r547 | output = StringIO() | |||
pprint.pprint(environ, output, depth=3) | ||||
r1203 | ||||
r547 | resp += cgi.escape(output.getvalue(), True) | |||
resp += '</pre>' | ||||
r1203 | ||||
r547 | return resp | |||