Onionr/onionr/httpapi/fdsafehandler.py

21 lines
700 B
Python
Raw Normal View History

from gevent.pywsgi import WSGIServer, WSGIHandler
from gevent import Timeout
class FDSafeHandler(WSGIHandler):
'''Our WSGI handler. Doesn't do much non-default except timeouts'''
def handle(self):
self.timeout = Timeout(120, Exception)
self.timeout.start()
try:
WSGIHandler.handle(self)
2019-08-05 05:25:27 +00:00
except Exception as e:
self.handle_error(e)
finally:
self.timeout.close()
2019-08-05 05:25:27 +00:00
def handle_error(self, two, three, four):
if two is self.timeout:
self.result = [b"Timeout"]
self.start_response("200 OK", [])
self.process_result()
else:
WSGIHandler.handle_error(self)