Created
September 1, 2013 13:22
-
-
Save azakordonets/6404430 to your computer and use it in GitHub Desktop.
Python simple HTTP Server that get's two variables for launch - port and time delay( time after which server will return response) . If we do not specify this two values, then server starts on 8000 port with delay = 0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import SimpleHTTPServer, BaseHTTPServer, SocketServer, socket, time, sys | |
class ThreadedHTTPServer(SocketServer.ThreadingMixIn, | |
BaseHTTPServer.HTTPServer) : | |
""" | |
New features w/r to BaseHTTPServer.HTTPServer: | |
- serves multiple requests simultaneously | |
- catches socket.timeout and socket.error exceptions (raised from | |
RequestHandler) | |
""" | |
def setDelay(self): | |
try: | |
delay = sys.argv[2] | |
except IndexError: | |
delay = 0.0 | |
return delay | |
def __init__(self, *args): | |
BaseHTTPServer.HTTPServer.__init__(self,*args) | |
def process_request_thread(self, request, client_address): | |
""" | |
Overrides SocketServer.ThreadingMixIn.process_request_thread | |
in order to catch socket.timeout | |
""" | |
try: | |
time.sleep(self.setDelay()) | |
self.finish_request(request, client_address) | |
self.close_request(request) | |
except socket.timeout: | |
print 'Timeout during processing of request from', | |
print client_address | |
except socket.error, e: | |
print e, 'during processing of request from', | |
print client_address | |
except: | |
self.handle_error(request, client_address) | |
self.close_request(request) | |
class TimeoutHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
""" | |
Abandon request handling when client has not responded for a | |
certain time. This raises a socket.timeout exception. | |
""" | |
# Class-wide value for socket timeout | |
timeout = 3 * 60 | |
def setup(self): | |
"Sets a timeout on the socket" | |
self.request.settimeout(self.timeout) | |
SimpleHTTPServer.SimpleHTTPRequestHandler.setup(self) | |
def main(): | |
try: | |
BaseHTTPServer.test(TimeoutHTTPRequestHandler, ThreadedHTTPServer) | |
print "Delay time is %s" %self.delay | |
except KeyboardInterrupt: | |
print '^C received, shutting down server' | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!
Using Python 2.7.10, I had to wrap
sys.argv[2]
in line 15 withfloat()
, otherwise I got an exception.