##// END OF EJS Templates
changed session to client side encrypted cookie, for better horizontal scalability of rhodecode
changed session to client side encrypted cookie, for better horizontal scalability of rhodecode

File last commit:

r1307:c1516b35 beta
r1710:79a06e68 beta
Show More
profiler.py
53 lines | 1.4 KiB | text/x-python | PythonLexer
renamed project to rhodecode
r547 from __future__ import with_statement
import cProfile
import pstats
import cgi
import pprint
import threading
from StringIO import StringIO
pep8ify
r1307
renamed project to rhodecode
r547 class ProfilingMiddleware(object):
def __init__(self, app):
self.lock = threading.Lock()
self.app = app
source code cleanup: remove trailing white space, normalize file endings
r1203
renamed project to rhodecode
r547 def __call__(self, environ, start_response):
with self.lock:
profiler = cProfile.Profile()
pep8ify
r1307
renamed project to rhodecode
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)
stats.sort_stats('cumulative')
# 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.
pep8ify
r1307 resp += ('<pre style="text-align:left; '
'border-top: 4px dashed red; padding: 1em;">')
renamed project to rhodecode
r547 resp += cgi.escape(out.getvalue(), True)
source code cleanup: remove trailing white space, normalize file endings
r1203
renamed project to rhodecode
r547 output = StringIO()
pprint.pprint(environ, output, depth=3)
source code cleanup: remove trailing white space, normalize file endings
r1203
renamed project to rhodecode
r547 resp += cgi.escape(output.getvalue(), True)
resp += '</pre>'
source code cleanup: remove trailing white space, normalize file endings
r1203
renamed project to rhodecode
r547 return resp